-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
130 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ deloarts | |
|
||
hitman061 | ||
|
||
HyberCa | ||
|
||
hoangminhq5310 | ||
|
||
Luanee | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
from pycatia.analysis_interfaces.analysis_document import AnalysisDocument | ||
from pycatia.components_catalogs_interfaces.catalog_document import CatalogDocument | ||
from pycatia.cat_mat_interfaces.material_document import MaterialDocument | ||
from pycatia.dmaps_interfaces.process_document import ProcessDocument | ||
from pycatia.drafting_interfaces.drawing_document import DrawingDocument | ||
from pycatia.in_interfaces.document import Document | ||
from pycatia.mec_mod_interfaces.part_document import PartDocument | ||
from pycatia.product_structure_interfaces.product_document import ProductDocument | ||
from pycatia.funct_system_interfaces.functional_document import FunctionalDocument | ||
|
||
|
||
document_types = { | ||
'Analysis': { | ||
'extension': 'CATAnalysis', | ||
'type': AnalysisDocument, | ||
}, | ||
'CatalogDocument': { | ||
'extension': 'catalog', | ||
'type': CatalogDocument, | ||
}, | ||
'CATMaterial': { | ||
'extension': 'CATMaterial', | ||
'type': MaterialDocument, | ||
}, | ||
'CATProcess': { | ||
'extension': 'CATProcess', | ||
'type': ProcessDocument, | ||
}, | ||
'cgm': { | ||
'extension': 'cgm', | ||
'type': Document, | ||
}, | ||
'Drawing': { | ||
'extension': 'CATDrawing', | ||
'type': DrawingDocument, | ||
}, | ||
'FeatureDictionary': { | ||
'extension': 'CATfct', | ||
'type': Document | ||
}, | ||
'gl': { | ||
'extension': 'gl', | ||
'type': Document, | ||
}, | ||
'gl2': { | ||
'extension': 'gl2', | ||
'type': Document, | ||
}, | ||
'hpgl': { | ||
'extension': 'hpgl', | ||
'type': Document | ||
}, | ||
'FunctionalSystem': { | ||
'extension': 'CATSystem', | ||
'type': FunctionalDocument, | ||
}, | ||
'Part': { | ||
'extension': 'CATPart', | ||
'type': PartDocument, | ||
}, | ||
'Product': { | ||
'extension': 'CATProduct', | ||
'type': ProductDocument | ||
}, | ||
'ProcessLibrary': { | ||
'extension': 'act', | ||
'type': ProcessDocument, | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version = "0.6.8" | ||
version = "0.6.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.