Difference between revisions of "EnablingDoubleClick"
From Protege Wiki
(New page: =Enabling Double-Click= This is a work in development and when this is better tested this functionality will be better integrated into the Protege 4 OWL editor. Thanks to Alan Ruttenberg...) |
(→OS X) |
||
Line 4: | Line 4: | ||
==OS X== | ==OS X== | ||
+ | |||
+ | Follow the instructions from [[Editting_the_Info.plist|Editing the Info.plist] to open the Info.plist file with a text editor. Add the following lines underneath some other key/value pair: | ||
+ | <pre> | ||
+ | <key>CFBundleDocumentTypes</key> | ||
+ | <array> | ||
+ | <dict> | ||
+ | <key>CFBundleTypeExtensions</key> | ||
+ | <array> | ||
+ | <string>owl</string> | ||
+ | </array> | ||
+ | <key>CFBundleTypeName</key> | ||
+ | <string>OWL Ontology</string> | ||
+ | <key>CFBundleTypeRole</key> | ||
+ | <string>Viewer</string> | ||
+ | </dict> | ||
+ | </array> | ||
+ | </pre> | ||
+ | and copy the [http://smi-protege.stanford.edu/repos/protege/protege4/small-projects/org.protege.editor.bootstrap/Bootstrap.jar Bootstrap.jar] file into the plugins directory. |
Revision as of 06:34, August 20, 2008
Enabling Double-Click
This is a work in development and when this is better tested this functionality will be better integrated into the Protege 4 OWL editor. Thanks to Alan Ruttenberg for contributing the OS X portion of this plugin.
OS X
Follow the instructions from [[Editting_the_Info.plist|Editing the Info.plist] to open the Info.plist file with a text editor. Add the following lines underneath some other key/value pair:
<key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeExtensions</key> <array> <string>owl</string> </array> <key>CFBundleTypeName</key> <string>OWL Ontology</string> <key>CFBundleTypeRole</key> <string>Viewer</string> </dict> </array>
and copy the Bootstrap.jar file into the plugins directory.