diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..496ee2c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md index 630317e..eb1e56d 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,20 @@ -Проект 2. Идея и интерфейс приложения -============= +# Генератор паролей -Придумайте приложение для OS X, разработайте графический интерфейс и сдайте: +## Проблема +По работе мне очень часто приходится регистрировать аккаунты на различных сервисах и сайтах. Как правило логины есть, а вот пароли выдумывать не хочется. -1. Подробное описание в README.md или PDF. Описание должно включать: - * Проблему, которую решает приложение - * Аудитория приложения - * Пример сценария использования приложения - * Описание поведения (что происходит при загрузке, что происходит при нажатии на кнопку Х, и так далее). -2. Вся папка с проектом, в которой обязательно должен быть .xib-файл с графическим интерфейсом. +## Аудитория +Данная программа поможет всем кому нужно быстро сгенерировать уникальный устойчивый к подбору пароль. -[Сдать работу](https://u.hexlet.org/courses/4/assignments/6) \ No newline at end of file +## Пример +Допустим, нужно мне зарегистрировать 5 почтовых ящиков для новых сотрудников компании, тут то я и беру приложение и генерирую пароли, все легко и просто. + +## Описание +Приложение генерирует пароли по критериям - длина, наборы символов (цифры, нижний и верхний регистр) +![окно приложения](http://d3j5vwomefv46c.cloudfront.net/photos/large/698564513.png?key=321391&Expires=1354903156&Key-Pair-Id=APKAIYVGSUJFNRFZBBTA&Signature=oioZ320jHXithPdeKfO2jJfrznYcWVG0FT6EDkIWKaop2mNT-UFQrzT0NHYj-zuKSW-Q2fOb0U552d3OHvQ~0~PGWKh6-IyUGcrkyyh7bfvMN-plEk4-shzTYs3Na~PdD0dYVX7Ang44m-X25GV0nFt~RHVPJ4GNkl5sSdcfy70_) + +В окне приложения можно выбрать длину пароля, для этого можно исполльзовать элемент Stepper. +Включая Check Box можно добавлять наборы символов в пароль. _(По умолчанию включены)_ + +При нажатии кнопки "Генерировать" в поле появится новый сгенерированный пароль. +При нажатии на кнопку "✓" пароль скопируется в буфер. diff --git a/passGen/passGen.xcodeproj/project.pbxproj b/passGen/passGen.xcodeproj/project.pbxproj new file mode 100644 index 0000000..aaa57d4 --- /dev/null +++ b/passGen/passGen.xcodeproj/project.pbxproj @@ -0,0 +1,467 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 2140E6B41652999200659CB4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2140E6B31652999200659CB4 /* Cocoa.framework */; }; + 2140E6BE1652999200659CB4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2140E6BC1652999200659CB4 /* InfoPlist.strings */; }; + 2140E6C01652999200659CB4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 2140E6BF1652999200659CB4 /* main.m */; }; + 2140E6C41652999200659CB4 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 2140E6C21652999200659CB4 /* Credits.rtf */; }; + 2140E6C71652999200659CB4 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2140E6C61652999200659CB4 /* AppDelegate.m */; }; + 2140E6CA1652999200659CB4 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2140E6C81652999200659CB4 /* MainMenu.xib */; }; + 2140E6D21652999200659CB4 /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2140E6D11652999200659CB4 /* SenTestingKit.framework */; }; + 2140E6D31652999200659CB4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2140E6B31652999200659CB4 /* Cocoa.framework */; }; + 2140E6DB1652999200659CB4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2140E6D91652999200659CB4 /* InfoPlist.strings */; }; + 2140E6DE1652999200659CB4 /* passGenTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 2140E6DD1652999200659CB4 /* passGenTests.m */; }; + 2140E6F01652B13D00659CB4 /* Model.m in Sources */ = {isa = PBXBuildFile; fileRef = 2140E6EF1652B13D00659CB4 /* Model.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 2140E6D41652999200659CB4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2140E6A61652999200659CB4 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2140E6AE1652999200659CB4; + remoteInfo = passGen; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 2140E6AF1652999200659CB4 /* passGen.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = passGen.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 2140E6B31652999200659CB4 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; + 2140E6B61652999200659CB4 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; + 2140E6B71652999200659CB4 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; + 2140E6B81652999200659CB4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 2140E6BB1652999200659CB4 /* passGen-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "passGen-Info.plist"; sourceTree = ""; }; + 2140E6BD1652999200659CB4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 2140E6BF1652999200659CB4 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + 2140E6C11652999200659CB4 /* passGen-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "passGen-Prefix.pch"; sourceTree = ""; }; + 2140E6C31652999200659CB4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = ""; }; + 2140E6C51652999200659CB4 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; + 2140E6C61652999200659CB4 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; + 2140E6C91652999200659CB4 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = ""; }; + 2140E6D01652999200659CB4 /* passGenTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = passGenTests.octest; sourceTree = BUILT_PRODUCTS_DIR; }; + 2140E6D11652999200659CB4 /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; }; + 2140E6D81652999200659CB4 /* passGenTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "passGenTests-Info.plist"; sourceTree = ""; }; + 2140E6DA1652999200659CB4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 2140E6DC1652999200659CB4 /* passGenTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = passGenTests.h; sourceTree = ""; }; + 2140E6DD1652999200659CB4 /* passGenTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = passGenTests.m; sourceTree = ""; }; + 2140E6EE1652B13D00659CB4 /* Model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Model.h; sourceTree = ""; }; + 2140E6EF1652B13D00659CB4 /* Model.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Model.m; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 2140E6AC1652999200659CB4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 2140E6B41652999200659CB4 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2140E6CC1652999200659CB4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 2140E6D21652999200659CB4 /* SenTestingKit.framework in Frameworks */, + 2140E6D31652999200659CB4 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 2140E6A41652999200659CB4 = { + isa = PBXGroup; + children = ( + 2140E6B91652999200659CB4 /* passGen */, + 2140E6D61652999200659CB4 /* passGenTests */, + 2140E6B21652999200659CB4 /* Frameworks */, + 2140E6B01652999200659CB4 /* Products */, + ); + sourceTree = ""; + }; + 2140E6B01652999200659CB4 /* Products */ = { + isa = PBXGroup; + children = ( + 2140E6AF1652999200659CB4 /* passGen.app */, + 2140E6D01652999200659CB4 /* passGenTests.octest */, + ); + name = Products; + sourceTree = ""; + }; + 2140E6B21652999200659CB4 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 2140E6B31652999200659CB4 /* Cocoa.framework */, + 2140E6D11652999200659CB4 /* SenTestingKit.framework */, + 2140E6B51652999200659CB4 /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; + 2140E6B51652999200659CB4 /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 2140E6B61652999200659CB4 /* AppKit.framework */, + 2140E6B71652999200659CB4 /* CoreData.framework */, + 2140E6B81652999200659CB4 /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 2140E6B91652999200659CB4 /* passGen */ = { + isa = PBXGroup; + children = ( + 2140E6C51652999200659CB4 /* AppDelegate.h */, + 2140E6C61652999200659CB4 /* AppDelegate.m */, + 2140E6C81652999200659CB4 /* MainMenu.xib */, + 2140E6EE1652B13D00659CB4 /* Model.h */, + 2140E6EF1652B13D00659CB4 /* Model.m */, + 2140E6BA1652999200659CB4 /* Supporting Files */, + ); + path = passGen; + sourceTree = ""; + }; + 2140E6BA1652999200659CB4 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 2140E6BB1652999200659CB4 /* passGen-Info.plist */, + 2140E6BC1652999200659CB4 /* InfoPlist.strings */, + 2140E6BF1652999200659CB4 /* main.m */, + 2140E6C11652999200659CB4 /* passGen-Prefix.pch */, + 2140E6C21652999200659CB4 /* Credits.rtf */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 2140E6D61652999200659CB4 /* passGenTests */ = { + isa = PBXGroup; + children = ( + 2140E6DC1652999200659CB4 /* passGenTests.h */, + 2140E6DD1652999200659CB4 /* passGenTests.m */, + 2140E6D71652999200659CB4 /* Supporting Files */, + ); + path = passGenTests; + sourceTree = ""; + }; + 2140E6D71652999200659CB4 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 2140E6D81652999200659CB4 /* passGenTests-Info.plist */, + 2140E6D91652999200659CB4 /* InfoPlist.strings */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 2140E6AE1652999200659CB4 /* passGen */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2140E6E11652999200659CB4 /* Build configuration list for PBXNativeTarget "passGen" */; + buildPhases = ( + 2140E6AB1652999200659CB4 /* Sources */, + 2140E6AC1652999200659CB4 /* Frameworks */, + 2140E6AD1652999200659CB4 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = passGen; + productName = passGen; + productReference = 2140E6AF1652999200659CB4 /* passGen.app */; + productType = "com.apple.product-type.application"; + }; + 2140E6CF1652999200659CB4 /* passGenTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2140E6E41652999200659CB4 /* Build configuration list for PBXNativeTarget "passGenTests" */; + buildPhases = ( + 2140E6CB1652999200659CB4 /* Sources */, + 2140E6CC1652999200659CB4 /* Frameworks */, + 2140E6CD1652999200659CB4 /* Resources */, + 2140E6CE1652999200659CB4 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 2140E6D51652999200659CB4 /* PBXTargetDependency */, + ); + name = passGenTests; + productName = passGenTests; + productReference = 2140E6D01652999200659CB4 /* passGenTests.octest */; + productType = "com.apple.product-type.bundle"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 2140E6A61652999200659CB4 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0450; + ORGANIZATIONNAME = padawan; + }; + buildConfigurationList = 2140E6A91652999200659CB4 /* Build configuration list for PBXProject "passGen" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 2140E6A41652999200659CB4; + productRefGroup = 2140E6B01652999200659CB4 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 2140E6AE1652999200659CB4 /* passGen */, + 2140E6CF1652999200659CB4 /* passGenTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 2140E6AD1652999200659CB4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2140E6BE1652999200659CB4 /* InfoPlist.strings in Resources */, + 2140E6C41652999200659CB4 /* Credits.rtf in Resources */, + 2140E6CA1652999200659CB4 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2140E6CD1652999200659CB4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2140E6DB1652999200659CB4 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 2140E6CE1652999200659CB4 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 2140E6AB1652999200659CB4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2140E6C01652999200659CB4 /* main.m in Sources */, + 2140E6C71652999200659CB4 /* AppDelegate.m in Sources */, + 2140E6F01652B13D00659CB4 /* Model.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2140E6CB1652999200659CB4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2140E6DE1652999200659CB4 /* passGenTests.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 2140E6D51652999200659CB4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 2140E6AE1652999200659CB4 /* passGen */; + targetProxy = 2140E6D41652999200659CB4 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 2140E6BC1652999200659CB4 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 2140E6BD1652999200659CB4 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + 2140E6C21652999200659CB4 /* Credits.rtf */ = { + isa = PBXVariantGroup; + children = ( + 2140E6C31652999200659CB4 /* en */, + ); + name = Credits.rtf; + sourceTree = ""; + }; + 2140E6C81652999200659CB4 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 2140E6C91652999200659CB4 /* en */, + ); + name = MainMenu.xib; + sourceTree = ""; + }; + 2140E6D91652999200659CB4 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 2140E6DA1652999200659CB4 /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 2140E6DF1652999200659CB4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.8; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + }; + name = Debug; + }; + 2140E6E01652999200659CB4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.8; + SDKROOT = macosx; + }; + name = Release; + }; + 2140E6E21652999200659CB4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "passGen/passGen-Prefix.pch"; + INFOPLIST_FILE = "passGen/passGen-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + 2140E6E31652999200659CB4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "passGen/passGen-Prefix.pch"; + INFOPLIST_FILE = "passGen/passGen-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + 2140E6E51652999200659CB4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/passGen.app/Contents/MacOS/passGen"; + COMBINE_HIDPI_IMAGES = YES; + FRAMEWORK_SEARCH_PATHS = "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\""; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "passGen/passGen-Prefix.pch"; + INFOPLIST_FILE = "passGenTests/passGenTests-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUNDLE_LOADER)"; + WRAPPER_EXTENSION = octest; + }; + name = Debug; + }; + 2140E6E61652999200659CB4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/passGen.app/Contents/MacOS/passGen"; + COMBINE_HIDPI_IMAGES = YES; + FRAMEWORK_SEARCH_PATHS = "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\""; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "passGen/passGen-Prefix.pch"; + INFOPLIST_FILE = "passGenTests/passGenTests-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUNDLE_LOADER)"; + WRAPPER_EXTENSION = octest; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 2140E6A91652999200659CB4 /* Build configuration list for PBXProject "passGen" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2140E6DF1652999200659CB4 /* Debug */, + 2140E6E01652999200659CB4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2140E6E11652999200659CB4 /* Build configuration list for PBXNativeTarget "passGen" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2140E6E21652999200659CB4 /* Debug */, + 2140E6E31652999200659CB4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 2140E6E41652999200659CB4 /* Build configuration list for PBXNativeTarget "passGenTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2140E6E51652999200659CB4 /* Debug */, + 2140E6E61652999200659CB4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; +/* End XCConfigurationList section */ + }; + rootObject = 2140E6A61652999200659CB4 /* Project object */; +} diff --git a/passGen/passGen.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/passGen/passGen.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..5cd335a --- /dev/null +++ b/passGen/passGen.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/passGen/passGen.xcodeproj/project.xcworkspace/xcuserdata/padawan.xcuserdatad/UserInterfaceState (2).xcuserstate b/passGen/passGen.xcodeproj/project.xcworkspace/xcuserdata/padawan.xcuserdatad/UserInterfaceState (2).xcuserstate new file mode 100644 index 0000000..14bb9c3 Binary files /dev/null and b/passGen/passGen.xcodeproj/project.xcworkspace/xcuserdata/padawan.xcuserdatad/UserInterfaceState (2).xcuserstate differ diff --git a/passGen/passGen.xcodeproj/project.xcworkspace/xcuserdata/padawan.xcuserdatad/UserInterfaceState.xcuserstate b/passGen/passGen.xcodeproj/project.xcworkspace/xcuserdata/padawan.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..bffc451 Binary files /dev/null and b/passGen/passGen.xcodeproj/project.xcworkspace/xcuserdata/padawan.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/passGen/passGen.xcodeproj/xcuserdata/padawan.xcuserdatad/xcschemes/passGen.xcscheme b/passGen/passGen.xcodeproj/xcuserdata/padawan.xcuserdatad/xcschemes/passGen.xcscheme new file mode 100644 index 0000000..5e6a7cf --- /dev/null +++ b/passGen/passGen.xcodeproj/xcuserdata/padawan.xcuserdatad/xcschemes/passGen.xcscheme @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/passGen/passGen.xcodeproj/xcuserdata/padawan.xcuserdatad/xcschemes/xcschememanagement.plist b/passGen/passGen.xcodeproj/xcuserdata/padawan.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..3f9efeb --- /dev/null +++ b/passGen/passGen.xcodeproj/xcuserdata/padawan.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,27 @@ + + + + + SchemeUserState + + passGen.xcscheme + + orderHint + 0 + + + SuppressBuildableAutocreation + + 2140E6AE1652999200659CB4 + + primary + + + 2140E6CF1652999200659CB4 + + primary + + + + + diff --git a/passGen/passGen/AppDelegate.h b/passGen/passGen/AppDelegate.h new file mode 100644 index 0000000..edd9e09 --- /dev/null +++ b/passGen/passGen/AppDelegate.h @@ -0,0 +1,14 @@ +// +// AppDelegate.h +// passGen +// +// Created by padawan on 13.11.12. +// Copyright (c) 2012 padawan. All rights reserved. +// + +#import + +@interface AppDelegate : NSObject +@property (assign) IBOutlet NSWindow *window; + +@end diff --git a/passGen/passGen/AppDelegate.m b/passGen/passGen/AppDelegate.m new file mode 100644 index 0000000..f0ebb35 --- /dev/null +++ b/passGen/passGen/AppDelegate.m @@ -0,0 +1,17 @@ +// +// AppDelegate.m +// passGen +// +// Created by padawan on 13.11.12. +// Copyright (c) 2012 padawan. All rights reserved. +// + +#import "AppDelegate.h" + +@implementation AppDelegate + +- (void)applicationDidFinishLaunching:(NSNotification *)aNotification +{ + // Insert code here to initialize your application +} +@end diff --git a/passGen/passGen/Model.h b/passGen/passGen/Model.h new file mode 100644 index 0000000..13d8b07 --- /dev/null +++ b/passGen/passGen/Model.h @@ -0,0 +1,18 @@ +// +// Model.h +// passGen +// +// Created by padawan on 13.11.12. +// Copyright (c) 2012 padawan. All rights reserved. +// + +#import +@interface Model : NSObject { + IBOutlet NSNumber *lengthPass; + IBOutlet NSTextField *passwordField; + IBOutlet NSButton *enableUpperCase, *enableLowerCase, *enableNumeric; + NSMutableArray *upperCase, *lowerCase, *numeric; +} +-(IBAction) generate:(id)sender; +-(IBAction)copyToClipboard:(id)sender; +@end diff --git a/passGen/passGen/Model.m b/passGen/passGen/Model.m new file mode 100644 index 0000000..ca6f1fc --- /dev/null +++ b/passGen/passGen/Model.m @@ -0,0 +1,44 @@ +// +// Model.m +// passGen +// +// Created by padawan on 13.11.12. +// Copyright (c) 2012 padawan. All rights reserved. +// + +#import "Model.h" + +@implementation Model +- (id) init { + self = [super init]; + if(self) { + lengthPass = [NSNumber numberWithInt:10]; + lowerCase = [NSMutableArray arrayWithObjects: + @"a", @"b", @"c", @"d", @"e", @"f", @"g", @"h", @"i", @"g", @"k", @"l", @"m", + @"n", @"o", @"p", @"q", @"r", @"s", @"t", @"u", @"v", @"w", @"x", @"y", @"z", + nil]; + upperCase = [NSMutableArray arrayWithObjects: + @"A", @"B", @"C", @"D", @"E", @"F", @"G", @"H", @"I", @"G", @"K", @"L", @"M", + @"N", @"O", @"P", @"Q", @"R", @"S", @"T", @"U", @"V", @"W", @"X", @"Y", @"Z", + nil]; + numeric = [NSMutableArray arrayWithObjects:@"0", @"1", @"2", @"3", @"4", @"5", @"6", @"7", @"8", @"9",nil]; + } + return self; +} + +-(IBAction)generate:(id)sender { + NSString *pass; + pass = [NSString string]; + +// [enableLowerCase intValue]; +// [passwordField setIntValue:1]; + for (int i=0; i<[lengthPass intValue]; i++) { + + } +} + +-(IBAction)copyToClipboard:(id)sender { + +} + +@end diff --git a/passGen/passGen/en.lproj/Credits.rtf b/passGen/passGen/en.lproj/Credits.rtf new file mode 100644 index 0000000..46576ef --- /dev/null +++ b/passGen/passGen/en.lproj/Credits.rtf @@ -0,0 +1,29 @@ +{\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;} +{\colortbl;\red255\green255\blue255;} +\paperw9840\paperh8400 +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural + +\f0\b\fs24 \cf0 Engineering: +\b0 \ + Some people\ +\ + +\b Human Interface Design: +\b0 \ + Some other people\ +\ + +\b Testing: +\b0 \ + Hopefully not nobody\ +\ + +\b Documentation: +\b0 \ + Whoever\ +\ + +\b With special thanks to: +\b0 \ + Mom\ +} diff --git a/passGen/passGen/en.lproj/InfoPlist.strings b/passGen/passGen/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/passGen/passGen/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/passGen/passGen/en.lproj/MainMenu.xib b/passGen/passGen/en.lproj/MainMenu.xib new file mode 100644 index 0000000..b610d9e --- /dev/null +++ b/passGen/passGen/en.lproj/MainMenu.xib @@ -0,0 +1,4663 @@ + + + + 1080 + 12C3006 + 2844 + 1187.34 + 625.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 2844 + + + IBNSLayoutConstraint + NSBox + NSButton + NSButtonCell + NSCustomObject + NSMenu + NSMenuItem + NSStepper + NSStepperCell + NSTextField + NSTextFieldCell + NSUserDefaultsController + NSView + NSWindowTemplate + + + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + + NSApplication + + + FirstResponder + + + NSApplication + + + Model + + + AMainMenu + + + + passGen + + 1048576 + 2147483647 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + submenuAction: + + passGen + + + + About passGen + + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Preferences… + , + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Services + + 1048576 + 2147483647 + + + submenuAction: + + Services + + _NSServicesMenu + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Hide passGen + h + 1048576 + 2147483647 + + + + + + Hide Others + h + 1572864 + 2147483647 + + + + + + Show All + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Quit passGen + q + 1048576 + 2147483647 + + + + + _NSAppleMenu + + + + + File + + 1048576 + 2147483647 + + + submenuAction: + + File + + + + New + n + 1048576 + 2147483647 + + + + + + Open… + o + 1048576 + 2147483647 + + + + + + Open Recent + + 1048576 + 2147483647 + + + submenuAction: + + Open Recent + + + + Clear Menu + + 1048576 + 2147483647 + + + + + _NSRecentDocumentsMenu + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Close + w + 1048576 + 2147483647 + + + + + + Save… + s + 1048576 + 2147483647 + + + + + + Revert to Saved + + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Page Setup... + P + 1179648 + 2147483647 + + + + + + + Print… + p + 1048576 + 2147483647 + + + + + + + + + Edit + + 1048576 + 2147483647 + + + submenuAction: + + Edit + + + + Undo + z + 1048576 + 2147483647 + + + + + + Redo + Z + 1179648 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Cut + x + 1048576 + 2147483647 + + + + + + Copy + c + 1048576 + 2147483647 + + + + + + Paste + v + 1048576 + 2147483647 + + + + + + Paste and Match Style + V + 1572864 + 2147483647 + + + + + + Delete + + 1048576 + 2147483647 + + + + + + Select All + a + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Find + + 1048576 + 2147483647 + + + submenuAction: + + Find + + + + Find… + f + 1048576 + 2147483647 + + + 1 + + + + Find and Replace… + f + 1572864 + 2147483647 + + + 12 + + + + Find Next + g + 1048576 + 2147483647 + + + 2 + + + + Find Previous + G + 1179648 + 2147483647 + + + 3 + + + + Use Selection for Find + e + 1048576 + 2147483647 + + + 7 + + + + Jump to Selection + j + 1048576 + 2147483647 + + + + + + + + + Spelling and Grammar + + 1048576 + 2147483647 + + + submenuAction: + + Spelling and Grammar + + + + Show Spelling and Grammar + : + 1048576 + 2147483647 + + + + + + Check Document Now + ; + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Check Spelling While Typing + + 1048576 + 2147483647 + + + + + + Check Grammar With Spelling + + 1048576 + 2147483647 + + + + + + Correct Spelling Automatically + + 2147483647 + + + + + + + + + Substitutions + + 1048576 + 2147483647 + + + submenuAction: + + Substitutions + + + + Show Substitutions + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Smart Copy/Paste + f + 1048576 + 2147483647 + + + 1 + + + + Smart Quotes + g + 1048576 + 2147483647 + + + 2 + + + + Smart Dashes + + 2147483647 + + + + + + Smart Links + G + 1179648 + 2147483647 + + + 3 + + + + Text Replacement + + 2147483647 + + + + + + + + + Transformations + + 2147483647 + + + submenuAction: + + Transformations + + + + Make Upper Case + + 2147483647 + + + + + + Make Lower Case + + 2147483647 + + + + + + Capitalize + + 2147483647 + + + + + + + + + Speech + + 1048576 + 2147483647 + + + submenuAction: + + Speech + + + + Start Speaking + + 1048576 + 2147483647 + + + + + + Stop Speaking + + 1048576 + 2147483647 + + + + + + + + + + + + Format + + 2147483647 + + + submenuAction: + + Format + + + + Font + + 2147483647 + + + submenuAction: + + Font + + + + Show Fonts + t + 1048576 + 2147483647 + + + + + + Bold + b + 1048576 + 2147483647 + + + 2 + + + + Italic + i + 1048576 + 2147483647 + + + 1 + + + + Underline + u + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Bigger + + + 1048576 + 2147483647 + + + 3 + + + + Smaller + - + 1048576 + 2147483647 + + + 4 + + + + YES + YES + + + 2147483647 + + + + + + Kern + + 2147483647 + + + submenuAction: + + Kern + + + + Use Default + + 2147483647 + + + + + + Use None + + 2147483647 + + + + + + Tighten + + 2147483647 + + + + + + Loosen + + 2147483647 + + + + + + + + + Ligatures + + 2147483647 + + + submenuAction: + + Ligatures + + + + Use Default + + 2147483647 + + + + + + Use None + + 2147483647 + + + + + + Use All + + 2147483647 + + + + + + + + + Baseline + + 2147483647 + + + submenuAction: + + Baseline + + + + Use Default + + 2147483647 + + + + + + Superscript + + 2147483647 + + + + + + Subscript + + 2147483647 + + + + + + Raise + + 2147483647 + + + + + + Lower + + 2147483647 + + + + + + + + + YES + YES + + + 2147483647 + + + + + + Show Colors + C + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Copy Style + c + 1572864 + 2147483647 + + + + + + Paste Style + v + 1572864 + 2147483647 + + + + + _NSFontMenu + + + + + Text + + 2147483647 + + + submenuAction: + + Text + + + + Align Left + { + 1048576 + 2147483647 + + + + + + Center + | + 1048576 + 2147483647 + + + + + + Justify + + 2147483647 + + + + + + Align Right + } + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Writing Direction + + 2147483647 + + + submenuAction: + + Writing Direction + + + + YES + Paragraph + + 2147483647 + + + + + + CURlZmF1bHQ + + 2147483647 + + + + + + CUxlZnQgdG8gUmlnaHQ + + 2147483647 + + + + + + CVJpZ2h0IHRvIExlZnQ + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + YES + Selection + + 2147483647 + + + + + + CURlZmF1bHQ + + 2147483647 + + + + + + CUxlZnQgdG8gUmlnaHQ + + 2147483647 + + + + + + CVJpZ2h0IHRvIExlZnQ + + 2147483647 + + + + + + + + + YES + YES + + + 2147483647 + + + + + + Show Ruler + + 2147483647 + + + + + + Copy Ruler + c + 1310720 + 2147483647 + + + + + + Paste Ruler + v + 1310720 + 2147483647 + + + + + + + + + + + + View + + 1048576 + 2147483647 + + + submenuAction: + + View + + + + Show Toolbar + t + 1572864 + 2147483647 + + + + + + Customize Toolbar… + + 1048576 + 2147483647 + + + + + + + + + Window + + 1048576 + 2147483647 + + + submenuAction: + + Window + + + + Minimize + m + 1048576 + 2147483647 + + + + + + Zoom + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Bring All to Front + + 1048576 + 2147483647 + + + + + _NSWindowsMenu + + + + + Help + + 2147483647 + + + submenuAction: + + Help + + + + passGen Help + ? + 1048576 + 2147483647 + + + + + _NSHelpMenu + + + + _NSMainMenu + + + 7 + 2 + {{335, 390}, {207, 255}} + 1954021376 + passGen + NSWindow + + + + + 256 + + + + 268 + {{17, 190}, {96, 17}} + + + _NS:1535 + YES + + 68157504 + 272630784 + Длина пароля + + LucidaGrande + 13 + 1044 + + _NS:1535 + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + NO + + + + 268 + {{118, 187}, {48, 22}} + + + _NS:9 + YES + + -2075131840 + 71304192 + 10 + + 10 + _NS:9 + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + NO + + + + 268 + {{172, 184}, {19, 27}} + + + _NS:1099 + YES + + 786464 + 0 + _NS:1099 + + 10 + 8 + 20 + 1 + YES + + NO + + + + 268 + {{116, 151}, {47, 18}} + + + _NS:9 + YES + + -2080374784 + 268435456 + A-Z + + _NS:9 + + 1211912448 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + NO + + + + 268 + {{116, 131}, {45, 18}} + + + _NS:9 + YES + + -2080374784 + 268435456 + a-z + + _NS:9 + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{116, 111}, {46, 18}} + + + _NS:9 + YES + + -2080374784 + 268435456 + 0-9 + + _NS:9 + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{17, 153}, {55, 17}} + + + _NS:1535 + YES + + 68157504 + 272630784 + Наборы + + _NS:1535 + + + + + NO + + + + 12 + {{12, 176}, {183, 5}} + + + _NS:9 + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + + 12 + {{12, 102}, {183, 5}} + + + _NS:9 + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + + 268 + {{16, 217}, {175, 33}} + + + _NS:1535 + YES + + 68157504 + 272630784 + ГЕНЕРАТОР ПАРОЛЕЙ + + RussoOne-Regular + 15 + 16 + + _NS:1535 + + + + + NO + + + + 268 + {{22, 49}, {165, 22}} + + + _NS:9 + YES + + -2073034687 + 272630784 + + + пароль будет здесь + _NS:9 + + YES + + + + NO + + + + 268 + {{19, 79}, {80, 17}} + + + _NS:1535 + YES + + 68157504 + 272630784 + Ваш пароль + + _NS:1535 + + + + + NO + + + + 268 + {{16, 13}, {129, 32}} + + + _NS:9 + YES + + 67108864 + 134217728 + Генерировать + + _NS:9 + + 110379008 + 129 + + DQ + 200 + 25 + + NSSound + Purr + + + NO + + + + 268 + {{143, 13}, {50, 32}} + + _NS:9 + YES + + 67108864 + 134217728 + + + _NS:9 + + -2038284288 + 268435585 + Копировать в буфер + с + 200 + 25 + + NSSound + Submarine + + + NO + + + {207, 255} + + + {297, 250} + + {{0, 0}, {1280, 778}} + {10000000000000, 10000000000000} + YES + + + AppDelegate + + + NSFontManager + + + YES + + + + + + + terminate: + + + + 449 + + + + orderFrontStandardAboutPanel: + + + + 142 + + + + delegate + + + + 495 + + + + performMiniaturize: + + + + 37 + + + + arrangeInFront: + + + + 39 + + + + print: + + + + 86 + + + + runPageLayout: + + + + 87 + + + + clearRecentDocuments: + + + + 127 + + + + performClose: + + + + 193 + + + + toggleContinuousSpellChecking: + + + + 222 + + + + undo: + + + + 223 + + + + copy: + + + + 224 + + + + checkSpelling: + + + + 225 + + + + paste: + + + + 226 + + + + stopSpeaking: + + + + 227 + + + + cut: + + + + 228 + + + + showGuessPanel: + + + + 230 + + + + redo: + + + + 231 + + + + selectAll: + + + + 232 + + + + startSpeaking: + + + + 233 + + + + delete: + + + + 235 + + + + performZoom: + + + + 240 + + + + performFindPanelAction: + + + + 241 + + + + centerSelectionInVisibleArea: + + + + 245 + + + + toggleGrammarChecking: + + + + 347 + + + + toggleSmartInsertDelete: + + + + 355 + + + + toggleAutomaticQuoteSubstitution: + + + + 356 + + + + toggleAutomaticLinkDetection: + + + + 357 + + + + saveDocument: + + + + 362 + + + + revertDocumentToSaved: + + + + 364 + + + + runToolbarCustomizationPalette: + + + + 365 + + + + toggleToolbarShown: + + + + 366 + + + + hide: + + + + 367 + + + + hideOtherApplications: + + + + 368 + + + + unhideAllApplications: + + + + 370 + + + + newDocument: + + + + 373 + + + + openDocument: + + + + 374 + + + + raiseBaseline: + + + + 426 + + + + lowerBaseline: + + + + 427 + + + + copyFont: + + + + 428 + + + + subscript: + + + + 429 + + + + superscript: + + + + 430 + + + + tightenKerning: + + + + 431 + + + + underline: + + + + 432 + + + + orderFrontColorPanel: + + + + 433 + + + + useAllLigatures: + + + + 434 + + + + loosenKerning: + + + + 435 + + + + pasteFont: + + + + 436 + + + + unscript: + + + + 437 + + + + useStandardKerning: + + + + 438 + + + + useStandardLigatures: + + + + 439 + + + + turnOffLigatures: + + + + 440 + + + + turnOffKerning: + + + + 441 + + + + toggleAutomaticSpellingCorrection: + + + + 456 + + + + orderFrontSubstitutionsPanel: + + + + 458 + + + + toggleAutomaticDashSubstitution: + + + + 461 + + + + toggleAutomaticTextReplacement: + + + + 463 + + + + uppercaseWord: + + + + 464 + + + + capitalizeWord: + + + + 467 + + + + lowercaseWord: + + + + 468 + + + + pasteAsPlainText: + + + + 486 + + + + performFindPanelAction: + + + + 487 + + + + performFindPanelAction: + + + + 488 + + + + performFindPanelAction: + + + + 489 + + + + showHelp: + + + + 493 + + + + alignCenter: + + + + 518 + + + + pasteRuler: + + + + 519 + + + + toggleRuler: + + + + 520 + + + + alignRight: + + + + 521 + + + + copyRuler: + + + + 522 + + + + alignJustified: + + + + 523 + + + + alignLeft: + + + + 524 + + + + makeBaseWritingDirectionNatural: + + + + 525 + + + + makeBaseWritingDirectionLeftToRight: + + + + 526 + + + + makeBaseWritingDirectionRightToLeft: + + + + 527 + + + + makeTextWritingDirectionNatural: + + + + 528 + + + + makeTextWritingDirectionLeftToRight: + + + + 529 + + + + makeTextWritingDirectionRightToLeft: + + + + 530 + + + + performFindPanelAction: + + + + 535 + + + + addFontTrait: + + + + 421 + + + + addFontTrait: + + + + 422 + + + + modifyFont: + + + + 423 + + + + orderFrontFontPanel: + + + + 424 + + + + modifyFont: + + + + 425 + + + + window + + + + 532 + + + + generate: + + + + 911 + + + + copyToClipboard: + + + + 912 + + + + passwordField + + + + 913 + + + + enableLowerCase + + + + 914 + + + + enableNumeric + + + + 915 + + + + enableUpperCase + + + + 916 + + + + value: lengthPass + + + + + + value: lengthPass + value + lengthPass + 2 + + + 705 + + + + value: lengthPass + + + + + + value: lengthPass + value + lengthPass + 2 + + + 717 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 29 + + + + + + + + + + + + + + 19 + + + + + + + + 56 + + + + + + + + 217 + + + + + + + + 83 + + + + + + + + 81 + + + + + + + + + + + + + + + + + 75 + + + + + 78 + + + + + 72 + + + + + 82 + + + + + 124 + + + + + + + + 77 + + + + + 73 + + + + + 79 + + + + + 112 + + + + + 74 + + + + + 125 + + + + + + + + 126 + + + + + 205 + + + + + + + + + + + + + + + + + + + + + + 202 + + + + + 198 + + + + + 207 + + + + + 214 + + + + + 199 + + + + + 203 + + + + + 197 + + + + + 206 + + + + + 215 + + + + + 218 + + + + + + + + 216 + + + + + + + + 200 + + + + + + + + + + + + + 219 + + + + + 201 + + + + + 204 + + + + + 220 + + + + + + + + + + + + + 213 + + + + + 210 + + + + + 221 + + + + + 208 + + + + + 209 + + + + + 57 + + + + + + + + + + + + + + + + + + 58 + + + + + 134 + + + + + 150 + + + + + 136 + + + + + 144 + + + + + 129 + + + + + 143 + + + + + 236 + + + + + 131 + + + + + + + + 149 + + + + + 145 + + + + + 130 + + + + + 24 + + + + + + + + + + + 92 + + + + + 5 + + + + + 239 + + + + + 23 + + + + + 295 + + + + + + + + 296 + + + + + + + + + 297 + + + + + 298 + + + + + 211 + + + + + + + + 212 + + + + + + + + + 195 + + + + + 196 + + + + + 346 + + + + + 348 + + + + + + + + 349 + + + + + + + + + + + + + + 350 + + + + + 351 + + + + + 354 + + + + + 371 + + + + + + + + 372 + + + + + 4 + 0 + + 4 + 1 + + 20 + + 1000 + + 8 + 29 + 3 + + + + 6 + 0 + + 6 + 1 + + 20 + + 1000 + + 8 + 29 + 3 + + + + 4 + 0 + + 4 + 1 + + 20 + + 1000 + + 8 + 29 + 3 + + + + 5 + 0 + + 5 + 1 + + 0.0 + + 1000 + + 6 + 24 + 2 + + + + 3 + 0 + + 4 + 1 + + 8 + + 1000 + + 6 + 24 + 3 + + + + 6 + 0 + + 6 + 1 + + 20 + + 1000 + + 8 + 29 + 3 + + + + 3 + 0 + + 4 + 1 + + 8 + + 1000 + + 6 + 24 + 3 + + + + 5 + 0 + + 5 + 1 + + 0.0 + + 1000 + + 6 + 24 + 2 + + + + 6 + 0 + + 6 + 1 + + 0.0 + + 1000 + + 6 + 24 + 2 + + + + 3 + 0 + + 4 + 1 + + 8 + + 1000 + + 6 + 24 + 3 + + + + 3 + 0 + + 4 + 1 + + 6 + + 1000 + + 6 + 24 + 3 + + + + 3 + 0 + + 4 + 1 + + 8 + + 1000 + + 6 + 24 + 3 + + + + 5 + 0 + + 5 + 1 + + 0.0 + + 1000 + + 6 + 24 + 2 + + + + 5 + 0 + + 5 + 1 + + 0.0 + + 1000 + + 6 + 24 + 2 + + + + 3 + 0 + + 4 + 1 + + 6 + + 1000 + + 6 + 24 + 3 + + + + 3 + 0 + + 4 + 1 + + 8 + + 1000 + + 6 + 24 + 3 + + + + 6 + 0 + + 6 + 1 + + 12 + + 1000 + + 8 + 29 + 3 + + + + 5 + 0 + + 5 + 1 + + 12 + + 1000 + + 8 + 29 + 3 + + + + 4 + 0 + + 4 + 1 + + 0.0 + + 1000 + + 6 + 24 + 2 + + + + 5 + 0 + + 5 + 1 + + 0.0 + + 1000 + + 6 + 24 + 2 + + + + 3 + 0 + + 4 + 1 + + 8 + + 1000 + + 6 + 24 + 3 + + + + 10 + 0 + + 10 + 1 + + 0.0 + + 1000 + + 6 + 24 + 2 + + + + 5 + 0 + + 6 + 1 + + 8 + + 1000 + + 6 + 24 + 3 + + + + 5 + 0 + + 5 + 1 + + 20 + + 1000 + + 8 + 29 + 3 + + + + 3 + 0 + + 4 + 1 + + 8 + + 1000 + + 6 + 24 + 3 + + + + 6 + 0 + + 6 + 1 + + 12 + + 1000 + + 8 + 29 + 3 + + + + 5 + 0 + + 5 + 1 + + 12 + + 1000 + + 8 + 29 + 3 + + + + 3 + 0 + + 4 + 1 + + 8 + + 1000 + + 6 + 24 + 3 + + + + 5 + 0 + + 5 + 1 + + 20 + + 1000 + + 8 + 29 + 3 + + + + 9 + 0 + + 9 + 1 + + 0.0 + + 1000 + + 6 + 24 + 2 + + + + + + + + + + + + + + + + + + + + 375 + + + + + + + + 376 + + + + + + + + + 377 + + + + + + + + 388 + + + + + + + + + + + + + + + + + + + + + + + 389 + + + + + 390 + + + + + 391 + + + + + 392 + + + + + 393 + + + + + 394 + + + + + 395 + + + + + 396 + + + + + 397 + + + + + + + + 398 + + + + + + + + 399 + + + + + + + + 400 + + + + + 401 + + + + + 402 + + + + + 403 + + + + + 404 + + + + + 405 + + + + + + + + + + + + 406 + + + + + 407 + + + + + 408 + + + + + 409 + + + + + 410 + + + + + 411 + + + + + + + + + + 412 + + + + + 413 + + + + + 414 + + + + + 415 + + + + + + + + + + + 416 + + + + + 417 + + + + + 418 + + + + + 419 + + + + + 420 + + + + + 450 + + + + + + + + 451 + + + + + + + + + + 452 + + + + + 453 + + + + + 454 + + + + + 457 + + + + + 459 + + + + + 460 + + + + + 462 + + + + + 465 + + + + + 466 + + + + + 485 + + + + + 490 + + + + + + + + 491 + + + + + + + + 492 + + + + + 494 + + + + + 496 + + + + + + + + 497 + + + + + + + + + + + + + + + + + 498 + + + + + 499 + + + + + 500 + + + + + 501 + + + + + 502 + + + + + 503 + + + + + + + + 504 + + + + + 505 + + + + + 506 + + + + + 507 + + + + + 508 + + + + + + + + + + + + + + + + 509 + + + + + 510 + + + + + 511 + + + + + 512 + + + + + 513 + + + + + 514 + + + + + 515 + + + + + 516 + + + + + 517 + + + + + 534 + + + + + 541 + + + + + + + + 542 + + + + + 656 + + + + + 657 + + + + + 683 + + + + + + 7 + 0 + + 0 + 1 + + 48 + + 1000 + + 3 + 9 + 1 + + + + + + 684 + + + + + 693 + + + + + 700 + + + + + 706 + + + + + + + + 707 + + + + + 737 + + + + + + + + 738 + + + + + 741 + + + + + + + + 742 + + + + + 745 + + + + + + + + 746 + + + + + 749 + + + + + + + + 750 + + + + + 754 + + + + + 758 + + + + + 782 + + + + + 784 + + + + + 786 + + + + + 803 + + + + + 805 + + + + + 806 + + + + + 808 + + + + + 810 + + + + + 816 + + + + + 818 + + + + + 819 + + + + + 823 + + + + + 824 + + + + + 825 + + + + + 826 + + + + + 827 + + + + + 852 + + + + + + 8 + 0 + + 0 + 1 + + 33 + + 1000 + + 3 + 9 + 1 + + + + + + 853 + + + + + 859 + + + + + 863 + + + + + 866 + + + + + 867 + + + + + 868 + + + + + + 7 + 0 + + 0 + 1 + + 165 + + 1000 + + 3 + 9 + 1 + + + + + + 869 + + + + + 875 + + + + + + + + 876 + + + + + 878 + + + + + 879 + + + + + 880 + + + + + 883 + + + + + 884 + + + + + 885 + + + + + + + + 886 + + + + + 887 + + + + + 888 + + + + + 895 + + + + + + + + 896 + + + + + 901 + + + + + 902 + + + + + 903 + + + + + 909 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{380, 496}, {480, 360}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + от 8 до 20 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + AccessibilityHelp + + фы + + + ToolTip + + Копировать в буфер + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 916 + + + 0 + IBCocoaFramework + YES + 3 + + {11, 11} + {10, 3} + {15, 15} + + YES + + diff --git a/passGen/passGen/main.m b/passGen/passGen/main.m new file mode 100644 index 0000000..18d0fe9 --- /dev/null +++ b/passGen/passGen/main.m @@ -0,0 +1,14 @@ +// +// main.m +// passGen +// +// Created by padawan on 13.11.12. +// Copyright (c) 2012 padawan. All rights reserved. +// + +#import + +int main(int argc, char *argv[]) +{ + return NSApplicationMain(argc, (const char **)argv); +} diff --git a/passGen/passGen/passGen-Info.plist b/passGen/passGen/passGen-Info.plist new file mode 100644 index 0000000..62c5519 --- /dev/null +++ b/passGen/passGen/passGen-Info.plist @@ -0,0 +1,34 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + newitem.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + LSMinimumSystemVersion + ${MACOSX_DEPLOYMENT_TARGET} + NSHumanReadableCopyright + Copyright © 2012 padawan. All rights reserved. + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/passGen/passGen/passGen-Prefix.pch b/passGen/passGen/passGen-Prefix.pch new file mode 100644 index 0000000..e5f3521 --- /dev/null +++ b/passGen/passGen/passGen-Prefix.pch @@ -0,0 +1,7 @@ +// +// Prefix header for all source files of the 'passGen' target in the 'passGen' project +// + +#ifdef __OBJC__ + #import +#endif diff --git a/passGen/passGenTests/en.lproj/InfoPlist.strings b/passGen/passGenTests/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/passGen/passGenTests/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/passGen/passGenTests/passGenTests-Info.plist b/passGen/passGenTests/passGenTests-Info.plist new file mode 100644 index 0000000..b87d27a --- /dev/null +++ b/passGen/passGenTests/passGenTests-Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + newitem.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/passGen/passGenTests/passGenTests.h b/passGen/passGenTests/passGenTests.h new file mode 100644 index 0000000..70d4b01 --- /dev/null +++ b/passGen/passGenTests/passGenTests.h @@ -0,0 +1,13 @@ +// +// passGenTests.h +// passGenTests +// +// Created by padawan on 13.11.12. +// Copyright (c) 2012 padawan. All rights reserved. +// + +#import + +@interface passGenTests : SenTestCase + +@end diff --git a/passGen/passGenTests/passGenTests.m b/passGen/passGenTests/passGenTests.m new file mode 100644 index 0000000..4591503 --- /dev/null +++ b/passGen/passGenTests/passGenTests.m @@ -0,0 +1,32 @@ +// +// passGenTests.m +// passGenTests +// +// Created by padawan on 13.11.12. +// Copyright (c) 2012 padawan. All rights reserved. +// + +#import "passGenTests.h" + +@implementation passGenTests + +- (void)setUp +{ + [super setUp]; + + // Set-up code here. +} + +- (void)tearDown +{ + // Tear-down code here. + + [super tearDown]; +} + +- (void)testExample +{ + STFail(@"Unit tests are not implemented yet in passGenTests"); +} + +@end