├── .gitignore ├── .gitmodules ├── Readme.markdown ├── delimport-localisation ├── Source │ └── delimport │ │ ├── de.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── LogIn.xib │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── LogIn.xib │ │ └── fr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── LogIn.xib └── delimport-localisation.ilocalize └── delimport ├── DIBookmarksController.h ├── DIBookmarksController.m ├── DIFileController.h ├── DIFileController.m ├── DILoginController.h ├── DILoginController.m ├── DIQueue.h ├── DIQueue.m ├── DIQueueItem.h ├── DIQueueItem.m ├── DIServiceTypeToIconPath.h ├── DIServiceTypeToIconPath.m ├── DIWebarchiveDownload.h ├── DIWebarchiveDownload.m ├── Info.plist ├── MainMenu.xib ├── de.lproj ├── InfoPlist.strings ├── Localizable.strings └── LogIn.xib ├── delicious.icns ├── delimport.entitlements ├── delimport.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── delimport_Prefix.pch ├── en.lproj ├── InfoPlist.strings ├── Localizable.strings └── LogIn.xib ├── fr.lproj ├── InfoPlist.strings ├── Localizable.strings └── LogIn.xib ├── main.m ├── pinboard.icns └── spotlight_interface ├── GetMetadataForFile.m ├── Info.plist ├── Version ├── del.icio.us Spotlight Interface.xcodeproj └── project.pbxproj ├── en.lproj ├── InfoPlist.strings └── schema.strings ├── main.c ├── schema.xml └── version.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/.gitmodules -------------------------------------------------------------------------------- /Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/Readme.markdown -------------------------------------------------------------------------------- /delimport-localisation/Source/delimport/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/Source/delimport/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /delimport-localisation/Source/delimport/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/Source/delimport/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /delimport-localisation/Source/delimport/de.lproj/LogIn.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/Source/delimport/de.lproj/LogIn.xib -------------------------------------------------------------------------------- /delimport-localisation/Source/delimport/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/Source/delimport/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /delimport-localisation/Source/delimport/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/Source/delimport/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /delimport-localisation/Source/delimport/en.lproj/LogIn.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/Source/delimport/en.lproj/LogIn.xib -------------------------------------------------------------------------------- /delimport-localisation/Source/delimport/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/Source/delimport/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /delimport-localisation/Source/delimport/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/Source/delimport/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /delimport-localisation/Source/delimport/fr.lproj/LogIn.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/Source/delimport/fr.lproj/LogIn.xib -------------------------------------------------------------------------------- /delimport-localisation/delimport-localisation.ilocalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport-localisation/delimport-localisation.ilocalize -------------------------------------------------------------------------------- /delimport/DIBookmarksController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIBookmarksController.h -------------------------------------------------------------------------------- /delimport/DIBookmarksController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIBookmarksController.m -------------------------------------------------------------------------------- /delimport/DIFileController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIFileController.h -------------------------------------------------------------------------------- /delimport/DIFileController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIFileController.m -------------------------------------------------------------------------------- /delimport/DILoginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DILoginController.h -------------------------------------------------------------------------------- /delimport/DILoginController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DILoginController.m -------------------------------------------------------------------------------- /delimport/DIQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIQueue.h -------------------------------------------------------------------------------- /delimport/DIQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIQueue.m -------------------------------------------------------------------------------- /delimport/DIQueueItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIQueueItem.h -------------------------------------------------------------------------------- /delimport/DIQueueItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIQueueItem.m -------------------------------------------------------------------------------- /delimport/DIServiceTypeToIconPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIServiceTypeToIconPath.h -------------------------------------------------------------------------------- /delimport/DIServiceTypeToIconPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIServiceTypeToIconPath.m -------------------------------------------------------------------------------- /delimport/DIWebarchiveDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIWebarchiveDownload.h -------------------------------------------------------------------------------- /delimport/DIWebarchiveDownload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/DIWebarchiveDownload.m -------------------------------------------------------------------------------- /delimport/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/Info.plist -------------------------------------------------------------------------------- /delimport/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/MainMenu.xib -------------------------------------------------------------------------------- /delimport/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /delimport/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /delimport/de.lproj/LogIn.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/de.lproj/LogIn.xib -------------------------------------------------------------------------------- /delimport/delicious.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/delicious.icns -------------------------------------------------------------------------------- /delimport/delimport.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/delimport.entitlements -------------------------------------------------------------------------------- /delimport/delimport.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/delimport.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /delimport/delimport.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/delimport.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /delimport/delimport_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/delimport_Prefix.pch -------------------------------------------------------------------------------- /delimport/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /delimport/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /delimport/en.lproj/LogIn.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/en.lproj/LogIn.xib -------------------------------------------------------------------------------- /delimport/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /delimport/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /delimport/fr.lproj/LogIn.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/fr.lproj/LogIn.xib -------------------------------------------------------------------------------- /delimport/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/main.m -------------------------------------------------------------------------------- /delimport/pinboard.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/pinboard.icns -------------------------------------------------------------------------------- /delimport/spotlight_interface/GetMetadataForFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/spotlight_interface/GetMetadataForFile.m -------------------------------------------------------------------------------- /delimport/spotlight_interface/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/spotlight_interface/Info.plist -------------------------------------------------------------------------------- /delimport/spotlight_interface/Version: -------------------------------------------------------------------------------- 1 | Release 2 2 | June 6, 2004 -------------------------------------------------------------------------------- /delimport/spotlight_interface/del.icio.us Spotlight Interface.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/spotlight_interface/del.icio.us Spotlight Interface.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /delimport/spotlight_interface/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/spotlight_interface/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /delimport/spotlight_interface/en.lproj/schema.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/spotlight_interface/en.lproj/schema.strings -------------------------------------------------------------------------------- /delimport/spotlight_interface/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/spotlight_interface/main.c -------------------------------------------------------------------------------- /delimport/spotlight_interface/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/spotlight_interface/schema.xml -------------------------------------------------------------------------------- /delimport/spotlight_interface/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssp/delimport/HEAD/delimport/spotlight_interface/version.plist --------------------------------------------------------------------------------