Changeset 743
- Timestamp:
- 10/27/07 01:51:58 (6 years ago)
- Location:
- lang/ruby/Chemr
- Files:
-
- 5 modified
-
AppController.rb (modified) (1 diff)
-
CHMDocument.rb (modified) (2 diffs)
-
Chemr.xcodeproj/cho45.mode1 (modified) (7 diffs)
-
Chemr.xcodeproj/cho45.pbxuser (modified) (1 diff)
-
Chemr.xcodeproj/project.pbxproj (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/ruby/Chemr/AppController.rb
r733 r743 131 131 end 132 132 133 -
lang/ruby/Chemr/CHMDocument.rb
r740 r743 333 333 #- (BOOL)readFromURL:(NSURL *)inAbsoluteURL ofType:(NSString *)inTypeName error:(NSError **)outError 334 334 def readFromURL_ofType_error(url, type, error) 335 @chm = Chmlib::Chm.new(url.path.to_s) 335 path = Pathname.new(url.path.to_s) 336 if path.directory? 337 @chm = CHMBundle.new(path) 338 else 339 @chm = Chmlib::Chm.new(path.to_s) 340 end 336 341 true 337 342 end … … 379 384 380 385 end 386 387 -
lang/ruby/Chemr/Chemr.xcodeproj/cho45.mode1
r696 r743 271 271 <array> 272 272 <array> 273 <integer> 7</integer>273 <integer>2</integer> 274 274 <integer>0</integer> 275 275 </array> 276 276 </array> 277 277 <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> 278 <string>{{0, 0}, {373, 314}}</string>278 <string>{{0, 20}, {373, 314}}</string> 279 279 </dict> 280 280 <key>PBXTopSmartGroupGIDs</key> … … 376 376 <key>TableOfContents</key> 377 377 <array> 378 <string>74 DA09910CCFFB3500DDACCE</string>378 <string>741A3CF00CD24BDA009F050E</string> 379 379 <string>1CE0B1FE06471DED0097A5F4</string> 380 <string>74 DA09920CCFFB3500DDACCE</string>380 <string>741A3CF10CD24BDA009F050E</string> 381 381 <string>1CE0B20306471E060097A5F4</string> 382 382 <string>1CE0B20506471E060097A5F4</string> … … 512 512 <key>WindowOrderList</key> 513 513 <array> 514 <string>74DA09990CCFFB3500DDACCE</string> 515 <string>/Users/cho45/coderepos/lang/ruby/Chemr/Chemr.xcodeproj</string> 514 <string>741A3CF80CD24BDA009F050E</string> 516 515 <string>1CD10A99069EF8BA00B06720</string> 517 516 <string>1C0AD2B3069F1EA900FABCE6</string> 517 <string>/Users/cho45/coderepos/lang/ruby/Chemr/Chemr.xcodeproj</string> 518 518 </array> 519 519 <key>WindowString</key> … … 637 637 <key>sizes</key> 638 638 <array> 639 <string>{{0, 0}, { 208, 144}}</string>640 <string>{{ 208, 0}, {486, 144}}</string>639 <string>{{0, 0}, {194, 142}}</string> 640 <string>{{194, 0}, {500, 142}}</string> 641 641 </array> 642 642 </dict> … … 653 653 <key>sizes</key> 654 654 <array> 655 <string>{{0, 0}, {694, 14 4}}</string>656 <string>{{0, 14 4}, {694, 237}}</string>655 <string>{{0, 0}, {694, 142}}</string> 656 <string>{{0, 142}, {694, 239}}</string> 657 657 </array> 658 658 </dict> … … 701 701 <array> 702 702 <string>1CD10A99069EF8BA00B06720</string> 703 <string>74 DA09930CCFFB3500DDACCE</string>703 <string>741A3CF20CD24BDA009F050E</string> 704 704 <string>1C162984064C10D400B95A72</string> 705 <string>74 DA09940CCFFB3500DDACCE</string>706 <string>74 DA09950CCFFB3500DDACCE</string>707 <string>74 DA09960CCFFB3500DDACCE</string>708 <string>74 DA09970CCFFB3500DDACCE</string>709 <string>74 DA09980CCFFB3500DDACCE</string>710 <string>74 DA09990CCFFB3500DDACCE</string>705 <string>741A3CF30CD24BDA009F050E</string> 706 <string>741A3CF40CD24BDA009F050E</string> 707 <string>741A3CF50CD24BDA009F050E</string> 708 <string>741A3CF60CD24BDA009F050E</string> 709 <string>741A3CF70CD24BDA009F050E</string> 710 <string>741A3CF80CD24BDA009F050E</string> 711 711 </array> 712 712 <key>ToolbarConfiguration</key> … … 965 965 <array> 966 966 <string>1C0AD2B3069F1EA900FABCE6</string> 967 <string>74 DA099A0CCFFB3500DDACCE</string>967 <string>741A3CF90CD24BDA009F050E</string> 968 968 <string>1CD0528B0623707200166675</string> 969 <string>74 DA099B0CCFFB3500DDACCE</string>969 <string>741A3CFA0CD24BDA009F050E</string> 970 970 </array> 971 971 <key>ToolbarConfiguration</key> -
lang/ruby/Chemr/Chemr.xcodeproj/cho45.pbxuser
r696 r743 91 91 ); 92 92 }; 93 PBXPerProjectTemplateStateSaveDate = 21 4956851;94 PBXWorkspaceStateSaveDate = 21 4956851;93 PBXPerProjectTemplateStateSaveDate = 215108535; 94 PBXWorkspaceStateSaveDate = 215108535; 95 95 }; 96 96 sourceControlManager = 7443AFF30CCE31610050984A /* Source Control */; -
lang/ruby/Chemr/Chemr.xcodeproj/project.pbxproj
r677 r743 15 15 4DDCA70D0ACC9A6100E082CE /* RubyCocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E8F5E24E03AEB6EC03A81C6F /* RubyCocoa.framework */; }; 16 16 66A6C82F42B999DC7901B1D6 /* AppController.rb in Resources */ = {isa = PBXBuildFile; fileRef = 8AB11017C292A6A022C3655E /* AppController.rb */; }; 17 741A3CED0CD24BD7009F050E /* CHMBundle.rb in Resources */ = {isa = PBXBuildFile; fileRef = 741A3CEC0CD24BD7009F050E /* CHMBundle.rb */; }; 17 18 7443AFF70CCE31A30050984A /* CHMDocument.nib in Resources */ = {isa = PBXBuildFile; fileRef = 7443AFF50CCE31A30050984A /* CHMDocument.nib */; }; 18 19 7443AFFA0CCE31BA0050984A /* CHMDocument.rb in Resources */ = {isa = PBXBuildFile; fileRef = 7443AFF90CCE31BA0050984A /* CHMDocument.rb */; }; … … 47 48 4DDCA7110ACC9A6100E082CE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = Info.plist; sourceTree = "<group>"; }; 48 49 4DDCA7120ACC9A6100E082CE /* Chemr.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Chemr.app; sourceTree = BUILT_PRODUCTS_DIR; }; 50 741A3CEC0CD24BD7009F050E /* CHMBundle.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = CHMBundle.rb; sourceTree = "<group>"; }; 49 51 7443AFF60CCE31A30050984A /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/CHMDocument.nib; sourceTree = "<group>"; }; 50 52 7443AFF90CCE31BA0050984A /* CHMDocument.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = CHMDocument.rb; sourceTree = "<group>"; }; … … 72 74 isa = PBXGroup; 73 75 children = ( 76 741A3CEC0CD24BD7009F050E /* CHMBundle.rb */, 74 77 8AB11017C292A6A022C3655E /* AppController.rb */, 78 7443AFF90CCE31BA0050984A /* CHMDocument.rb */, 75 79 ); 76 80 name = Classes; … … 91 95 29B97325FDCFA39411CA2CEA /* Foundation.framework */, 92 96 29B97324FDCFA39411CA2CEA /* AppKit.framework */, 93 7443AFF90CCE31BA0050984A /* CHMDocument.rb */,94 97 ); 95 98 name = "Other Frameworks"; … … 213 216 749109C40CCE9466002D03F9 /* icon.icns in Resources */, 214 217 74E391350CCF3662007A565D /* file.icns in Resources */, 218 741A3CED0CD24BD7009F050E /* CHMBundle.rb in Resources */, 215 219 ); 216 220 runOnlyForDeploymentPostprocessing = 0;
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)