From: Jack Jansen Date: Fri, 24 Apr 1998 10:42:01 +0000 (+0000) Subject: Added new folder types X-Git-Tag: v1.5.2a1~836 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7b7a2c2e110a2a9d5bb7c4f0c0dbda74e215059f;p=thirdparty%2FPython%2Fcpython.git Added new folder types --- diff --git a/Mac/Lib/MACFS.py b/Mac/Lib/MACFS.py index 132db37905c5..1d0c2c1eab2d 100644 --- a/Mac/Lib/MACFS.py +++ b/Mac/Lib/MACFS.py @@ -28,3 +28,65 @@ kExtensionFolderType = 'extn' # Finder extensions go here kFontsFolderType = 'font' # Fonts go here kPreferencesFolderType = 'pref' # preferences for applications go here kTemporaryFolderType = 'temp' + +# Alias types +kContainerFolderAliasType = 'fdrp' +kContainerTrashAliasType = 'trsh' +kContainerHardDiskAliasType = 'hdsk' +kContainerFloppyAliasType = 'flpy' +kContainerServerAliasType = 'srvr' +kApplicationAliasType = 'adrp' +kContainerAliasType = 'drop' +# types for Special folder aliases +kSystemFolderAliasType = 'fasy' +kAppleMenuFolderAliasType = 'faam' +kStartupFolderAliasType = 'fast' +kPrintMonitorDocsFolderAliasType = 'fapn' +kPreferencesFolderAliasType = 'fapf' +kControlPanelFolderAliasType = 'fact' +kExtensionFolderAliasType = 'faex' +kExportedFolderAliasType = 'faet' +kDropFolderAliasType = 'fadr' +kSharedFolderAliasType = 'fash' +kMountedFolderAliasType = 'famn' + +# New FindFolder constants +kExtensionDisabledFolderType = 'extD' +kControlPanelDisabledFolderType = 'ctrD' +kSystemExtensionDisabledFolderType = 'macD' +kStartupItemsDisabledFolderType = 'strD' +kShutdownItemsDisabledFolderType = 'shdD' +kApplicationsFolderType = 'apps' +kDocumentsFolderType = 'docs' + +kVolumeRootFolderType = 'root' +kChewableItemsFolderType = 'flnt' +kApplicationSupportFolderType = 'asup' +kTextEncodingsFolderType = 'Ÿtex' +kStationeryFolderType = 'odst' +kOpenDocFolderType = 'odod' +kOpenDocShellPlugInsFolderType = 'odsp' +kEditorsFolderType = 'oded' +kOpenDocEditorsFolderType = 'Ÿodf' +kOpenDocLibrariesFolderType = 'odlb' +kGenEditorsFolderType = 'Ÿedi' +kHelpFolderType = 'Ÿhlp' +kInternetPlugInFolderType = 'Ÿnet' +kModemScriptsFolderType = 'Ÿmod' +kPrinterDescriptionFolderType = 'ppdf' +kPrinterDriverFolderType = 'Ÿprd' +kScriptingAdditionsFolderType = 'Ÿscr' +kSharedLibrariesFolderType = 'Ÿlib' +kVoicesFolderType = 'fvoc' +kControlStripModulesFolderType = 'sdev' +kAssistantsFolderType = 'astŸ' +kUtilitiesFolderType = 'utiŸ' +kAppleExtrasFolderType = 'aexŸ' +kContextualMenuItemsFolderType = 'cmnu' +kMacOSReadMesFolderType = 'morŸ' +kALMModulesFolderType = 'walk' +kALMPreferencesFolderType = 'trip' +kALMLocationsFolderType = 'fall' +kColorSyncProfilesFolderType = 'prof' +kThemesFolderType = 'thme' +kFavoritesFolderType = 'favs'