diff options
author | Ninad Sathaye <ninad@nanorex.com> | 2008-01-22 18:43:24 +0000 |
---|---|---|
committer | Ninad Sathaye <ninad@nanorex.com> | 2008-01-22 18:43:24 +0000 |
commit | b3e76f0cbac7a6a3e444c6dd025cea1357c96cdd (patch) | |
tree | 01fce8485cc02e18bcded064deb5c4062ebf84bd | |
parent | ce501935363c653821bf0315576339a1dffbaa8f (diff) | |
download | nanoengineer-b3e76f0cbac7a6a3e444c6dd025cea1357c96cdd.tar.gz nanoengineer-b3e76f0cbac7a6a3e444c6dd025cea1357c96cdd.zip |
review changes (code type and order)
-rw-r--r-- | cad/src/tools/packageData.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cad/src/tools/packageData.py b/cad/src/tools/packageData.py index 26f313c4f..849a09ae3 100644 --- a/cad/src/tools/packageData.py +++ b/cad/src/tools/packageData.py @@ -272,7 +272,7 @@ packageMapping_for_files = { "BuildAtoms_Command" : "command|commands/BuildAtoms", "BuildAtoms_GraphicsMode" : "graphics_mode|commands/BuildAtoms", "BuildDna_EditCommand" : "command|dna/commands/BuildDna", - "BuildDna_GraphicsMode" : "command|dna/commands/BuildDna", + "BuildDna_GraphicsMode" : "graphics_mode|dna/commands/BuildDna", "BuildDna_PropertyManager" : "ui/propmgr|dna/commands/BuildDna", "build_utils" : "operation|commands/BuildAtoms", # AtomDepositionTool "changedicts" : "foundation", @@ -313,11 +313,12 @@ packageMapping_for_files = { "DnaDuplex" : "operation|dna/commands/BuildDuplex", # class to help construct model objects defined elsewhere "DnaDuplex_EditCommand" : "command|dna/commands/BuildDuplex", "DnaDuplexPropertyManager" : "ui/propmgr|dna/commands/BuildDuplex", - "DnaSegment_EditCommand" : "command|dna/commands/DnaSegment", - "DnaSegment_PropertyManager" : "ui/propmgr|dna/commands/DnaSegment", "DnaGenerator" : "command|dna/commands/BuildDuplex_old", "DnaGeneratorPropertyManager" : "ui/propmgr|dna/commands/BuildDuplex_old", "DnaLineMode" : "temporary_command|dna/temporary_commands", #? + "DnaSegment_EditCommand" : "command|dna/commands/DnaSegment", + "DnaSegment_PropertyManager" : "ui/propmgr|dna/commands/DnaSegment", + "DnaSequenceEditor" : "widget|DnaSequenceEditor", # a major ui component, and maybe a widget (guess, didn't look at code) "Dna_Constants" : "model|dna/model", # (since used by lots of files in several dna-related commands) "DragHandler" : "graphics_drawable", "drawer" : "graphics_drawing", @@ -515,8 +516,6 @@ packageMapping_for_files = { "Selobj" : "graphics_drawable_api|graphics_drawable", #bruce 080116 revised this - "DnaSequenceEditor" : "widget|DnaSequenceEditor", # a major ui component, and maybe a widget (guess, didn't look at code) - "ServerManager" : "ui|processes", #? specific to GAMESS? maybe, but shouldn't. persistent db/UI for servers list "ServerManagerDialog" : "ui|processes", |