mt-libuv 4.1.0 → 4.1.03
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/ext/Rakefile +1 -1
- data/ext/gyp/.gitignore +1 -0
- data/ext/gyp/AUTHORS +17 -0
- data/ext/gyp/DEPS +23 -0
- data/ext/gyp/LICENSE +27 -0
- data/ext/gyp/OWNERS +1 -0
- data/ext/gyp/PRESUBMIT.py +125 -0
- data/ext/gyp/README.md +5 -0
- data/ext/gyp/buildbot/buildbot_run.py +138 -0
- data/ext/gyp/buildbot/commit_queue/OWNERS +6 -0
- data/ext/gyp/buildbot/commit_queue/README +3 -0
- data/ext/gyp/buildbot/commit_queue/cq_config.json +15 -0
- data/ext/gyp/buildbot/travis-checkout.sh +27 -0
- data/ext/gyp/buildbot/travis-test.sh +12 -0
- data/ext/gyp/codereview.settings +6 -0
- data/ext/gyp/data/win/large-pdb-shim.cc +12 -0
- data/ext/gyp/gyp +8 -0
- data/ext/gyp/gyp.bat +5 -0
- data/ext/gyp/gyp_main.py +16 -0
- data/ext/gyp/gyptest.py +243 -0
- data/ext/gyp/pylib/gyp/MSVSNew.py +353 -0
- data/ext/gyp/pylib/gyp/MSVSProject.py +208 -0
- data/ext/gyp/pylib/gyp/MSVSSettings.py +1106 -0
- data/ext/gyp/pylib/gyp/MSVSSettings_test.py +1486 -0
- data/ext/gyp/pylib/gyp/MSVSToolFile.py +58 -0
- data/ext/gyp/pylib/gyp/MSVSUserFile.py +147 -0
- data/ext/gyp/pylib/gyp/MSVSUtil.py +271 -0
- data/ext/gyp/pylib/gyp/MSVSVersion.py +504 -0
- data/ext/gyp/pylib/gyp/__init__.py +555 -0
- data/ext/gyp/pylib/gyp/common.py +619 -0
- data/ext/gyp/pylib/gyp/common_test.py +73 -0
- data/ext/gyp/pylib/gyp/easy_xml.py +170 -0
- data/ext/gyp/pylib/gyp/easy_xml_test.py +106 -0
- data/ext/gyp/pylib/gyp/flock_tool.py +54 -0
- data/ext/gyp/pylib/gyp/generator/__init__.py +0 -0
- data/ext/gyp/pylib/gyp/generator/analyzer.py +744 -0
- data/ext/gyp/pylib/gyp/generator/cmake.py +1256 -0
- data/ext/gyp/pylib/gyp/generator/dump_dependency_json.py +101 -0
- data/ext/gyp/pylib/gyp/generator/eclipse.py +425 -0
- data/ext/gyp/pylib/gyp/generator/gypd.py +94 -0
- data/ext/gyp/pylib/gyp/generator/gypsh.py +56 -0
- data/ext/gyp/pylib/gyp/generator/make.py +2260 -0
- data/ext/gyp/pylib/gyp/generator/msvs.py +3537 -0
- data/ext/gyp/pylib/gyp/generator/msvs_test.py +40 -0
- data/ext/gyp/pylib/gyp/generator/ninja.py +2500 -0
- data/ext/gyp/pylib/gyp/generator/ninja_test.py +46 -0
- data/ext/gyp/pylib/gyp/generator/xcode.py +1302 -0
- data/ext/gyp/pylib/gyp/generator/xcode_test.py +23 -0
- data/ext/gyp/pylib/gyp/input.py +2908 -0
- data/ext/gyp/pylib/gyp/input_test.py +90 -0
- data/ext/gyp/pylib/gyp/mac_tool.py +721 -0
- data/ext/gyp/pylib/gyp/msvs_emulation.py +1112 -0
- data/ext/gyp/pylib/gyp/ninja_syntax.py +168 -0
- data/ext/gyp/pylib/gyp/simple_copy.py +57 -0
- data/ext/gyp/pylib/gyp/win_tool.py +326 -0
- data/ext/gyp/pylib/gyp/xcode_emulation.py +1800 -0
- data/ext/gyp/pylib/gyp/xcode_ninja.py +289 -0
- data/ext/gyp/pylib/gyp/xcodeproj_file.py +2995 -0
- data/ext/gyp/pylib/gyp/xml_fix.py +68 -0
- data/ext/gyp/samples/samples +83 -0
- data/ext/gyp/samples/samples.bat +5 -0
- data/ext/gyp/setup.py +19 -0
- data/ext/gyp/test/actions/generated-header/action.py +11 -0
- data/ext/gyp/test/actions/generated-header/main.cc +7 -0
- data/ext/gyp/test/actions/generated-header/test.gyp +34 -0
- data/ext/gyp/test/actions/gyptest-all.py +101 -0
- data/ext/gyp/test/actions/gyptest-default.py +68 -0
- data/ext/gyp/test/actions/gyptest-errors.py +24 -0
- data/ext/gyp/test/actions/gyptest-generated-header.py +38 -0
- data/ext/gyp/test/actions/src/action_missing_name.gyp +24 -0
- data/ext/gyp/test/actions/src/actions.gyp +114 -0
- data/ext/gyp/test/actions/src/confirm-dep-files.py +21 -0
- data/ext/gyp/test/actions/src/subdir1/counter.py +44 -0
- data/ext/gyp/test/actions/src/subdir1/executable.gyp +74 -0
- data/ext/gyp/test/actions/src/subdir1/make-prog1.py +20 -0
- data/ext/gyp/test/actions/src/subdir1/make-prog2.py +20 -0
- data/ext/gyp/test/actions/src/subdir1/program.c +12 -0
- data/ext/gyp/test/actions/src/subdir2/make-file.py +11 -0
- data/ext/gyp/test/actions/src/subdir2/none.gyp +33 -0
- data/ext/gyp/test/actions/src/subdir3/generate_main.py +21 -0
- data/ext/gyp/test/actions/src/subdir3/null_input.gyp +29 -0
- data/ext/gyp/test/actions-bare/gyptest-bare.py +24 -0
- data/ext/gyp/test/actions-bare/src/bare.gyp +25 -0
- data/ext/gyp/test/actions-bare/src/bare.py +11 -0
- data/ext/gyp/test/actions-depfile/depfile.gyp +42 -0
- data/ext/gyp/test/actions-depfile/gyptest-all.py +30 -0
- data/ext/gyp/test/actions-depfile/input.txt +1 -0
- data/ext/gyp/test/actions-depfile/touch.py +18 -0
- data/ext/gyp/test/actions-multiple/gyptest-all.py +72 -0
- data/ext/gyp/test/actions-multiple/src/actions.gyp +226 -0
- data/ext/gyp/test/actions-multiple/src/copyfile.py +9 -0
- data/ext/gyp/test/actions-multiple/src/filter.py +12 -0
- data/ext/gyp/test/actions-multiple/src/foo.c +11 -0
- data/ext/gyp/test/actions-multiple/src/input.txt +1 -0
- data/ext/gyp/test/actions-multiple/src/main.c +22 -0
- data/ext/gyp/test/actions-multiple-outputs/gyptest-multiple-outputs.py +45 -0
- data/ext/gyp/test/actions-multiple-outputs/src/multiple-outputs.gyp +23 -0
- data/ext/gyp/test/actions-multiple-outputs/src/touch.py +16 -0
- data/ext/gyp/test/actions-multiple-outputs-with-dependencies/gyptest-action.py +45 -0
- data/ext/gyp/test/actions-multiple-outputs-with-dependencies/src/action.gyp +28 -0
- data/ext/gyp/test/actions-multiple-outputs-with-dependencies/src/rcopy.py +20 -0
- data/ext/gyp/test/actions-none/gyptest-none.py +24 -0
- data/ext/gyp/test/actions-none/src/fake_cross.py +12 -0
- data/ext/gyp/test/actions-none/src/foo.cc +1 -0
- data/ext/gyp/test/actions-none/src/none_with_source_files.gyp +35 -0
- data/ext/gyp/test/actions-subdir/gyptest-action.py +26 -0
- data/ext/gyp/test/actions-subdir/src/make-file.py +11 -0
- data/ext/gyp/test/actions-subdir/src/none.gyp +31 -0
- data/ext/gyp/test/actions-subdir/src/subdir/make-subdir-file.py +11 -0
- data/ext/gyp/test/actions-subdir/src/subdir/subdir.gyp +28 -0
- data/ext/gyp/test/additional-targets/gyptest-additional.py +63 -0
- data/ext/gyp/test/additional-targets/src/all.gyp +13 -0
- data/ext/gyp/test/additional-targets/src/dir1/actions.gyp +56 -0
- data/ext/gyp/test/additional-targets/src/dir1/emit.py +11 -0
- data/ext/gyp/test/additional-targets/src/dir1/lib1.c +6 -0
- data/ext/gyp/test/analyzer/common.gypi +6 -0
- data/ext/gyp/test/analyzer/gyptest-analyzer.py +427 -0
- data/ext/gyp/test/analyzer/static_library_test.gyp +34 -0
- data/ext/gyp/test/analyzer/subdir/subdir.gyp +36 -0
- data/ext/gyp/test/analyzer/subdir/subdir2/subdir2.gyp +15 -0
- data/ext/gyp/test/analyzer/subdir2/subdir.gyp +18 -0
- data/ext/gyp/test/analyzer/subdir2/subdir.includes.gypi +9 -0
- data/ext/gyp/test/analyzer/test.gyp +114 -0
- data/ext/gyp/test/analyzer/test2.gyp +25 -0
- data/ext/gyp/test/analyzer/test2.includes.gypi +13 -0
- data/ext/gyp/test/analyzer/test2.includes.includes.gypi +9 -0
- data/ext/gyp/test/analyzer/test2.toplevel_includes.gypi +15 -0
- data/ext/gyp/test/analyzer/test3.gyp +77 -0
- data/ext/gyp/test/analyzer/test4.gyp +80 -0
- data/ext/gyp/test/analyzer/test5.gyp +25 -0
- data/ext/gyp/test/arflags/gyptest-arflags.py +26 -0
- data/ext/gyp/test/arflags/lib.cc +0 -0
- data/ext/gyp/test/arflags/test.gyp +10 -0
- data/ext/gyp/test/assembly/gyptest-assembly.py +31 -0
- data/ext/gyp/test/assembly/gyptest-override.py +24 -0
- data/ext/gyp/test/assembly/src/as.bat +4 -0
- data/ext/gyp/test/assembly/src/assembly.gyp +62 -0
- data/ext/gyp/test/assembly/src/lib1.S +15 -0
- data/ext/gyp/test/assembly/src/lib1.c +3 -0
- data/ext/gyp/test/assembly/src/override.gyp +34 -0
- data/ext/gyp/test/assembly/src/override_asm.asm +8 -0
- data/ext/gyp/test/assembly/src/program.c +12 -0
- data/ext/gyp/test/build-option/gyptest-build.py +27 -0
- data/ext/gyp/test/build-option/hello.c +13 -0
- data/ext/gyp/test/build-option/hello.gyp +15 -0
- data/ext/gyp/test/builddir/gyptest-all.py +85 -0
- data/ext/gyp/test/builddir/gyptest-default.py +85 -0
- data/ext/gyp/test/builddir/src/builddir.gypi +18 -0
- data/ext/gyp/test/builddir/src/func1.c +6 -0
- data/ext/gyp/test/builddir/src/func2.c +6 -0
- data/ext/gyp/test/builddir/src/func3.c +6 -0
- data/ext/gyp/test/builddir/src/func4.c +6 -0
- data/ext/gyp/test/builddir/src/func5.c +6 -0
- data/ext/gyp/test/builddir/src/prog1.c +10 -0
- data/ext/gyp/test/builddir/src/prog1.gyp +30 -0
- data/ext/gyp/test/builddir/src/subdir2/prog2.c +10 -0
- data/ext/gyp/test/builddir/src/subdir2/prog2.gyp +19 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/prog3.c +10 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/prog3.gyp +19 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.c +10 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.gyp +19 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.c +10 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.gyp +19 -0
- data/ext/gyp/test/cflags/cflags.c +15 -0
- data/ext/gyp/test/cflags/cflags.gyp +23 -0
- data/ext/gyp/test/cflags/gyptest-cflags.py +75 -0
- data/ext/gyp/test/compilable/gyptest-headers.py +29 -0
- data/ext/gyp/test/compilable/src/headers.gyp +26 -0
- data/ext/gyp/test/compilable/src/lib1.cpp +7 -0
- data/ext/gyp/test/compilable/src/lib1.hpp +6 -0
- data/ext/gyp/test/compilable/src/program.cpp +9 -0
- data/ext/gyp/test/compiler-override/compiler-exe.gyp +16 -0
- data/ext/gyp/test/compiler-override/compiler-global-settings.gyp.in +34 -0
- data/ext/gyp/test/compiler-override/compiler-host.gyp +17 -0
- data/ext/gyp/test/compiler-override/compiler-shared-lib.gyp +16 -0
- data/ext/gyp/test/compiler-override/cxxtest.cc +7 -0
- data/ext/gyp/test/compiler-override/gyptest-compiler-env-toolchain.py +78 -0
- data/ext/gyp/test/compiler-override/gyptest-compiler-env.py +110 -0
- data/ext/gyp/test/compiler-override/gyptest-compiler-global-settings.py +82 -0
- data/ext/gyp/test/compiler-override/my_cc.py +7 -0
- data/ext/gyp/test/compiler-override/my_cxx.py +7 -0
- data/ext/gyp/test/compiler-override/my_ld.py +7 -0
- data/ext/gyp/test/compiler-override/my_nm.py +9 -0
- data/ext/gyp/test/compiler-override/my_readelf.py +9 -0
- data/ext/gyp/test/compiler-override/test.c +7 -0
- data/ext/gyp/test/conditions/elseif/elseif.gyp +43 -0
- data/ext/gyp/test/conditions/elseif/elseif_bad1.gyp +20 -0
- data/ext/gyp/test/conditions/elseif/elseif_bad2.gyp +22 -0
- data/ext/gyp/test/conditions/elseif/elseif_bad3.gyp +23 -0
- data/ext/gyp/test/conditions/elseif/elseif_conditions.gypi +15 -0
- data/ext/gyp/test/conditions/elseif/gyptest_elseif.py +33 -0
- data/ext/gyp/test/conditions/elseif/program.cc +10 -0
- data/ext/gyp/test/configurations/basics/configurations.c +15 -0
- data/ext/gyp/test/configurations/basics/configurations.gyp +32 -0
- data/ext/gyp/test/configurations/basics/gyptest-configurations.py +29 -0
- data/ext/gyp/test/configurations/inheritance/configurations.c +21 -0
- data/ext/gyp/test/configurations/inheritance/configurations.gyp +40 -0
- data/ext/gyp/test/configurations/inheritance/duplicates.gyp +27 -0
- data/ext/gyp/test/configurations/inheritance/duplicates.gypd.golden +12 -0
- data/ext/gyp/test/configurations/inheritance/gyptest-duplicates.py +36 -0
- data/ext/gyp/test/configurations/inheritance/gyptest-inheritance.py +33 -0
- data/ext/gyp/test/configurations/invalid/actions.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/all_dependent_settings.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/configurations.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/dependencies.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/direct_dependent_settings.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/gyptest-configurations.py +36 -0
- data/ext/gyp/test/configurations/invalid/libraries.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/link_settings.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/sources.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/standalone_static_library.gyp +17 -0
- data/ext/gyp/test/configurations/invalid/target_name.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/type.gyp +18 -0
- data/ext/gyp/test/configurations/target_platform/configurations.gyp +58 -0
- data/ext/gyp/test/configurations/target_platform/front.c +8 -0
- data/ext/gyp/test/configurations/target_platform/gyptest-target_platform.py +40 -0
- data/ext/gyp/test/configurations/target_platform/left.c +3 -0
- data/ext/gyp/test/configurations/target_platform/right.c +3 -0
- data/ext/gyp/test/configurations/x64/configurations.c +12 -0
- data/ext/gyp/test/configurations/x64/configurations.gyp +38 -0
- data/ext/gyp/test/configurations/x64/gyptest-x86.py +31 -0
- data/ext/gyp/test/copies/gyptest-all.py +42 -0
- data/ext/gyp/test/copies/gyptest-attribs.py +41 -0
- data/ext/gyp/test/copies/gyptest-default.py +42 -0
- data/ext/gyp/test/copies/gyptest-samedir.py +28 -0
- data/ext/gyp/test/copies/gyptest-slash.py +39 -0
- data/ext/gyp/test/copies/gyptest-sourceless-shared-lib.py +20 -0
- data/ext/gyp/test/copies/gyptest-updir.py +32 -0
- data/ext/gyp/test/copies/src/copies-attribs.gyp +20 -0
- data/ext/gyp/test/copies/src/copies-samedir.gyp +37 -0
- data/ext/gyp/test/copies/src/copies-slash.gyp +36 -0
- data/ext/gyp/test/copies/src/copies-sourceless-shared-lib.gyp +27 -0
- data/ext/gyp/test/copies/src/copies-updir.gyp +21 -0
- data/ext/gyp/test/copies/src/copies.gyp +70 -0
- data/ext/gyp/test/copies/src/directory/file3 +1 -0
- data/ext/gyp/test/copies/src/directory/file4 +1 -0
- data/ext/gyp/test/copies/src/directory/subdir/file5 +1 -0
- data/ext/gyp/test/copies/src/executable-file.sh +3 -0
- data/ext/gyp/test/copies/src/file1 +1 -0
- data/ext/gyp/test/copies/src/file2 +1 -0
- data/ext/gyp/test/copies/src/foo.c +13 -0
- data/ext/gyp/test/copies/src/parentdir/subdir/file6 +1 -0
- data/ext/gyp/test/custom-generator/gyptest-custom-generator.py +18 -0
- data/ext/gyp/test/custom-generator/mygenerator.py +14 -0
- data/ext/gyp/test/custom-generator/test.gyp +15 -0
- data/ext/gyp/test/cxxflags/cxxflags.cc +15 -0
- data/ext/gyp/test/cxxflags/cxxflags.gyp +15 -0
- data/ext/gyp/test/cxxflags/gyptest-cxxflags.py +45 -0
- data/ext/gyp/test/defines/defines-env.gyp +22 -0
- data/ext/gyp/test/defines/defines.c +23 -0
- data/ext/gyp/test/defines/defines.gyp +38 -0
- data/ext/gyp/test/defines/gyptest-define-override.py +43 -0
- data/ext/gyp/test/defines/gyptest-defines-env-regyp.py +51 -0
- data/ext/gyp/test/defines/gyptest-defines-env.py +85 -0
- data/ext/gyp/test/defines/gyptest-defines.py +39 -0
- data/ext/gyp/test/defines-escaping/defines-escaping.c +11 -0
- data/ext/gyp/test/defines-escaping/defines-escaping.gyp +19 -0
- data/ext/gyp/test/defines-escaping/gyptest-defines-escaping.py +184 -0
- data/ext/gyp/test/dependencies/a.c +9 -0
- data/ext/gyp/test/dependencies/adso/all_dependent_settings_order.gyp +45 -0
- data/ext/gyp/test/dependencies/adso/write_args.py +11 -0
- data/ext/gyp/test/dependencies/b/b.c +3 -0
- data/ext/gyp/test/dependencies/b/b.gyp +22 -0
- data/ext/gyp/test/dependencies/b/b3.c +9 -0
- data/ext/gyp/test/dependencies/c/c.c +4 -0
- data/ext/gyp/test/dependencies/c/c.gyp +22 -0
- data/ext/gyp/test/dependencies/c/d.c +3 -0
- data/ext/gyp/test/dependencies/double_dependency.gyp +23 -0
- data/ext/gyp/test/dependencies/double_dependent.gyp +12 -0
- data/ext/gyp/test/dependencies/extra_targets.gyp +18 -0
- data/ext/gyp/test/dependencies/gyptest-all-dependent-settings-order.py +19 -0
- data/ext/gyp/test/dependencies/gyptest-double-dependency.py +19 -0
- data/ext/gyp/test/dependencies/gyptest-extra-targets.py +22 -0
- data/ext/gyp/test/dependencies/gyptest-indirect-module-dependency.py +22 -0
- data/ext/gyp/test/dependencies/gyptest-lib-only.py +39 -0
- data/ext/gyp/test/dependencies/gyptest-none-traversal.py +25 -0
- data/ext/gyp/test/dependencies/gyptest-sharedlib-linksettings.py +21 -0
- data/ext/gyp/test/dependencies/lib_only.gyp +16 -0
- data/ext/gyp/test/dependencies/main.c +14 -0
- data/ext/gyp/test/dependencies/module-dep/a.cc +7 -0
- data/ext/gyp/test/dependencies/module-dep/dll.cc +9 -0
- data/ext/gyp/test/dependencies/module-dep/exe.cc +7 -0
- data/ext/gyp/test/dependencies/module-dep/indirect-module-dependency.gyp +37 -0
- data/ext/gyp/test/dependencies/none_traversal.gyp +46 -0
- data/ext/gyp/test/dependencies/sharedlib-linksettings/program.c +25 -0
- data/ext/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c +16 -0
- data/ext/gyp/test/dependencies/sharedlib-linksettings/staticlib.c +24 -0
- data/ext/gyp/test/dependencies/sharedlib-linksettings/test.gyp +37 -0
- data/ext/gyp/test/dependency-copy/gyptest-copy.py +26 -0
- data/ext/gyp/test/dependency-copy/src/copies.gyp +25 -0
- data/ext/gyp/test/dependency-copy/src/file1.c +7 -0
- data/ext/gyp/test/dependency-copy/src/file2.c +7 -0
- data/ext/gyp/test/dependent-settings/nested-dependent-settings/all-dependent-settings.gyp +19 -0
- data/ext/gyp/test/dependent-settings/nested-dependent-settings/direct-dependent-settings.gyp +19 -0
- data/ext/gyp/test/dependent-settings/nested-dependent-settings/gyptest-nested-dependent-settings.py +18 -0
- data/ext/gyp/test/determinism/determinism.gyp +59 -0
- data/ext/gyp/test/determinism/empty-targets.gyp +32 -0
- data/ext/gyp/test/determinism/gyptest-determinism.py +30 -0
- data/ext/gyp/test/determinism/gyptest-empty-target-names.py +30 -0
- data/ext/gyp/test/determinism/gyptest-needed-variables.py +30 -0
- data/ext/gyp/test/determinism/gyptest-solibs.py +37 -0
- data/ext/gyp/test/determinism/main.cc +5 -0
- data/ext/gyp/test/determinism/needed-variables.gyp +33 -0
- data/ext/gyp/test/determinism/rule.py +8 -0
- data/ext/gyp/test/determinism/solib.cc +8 -0
- data/ext/gyp/test/determinism/solibs.gyp +32 -0
- data/ext/gyp/test/empty-target/empty-target.gyp +12 -0
- data/ext/gyp/test/empty-target/gyptest-empty-target.py +18 -0
- data/ext/gyp/test/errors/dependency_cycle.gyp +23 -0
- data/ext/gyp/test/errors/duplicate_basenames.gyp +13 -0
- data/ext/gyp/test/errors/duplicate_node.gyp +12 -0
- data/ext/gyp/test/errors/duplicate_rule.gyp +22 -0
- data/ext/gyp/test/errors/duplicate_targets.gyp +14 -0
- data/ext/gyp/test/errors/error_command.gyp +12 -0
- data/ext/gyp/test/errors/file_cycle0.gyp +17 -0
- data/ext/gyp/test/errors/file_cycle1.gyp +13 -0
- data/ext/gyp/test/errors/gyptest-errors.py +80 -0
- data/ext/gyp/test/errors/missing_command.gyp +12 -0
- data/ext/gyp/test/errors/missing_dep.gyp +15 -0
- data/ext/gyp/test/errors/missing_targets.gyp +8 -0
- data/ext/gyp/test/escaping/colon/test.gyp +21 -0
- data/ext/gyp/test/escaping/gyptest-colon.py +51 -0
- data/ext/gyp/test/exclusion/exclusion.gyp +23 -0
- data/ext/gyp/test/exclusion/gyptest-exclusion.py +22 -0
- data/ext/gyp/test/exclusion/hello.c +15 -0
- data/ext/gyp/test/external-cross-compile/gyptest-cross.py +31 -0
- data/ext/gyp/test/external-cross-compile/src/bogus1.cc +1 -0
- data/ext/gyp/test/external-cross-compile/src/bogus2.c +1 -0
- data/ext/gyp/test/external-cross-compile/src/cross.gyp +83 -0
- data/ext/gyp/test/external-cross-compile/src/cross_compile.gypi +23 -0
- data/ext/gyp/test/external-cross-compile/src/fake_cross.py +18 -0
- data/ext/gyp/test/external-cross-compile/src/program.cc +16 -0
- data/ext/gyp/test/external-cross-compile/src/test1.cc +1 -0
- data/ext/gyp/test/external-cross-compile/src/test2.c +1 -0
- data/ext/gyp/test/external-cross-compile/src/test3.cc +1 -0
- data/ext/gyp/test/external-cross-compile/src/test4.c +1 -0
- data/ext/gyp/test/external-cross-compile/src/tochar.py +13 -0
- data/ext/gyp/test/generator-output/actions/actions.gyp +16 -0
- data/ext/gyp/test/generator-output/actions/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir1/actions-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir1/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir1/executable.gyp +44 -0
- data/ext/gyp/test/generator-output/actions/subdir1/make-prog1.py +20 -0
- data/ext/gyp/test/generator-output/actions/subdir1/make-prog2.py +20 -0
- data/ext/gyp/test/generator-output/actions/subdir1/program.c +12 -0
- data/ext/gyp/test/generator-output/actions/subdir2/actions-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir2/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir2/make-file.py +11 -0
- data/ext/gyp/test/generator-output/actions/subdir2/none.gyp +31 -0
- data/ext/gyp/test/generator-output/copies/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/copies/copies-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/copies/copies.gyp +50 -0
- data/ext/gyp/test/generator-output/copies/file1 +1 -0
- data/ext/gyp/test/generator-output/copies/file2 +1 -0
- data/ext/gyp/test/generator-output/copies/subdir/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/copies/subdir/copies-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/copies/subdir/file3 +1 -0
- data/ext/gyp/test/generator-output/copies/subdir/file4 +1 -0
- data/ext/gyp/test/generator-output/copies/subdir/subdir.gyp +32 -0
- data/ext/gyp/test/generator-output/gyptest-actions.py +57 -0
- data/ext/gyp/test/generator-output/gyptest-copies.py +59 -0
- data/ext/gyp/test/generator-output/gyptest-depth.py +58 -0
- data/ext/gyp/test/generator-output/gyptest-mac-bundle.py +33 -0
- data/ext/gyp/test/generator-output/gyptest-relocate.py +59 -0
- data/ext/gyp/test/generator-output/gyptest-rules.py +58 -0
- data/ext/gyp/test/generator-output/gyptest-subdir2-deep.py +36 -0
- data/ext/gyp/test/generator-output/gyptest-symlink.py +44 -0
- data/ext/gyp/test/generator-output/gyptest-top-all.py +53 -0
- data/ext/gyp/test/generator-output/mac-bundle/Info.plist +32 -0
- data/ext/gyp/test/generator-output/mac-bundle/app.order +1 -0
- data/ext/gyp/test/generator-output/mac-bundle/header.h +1 -0
- data/ext/gyp/test/generator-output/mac-bundle/main.c +1 -0
- data/ext/gyp/test/generator-output/mac-bundle/resource.sb +1 -0
- data/ext/gyp/test/generator-output/mac-bundle/test.gyp +25 -0
- data/ext/gyp/test/generator-output/rules/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/rules/copy-file.py +12 -0
- data/ext/gyp/test/generator-output/rules/rules.gyp +16 -0
- data/ext/gyp/test/generator-output/rules/subdir1/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/rules/subdir1/define3.in0 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir1/define4.in0 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir1/executable.gyp +59 -0
- data/ext/gyp/test/generator-output/rules/subdir1/function1.in1 +6 -0
- data/ext/gyp/test/generator-output/rules/subdir1/function2.in1 +6 -0
- data/ext/gyp/test/generator-output/rules/subdir1/program.c +18 -0
- data/ext/gyp/test/generator-output/rules/subdir2/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/rules/subdir2/file1.in0 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir2/file2.in0 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir2/file3.in1 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir2/file4.in1 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir2/none.gyp +49 -0
- data/ext/gyp/test/generator-output/rules/subdir2/rules-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/inc.h +1 -0
- data/ext/gyp/test/generator-output/src/inc1/include1.h +1 -0
- data/ext/gyp/test/generator-output/src/prog1.c +18 -0
- data/ext/gyp/test/generator-output/src/prog1.gyp +28 -0
- data/ext/gyp/test/generator-output/src/subdir2/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/subdir2/deeper/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.c +7 -0
- data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.gyp +18 -0
- data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.h +1 -0
- data/ext/gyp/test/generator-output/src/subdir2/inc2/include2.h +1 -0
- data/ext/gyp/test/generator-output/src/subdir2/prog2.c +18 -0
- data/ext/gyp/test/generator-output/src/subdir2/prog2.gyp +28 -0
- data/ext/gyp/test/generator-output/src/subdir3/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/subdir3/inc3/include3.h +1 -0
- data/ext/gyp/test/generator-output/src/subdir3/prog3.c +18 -0
- data/ext/gyp/test/generator-output/src/subdir3/prog3.gyp +25 -0
- data/ext/gyp/test/generator-output/src/symroot.gypi +16 -0
- data/ext/gyp/test/gyp-defines/defines.gyp +26 -0
- data/ext/gyp/test/gyp-defines/echo.py +11 -0
- data/ext/gyp/test/gyp-defines/gyptest-multiple-values.py +36 -0
- data/ext/gyp/test/gyp-defines/gyptest-regyp.py +40 -0
- data/ext/gyp/test/hard_dependency/gyptest-exported-hard-dependency.py +37 -0
- data/ext/gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py +36 -0
- data/ext/gyp/test/hard_dependency/src/a.c +9 -0
- data/ext/gyp/test/hard_dependency/src/a.h +12 -0
- data/ext/gyp/test/hard_dependency/src/b.c +9 -0
- data/ext/gyp/test/hard_dependency/src/b.h +12 -0
- data/ext/gyp/test/hard_dependency/src/c.c +10 -0
- data/ext/gyp/test/hard_dependency/src/c.h +10 -0
- data/ext/gyp/test/hard_dependency/src/d.c +9 -0
- data/ext/gyp/test/hard_dependency/src/emit.py +11 -0
- data/ext/gyp/test/hard_dependency/src/hard_dependency.gyp +78 -0
- data/ext/gyp/test/hello/gyptest-all.py +24 -0
- data/ext/gyp/test/hello/gyptest-default.py +24 -0
- data/ext/gyp/test/hello/gyptest-disable-regyp.py +32 -0
- data/ext/gyp/test/hello/gyptest-regyp-output.py +36 -0
- data/ext/gyp/test/hello/gyptest-regyp.py +32 -0
- data/ext/gyp/test/hello/gyptest-target.py +24 -0
- data/ext/gyp/test/hello/hello.c +11 -0
- data/ext/gyp/test/hello/hello.gyp +15 -0
- data/ext/gyp/test/hello/hello2.c +11 -0
- data/ext/gyp/test/hello/hello2.gyp +15 -0
- data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-config-arg.py +31 -0
- data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-config-env.py +33 -0
- data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py +44 -0
- data/ext/gyp/test/home_dot_gyp/gyptest-home-includes.py +30 -0
- data/ext/gyp/test/home_dot_gyp/home/.gyp/include.gypi +5 -0
- data/ext/gyp/test/home_dot_gyp/home2/.gyp/include.gypi +5 -0
- data/ext/gyp/test/home_dot_gyp/home2/.gyp_new/include.gypi +5 -0
- data/ext/gyp/test/home_dot_gyp/src/all.gyp +22 -0
- data/ext/gyp/test/home_dot_gyp/src/printfoo.c +7 -0
- data/ext/gyp/test/include_dirs/gyptest-all.py +43 -0
- data/ext/gyp/test/include_dirs/gyptest-default.py +43 -0
- data/ext/gyp/test/include_dirs/src/inc.h +1 -0
- data/ext/gyp/test/include_dirs/src/inc1/include1.h +1 -0
- data/ext/gyp/test/include_dirs/src/includes.c +19 -0
- data/ext/gyp/test/include_dirs/src/includes.gyp +27 -0
- data/ext/gyp/test/include_dirs/src/shadow1/shadow.h +1 -0
- data/ext/gyp/test/include_dirs/src/shadow2/shadow.h +1 -0
- data/ext/gyp/test/include_dirs/src/subdir/inc.h +1 -0
- data/ext/gyp/test/include_dirs/src/subdir/inc2/include2.h +1 -0
- data/ext/gyp/test/include_dirs/src/subdir/subdir_includes.c +14 -0
- data/ext/gyp/test/include_dirs/src/subdir/subdir_includes.gyp +20 -0
- data/ext/gyp/test/intermediate_dir/gyptest-intermediate-dir.py +44 -0
- data/ext/gyp/test/intermediate_dir/src/script.py +22 -0
- data/ext/gyp/test/intermediate_dir/src/shared_infile.txt +1 -0
- data/ext/gyp/test/intermediate_dir/src/test.gyp +42 -0
- data/ext/gyp/test/intermediate_dir/src/test2.gyp +42 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/LanguageMap.plist +8 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/MainMenu.xib +17 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/Main_iPhone.storyboard +27 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/TestApp-Info.plist +28 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/check_no_signature.py +13 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/main.m +13 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/only-compile-in-32-bits.m +7 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/only-compile-in-64-bits.m +7 -0
- data/ext/gyp/test/ios/app-bundle/test-archs.gyp +109 -0
- data/ext/gyp/test/ios/app-bundle/test-assets-catalog.gyp +45 -0
- data/ext/gyp/test/ios/app-bundle/test-crosscompile.gyp +47 -0
- data/ext/gyp/test/ios/app-bundle/test-device.gyp +109 -0
- data/ext/gyp/test/ios/app-bundle/test.gyp +75 -0
- data/ext/gyp/test/ios/app-bundle/tool_main.cc +7 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/Info.plist +24 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/copies-with-xcode-envvars.gyp +97 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/empty.c +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file0 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file1 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file10 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file11 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file2 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file3 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file4 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file5 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file6 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file7 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file8 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file9 +1 -0
- data/ext/gyp/test/ios/deployment-target/check-version-min.c +33 -0
- data/ext/gyp/test/ios/deployment-target/deployment-target.gyp +34 -0
- data/ext/gyp/test/ios/extension/ActionExtension/ActionViewController.h +9 -0
- data/ext/gyp/test/ios/extension/ActionExtension/ActionViewController.m +31 -0
- data/ext/gyp/test/ios/extension/ActionExtension/Info.plist +42 -0
- data/ext/gyp/test/ios/extension/ActionExtension/MainInterface.storyboard +63 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/AppDelegate.h +12 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/AppDelegate.m +19 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/Base.lproj/Main.storyboard +25 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/Info.plist +32 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/ViewController.h +11 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/ViewController.m +24 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/main.m +13 -0
- data/ext/gyp/test/ios/extension/extension.gyp +91 -0
- data/ext/gyp/test/ios/framework/framework.gyp +43 -0
- data/ext/gyp/test/ios/framework/iOSFramework/Info.plist +26 -0
- data/ext/gyp/test/ios/framework/iOSFramework/Thing.h +10 -0
- data/ext/gyp/test/ios/framework/iOSFramework/Thing.m +22 -0
- data/ext/gyp/test/ios/framework/iOSFramework/iOSFramework.h +9 -0
- data/ext/gyp/test/ios/gyptest-app-ios-assets-catalog.py +57 -0
- data/ext/gyp/test/ios/gyptest-app-ios.py +76 -0
- data/ext/gyp/test/ios/gyptest-archs.py +62 -0
- data/ext/gyp/test/ios/gyptest-copies-with-xcode-envvars.py +65 -0
- data/ext/gyp/test/ios/gyptest-crosscompile.py +34 -0
- data/ext/gyp/test/ios/gyptest-deployment-target.py +23 -0
- data/ext/gyp/test/ios/gyptest-extension.py +51 -0
- data/ext/gyp/test/ios/gyptest-framework.py +37 -0
- data/ext/gyp/test/ios/gyptest-per-config-settings.py +190 -0
- data/ext/gyp/test/ios/gyptest-watch.py +44 -0
- data/ext/gyp/test/ios/gyptest-xcode-ninja.py +25 -0
- data/ext/gyp/test/ios/watch/WatchApp/Images.xcassets/AppIcon.appiconset/Contents.json +62 -0
- data/ext/gyp/test/ios/watch/WatchApp/Images.xcassets/LaunchImage.launchimage/Contents.json +24 -0
- data/ext/gyp/test/ios/watch/WatchApp/Info.plist +35 -0
- data/ext/gyp/test/ios/watch/WatchApp/Interface.storyboard +15 -0
- data/ext/gyp/test/ios/watch/WatchContainer/AppDelegate.h +12 -0
- data/ext/gyp/test/ios/watch/WatchContainer/AppDelegate.m +19 -0
- data/ext/gyp/test/ios/watch/WatchContainer/Base.lproj/Main.storyboard +25 -0
- data/ext/gyp/test/ios/watch/WatchContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/ext/gyp/test/ios/watch/WatchContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
- data/ext/gyp/test/ios/watch/WatchContainer/Info.plist +32 -0
- data/ext/gyp/test/ios/watch/WatchContainer/ViewController.h +11 -0
- data/ext/gyp/test/ios/watch/WatchContainer/ViewController.m +24 -0
- data/ext/gyp/test/ios/watch/WatchContainer/main.m +13 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/Images.xcassets/MyImage.imageset/Contents.json +20 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/Info.plist +38 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/InterfaceController.h +10 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/InterfaceController.m +25 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/MainInterface.storyboard +63 -0
- data/ext/gyp/test/ios/watch/watch.gyp +105 -0
- data/ext/gyp/test/ios/xctests/App/AppDelegate.h +11 -0
- data/ext/gyp/test/ios/xctests/App/AppDelegate.m +18 -0
- data/ext/gyp/test/ios/xctests/App/Base.lproj/LaunchScreen.xib +41 -0
- data/ext/gyp/test/ios/xctests/App/Base.lproj/Main.storyboard +25 -0
- data/ext/gyp/test/ios/xctests/App/Images.xcassets/AppIcon.appiconset/Contents.json +68 -0
- data/ext/gyp/test/ios/xctests/App/Info.plist +47 -0
- data/ext/gyp/test/ios/xctests/App/ViewController.h +9 -0
- data/ext/gyp/test/ios/xctests/App/ViewController.m +21 -0
- data/ext/gyp/test/ios/xctests/App/main.m +13 -0
- data/ext/gyp/test/ios/xctests/AppTests/AppTests.m +31 -0
- data/ext/gyp/test/ios/xctests/AppTests/Info.plist +24 -0
- data/ext/gyp/test/ios/xctests/gyptest-xctests.py +49 -0
- data/ext/gyp/test/ios/xctests/xctests.gyp +74 -0
- data/ext/gyp/test/lib/README.txt +17 -0
- data/ext/gyp/test/lib/TestCmd.py +1597 -0
- data/ext/gyp/test/lib/TestCommon.py +591 -0
- data/ext/gyp/test/lib/TestGyp.py +1259 -0
- data/ext/gyp/test/lib/TestMac.py +76 -0
- data/ext/gyp/test/lib/TestWin.py +101 -0
- data/ext/gyp/test/library/gyptest-shared-obj-install-path.py +39 -0
- data/ext/gyp/test/library/gyptest-shared.py +84 -0
- data/ext/gyp/test/library/gyptest-static.py +84 -0
- data/ext/gyp/test/library/src/lib1.c +10 -0
- data/ext/gyp/test/library/src/lib1_moveable.c +10 -0
- data/ext/gyp/test/library/src/lib2.c +10 -0
- data/ext/gyp/test/library/src/lib2_moveable.c +10 -0
- data/ext/gyp/test/library/src/library.gyp +58 -0
- data/ext/gyp/test/library/src/program.c +15 -0
- data/ext/gyp/test/library/src/shared_dependency.gyp +33 -0
- data/ext/gyp/test/library_dirs/gyptest-library-dirs.py +50 -0
- data/ext/gyp/test/library_dirs/subdir/README.txt +1 -0
- data/ext/gyp/test/library_dirs/subdir/hello.cc +11 -0
- data/ext/gyp/test/library_dirs/subdir/mylib.cc +9 -0
- data/ext/gyp/test/library_dirs/subdir/mylib.h +12 -0
- data/ext/gyp/test/library_dirs/subdir/test-win.gyp +60 -0
- data/ext/gyp/test/library_dirs/subdir/test.gyp +68 -0
- data/ext/gyp/test/link-dependency/gyptest-link-dependency.py +23 -0
- data/ext/gyp/test/link-dependency/main.c +7 -0
- data/ext/gyp/test/link-dependency/mymalloc.c +12 -0
- data/ext/gyp/test/link-dependency/test.gyp +37 -0
- data/ext/gyp/test/link-objects/base.c +6 -0
- data/ext/gyp/test/link-objects/extra.c +5 -0
- data/ext/gyp/test/link-objects/gyptest-all.py +28 -0
- data/ext/gyp/test/link-objects/link-objects.gyp +24 -0
- data/ext/gyp/test/linux/gyptest-implicit-rpath.py +48 -0
- data/ext/gyp/test/linux/gyptest-ldflags-duplicates.py +22 -0
- data/ext/gyp/test/linux/gyptest-ldflags-from-environment.py +45 -0
- data/ext/gyp/test/linux/gyptest-target-rpath.py +43 -0
- data/ext/gyp/test/linux/implicit-rpath/file.c +1 -0
- data/ext/gyp/test/linux/implicit-rpath/main.c +1 -0
- data/ext/gyp/test/linux/implicit-rpath/test.gyp +47 -0
- data/ext/gyp/test/linux/ldflags-duplicates/check-ldflags.py +28 -0
- data/ext/gyp/test/linux/ldflags-duplicates/lib1.c +6 -0
- data/ext/gyp/test/linux/ldflags-duplicates/lib2.c +6 -0
- data/ext/gyp/test/linux/ldflags-duplicates/main.c +7 -0
- data/ext/gyp/test/linux/ldflags-duplicates/test.gyp +45 -0
- data/ext/gyp/test/linux/ldflags-from-environment/main.c +7 -0
- data/ext/gyp/test/linux/ldflags-from-environment/test.gyp +23 -0
- data/ext/gyp/test/linux/target-rpath/file.c +1 -0
- data/ext/gyp/test/linux/target-rpath/main.c +1 -0
- data/ext/gyp/test/linux/target-rpath/test.gyp +47 -0
- data/ext/gyp/test/mac/action-envvars/action/action.gyp +34 -0
- data/ext/gyp/test/mac/action-envvars/action/action.sh +8 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/MainMenu.xib +4119 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16be.strings +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16le.strings +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/TestApp-Info.plist +34 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.h +13 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.m +15 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/main.m +10 -0
- data/ext/gyp/test/mac/app-bundle/empty.c +0 -0
- data/ext/gyp/test/mac/app-bundle/test-assets-catalog.gyp +43 -0
- data/ext/gyp/test/mac/app-bundle/test-error.gyp +31 -0
- data/ext/gyp/test/mac/app-bundle/test.gyp +41 -0
- data/ext/gyp/test/mac/archs/empty_main.cc +1 -0
- data/ext/gyp/test/mac/archs/file.mm +1 -0
- data/ext/gyp/test/mac/archs/file_a.cc +8 -0
- data/ext/gyp/test/mac/archs/file_a.h +10 -0
- data/ext/gyp/test/mac/archs/file_b.cc +8 -0
- data/ext/gyp/test/mac/archs/file_b.h +10 -0
- data/ext/gyp/test/mac/archs/file_c.cc +11 -0
- data/ext/gyp/test/mac/archs/file_d.cc +11 -0
- data/ext/gyp/test/mac/archs/header.h +1 -0
- data/ext/gyp/test/mac/archs/my_file.cc +4 -0
- data/ext/gyp/test/mac/archs/my_main_file.cc +9 -0
- data/ext/gyp/test/mac/archs/test-archs-multiarch.gyp +92 -0
- data/ext/gyp/test/mac/archs/test-archs-x86_64.gyp +27 -0
- data/ext/gyp/test/mac/archs/test-dependencies.gyp +92 -0
- data/ext/gyp/test/mac/archs/test-no-archs.gyp +21 -0
- data/ext/gyp/test/mac/archs/test-valid-archs.gyp +28 -0
- data/ext/gyp/test/mac/bundle-resources/change.sh +3 -0
- data/ext/gyp/test/mac/bundle-resources/executable-file.sh +3 -0
- data/ext/gyp/test/mac/bundle-resources/secret.txt +1 -0
- data/ext/gyp/test/mac/bundle-resources/test.gyp +59 -0
- data/ext/gyp/test/mac/cflags/ccfile.cc +7 -0
- data/ext/gyp/test/mac/cflags/ccfile_withcflags.cc +7 -0
- data/ext/gyp/test/mac/cflags/cfile.c +7 -0
- data/ext/gyp/test/mac/cflags/cppfile.cpp +7 -0
- data/ext/gyp/test/mac/cflags/cppfile_withcflags.cpp +7 -0
- data/ext/gyp/test/mac/cflags/cxxfile.cxx +7 -0
- data/ext/gyp/test/mac/cflags/cxxfile_withcflags.cxx +7 -0
- data/ext/gyp/test/mac/cflags/mfile.m +7 -0
- data/ext/gyp/test/mac/cflags/mmfile.mm +7 -0
- data/ext/gyp/test/mac/cflags/mmfile_withcflags.mm +7 -0
- data/ext/gyp/test/mac/cflags/test.gyp +132 -0
- data/ext/gyp/test/mac/clang-cxx-language-standard/c++11.cc +8 -0
- data/ext/gyp/test/mac/clang-cxx-language-standard/c++98.cc +24 -0
- data/ext/gyp/test/mac/clang-cxx-language-standard/clang-cxx-language-standard.gyp +30 -0
- data/ext/gyp/test/mac/clang-cxx-library/clang-cxx-library.gyp +32 -0
- data/ext/gyp/test/mac/clang-cxx-library/libc++.cc +11 -0
- data/ext/gyp/test/mac/clang-cxx-library/libstdc++.cc +11 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/copies-with-xcode-envvars.gyp +87 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/empty.c +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file0 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file1 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file10 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file11 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file2 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file3 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file4 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file5 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file6 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file7 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file8 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file9 +1 -0
- data/ext/gyp/test/mac/copy-dylib/empty.c +1 -0
- data/ext/gyp/test/mac/copy-dylib/test.gyp +31 -0
- data/ext/gyp/test/mac/debuginfo/file.c +6 -0
- data/ext/gyp/test/mac/debuginfo/test.gyp +82 -0
- data/ext/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings +1 -0
- data/ext/gyp/test/mac/depend-on-bundle/Info.plist +28 -0
- data/ext/gyp/test/mac/depend-on-bundle/bundle.c +1 -0
- data/ext/gyp/test/mac/depend-on-bundle/executable.c +4 -0
- data/ext/gyp/test/mac/depend-on-bundle/test.gyp +28 -0
- data/ext/gyp/test/mac/deployment-target/check-version-min.c +33 -0
- data/ext/gyp/test/mac/deployment-target/deployment-target.gyp +28 -0
- data/ext/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings +2 -0
- data/ext/gyp/test/mac/framework/TestFramework/Info.plist +28 -0
- data/ext/gyp/test/mac/framework/TestFramework/ObjCVector.h +28 -0
- data/ext/gyp/test/mac/framework/TestFramework/ObjCVector.mm +63 -0
- data/ext/gyp/test/mac/framework/TestFramework/ObjCVectorInternal.h +9 -0
- data/ext/gyp/test/mac/framework/TestFramework/TestFramework_Prefix.pch +7 -0
- data/ext/gyp/test/mac/framework/empty.c +0 -0
- data/ext/gyp/test/mac/framework/framework.gyp +108 -0
- data/ext/gyp/test/mac/framework-dirs/calculate.c +15 -0
- data/ext/gyp/test/mac/framework-dirs/framework-dirs.gyp +21 -0
- data/ext/gyp/test/mac/framework-headers/myframework.h +8 -0
- data/ext/gyp/test/mac/framework-headers/myframework.m +8 -0
- data/ext/gyp/test/mac/framework-headers/test.gyp +44 -0
- data/ext/gyp/test/mac/global-settings/src/dir1/dir1.gyp +11 -0
- data/ext/gyp/test/mac/global-settings/src/dir2/dir2.gyp +22 -0
- data/ext/gyp/test/mac/global-settings/src/dir2/file.txt +1 -0
- data/ext/gyp/test/mac/gyptest-action-envvars.py +36 -0
- data/ext/gyp/test/mac/gyptest-app-assets-catalog.py +125 -0
- data/ext/gyp/test/mac/gyptest-app-error.py +49 -0
- data/ext/gyp/test/mac/gyptest-app.py +122 -0
- data/ext/gyp/test/mac/gyptest-archs.py +96 -0
- data/ext/gyp/test/mac/gyptest-bundle-resources.py +64 -0
- data/ext/gyp/test/mac/gyptest-cflags.py +21 -0
- data/ext/gyp/test/mac/gyptest-clang-cxx-language-standard.py +25 -0
- data/ext/gyp/test/mac/gyptest-clang-cxx-library.py +32 -0
- data/ext/gyp/test/mac/gyptest-copies-with-xcode-envvars.py +65 -0
- data/ext/gyp/test/mac/gyptest-copies.py +62 -0
- data/ext/gyp/test/mac/gyptest-copy-dylib.py +25 -0
- data/ext/gyp/test/mac/gyptest-debuginfo.py +36 -0
- data/ext/gyp/test/mac/gyptest-depend-on-bundle.py +45 -0
- data/ext/gyp/test/mac/gyptest-deployment-target.py +27 -0
- data/ext/gyp/test/mac/gyptest-framework-dirs.py +23 -0
- data/ext/gyp/test/mac/gyptest-framework-headers.py +38 -0
- data/ext/gyp/test/mac/gyptest-framework.py +80 -0
- data/ext/gyp/test/mac/gyptest-global-settings.py +33 -0
- data/ext/gyp/test/mac/gyptest-identical-name.py +45 -0
- data/ext/gyp/test/mac/gyptest-infoplist-process.py +56 -0
- data/ext/gyp/test/mac/gyptest-installname.py +85 -0
- data/ext/gyp/test/mac/gyptest-kext.py +27 -0
- data/ext/gyp/test/mac/gyptest-ldflags-passed-to-libtool.py +37 -0
- data/ext/gyp/test/mac/gyptest-ldflags.py +74 -0
- data/ext/gyp/test/mac/gyptest-libraries.py +30 -0
- data/ext/gyp/test/mac/gyptest-libtool-zero.py +26 -0
- data/ext/gyp/test/mac/gyptest-loadable-module-bundle-product-extension.py +31 -0
- data/ext/gyp/test/mac/gyptest-loadable-module.py +54 -0
- data/ext/gyp/test/mac/gyptest-lto.py +66 -0
- data/ext/gyp/test/mac/gyptest-missing-cfbundlesignature.py +34 -0
- data/ext/gyp/test/mac/gyptest-non-strs-flattened-to-env.py +38 -0
- data/ext/gyp/test/mac/gyptest-objc-arc.py +27 -0
- data/ext/gyp/test/mac/gyptest-objc-gc.py +51 -0
- data/ext/gyp/test/mac/gyptest-postbuild-copy-bundle.py +75 -0
- data/ext/gyp/test/mac/gyptest-postbuild-defaults.py +34 -0
- data/ext/gyp/test/mac/gyptest-postbuild-fail.py +71 -0
- data/ext/gyp/test/mac/gyptest-postbuild-multiple-configurations.py +26 -0
- data/ext/gyp/test/mac/gyptest-postbuild-static-library.py +28 -0
- data/ext/gyp/test/mac/gyptest-postbuild.py +53 -0
- data/ext/gyp/test/mac/gyptest-prefixheader.py +20 -0
- data/ext/gyp/test/mac/gyptest-rebuild.py +46 -0
- data/ext/gyp/test/mac/gyptest-rpath.py +50 -0
- data/ext/gyp/test/mac/gyptest-sdkroot.py +56 -0
- data/ext/gyp/test/mac/gyptest-sourceless-module.py +77 -0
- data/ext/gyp/test/mac/gyptest-strip-default.py +97 -0
- data/ext/gyp/test/mac/gyptest-strip.py +66 -0
- data/ext/gyp/test/mac/gyptest-swift-library.py +67 -0
- data/ext/gyp/test/mac/gyptest-type-envvars.py +26 -0
- data/ext/gyp/test/mac/gyptest-unicode-settings.py +20 -0
- data/ext/gyp/test/mac/gyptest-xcode-env-order.py +95 -0
- data/ext/gyp/test/mac/gyptest-xcode-gcc-clang.py +40 -0
- data/ext/gyp/test/mac/gyptest-xcode-gcc.py +60 -0
- data/ext/gyp/test/mac/gyptest-xcode-support-actions.py +25 -0
- data/ext/gyp/test/mac/gyptest-xctest.py +41 -0
- data/ext/gyp/test/mac/gyptest-xcuitest.py +39 -0
- data/ext/gyp/test/mac/identical-name/proxy/proxy.cc +2 -0
- data/ext/gyp/test/mac/identical-name/proxy/proxy.gyp +9 -0
- data/ext/gyp/test/mac/identical-name/proxy/testlib/testlib.cc +2 -0
- data/ext/gyp/test/mac/identical-name/proxy/testlib/testlib.gyp +8 -0
- data/ext/gyp/test/mac/identical-name/test-should-fail.gyp +10 -0
- data/ext/gyp/test/mac/identical-name/test.gyp +11 -0
- data/ext/gyp/test/mac/identical-name/test.gypi +7 -0
- data/ext/gyp/test/mac/identical-name/testlib/main.cc +3 -0
- data/ext/gyp/test/mac/identical-name/testlib/testlib.gyp +14 -0
- data/ext/gyp/test/mac/identical-name/testlib/void.cc +2 -0
- data/ext/gyp/test/mac/infoplist-process/Info.plist +36 -0
- data/ext/gyp/test/mac/infoplist-process/main.c +7 -0
- data/ext/gyp/test/mac/infoplist-process/test1.gyp +25 -0
- data/ext/gyp/test/mac/infoplist-process/test2.gyp +25 -0
- data/ext/gyp/test/mac/infoplist-process/test3.gyp +25 -0
- data/ext/gyp/test/mac/installname/Info.plist +28 -0
- data/ext/gyp/test/mac/installname/file.c +1 -0
- data/ext/gyp/test/mac/installname/main.c +1 -0
- data/ext/gyp/test/mac/installname/test.gyp +93 -0
- data/ext/gyp/test/mac/kext/GypKext/GypKext-Info.plist +35 -0
- data/ext/gyp/test/mac/kext/GypKext/GypKext.c +16 -0
- data/ext/gyp/test/mac/kext/kext.gyp +18 -0
- data/ext/gyp/test/mac/ldflags/subdirectory/Info.plist +8 -0
- data/ext/gyp/test/mac/ldflags/subdirectory/file.c +2 -0
- data/ext/gyp/test/mac/ldflags/subdirectory/symbol_list.def +1 -0
- data/ext/gyp/test/mac/ldflags/subdirectory/test.gyp +66 -0
- data/ext/gyp/test/mac/ldflags-libtool/file.c +1 -0
- data/ext/gyp/test/mac/ldflags-libtool/test.gyp +17 -0
- data/ext/gyp/test/mac/libraries/subdir/README.txt +1 -0
- data/ext/gyp/test/mac/libraries/subdir/hello.cc +10 -0
- data/ext/gyp/test/mac/libraries/subdir/mylib.c +7 -0
- data/ext/gyp/test/mac/libraries/subdir/test.gyp +65 -0
- data/ext/gyp/test/mac/libtool-zero/mylib.c +7 -0
- data/ext/gyp/test/mac/libtool-zero/test.gyp +18 -0
- data/ext/gyp/test/mac/loadable-module/Info.plist +26 -0
- data/ext/gyp/test/mac/loadable-module/module.c +11 -0
- data/ext/gyp/test/mac/loadable-module/test.gyp +18 -0
- data/ext/gyp/test/mac/loadable-module-bundle-product-extension/src.cc +7 -0
- data/ext/gyp/test/mac/loadable-module-bundle-product-extension/test.gyp +24 -0
- data/ext/gyp/test/mac/lto/asmfile.S +2 -0
- data/ext/gyp/test/mac/lto/ccfile.cc +1 -0
- data/ext/gyp/test/mac/lto/cfile.c +1 -0
- data/ext/gyp/test/mac/lto/mfile.m +1 -0
- data/ext/gyp/test/mac/lto/mmfile.mm +1 -0
- data/ext/gyp/test/mac/lto/test.gyp +35 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/Info.plist +10 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist +12 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist +12 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/file.c +1 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/test.gyp +34 -0
- data/ext/gyp/test/mac/non-strs-flattened-to-env/Info.plist +15 -0
- data/ext/gyp/test/mac/non-strs-flattened-to-env/main.c +7 -0
- data/ext/gyp/test/mac/non-strs-flattened-to-env/test.gyp +27 -0
- data/ext/gyp/test/mac/objc-arc/c-file.c +5 -0
- data/ext/gyp/test/mac/objc-arc/cc-file.cc +5 -0
- data/ext/gyp/test/mac/objc-arc/m-file-arc-weak.m +9 -0
- data/ext/gyp/test/mac/objc-arc/m-file-no-arc.m +9 -0
- data/ext/gyp/test/mac/objc-arc/m-file.m +9 -0
- data/ext/gyp/test/mac/objc-arc/mm-file-arc-weak.mm +9 -0
- data/ext/gyp/test/mac/objc-arc/mm-file-no-arc.mm +9 -0
- data/ext/gyp/test/mac/objc-arc/mm-file.mm +9 -0
- data/ext/gyp/test/mac/objc-arc/test.gyp +53 -0
- data/ext/gyp/test/mac/objc-gc/c-file.c +1 -0
- data/ext/gyp/test/mac/objc-gc/cc-file.cc +1 -0
- data/ext/gyp/test/mac/objc-gc/main.m +6 -0
- data/ext/gyp/test/mac/objc-gc/needs-gc-mm.mm +1 -0
- data/ext/gyp/test/mac/objc-gc/needs-gc.m +1 -0
- data/ext/gyp/test/mac/objc-gc/test.gyp +102 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/Framework-Info.plist +30 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/TestApp-Info.plist +32 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/copied.txt +1 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/empty.c +0 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/main.c +4 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/postbuild-copy-framework.sh +9 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/resource_file.sb +1 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/test.gyp +49 -0
- data/ext/gyp/test/mac/postbuild-defaults/Info.plist +13 -0
- data/ext/gyp/test/mac/postbuild-defaults/main.c +7 -0
- data/ext/gyp/test/mac/postbuild-defaults/postbuild-defaults.sh +15 -0
- data/ext/gyp/test/mac/postbuild-defaults/test.gyp +26 -0
- data/ext/gyp/test/mac/postbuild-fail/file.c +6 -0
- data/ext/gyp/test/mac/postbuild-fail/postbuild-fail.sh +6 -0
- data/ext/gyp/test/mac/postbuild-fail/test.gyp +38 -0
- data/ext/gyp/test/mac/postbuild-fail/touch-dynamic.sh +7 -0
- data/ext/gyp/test/mac/postbuild-fail/touch-static.sh +7 -0
- data/ext/gyp/test/mac/postbuild-multiple-configurations/main.c +4 -0
- data/ext/gyp/test/mac/postbuild-multiple-configurations/postbuild-touch-file.sh +7 -0
- data/ext/gyp/test/mac/postbuild-multiple-configurations/test.gyp +26 -0
- data/ext/gyp/test/mac/postbuild-static-library/empty.c +4 -0
- data/ext/gyp/test/mac/postbuild-static-library/postbuild-touch-file.sh +7 -0
- data/ext/gyp/test/mac/postbuild-static-library/test.gyp +34 -0
- data/ext/gyp/test/mac/postbuilds/copy.sh +3 -0
- data/ext/gyp/test/mac/postbuilds/file.c +4 -0
- data/ext/gyp/test/mac/postbuilds/file_g.c +4 -0
- data/ext/gyp/test/mac/postbuilds/file_h.c +4 -0
- data/ext/gyp/test/mac/postbuilds/script/shared_library_postbuild.sh +23 -0
- data/ext/gyp/test/mac/postbuilds/script/static_library_postbuild.sh +23 -0
- data/ext/gyp/test/mac/postbuilds/subdirectory/copied_file.txt +1 -0
- data/ext/gyp/test/mac/postbuilds/subdirectory/nested_target.gyp +53 -0
- data/ext/gyp/test/mac/postbuilds/test.gyp +93 -0
- data/ext/gyp/test/mac/prefixheader/file.c +1 -0
- data/ext/gyp/test/mac/prefixheader/file.cc +1 -0
- data/ext/gyp/test/mac/prefixheader/file.m +1 -0
- data/ext/gyp/test/mac/prefixheader/file.mm +1 -0
- data/ext/gyp/test/mac/prefixheader/header.h +1 -0
- data/ext/gyp/test/mac/prefixheader/test.gyp +82 -0
- data/ext/gyp/test/mac/rebuild/TestApp-Info.plist +32 -0
- data/ext/gyp/test/mac/rebuild/delay-touch.sh +6 -0
- data/ext/gyp/test/mac/rebuild/empty.c +0 -0
- data/ext/gyp/test/mac/rebuild/main.c +1 -0
- data/ext/gyp/test/mac/rebuild/test.gyp +56 -0
- data/ext/gyp/test/mac/rpath/file.c +1 -0
- data/ext/gyp/test/mac/rpath/main.c +1 -0
- data/ext/gyp/test/mac/rpath/test.gyp +48 -0
- data/ext/gyp/test/mac/sdkroot/file.cc +5 -0
- data/ext/gyp/test/mac/sdkroot/test.gyp +35 -0
- data/ext/gyp/test/mac/sdkroot/test_shorthand.sh +20 -0
- data/ext/gyp/test/mac/sourceless-module/empty.c +1 -0
- data/ext/gyp/test/mac/sourceless-module/empty.txt +2 -0
- data/ext/gyp/test/mac/sourceless-module/fun.c +1 -0
- data/ext/gyp/test/mac/sourceless-module/test.gyp +96 -0
- data/ext/gyp/test/mac/strip/file.c +22 -0
- data/ext/gyp/test/mac/strip/main.c +25 -0
- data/ext/gyp/test/mac/strip/strip.saves +5 -0
- data/ext/gyp/test/mac/strip/subdirectory/nested_file.c +1 -0
- data/ext/gyp/test/mac/strip/subdirectory/nested_strip.saves +5 -0
- data/ext/gyp/test/mac/strip/subdirectory/subdirectory.gyp +38 -0
- data/ext/gyp/test/mac/strip/subdirectory/test_reading_save_file_from_postbuild.sh +5 -0
- data/ext/gyp/test/mac/strip/test-defaults.gyp +51 -0
- data/ext/gyp/test/mac/strip/test.gyp +119 -0
- data/ext/gyp/test/mac/swift-library/Info.plist +28 -0
- data/ext/gyp/test/mac/swift-library/file.swift +9 -0
- data/ext/gyp/test/mac/swift-library/test.gyp +21 -0
- data/ext/gyp/test/mac/type_envvars/file.c +6 -0
- data/ext/gyp/test/mac/type_envvars/test.gyp +100 -0
- data/ext/gyp/test/mac/type_envvars/test_bundle_executable.sh +30 -0
- data/ext/gyp/test/mac/type_envvars/test_bundle_loadable_module.sh +35 -0
- data/ext/gyp/test/mac/type_envvars/test_bundle_shared_library.sh +38 -0
- data/ext/gyp/test/mac/type_envvars/test_check_sdkroot.sh +47 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_executable.sh +33 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_loadable_module.sh +31 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_none.sh +32 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_shared_library.sh +31 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_static_library.sh +31 -0
- data/ext/gyp/test/mac/unicode-settings/file.cc +2 -0
- data/ext/gyp/test/mac/unicode-settings/test.gyp +23 -0
- data/ext/gyp/test/mac/unicode-settings/test_bundle_display_name.sh +7 -0
- data/ext/gyp/test/mac/xcode-env-order/Info.plist +56 -0
- data/ext/gyp/test/mac/xcode-env-order/file.ext1 +0 -0
- data/ext/gyp/test/mac/xcode-env-order/file.ext2 +0 -0
- data/ext/gyp/test/mac/xcode-env-order/file.ext3 +0 -0
- data/ext/gyp/test/mac/xcode-env-order/main.c +7 -0
- data/ext/gyp/test/mac/xcode-env-order/test.gyp +121 -0
- data/ext/gyp/test/mac/xcode-gcc/aliasing.cc +13 -0
- data/ext/gyp/test/mac/xcode-gcc/test-clang.gyp +42 -0
- data/ext/gyp/test/mac/xcode-gcc/test.gyp +60 -0
- data/ext/gyp/test/mac/xcode-gcc/valid_c.c +8 -0
- data/ext/gyp/test/mac/xcode-gcc/valid_cc.cc +8 -0
- data/ext/gyp/test/mac/xcode-gcc/valid_m.m +8 -0
- data/ext/gyp/test/mac/xcode-gcc/valid_mm.mm +8 -0
- data/ext/gyp/test/mac/xcode-gcc/warn_about_invalid_offsetof_macro.cc +15 -0
- data/ext/gyp/test/mac/xcode-gcc/warn_about_missing_newline.c +8 -0
- data/ext/gyp/test/mac/xcode-support-actions/source.c +0 -0
- data/ext/gyp/test/mac/xcode-support-actions/test.gyp +26 -0
- data/ext/gyp/test/mac/xctest/MyClass.h +8 -0
- data/ext/gyp/test/mac/xctest/MyClass.m +8 -0
- data/ext/gyp/test/mac/xctest/TestCase.m +16 -0
- data/ext/gyp/test/mac/xctest/resource.txt +1 -0
- data/ext/gyp/test/mac/xctest/test.gyp +47 -0
- data/ext/gyp/test/mac/xctest/test.xcodeproj/xcshareddata/xcschemes/classes.xcscheme +69 -0
- data/ext/gyp/test/mac/xcuitest/Info.plist +28 -0
- data/ext/gyp/test/mac/xcuitest/MyAppDelegate.h +8 -0
- data/ext/gyp/test/mac/xcuitest/MyAppDelegate.m +19 -0
- data/ext/gyp/test/mac/xcuitest/TestCase.m +15 -0
- data/ext/gyp/test/mac/xcuitest/main.m +15 -0
- data/ext/gyp/test/mac/xcuitest/resource.txt +1 -0
- data/ext/gyp/test/mac/xcuitest/test.gyp +69 -0
- data/ext/gyp/test/make/dependencies.gyp +15 -0
- data/ext/gyp/test/make/gyptest-dependencies.py +26 -0
- data/ext/gyp/test/make/gyptest-noload.py +57 -0
- data/ext/gyp/test/make/main.cc +12 -0
- data/ext/gyp/test/make/main.h +0 -0
- data/ext/gyp/test/make/noload/all.gyp +18 -0
- data/ext/gyp/test/make/noload/lib/shared.c +3 -0
- data/ext/gyp/test/make/noload/lib/shared.gyp +16 -0
- data/ext/gyp/test/make/noload/lib/shared.h +1 -0
- data/ext/gyp/test/make/noload/main.c +9 -0
- data/ext/gyp/test/make_global_settings/ar/gyptest-make_global_settings_ar.py +126 -0
- data/ext/gyp/test/make_global_settings/ar/make_global_settings_ar.gyp +29 -0
- data/ext/gyp/test/make_global_settings/basics/gyptest-make_global_settings.py +51 -0
- data/ext/gyp/test/make_global_settings/basics/make_global_settings.gyp +17 -0
- data/ext/gyp/test/make_global_settings/env-wrapper/gyptest-wrapper.py +51 -0
- data/ext/gyp/test/make_global_settings/env-wrapper/wrapper.gyp +17 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/bar.cc +1 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/foo.c +1 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/gyptest-make_global_settings.py +53 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/make_global_settings.gyp +22 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/my_nm.py +9 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/my_readelf.py +9 -0
- data/ext/gyp/test/make_global_settings/ld/gyptest-make_global_settings_ld.py +130 -0
- data/ext/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp +29 -0
- data/ext/gyp/test/make_global_settings/wrapper/gyptest-wrapper.py +52 -0
- data/ext/gyp/test/make_global_settings/wrapper/wrapper.gyp +21 -0
- data/ext/gyp/test/many-actions/file0 +0 -0
- data/ext/gyp/test/many-actions/file1 +0 -0
- data/ext/gyp/test/many-actions/file2 +0 -0
- data/ext/gyp/test/many-actions/file3 +0 -0
- data/ext/gyp/test/many-actions/file4 +0 -0
- data/ext/gyp/test/many-actions/gyptest-many-actions-unsorted.py +43 -0
- data/ext/gyp/test/many-actions/gyptest-many-actions.py +29 -0
- data/ext/gyp/test/many-actions/many-actions-unsorted.gyp +154 -0
- data/ext/gyp/test/many-actions/many-actions.gyp +1817 -0
- data/ext/gyp/test/module/gyptest-default.py +28 -0
- data/ext/gyp/test/module/src/lib1.c +10 -0
- data/ext/gyp/test/module/src/lib2.c +10 -0
- data/ext/gyp/test/module/src/module.gyp +53 -0
- data/ext/gyp/test/module/src/program.c +111 -0
- data/ext/gyp/test/msvs/buildevents/buildevents.gyp +14 -0
- data/ext/gyp/test/msvs/buildevents/gyptest-msbuild-supports-prepostbuild.py +24 -0
- data/ext/gyp/test/msvs/buildevents/gyptest-ninja-warnings.py +29 -0
- data/ext/gyp/test/msvs/buildevents/main.cc +5 -0
- data/ext/gyp/test/msvs/config_attrs/gyptest-config_attrs.py +41 -0
- data/ext/gyp/test/msvs/config_attrs/hello.c +11 -0
- data/ext/gyp/test/msvs/config_attrs/hello.gyp +21 -0
- data/ext/gyp/test/msvs/express/base/base.gyp +22 -0
- data/ext/gyp/test/msvs/express/express.gyp +19 -0
- data/ext/gyp/test/msvs/express/gyptest-express.py +29 -0
- data/ext/gyp/test/msvs/external_builder/external.gyp +68 -0
- data/ext/gyp/test/msvs/external_builder/external_builder.py +9 -0
- data/ext/gyp/test/msvs/external_builder/gyptest-all.py +59 -0
- data/ext/gyp/test/msvs/external_builder/hello.cpp +10 -0
- data/ext/gyp/test/msvs/external_builder/hello.z +6 -0
- data/ext/gyp/test/msvs/external_builder/msbuild_action.py +9 -0
- data/ext/gyp/test/msvs/external_builder/msbuild_rule.py +11 -0
- data/ext/gyp/test/msvs/filters/filters.gyp +47 -0
- data/ext/gyp/test/msvs/filters/gyptest-filters-2008.py +68 -0
- data/ext/gyp/test/msvs/filters/gyptest-filters-2010.py +57 -0
- data/ext/gyp/test/msvs/list_excluded/gyptest-all.py +51 -0
- data/ext/gyp/test/msvs/list_excluded/hello.cpp +10 -0
- data/ext/gyp/test/msvs/list_excluded/hello_exclude.gyp +19 -0
- data/ext/gyp/test/msvs/list_excluded/hello_mac.cpp +10 -0
- data/ext/gyp/test/msvs/missing_sources/gyptest-missing.py +43 -0
- data/ext/gyp/test/msvs/missing_sources/hello_missing.gyp +15 -0
- data/ext/gyp/test/msvs/multiple_actions_error_handling/action_fail.py +7 -0
- data/ext/gyp/test/msvs/multiple_actions_error_handling/action_succeed.py +7 -0
- data/ext/gyp/test/msvs/multiple_actions_error_handling/actions.gyp +40 -0
- data/ext/gyp/test/msvs/multiple_actions_error_handling/gyptest.py +26 -0
- data/ext/gyp/test/msvs/props/AppName.props +14 -0
- data/ext/gyp/test/msvs/props/AppName.vsprops +11 -0
- data/ext/gyp/test/msvs/props/gyptest-props.py +22 -0
- data/ext/gyp/test/msvs/props/hello.c +11 -0
- data/ext/gyp/test/msvs/props/hello.gyp +22 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/dummy.bar +5 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/dummy.foo +5 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/gyptest-rules-stdout-stderr.py +29 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/rule_stderr.py +8 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/rule_stdout.py +7 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/rules-stdout-stderr.gyp +52 -0
- data/ext/gyp/test/msvs/shared_output/common.gypi +17 -0
- data/ext/gyp/test/msvs/shared_output/gyptest-shared_output.py +41 -0
- data/ext/gyp/test/msvs/shared_output/hello.c +12 -0
- data/ext/gyp/test/msvs/shared_output/hello.gyp +21 -0
- data/ext/gyp/test/msvs/shared_output/there/there.c +12 -0
- data/ext/gyp/test/msvs/shared_output/there/there.gyp +16 -0
- data/ext/gyp/test/msvs/uldi2010/gyptest-all.py +20 -0
- data/ext/gyp/test/msvs/uldi2010/hello.c +13 -0
- data/ext/gyp/test/msvs/uldi2010/hello.gyp +26 -0
- data/ext/gyp/test/msvs/uldi2010/hello2.c +10 -0
- data/ext/gyp/test/multiple-targets/gyptest-all.py +30 -0
- data/ext/gyp/test/multiple-targets/gyptest-default.py +30 -0
- data/ext/gyp/test/multiple-targets/src/common.c +7 -0
- data/ext/gyp/test/multiple-targets/src/multiple.gyp +24 -0
- data/ext/gyp/test/multiple-targets/src/prog1.c +10 -0
- data/ext/gyp/test/multiple-targets/src/prog2.c +10 -0
- data/ext/gyp/test/ninja/action-rule-hash/gyptest-action-rule-hash.py +32 -0
- data/ext/gyp/test/ninja/action-rule-hash/subdir/action-rule-hash.gyp +29 -0
- data/ext/gyp/test/ninja/action-rule-hash/subdir/emit.py +13 -0
- data/ext/gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py +64 -0
- data/ext/gyp/test/ninja/action_dependencies/src/a.c +10 -0
- data/ext/gyp/test/ninja/action_dependencies/src/a.h +13 -0
- data/ext/gyp/test/ninja/action_dependencies/src/action_dependencies.gyp +88 -0
- data/ext/gyp/test/ninja/action_dependencies/src/b.c +18 -0
- data/ext/gyp/test/ninja/action_dependencies/src/b.h +13 -0
- data/ext/gyp/test/ninja/action_dependencies/src/c.c +10 -0
- data/ext/gyp/test/ninja/action_dependencies/src/c.h +13 -0
- data/ext/gyp/test/ninja/action_dependencies/src/emit.py +11 -0
- data/ext/gyp/test/ninja/chained-dependency/chained-dependency.gyp +53 -0
- data/ext/gyp/test/ninja/chained-dependency/chained.c +5 -0
- data/ext/gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py +30 -0
- data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/gyptest-empty-and-non-empty-duplicate-name.py +23 -0
- data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/subdir/included.gyp +19 -0
- data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/test.gyp +19 -0
- data/ext/gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py +46 -0
- data/ext/gyp/test/ninja/normalize-paths-win/hello.cc +7 -0
- data/ext/gyp/test/ninja/normalize-paths-win/normalize-paths.gyp +68 -0
- data/ext/gyp/test/ninja/s-needs-no-depfiles/empty.s +1 -0
- data/ext/gyp/test/ninja/s-needs-no-depfiles/gyptest-s-needs-no-depfiles.py +42 -0
- data/ext/gyp/test/ninja/s-needs-no-depfiles/s-needs-no-depfiles.gyp +13 -0
- data/ext/gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py +48 -0
- data/ext/gyp/test/ninja/solibs_avoid_relinking/main.cc +5 -0
- data/ext/gyp/test/ninja/solibs_avoid_relinking/solib.cc +8 -0
- data/ext/gyp/test/ninja/solibs_avoid_relinking/solibs_avoid_relinking.gyp +38 -0
- data/ext/gyp/test/ninja/use-console/foo.bar +5 -0
- data/ext/gyp/test/ninja/use-console/gyptest-use-console.py +29 -0
- data/ext/gyp/test/ninja/use-console/use-console.gyp +60 -0
- data/ext/gyp/test/ninja/use-custom-environment-files/gyptest-use-custom-environment-files.py +28 -0
- data/ext/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.cc +7 -0
- data/ext/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.gyp +15 -0
- data/ext/gyp/test/no-cpp/gyptest-no-cpp.py +53 -0
- data/ext/gyp/test/no-cpp/src/call-f-main.c +2 -0
- data/ext/gyp/test/no-cpp/src/empty-main.c +1 -0
- data/ext/gyp/test/no-cpp/src/f.cc +3 -0
- data/ext/gyp/test/no-cpp/src/test.gyp +25 -0
- data/ext/gyp/test/no-output/gyptest-no-output.py +21 -0
- data/ext/gyp/test/no-output/src/nooutput.gyp +17 -0
- data/ext/gyp/test/product/gyptest-product.py +43 -0
- data/ext/gyp/test/product/hello.c +15 -0
- data/ext/gyp/test/product/product.gyp +128 -0
- data/ext/gyp/test/prune_targets/gyptest-prune-targets.py +66 -0
- data/ext/gyp/test/prune_targets/lib1.cc +6 -0
- data/ext/gyp/test/prune_targets/lib2.cc +6 -0
- data/ext/gyp/test/prune_targets/lib3.cc +6 -0
- data/ext/gyp/test/prune_targets/lib_indirect.cc +6 -0
- data/ext/gyp/test/prune_targets/program.cc +7 -0
- data/ext/gyp/test/prune_targets/test1.gyp +26 -0
- data/ext/gyp/test/prune_targets/test2.gyp +30 -0
- data/ext/gyp/test/relative/foo/a/a.cc +9 -0
- data/ext/gyp/test/relative/foo/a/a.gyp +13 -0
- data/ext/gyp/test/relative/foo/a/c/c.cc +9 -0
- data/ext/gyp/test/relative/foo/a/c/c.gyp +12 -0
- data/ext/gyp/test/relative/foo/b/b.cc +9 -0
- data/ext/gyp/test/relative/foo/b/b.gyp +9 -0
- data/ext/gyp/test/relative/gyptest-default.py +25 -0
- data/ext/gyp/test/rename/filecase/file.c +1 -0
- data/ext/gyp/test/rename/filecase/test-casesensitive.gyp +15 -0
- data/ext/gyp/test/rename/filecase/test.gyp +14 -0
- data/ext/gyp/test/rename/gyptest-filecase.py +35 -0
- data/ext/gyp/test/restat/gyptest-restat.py +31 -0
- data/ext/gyp/test/restat/src/create_intermediate.py +17 -0
- data/ext/gyp/test/restat/src/restat.gyp +50 -0
- data/ext/gyp/test/restat/src/touch.py +16 -0
- data/ext/gyp/test/rules/gyptest-all.py +84 -0
- data/ext/gyp/test/rules/gyptest-default.py +70 -0
- data/ext/gyp/test/rules/gyptest-input-root.py +26 -0
- data/ext/gyp/test/rules/gyptest-special-variables.py +18 -0
- data/ext/gyp/test/rules/src/actions.gyp +23 -0
- data/ext/gyp/test/rules/src/an_asm.S +6 -0
- data/ext/gyp/test/rules/src/as.bat +7 -0
- data/ext/gyp/test/rules/src/copy-file.py +11 -0
- data/ext/gyp/test/rules/src/external/external.gyp +66 -0
- data/ext/gyp/test/rules/src/external/file1.in +1 -0
- data/ext/gyp/test/rules/src/external/file2.in +1 -0
- data/ext/gyp/test/rules/src/input-root.gyp +24 -0
- data/ext/gyp/test/rules/src/noaction/file1.in +1 -0
- data/ext/gyp/test/rules/src/noaction/no_action_with_rules_fails.gyp +37 -0
- data/ext/gyp/test/rules/src/rule.py +17 -0
- data/ext/gyp/test/rules/src/somefile.ext +0 -0
- data/ext/gyp/test/rules/src/special-variables.gyp +34 -0
- data/ext/gyp/test/rules/src/subdir1/executable.gyp +37 -0
- data/ext/gyp/test/rules/src/subdir1/function1.in +6 -0
- data/ext/gyp/test/rules/src/subdir1/function2.in +6 -0
- data/ext/gyp/test/rules/src/subdir1/program.c +12 -0
- data/ext/gyp/test/rules/src/subdir2/both_rule_and_action_input.gyp +50 -0
- data/ext/gyp/test/rules/src/subdir2/file1.in +1 -0
- data/ext/gyp/test/rules/src/subdir2/file2.in +1 -0
- data/ext/gyp/test/rules/src/subdir2/never_used.gyp +31 -0
- data/ext/gyp/test/rules/src/subdir2/no_action.gyp +38 -0
- data/ext/gyp/test/rules/src/subdir2/no_inputs.gyp +32 -0
- data/ext/gyp/test/rules/src/subdir2/none.gyp +33 -0
- data/ext/gyp/test/rules/src/subdir2/program.c +12 -0
- data/ext/gyp/test/rules/src/subdir3/executable2.gyp +37 -0
- data/ext/gyp/test/rules/src/subdir3/function3.in +6 -0
- data/ext/gyp/test/rules/src/subdir3/program.c +10 -0
- data/ext/gyp/test/rules/src/subdir4/asm-function.assem +10 -0
- data/ext/gyp/test/rules/src/subdir4/build-asm.gyp +49 -0
- data/ext/gyp/test/rules/src/subdir4/program.c +19 -0
- data/ext/gyp/test/rules-dirname/gyptest-dirname.py +57 -0
- data/ext/gyp/test/rules-dirname/src/actions.gyp +15 -0
- data/ext/gyp/test/rules-dirname/src/copy-file.py +11 -0
- data/ext/gyp/test/rules-dirname/src/subdir/a/b/c.gencc +8 -0
- data/ext/gyp/test/rules-dirname/src/subdir/a/b/c.printvars +1 -0
- data/ext/gyp/test/rules-dirname/src/subdir/foo/bar/baz.gencc +8 -0
- data/ext/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars +1 -0
- data/ext/gyp/test/rules-dirname/src/subdir/input-rule-dirname.gyp +140 -0
- data/ext/gyp/test/rules-dirname/src/subdir/main.cc +14 -0
- data/ext/gyp/test/rules-dirname/src/subdir/nodir.gencc +8 -0
- data/ext/gyp/test/rules-dirname/src/subdir/printvars.py +14 -0
- data/ext/gyp/test/rules-rebuild/gyptest-all.py +70 -0
- data/ext/gyp/test/rules-rebuild/gyptest-default.py +91 -0
- data/ext/gyp/test/rules-rebuild/src/main.c +12 -0
- data/ext/gyp/test/rules-rebuild/src/make-sources.py +19 -0
- data/ext/gyp/test/rules-rebuild/src/prog1.in +7 -0
- data/ext/gyp/test/rules-rebuild/src/prog2.in +7 -0
- data/ext/gyp/test/rules-rebuild/src/same_target.gyp +31 -0
- data/ext/gyp/test/rules-use-built-dependencies/gyptest-use-built-dependencies.py +23 -0
- data/ext/gyp/test/rules-use-built-dependencies/src/main.cc +17 -0
- data/ext/gyp/test/rules-use-built-dependencies/src/use-built-dependencies-rule.gyp +42 -0
- data/ext/gyp/test/rules-variables/gyptest-rules-variables.py +35 -0
- data/ext/gyp/test/rules-variables/src/input_ext.c +9 -0
- data/ext/gyp/test/rules-variables/src/input_name/test.c +9 -0
- data/ext/gyp/test/rules-variables/src/input_path/subdir/test.c +9 -0
- data/ext/gyp/test/rules-variables/src/subdir/input_dirname.c +9 -0
- data/ext/gyp/test/rules-variables/src/subdir/test.c +18 -0
- data/ext/gyp/test/rules-variables/src/test.input_root.c +9 -0
- data/ext/gyp/test/rules-variables/src/variables.gyp +40 -0
- data/ext/gyp/test/same-gyp-name/gyptest-all.py +38 -0
- data/ext/gyp/test/same-gyp-name/gyptest-default.py +38 -0
- data/ext/gyp/test/same-gyp-name/gyptest-library.py +20 -0
- data/ext/gyp/test/same-gyp-name/library/one/sub.gyp +11 -0
- data/ext/gyp/test/same-gyp-name/library/test.gyp +15 -0
- data/ext/gyp/test/same-gyp-name/library/two/sub.gyp +11 -0
- data/ext/gyp/test/same-gyp-name/src/all.gyp +16 -0
- data/ext/gyp/test/same-gyp-name/src/subdir1/executable.gyp +15 -0
- data/ext/gyp/test/same-gyp-name/src/subdir1/main1.cc +6 -0
- data/ext/gyp/test/same-gyp-name/src/subdir2/executable.gyp +15 -0
- data/ext/gyp/test/same-gyp-name/src/subdir2/main2.cc +6 -0
- data/ext/gyp/test/same-rule-output-file-name/gyptest-all.py +23 -0
- data/ext/gyp/test/same-rule-output-file-name/src/subdir1/subdir1.gyp +30 -0
- data/ext/gyp/test/same-rule-output-file-name/src/subdir2/subdir2.gyp +30 -0
- data/ext/gyp/test/same-rule-output-file-name/src/subdirs.gyp +16 -0
- data/ext/gyp/test/same-rule-output-file-name/src/touch.py +11 -0
- data/ext/gyp/test/same-source-file-name/gyptest-all.py +34 -0
- data/ext/gyp/test/same-source-file-name/gyptest-default.py +34 -0
- data/ext/gyp/test/same-source-file-name/gyptest-pass-executable.py +33 -0
- data/ext/gyp/test/same-source-file-name/gyptest-pass-shared.py +18 -0
- data/ext/gyp/test/same-source-file-name/gyptest-static.py +34 -0
- data/ext/gyp/test/same-source-file-name/src/all.gyp +30 -0
- data/ext/gyp/test/same-source-file-name/src/double-executable.gyp +21 -0
- data/ext/gyp/test/same-source-file-name/src/double-shared.gyp +27 -0
- data/ext/gyp/test/same-source-file-name/src/double-static.gyp +22 -0
- data/ext/gyp/test/same-source-file-name/src/func.c +6 -0
- data/ext/gyp/test/same-source-file-name/src/prog1.c +16 -0
- data/ext/gyp/test/same-source-file-name/src/prog2.c +16 -0
- data/ext/gyp/test/same-source-file-name/src/prog3.c +18 -0
- data/ext/gyp/test/same-source-file-name/src/subdir1/func.c +6 -0
- data/ext/gyp/test/same-source-file-name/src/subdir2/func.c +6 -0
- data/ext/gyp/test/same-target-name/gyptest-same-target-name.py +18 -0
- data/ext/gyp/test/same-target-name/src/all.gyp +16 -0
- data/ext/gyp/test/same-target-name/src/executable1.gyp +15 -0
- data/ext/gyp/test/same-target-name/src/executable2.gyp +15 -0
- data/ext/gyp/test/same-target-name-different-directory/gyptest-all.py +41 -0
- data/ext/gyp/test/same-target-name-different-directory/src/subdir1/subdir1.gyp +66 -0
- data/ext/gyp/test/same-target-name-different-directory/src/subdir2/subdir2.gyp +66 -0
- data/ext/gyp/test/same-target-name-different-directory/src/subdirs.gyp +16 -0
- data/ext/gyp/test/same-target-name-different-directory/src/touch.py +11 -0
- data/ext/gyp/test/sanitize-rule-names/blah.S +0 -0
- data/ext/gyp/test/sanitize-rule-names/gyptest-sanitize-rule-names.py +17 -0
- data/ext/gyp/test/sanitize-rule-names/hello.cc +7 -0
- data/ext/gyp/test/sanitize-rule-names/sanitize-rule-names.gyp +27 -0
- data/ext/gyp/test/sanitize-rule-names/script.py +10 -0
- data/ext/gyp/test/self-dependency/common.gypi +13 -0
- data/ext/gyp/test/self-dependency/dep.gyp +23 -0
- data/ext/gyp/test/self-dependency/gyptest-self-dependency.py +19 -0
- data/ext/gyp/test/self-dependency/self_dependency.gyp +15 -0
- data/ext/gyp/test/sibling/gyptest-all.py +42 -0
- data/ext/gyp/test/sibling/gyptest-relocate.py +44 -0
- data/ext/gyp/test/sibling/src/build/all.gyp +16 -0
- data/ext/gyp/test/sibling/src/prog1/prog1.c +7 -0
- data/ext/gyp/test/sibling/src/prog1/prog1.gyp +15 -0
- data/ext/gyp/test/sibling/src/prog2/prog2.c +7 -0
- data/ext/gyp/test/sibling/src/prog2/prog2.gyp +15 -0
- data/ext/gyp/test/small/gyptest-small.py +56 -0
- data/ext/gyp/test/standalone/gyptest-standalone.py +35 -0
- data/ext/gyp/test/standalone/standalone.gyp +12 -0
- data/ext/gyp/test/standalone-static-library/gyptest-standalone-static-library.py +50 -0
- data/ext/gyp/test/standalone-static-library/invalid.gyp +16 -0
- data/ext/gyp/test/standalone-static-library/mylib.c +7 -0
- data/ext/gyp/test/standalone-static-library/mylib.gyp +26 -0
- data/ext/gyp/test/standalone-static-library/prog.c +7 -0
- data/ext/gyp/test/subdirectory/gyptest-SYMROOT-all.py +36 -0
- data/ext/gyp/test/subdirectory/gyptest-SYMROOT-default.py +37 -0
- data/ext/gyp/test/subdirectory/gyptest-subdir-all.py +34 -0
- data/ext/gyp/test/subdirectory/gyptest-subdir-default.py +34 -0
- data/ext/gyp/test/subdirectory/gyptest-subdir2-deep.py +25 -0
- data/ext/gyp/test/subdirectory/gyptest-top-all.py +43 -0
- data/ext/gyp/test/subdirectory/gyptest-top-default.py +43 -0
- data/ext/gyp/test/subdirectory/src/prog1.c +7 -0
- data/ext/gyp/test/subdirectory/src/prog1.gyp +21 -0
- data/ext/gyp/test/subdirectory/src/subdir/prog2.c +7 -0
- data/ext/gyp/test/subdirectory/src/subdir/prog2.gyp +18 -0
- data/ext/gyp/test/subdirectory/src/subdir/subdir2/prog3.c +7 -0
- data/ext/gyp/test/subdirectory/src/subdir/subdir2/prog3.gyp +18 -0
- data/ext/gyp/test/subdirectory/src/symroot.gypi +16 -0
- data/ext/gyp/test/symlinks/gyptest-symlinks.py +66 -0
- data/ext/gyp/test/symlinks/hello.c +12 -0
- data/ext/gyp/test/symlinks/hello.gyp +15 -0
- data/ext/gyp/test/target/gyptest-target.py +37 -0
- data/ext/gyp/test/target/hello.c +7 -0
- data/ext/gyp/test/target/target.gyp +24 -0
- data/ext/gyp/test/toolsets/gyptest-toolsets.py +31 -0
- data/ext/gyp/test/toolsets/main.cc +13 -0
- data/ext/gyp/test/toolsets/toolsets.cc +11 -0
- data/ext/gyp/test/toolsets/toolsets.gyp +62 -0
- data/ext/gyp/test/toolsets/toolsets_shared.cc +11 -0
- data/ext/gyp/test/toplevel-dir/gyptest-toplevel-dir.py +31 -0
- data/ext/gyp/test/toplevel-dir/src/sub1/main.gyp +18 -0
- data/ext/gyp/test/toplevel-dir/src/sub1/prog1.c +7 -0
- data/ext/gyp/test/toplevel-dir/src/sub2/prog2.c +7 -0
- data/ext/gyp/test/toplevel-dir/src/sub2/prog2.gyp +15 -0
- data/ext/gyp/test/variables/commands/commands-repeated.gyp +128 -0
- data/ext/gyp/test/variables/commands/commands-repeated.gyp.stdout +136 -0
- data/ext/gyp/test/variables/commands/commands-repeated.gypd.golden +77 -0
- data/ext/gyp/test/variables/commands/commands.gyp +91 -0
- data/ext/gyp/test/variables/commands/commands.gyp.ignore-env.stdout +96 -0
- data/ext/gyp/test/variables/commands/commands.gyp.stdout +96 -0
- data/ext/gyp/test/variables/commands/commands.gypd.golden +66 -0
- data/ext/gyp/test/variables/commands/commands.gypi +23 -0
- data/ext/gyp/test/variables/commands/gyptest-commands-ignore-env.py +47 -0
- data/ext/gyp/test/variables/commands/gyptest-commands-repeated-multidir.py +23 -0
- data/ext/gyp/test/variables/commands/gyptest-commands-repeated.py +40 -0
- data/ext/gyp/test/variables/commands/gyptest-commands.py +40 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/dir_1/test_1.gyp +13 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/dir_2/test_2.gyp +13 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/main.gyp +16 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/print_cwd_basename.py +11 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/repeated_command_common.gypi +25 -0
- data/ext/gyp/test/variables/commands/test.py +7 -0
- data/ext/gyp/test/variables/commands/update_golden +11 -0
- data/ext/gyp/test/variables/empty/empty.gyp +13 -0
- data/ext/gyp/test/variables/empty/empty.gypi +9 -0
- data/ext/gyp/test/variables/empty/gyptest-empty.py +19 -0
- data/ext/gyp/test/variables/filelist/filelist.gyp.stdout +26 -0
- data/ext/gyp/test/variables/filelist/filelist.gypd.golden +43 -0
- data/ext/gyp/test/variables/filelist/gyptest-filelist-golden.py +53 -0
- data/ext/gyp/test/variables/filelist/gyptest-filelist.py +29 -0
- data/ext/gyp/test/variables/filelist/src/dummy.py +5 -0
- data/ext/gyp/test/variables/filelist/src/filelist.gyp +93 -0
- data/ext/gyp/test/variables/filelist/src/filelist2.gyp +40 -0
- data/ext/gyp/test/variables/filelist/update_golden +8 -0
- data/ext/gyp/test/variables/latelate/gyptest-latelate.py +25 -0
- data/ext/gyp/test/variables/latelate/src/latelate.gyp +34 -0
- data/ext/gyp/test/variables/latelate/src/program.cc +13 -0
- data/ext/gyp/test/variables/variable-in-path/C1/hello.cc +7 -0
- data/ext/gyp/test/variables/variable-in-path/gyptest-variable-in-path.py +23 -0
- data/ext/gyp/test/variables/variable-in-path/variable-in-path.gyp +31 -0
- data/ext/gyp/test/win/asm-files/asm-files.gyp +17 -0
- data/ext/gyp/test/win/asm-files/b.s +0 -0
- data/ext/gyp/test/win/asm-files/c.S +0 -0
- data/ext/gyp/test/win/asm-files/hello.cc +7 -0
- data/ext/gyp/test/win/batch-file-action/batch-file-action.gyp +21 -0
- data/ext/gyp/test/win/batch-file-action/infile +1 -0
- data/ext/gyp/test/win/batch-file-action/somecmd.bat +5 -0
- data/ext/gyp/test/win/command-quote/a.S +0 -0
- data/ext/gyp/test/win/command-quote/bat with spaces.bat +7 -0
- data/ext/gyp/test/win/command-quote/command-quote.gyp +79 -0
- data/ext/gyp/test/win/command-quote/go.bat +7 -0
- data/ext/gyp/test/win/command-quote/subdir/and/another/in-subdir.gyp +27 -0
- data/ext/gyp/test/win/compiler-flags/additional-include-dirs.cc +10 -0
- data/ext/gyp/test/win/compiler-flags/additional-include-dirs.gyp +20 -0
- data/ext/gyp/test/win/compiler-flags/additional-options.cc +10 -0
- data/ext/gyp/test/win/compiler-flags/additional-options.gyp +31 -0
- data/ext/gyp/test/win/compiler-flags/analysis.gyp +40 -0
- data/ext/gyp/test/win/compiler-flags/buffer-security-check.gyp +51 -0
- data/ext/gyp/test/win/compiler-flags/buffer-security.cc +12 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention-cdecl.def +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention-fastcall.def +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention-stdcall.def +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention-vectorcall.def +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention.cc +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention.gyp +66 -0
- data/ext/gyp/test/win/compiler-flags/character-set-mbcs.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/character-set-unicode.cc +15 -0
- data/ext/gyp/test/win/compiler-flags/character-set.gyp +35 -0
- data/ext/gyp/test/win/compiler-flags/compile-as-managed.cc +9 -0
- data/ext/gyp/test/win/compiler-flags/compile-as-managed.gyp +29 -0
- data/ext/gyp/test/win/compiler-flags/compile-as-winrt.cc +12 -0
- data/ext/gyp/test/win/compiler-flags/compile-as-winrt.gyp +20 -0
- data/ext/gyp/test/win/compiler-flags/debug-format.gyp +48 -0
- data/ext/gyp/test/win/compiler-flags/default-char-is-unsigned.cc +15 -0
- data/ext/gyp/test/win/compiler-flags/default-char-is-unsigned.gyp +20 -0
- data/ext/gyp/test/win/compiler-flags/disable-specific-warnings.cc +9 -0
- data/ext/gyp/test/win/compiler-flags/disable-specific-warnings.gyp +29 -0
- data/ext/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.cc +28 -0
- data/ext/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.gyp +68 -0
- data/ext/gyp/test/win/compiler-flags/exception-handling-on.cc +24 -0
- data/ext/gyp/test/win/compiler-flags/exception-handling.gyp +46 -0
- data/ext/gyp/test/win/compiler-flags/floating-point-model-fast.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/floating-point-model-precise.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/floating-point-model-strict.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/floating-point-model.gyp +43 -0
- data/ext/gyp/test/win/compiler-flags/force-include-files-with-precompiled.cc +10 -0
- data/ext/gyp/test/win/compiler-flags/force-include-files.cc +8 -0
- data/ext/gyp/test/win/compiler-flags/force-include-files.gyp +36 -0
- data/ext/gyp/test/win/compiler-flags/function-level-linking.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/function-level-linking.gyp +28 -0
- data/ext/gyp/test/win/compiler-flags/hello.cc +7 -0
- data/ext/gyp/test/win/compiler-flags/optimizations.gyp +207 -0
- data/ext/gyp/test/win/compiler-flags/pdbname-override.gyp +26 -0
- data/ext/gyp/test/win/compiler-flags/pdbname.cc +7 -0
- data/ext/gyp/test/win/compiler-flags/pdbname.gyp +24 -0
- data/ext/gyp/test/win/compiler-flags/precomp.cc +6 -0
- data/ext/gyp/test/win/compiler-flags/rtti-on.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/rtti.gyp +37 -0
- data/ext/gyp/test/win/compiler-flags/runtime-checks.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/runtime-checks.gyp +29 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library-md.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library-mdd.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library-mt.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library-mtd.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library.gyp +48 -0
- data/ext/gyp/test/win/compiler-flags/subdir/header.h +0 -0
- data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type.gyp +33 -0
- data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type1.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type2.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/uninit.cc +13 -0
- data/ext/gyp/test/win/compiler-flags/warning-as-error.cc +9 -0
- data/ext/gyp/test/win/compiler-flags/warning-as-error.gyp +37 -0
- data/ext/gyp/test/win/compiler-flags/warning-level.gyp +115 -0
- data/ext/gyp/test/win/compiler-flags/warning-level1.cc +8 -0
- data/ext/gyp/test/win/compiler-flags/warning-level2.cc +14 -0
- data/ext/gyp/test/win/compiler-flags/warning-level3.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/warning-level4.cc +10 -0
- data/ext/gyp/test/win/enable-winrt/dllmain.cc +30 -0
- data/ext/gyp/test/win/enable-winrt/enable-winrt.gyp +39 -0
- data/ext/gyp/test/win/generator-output-different-drive/gyptest-generator-output-different-drive.py +44 -0
- data/ext/gyp/test/win/generator-output-different-drive/prog.c +10 -0
- data/ext/gyp/test/win/generator-output-different-drive/prog.gyp +15 -0
- data/ext/gyp/test/win/gyptest-asm-files.py +26 -0
- data/ext/gyp/test/win/gyptest-cl-additional-include-dirs.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-additional-options.py +28 -0
- data/ext/gyp/test/win/gyptest-cl-analysis.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-buffer-security-check.py +53 -0
- data/ext/gyp/test/win/gyptest-cl-calling-convention.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-character-set.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-compile-as-managed.py +24 -0
- data/ext/gyp/test/win/gyptest-cl-compile-as-winrt.py +20 -0
- data/ext/gyp/test/win/gyptest-cl-debug-format.py +43 -0
- data/ext/gyp/test/win/gyptest-cl-default-char-is-unsigned.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-disable-specific-warnings.py +32 -0
- data/ext/gyp/test/win/gyptest-cl-enable-enhanced-instruction-set.py +49 -0
- data/ext/gyp/test/win/gyptest-cl-exception-handling.py +33 -0
- data/ext/gyp/test/win/gyptest-cl-floating-point-model.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-force-include-files.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-function-level-linking.py +54 -0
- data/ext/gyp/test/win/gyptest-cl-optimizations.py +105 -0
- data/ext/gyp/test/win/gyptest-cl-pdbname-override.py +27 -0
- data/ext/gyp/test/win/gyptest-cl-pdbname.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-rtti.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-runtime-checks.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-runtime-library.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-treat-wchar-t-as-built-in-type.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-warning-as-error.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-warning-level.py +41 -0
- data/ext/gyp/test/win/gyptest-command-quote.py +42 -0
- data/ext/gyp/test/win/gyptest-crosscompile-ar.py +29 -0
- data/ext/gyp/test/win/gyptest-lib-ltcg.py +22 -0
- data/ext/gyp/test/win/gyptest-link-additional-deps.py +22 -0
- data/ext/gyp/test/win/gyptest-link-additional-options.py +22 -0
- data/ext/gyp/test/win/gyptest-link-aslr.py +35 -0
- data/ext/gyp/test/win/gyptest-link-base-address.py +62 -0
- data/ext/gyp/test/win/gyptest-link-debug-info.py +26 -0
- data/ext/gyp/test/win/gyptest-link-default-libs.py +22 -0
- data/ext/gyp/test/win/gyptest-link-deffile.py +43 -0
- data/ext/gyp/test/win/gyptest-link-defrelink.py +56 -0
- data/ext/gyp/test/win/gyptest-link-delay-load-dlls.py +35 -0
- data/ext/gyp/test/win/gyptest-link-embed-manifest.py +100 -0
- data/ext/gyp/test/win/gyptest-link-enable-uac.py +104 -0
- data/ext/gyp/test/win/gyptest-link-enable-winrt-app-revision.py +43 -0
- data/ext/gyp/test/win/gyptest-link-enable-winrt-target-platform-version.py +47 -0
- data/ext/gyp/test/win/gyptest-link-enable-winrt.py +37 -0
- data/ext/gyp/test/win/gyptest-link-entrypointsymbol.py +24 -0
- data/ext/gyp/test/win/gyptest-link-fixed-base.py +40 -0
- data/ext/gyp/test/win/gyptest-link-force-symbol-reference.py +26 -0
- data/ext/gyp/test/win/gyptest-link-generate-manifest.py +127 -0
- data/ext/gyp/test/win/gyptest-link-incremental.py +37 -0
- data/ext/gyp/test/win/gyptest-link-large-address-aware.py +35 -0
- data/ext/gyp/test/win/gyptest-link-large-pdb.py +76 -0
- data/ext/gyp/test/win/gyptest-link-library-adjust.py +21 -0
- data/ext/gyp/test/win/gyptest-link-library-directories.py +35 -0
- data/ext/gyp/test/win/gyptest-link-ltcg.py +44 -0
- data/ext/gyp/test/win/gyptest-link-mapfile.py +44 -0
- data/ext/gyp/test/win/gyptest-link-nodefaultlib.py +24 -0
- data/ext/gyp/test/win/gyptest-link-noimportlib.py +30 -0
- data/ext/gyp/test/win/gyptest-link-nxcompat.py +37 -0
- data/ext/gyp/test/win/gyptest-link-opt-icf.py +41 -0
- data/ext/gyp/test/win/gyptest-link-opt-ref.py +40 -0
- data/ext/gyp/test/win/gyptest-link-ordering.py +103 -0
- data/ext/gyp/test/win/gyptest-link-outputfile.py +28 -0
- data/ext/gyp/test/win/gyptest-link-pdb-no-output.py +25 -0
- data/ext/gyp/test/win/gyptest-link-pdb-output.py +33 -0
- data/ext/gyp/test/win/gyptest-link-pdb.py +35 -0
- data/ext/gyp/test/win/gyptest-link-pgo.py +75 -0
- data/ext/gyp/test/win/gyptest-link-profile.py +37 -0
- data/ext/gyp/test/win/gyptest-link-restat-importlib.py +47 -0
- data/ext/gyp/test/win/gyptest-link-safeseh.py +46 -0
- data/ext/gyp/test/win/gyptest-link-shard.py +30 -0
- data/ext/gyp/test/win/gyptest-link-stacksize.py +62 -0
- data/ext/gyp/test/win/gyptest-link-subsystem.py +38 -0
- data/ext/gyp/test/win/gyptest-link-target-machine.py +28 -0
- data/ext/gyp/test/win/gyptest-link-tsaware.py +33 -0
- data/ext/gyp/test/win/gyptest-link-uldi-depending-on-module.py +24 -0
- data/ext/gyp/test/win/gyptest-link-uldi.py +28 -0
- data/ext/gyp/test/win/gyptest-link-unsupported-manifest.py +27 -0
- data/ext/gyp/test/win/gyptest-link-update-manifest.py +104 -0
- data/ext/gyp/test/win/gyptest-link-warnings-as-errors.py +24 -0
- data/ext/gyp/test/win/gyptest-long-command-line.py +23 -0
- data/ext/gyp/test/win/gyptest-macro-projectname.py +24 -0
- data/ext/gyp/test/win/gyptest-macro-targetext.py +26 -0
- data/ext/gyp/test/win/gyptest-macro-targetfilename.py +37 -0
- data/ext/gyp/test/win/gyptest-macro-targetname.py +29 -0
- data/ext/gyp/test/win/gyptest-macro-targetpath.py +30 -0
- data/ext/gyp/test/win/gyptest-macro-vcinstalldir.py +24 -0
- data/ext/gyp/test/win/gyptest-macros-containing-gyp.py +21 -0
- data/ext/gyp/test/win/gyptest-macros-in-inputs-and-outputs.py +27 -0
- data/ext/gyp/test/win/gyptest-midl-excluded.py +22 -0
- data/ext/gyp/test/win/gyptest-midl-includedirs.py +21 -0
- data/ext/gyp/test/win/gyptest-midl-rules.py +28 -0
- data/ext/gyp/test/win/gyptest-ml-safeseh.py +22 -0
- data/ext/gyp/test/win/gyptest-quoting-commands.py +25 -0
- data/ext/gyp/test/win/gyptest-rc-build.py +29 -0
- data/ext/gyp/test/win/gyptest-sys.py +27 -0
- data/ext/gyp/test/win/gyptest-system-include.py +21 -0
- data/ext/gyp/test/win/idl-excluded/bad.idl +6 -0
- data/ext/gyp/test/win/idl-excluded/copy-file.py +11 -0
- data/ext/gyp/test/win/idl-excluded/idl-excluded.gyp +58 -0
- data/ext/gyp/test/win/idl-excluded/program.cc +7 -0
- data/ext/gyp/test/win/idl-includedirs/hello.cc +7 -0
- data/ext/gyp/test/win/idl-includedirs/idl-includedirs.gyp +26 -0
- data/ext/gyp/test/win/idl-includedirs/subdir/bar.idl +13 -0
- data/ext/gyp/test/win/idl-includedirs/subdir/foo.idl +14 -0
- data/ext/gyp/test/win/idl-rules/Window.idl +9 -0
- data/ext/gyp/test/win/idl-rules/basic-idl.gyp +67 -0
- data/ext/gyp/test/win/idl-rules/history_indexer.idl +17 -0
- data/ext/gyp/test/win/idl-rules/history_indexer_user.cc +15 -0
- data/ext/gyp/test/win/idl-rules/idl_compiler.py +17 -0
- data/ext/gyp/test/win/importlib/dll_no_exports.cc +9 -0
- data/ext/gyp/test/win/importlib/has-exports.cc +10 -0
- data/ext/gyp/test/win/importlib/hello.cc +9 -0
- data/ext/gyp/test/win/importlib/importlib.gyp +30 -0
- data/ext/gyp/test/win/importlib/noimplib.gyp +16 -0
- data/ext/gyp/test/win/large-pdb/dllmain.cc +9 -0
- data/ext/gyp/test/win/large-pdb/large-pdb.gyp +98 -0
- data/ext/gyp/test/win/large-pdb/main.cc +7 -0
- data/ext/gyp/test/win/lib-crosscompile/answer.cc +9 -0
- data/ext/gyp/test/win/lib-crosscompile/answer.h +5 -0
- data/ext/gyp/test/win/lib-crosscompile/use_host_ar.gyp +17 -0
- data/ext/gyp/test/win/lib-flags/answer.cc +9 -0
- data/ext/gyp/test/win/lib-flags/answer.h +5 -0
- data/ext/gyp/test/win/lib-flags/ltcg.gyp +21 -0
- data/ext/gyp/test/win/linker-flags/a/x.cc +7 -0
- data/ext/gyp/test/win/linker-flags/a/z.cc +7 -0
- data/ext/gyp/test/win/linker-flags/additional-deps.cc +10 -0
- data/ext/gyp/test/win/linker-flags/additional-deps.gyp +30 -0
- data/ext/gyp/test/win/linker-flags/additional-options.gyp +29 -0
- data/ext/gyp/test/win/linker-flags/aslr.gyp +35 -0
- data/ext/gyp/test/win/linker-flags/b/y.cc +7 -0
- data/ext/gyp/test/win/linker-flags/base-address.gyp +38 -0
- data/ext/gyp/test/win/linker-flags/debug-info.gyp +28 -0
- data/ext/gyp/test/win/linker-flags/deffile-multiple.gyp +17 -0
- data/ext/gyp/test/win/linker-flags/deffile.cc +13 -0
- data/ext/gyp/test/win/linker-flags/deffile.def +8 -0
- data/ext/gyp/test/win/linker-flags/deffile.gyp +38 -0
- data/ext/gyp/test/win/linker-flags/delay-load-dlls.gyp +35 -0
- data/ext/gyp/test/win/linker-flags/delay-load.cc +10 -0
- data/ext/gyp/test/win/linker-flags/embed-manifest.gyp +109 -0
- data/ext/gyp/test/win/linker-flags/enable-uac.gyp +45 -0
- data/ext/gyp/test/win/linker-flags/entrypointsymbol.cc +13 -0
- data/ext/gyp/test/win/linker-flags/entrypointsymbol.gyp +28 -0
- data/ext/gyp/test/win/linker-flags/extra.manifest +11 -0
- data/ext/gyp/test/win/linker-flags/extra2.manifest +11 -0
- data/ext/gyp/test/win/linker-flags/fixed-base.gyp +52 -0
- data/ext/gyp/test/win/linker-flags/force-symbol-reference.gyp +39 -0
- data/ext/gyp/test/win/linker-flags/generate-manifest.gyp +166 -0
- data/ext/gyp/test/win/linker-flags/hello.cc +7 -0
- data/ext/gyp/test/win/linker-flags/incremental.gyp +65 -0
- data/ext/gyp/test/win/linker-flags/inline_test.cc +12 -0
- data/ext/gyp/test/win/linker-flags/inline_test.h +5 -0
- data/ext/gyp/test/win/linker-flags/inline_test_main.cc +15 -0
- data/ext/gyp/test/win/linker-flags/large-address-aware.gyp +28 -0
- data/ext/gyp/test/win/linker-flags/library-adjust.cc +10 -0
- data/ext/gyp/test/win/linker-flags/library-adjust.gyp +16 -0
- data/ext/gyp/test/win/linker-flags/library-directories-define.cc +7 -0
- data/ext/gyp/test/win/linker-flags/library-directories-reference.cc +10 -0
- data/ext/gyp/test/win/linker-flags/library-directories.gyp +42 -0
- data/ext/gyp/test/win/linker-flags/link-ordering.gyp +95 -0
- data/ext/gyp/test/win/linker-flags/link-warning.cc +10 -0
- data/ext/gyp/test/win/linker-flags/ltcg.gyp +42 -0
- data/ext/gyp/test/win/linker-flags/main-crt.c +8 -0
- data/ext/gyp/test/win/linker-flags/manifest-in-comment.cc +13 -0
- data/ext/gyp/test/win/linker-flags/mapfile.cc +12 -0
- data/ext/gyp/test/win/linker-flags/mapfile.gyp +45 -0
- data/ext/gyp/test/win/linker-flags/no-default-libs.cc +18 -0
- data/ext/gyp/test/win/linker-flags/no-default-libs.gyp +13 -0
- data/ext/gyp/test/win/linker-flags/nodefaultlib.cc +13 -0
- data/ext/gyp/test/win/linker-flags/nodefaultlib.gyp +30 -0
- data/ext/gyp/test/win/linker-flags/nxcompat.gyp +35 -0
- data/ext/gyp/test/win/linker-flags/opt-icf.cc +29 -0
- data/ext/gyp/test/win/linker-flags/opt-icf.gyp +63 -0
- data/ext/gyp/test/win/linker-flags/opt-ref.cc +11 -0
- data/ext/gyp/test/win/linker-flags/opt-ref.gyp +56 -0
- data/ext/gyp/test/win/linker-flags/outputfile.gyp +58 -0
- data/ext/gyp/test/win/linker-flags/pdb-output.gyp +49 -0
- data/ext/gyp/test/win/linker-flags/pgo.gyp +143 -0
- data/ext/gyp/test/win/linker-flags/profile.gyp +50 -0
- data/ext/gyp/test/win/linker-flags/program-database.gyp +40 -0
- data/ext/gyp/test/win/linker-flags/safeseh.gyp +79 -0
- data/ext/gyp/test/win/linker-flags/safeseh_hello.cc +11 -0
- data/ext/gyp/test/win/linker-flags/safeseh_zero.asm +10 -0
- data/ext/gyp/test/win/linker-flags/safeseh_zero64.asm +9 -0
- data/ext/gyp/test/win/linker-flags/stacksize.gyp +44 -0
- data/ext/gyp/test/win/linker-flags/subdir/library.gyp +13 -0
- data/ext/gyp/test/win/linker-flags/subsystem-windows.cc +9 -0
- data/ext/gyp/test/win/linker-flags/subsystem.gyp +70 -0
- data/ext/gyp/test/win/linker-flags/target-machine.gyp +48 -0
- data/ext/gyp/test/win/linker-flags/tsaware.gyp +28 -0
- data/ext/gyp/test/win/linker-flags/unsupported-manifest.gyp +13 -0
- data/ext/gyp/test/win/linker-flags/update_pgd.py +35 -0
- data/ext/gyp/test/win/linker-flags/warn-as-error.gyp +33 -0
- data/ext/gyp/test/win/linker-flags/x.cc +7 -0
- data/ext/gyp/test/win/linker-flags/y.cc +7 -0
- data/ext/gyp/test/win/linker-flags/z.cc +7 -0
- data/ext/gyp/test/win/long-command-line/function.cc +7 -0
- data/ext/gyp/test/win/long-command-line/hello.cc +7 -0
- data/ext/gyp/test/win/long-command-line/long-command-line.gyp +54 -0
- data/ext/gyp/test/win/ml-safeseh/a.asm +10 -0
- data/ext/gyp/test/win/ml-safeseh/hello.cc +11 -0
- data/ext/gyp/test/win/ml-safeseh/ml-safeseh.gyp +24 -0
- data/ext/gyp/test/win/precompiled/gyptest-all.py +21 -0
- data/ext/gyp/test/win/precompiled/hello.c +14 -0
- data/ext/gyp/test/win/precompiled/hello.gyp +28 -0
- data/ext/gyp/test/win/precompiled/hello2.c +13 -0
- data/ext/gyp/test/win/precompiled/precomp.c +8 -0
- data/ext/gyp/test/win/rc-build/Resource.h +26 -0
- data/ext/gyp/test/win/rc-build/hello.cpp +30 -0
- data/ext/gyp/test/win/rc-build/hello.gyp +92 -0
- data/ext/gyp/test/win/rc-build/hello.h +3 -0
- data/ext/gyp/test/win/rc-build/hello.ico +0 -0
- data/ext/gyp/test/win/rc-build/hello.rc +86 -0
- data/ext/gyp/test/win/rc-build/hello3.rc +87 -0
- data/ext/gyp/test/win/rc-build/small.ico +0 -0
- data/ext/gyp/test/win/rc-build/subdir/hello2.rc +87 -0
- data/ext/gyp/test/win/rc-build/subdir/include.h +1 -0
- data/ext/gyp/test/win/rc-build/targetver.h +24 -0
- data/ext/gyp/test/win/shard/hello.cc +7 -0
- data/ext/gyp/test/win/shard/hello1.cc +7 -0
- data/ext/gyp/test/win/shard/hello2.cc +7 -0
- data/ext/gyp/test/win/shard/hello3.cc +7 -0
- data/ext/gyp/test/win/shard/hello4.cc +7 -0
- data/ext/gyp/test/win/shard/shard.gyp +31 -0
- data/ext/gyp/test/win/shard/shard_ref.gyp +41 -0
- data/ext/gyp/test/win/system-include/bar/header.h +0 -0
- data/ext/gyp/test/win/system-include/common/commonheader.h +0 -0
- data/ext/gyp/test/win/system-include/foo/header.h +0 -0
- data/ext/gyp/test/win/system-include/main.cc +4 -0
- data/ext/gyp/test/win/system-include/test.gyp +26 -0
- data/ext/gyp/test/win/uldi/a.cc +7 -0
- data/ext/gyp/test/win/uldi/b.cc +7 -0
- data/ext/gyp/test/win/uldi/dll.cc +6 -0
- data/ext/gyp/test/win/uldi/exe.cc +7 -0
- data/ext/gyp/test/win/uldi/main.cc +10 -0
- data/ext/gyp/test/win/uldi/uldi-depending-on-module.gyp +42 -0
- data/ext/gyp/test/win/uldi/uldi.gyp +45 -0
- data/ext/gyp/test/win/vs-macros/as.py +20 -0
- data/ext/gyp/test/win/vs-macros/containing-gyp.gyp +39 -0
- data/ext/gyp/test/win/vs-macros/do_stuff.py +8 -0
- data/ext/gyp/test/win/vs-macros/hello.cc +7 -0
- data/ext/gyp/test/win/vs-macros/input-output-macros.gyp +32 -0
- data/ext/gyp/test/win/vs-macros/input.S +0 -0
- data/ext/gyp/test/win/vs-macros/projectname.gyp +29 -0
- data/ext/gyp/test/win/vs-macros/stuff.blah +1 -0
- data/ext/gyp/test/win/vs-macros/targetext.gyp +59 -0
- data/ext/gyp/test/win/vs-macros/targetfilename.gyp +59 -0
- data/ext/gyp/test/win/vs-macros/targetname.gyp +52 -0
- data/ext/gyp/test/win/vs-macros/targetpath.gyp +59 -0
- data/ext/gyp/test/win/vs-macros/test_exists.py +10 -0
- data/ext/gyp/test/win/vs-macros/vcinstalldir.gyp +41 -0
- data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.c +10 -0
- data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.gyp +32 -0
- data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.h +13 -0
- data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.rc +14 -0
- data/ext/gyp/test/win/win-tool/copies_readonly_files.gyp +29 -0
- data/ext/gyp/test/win/win-tool/gyptest-win-tool-handles-readonly-files.py +55 -0
- data/ext/gyp/test/win/winrt-app-type-revision/dllmain.cc +30 -0
- data/ext/gyp/test/win/winrt-app-type-revision/winrt-app-type-revison.gyp +43 -0
- data/ext/gyp/test/win/winrt-target-platform-version/dllmain.cc +30 -0
- data/ext/gyp/test/win/winrt-target-platform-version/winrt-target-platform-version.gyp +49 -0
- data/ext/gyp/test/xcode-ninja/list_excluded/gyptest-all.py +49 -0
- data/ext/gyp/test/xcode-ninja/list_excluded/hello.cpp +7 -0
- data/ext/gyp/test/xcode-ninja/list_excluded/hello_exclude.gyp +19 -0
- data/ext/gyp/test/xcode-ninja/list_excluded/hello_excluded.cpp +7 -0
- data/ext/gyp/tools/README +15 -0
- data/ext/gyp/tools/Xcode/README +5 -0
- data/ext/gyp/tools/Xcode/Specifications/gyp.pbfilespec +27 -0
- data/ext/gyp/tools/Xcode/Specifications/gyp.xclangspec +226 -0
- data/ext/gyp/tools/emacs/README +12 -0
- data/ext/gyp/tools/emacs/gyp-tests.el +63 -0
- data/ext/gyp/tools/emacs/gyp.el +275 -0
- data/ext/gyp/tools/emacs/run-unit-tests.sh +7 -0
- data/ext/gyp/tools/emacs/testdata/media.gyp +1105 -0
- data/ext/gyp/tools/emacs/testdata/media.gyp.fontified +1107 -0
- data/ext/gyp/tools/graphviz.py +102 -0
- data/ext/gyp/tools/pretty_gyp.py +156 -0
- data/ext/gyp/tools/pretty_sln.py +171 -0
- data/ext/gyp/tools/pretty_vcproj.py +337 -0
- data/ext/libuv/.gitattributes +1 -0
- data/ext/libuv/.github/ISSUE_TEMPLATE.md +13 -0
- data/ext/libuv/.github/stale.yml +22 -0
- data/ext/libuv/.gitignore +80 -0
- data/ext/libuv/.mailmap +50 -0
- data/ext/libuv/AUTHORS +415 -0
- data/ext/libuv/CMakeLists.txt +430 -0
- data/ext/libuv/CONTRIBUTING.md +172 -0
- data/ext/libuv/ChangeLog +4548 -0
- data/ext/libuv/LICENSE +70 -0
- data/ext/libuv/LICENSE-docs +396 -0
- data/ext/libuv/MAINTAINERS.md +48 -0
- data/ext/libuv/Makefile.am +548 -0
- data/ext/libuv/README.md +431 -0
- data/ext/libuv/SUPPORTED_PLATFORMS.md +68 -0
- data/ext/libuv/android-configure-arm +23 -0
- data/ext/libuv/android-configure-arm64 +23 -0
- data/ext/libuv/android-configure-x86 +23 -0
- data/ext/libuv/android-configure-x86_64 +25 -0
- data/ext/libuv/appveyor.yml +32 -0
- data/ext/libuv/autogen.sh +46 -0
- data/ext/libuv/common.gypi +213 -0
- data/ext/libuv/configure.ac +82 -0
- data/ext/libuv/docs/Makefile +183 -0
- data/ext/libuv/docs/code/cgi/main.c +81 -0
- data/ext/libuv/docs/code/cgi/tick.c +13 -0
- data/ext/libuv/docs/code/detach/main.c +31 -0
- data/ext/libuv/docs/code/dns/main.c +80 -0
- data/ext/libuv/docs/code/helloworld/main.c +15 -0
- data/ext/libuv/docs/code/idle-basic/main.c +24 -0
- data/ext/libuv/docs/code/idle-compute/main.c +43 -0
- data/ext/libuv/docs/code/interfaces/main.c +33 -0
- data/ext/libuv/docs/code/locks/main.c +57 -0
- data/ext/libuv/docs/code/multi-echo-server/hammer.js +20 -0
- data/ext/libuv/docs/code/multi-echo-server/main.c +114 -0
- data/ext/libuv/docs/code/multi-echo-server/worker.c +88 -0
- data/ext/libuv/docs/code/onchange/main.c +44 -0
- data/ext/libuv/docs/code/pipe-echo-server/main.c +94 -0
- data/ext/libuv/docs/code/plugin/hello.c +5 -0
- data/ext/libuv/docs/code/plugin/main.c +39 -0
- data/ext/libuv/docs/code/plugin/plugin.h +7 -0
- data/ext/libuv/docs/code/proc-streams/main.c +49 -0
- data/ext/libuv/docs/code/proc-streams/test.c +8 -0
- data/ext/libuv/docs/code/progress/main.c +47 -0
- data/ext/libuv/docs/code/queue-cancel/main.c +59 -0
- data/ext/libuv/docs/code/queue-work/main.c +44 -0
- data/ext/libuv/docs/code/ref-timer/main.c +29 -0
- data/ext/libuv/docs/code/signal/main.c +66 -0
- data/ext/libuv/docs/code/spawn/main.c +36 -0
- data/ext/libuv/docs/code/tcp-echo-server/main.c +87 -0
- data/ext/libuv/docs/code/thread-create/main.c +36 -0
- data/ext/libuv/docs/code/tty/main.c +29 -0
- data/ext/libuv/docs/code/tty-gravity/main.c +48 -0
- data/ext/libuv/docs/code/udp-dhcp/main.c +127 -0
- data/ext/libuv/docs/code/uvcat/main.c +63 -0
- data/ext/libuv/docs/code/uvstop/main.c +33 -0
- data/ext/libuv/docs/code/uvtee/main.c +80 -0
- data/ext/libuv/docs/code/uvwget/main.c +166 -0
- data/ext/libuv/docs/make.bat +243 -0
- data/ext/libuv/docs/src/api.rst +35 -0
- data/ext/libuv/docs/src/async.rst +65 -0
- data/ext/libuv/docs/src/check.rst +46 -0
- data/ext/libuv/docs/src/conf.py +348 -0
- data/ext/libuv/docs/src/design.rst +140 -0
- data/ext/libuv/docs/src/dll.rst +44 -0
- data/ext/libuv/docs/src/dns.rst +108 -0
- data/ext/libuv/docs/src/errors.rst +365 -0
- data/ext/libuv/docs/src/fs.rst +689 -0
- data/ext/libuv/docs/src/fs_event.rst +132 -0
- data/ext/libuv/docs/src/fs_poll.rst +77 -0
- data/ext/libuv/docs/src/guide/about.rst +22 -0
- data/ext/libuv/docs/src/guide/basics.rst +219 -0
- data/ext/libuv/docs/src/guide/eventloops.rst +48 -0
- data/ext/libuv/docs/src/guide/filesystem.rst +330 -0
- data/ext/libuv/docs/src/guide/introduction.rst +75 -0
- data/ext/libuv/docs/src/guide/networking.rst +250 -0
- data/ext/libuv/docs/src/guide/processes.rst +406 -0
- data/ext/libuv/docs/src/guide/threads.rst +385 -0
- data/ext/libuv/docs/src/guide/utilities.rst +437 -0
- data/ext/libuv/docs/src/guide.rst +22 -0
- data/ext/libuv/docs/src/handle.rst +283 -0
- data/ext/libuv/docs/src/idle.rst +54 -0
- data/ext/libuv/docs/src/index.rst +62 -0
- data/ext/libuv/docs/src/loop.rst +238 -0
- data/ext/libuv/docs/src/migration_010_100.rst +244 -0
- data/ext/libuv/docs/src/misc.rst +702 -0
- data/ext/libuv/docs/src/pipe.rst +116 -0
- data/ext/libuv/docs/src/poll.rst +121 -0
- data/ext/libuv/docs/src/prepare.rst +46 -0
- data/ext/libuv/docs/src/process.rst +250 -0
- data/ext/libuv/docs/src/request.rst +116 -0
- data/ext/libuv/docs/src/signal.rst +101 -0
- data/ext/libuv/docs/src/sphinx-plugins/manpage.py +45 -0
- data/ext/libuv/docs/src/static/architecture.png +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/Data/st0-311.jpg +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/Data/st1-475.jpg +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/Index.zip +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/Metadata/BuildVersionHistory.plist +8 -0
- data/ext/libuv/docs/src/static/diagrams.key/Metadata/DocumentIdentifier +1 -0
- data/ext/libuv/docs/src/static/diagrams.key/Metadata/Properties.plist +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/preview-micro.jpg +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/preview-web.jpg +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/preview.jpg +0 -0
- data/ext/libuv/docs/src/static/favicon.ico +0 -0
- data/ext/libuv/docs/src/static/logo.png +0 -0
- data/ext/libuv/docs/src/static/loop_iteration.png +0 -0
- data/ext/libuv/docs/src/stream.rst +237 -0
- data/ext/libuv/docs/src/tcp.rst +125 -0
- data/ext/libuv/docs/src/threading.rst +197 -0
- data/ext/libuv/docs/src/threadpool.rst +69 -0
- data/ext/libuv/docs/src/timer.rst +81 -0
- data/ext/libuv/docs/src/tty.rst +139 -0
- data/ext/libuv/docs/src/udp.rst +390 -0
- data/ext/libuv/docs/src/upgrading.rst +11 -0
- data/ext/libuv/docs/src/version.rst +60 -0
- data/ext/libuv/gyp_uv.py +73 -0
- data/ext/libuv/img/banner.png +0 -0
- data/ext/libuv/img/logos.svg +152 -0
- data/ext/libuv/include/uv/aix.h +32 -0
- data/ext/libuv/include/uv/android-ifaddrs.h +54 -0
- data/ext/libuv/include/uv/bsd.h +34 -0
- data/ext/libuv/include/uv/darwin.h +61 -0
- data/ext/libuv/include/uv/errno.h +448 -0
- data/ext/libuv/include/uv/linux.h +34 -0
- data/ext/libuv/include/uv/os390.h +33 -0
- data/ext/libuv/include/uv/posix.h +31 -0
- data/ext/libuv/include/uv/stdint-msvc2008.h +247 -0
- data/ext/libuv/include/uv/sunos.h +44 -0
- data/ext/libuv/include/uv/threadpool.h +37 -0
- data/ext/libuv/include/uv/tree.h +768 -0
- data/ext/libuv/include/uv/unix.h +505 -0
- data/ext/libuv/include/uv/version.h +43 -0
- data/ext/libuv/include/uv/win.h +691 -0
- data/ext/libuv/include/uv.h +1782 -0
- data/ext/libuv/libuv.pc.in +12 -0
- data/ext/libuv/m4/.gitignore +4 -0
- data/ext/libuv/m4/as_case.m4 +21 -0
- data/ext/libuv/m4/libuv-check-flags.m4 +319 -0
- data/ext/libuv/src/fs-poll.c +287 -0
- data/ext/libuv/src/heap-inl.h +245 -0
- data/ext/libuv/src/idna.c +291 -0
- data/ext/libuv/src/idna.h +31 -0
- data/ext/libuv/src/inet.c +302 -0
- data/ext/libuv/src/queue.h +108 -0
- data/ext/libuv/src/random.c +123 -0
- data/ext/libuv/src/strscpy.c +17 -0
- data/ext/libuv/src/strscpy.h +18 -0
- data/ext/libuv/src/threadpool.c +388 -0
- data/ext/libuv/src/timer.c +181 -0
- data/ext/libuv/src/unix/aix-common.c +337 -0
- data/ext/libuv/src/unix/aix.c +1066 -0
- data/ext/libuv/src/unix/android-ifaddrs.c +712 -0
- data/ext/libuv/src/unix/async.c +298 -0
- data/ext/libuv/src/unix/atomic-ops.h +59 -0
- data/ext/libuv/src/unix/bsd-ifaddrs.c +161 -0
- data/ext/libuv/src/unix/bsd-proctitle.c +93 -0
- data/ext/libuv/src/unix/core.c +1571 -0
- data/ext/libuv/src/unix/cygwin.c +53 -0
- data/ext/libuv/src/unix/darwin-proctitle.c +202 -0
- data/ext/libuv/src/unix/darwin.c +225 -0
- data/ext/libuv/src/unix/dl.c +80 -0
- data/ext/libuv/src/unix/freebsd.c +290 -0
- data/ext/libuv/src/unix/fs.c +2044 -0
- data/ext/libuv/src/unix/fsevents.c +924 -0
- data/ext/libuv/src/unix/getaddrinfo.c +255 -0
- data/ext/libuv/src/unix/getnameinfo.c +121 -0
- data/ext/libuv/src/unix/haiku.c +167 -0
- data/ext/libuv/src/unix/ibmi.c +249 -0
- data/ext/libuv/src/unix/internal.h +331 -0
- data/ext/libuv/src/unix/kqueue.c +544 -0
- data/ext/libuv/src/unix/linux-core.c +1091 -0
- data/ext/libuv/src/unix/linux-inotify.c +354 -0
- data/ext/libuv/src/unix/linux-syscalls.c +394 -0
- data/ext/libuv/src/unix/linux-syscalls.h +153 -0
- data/ext/libuv/src/unix/loop-watcher.c +68 -0
- data/ext/libuv/src/unix/loop.c +194 -0
- data/ext/libuv/src/unix/netbsd.c +259 -0
- data/ext/libuv/src/unix/no-fsevents.c +42 -0
- data/ext/libuv/src/unix/no-proctitle.c +42 -0
- data/ext/libuv/src/unix/openbsd.c +244 -0
- data/ext/libuv/src/unix/os390-syscalls.c +519 -0
- data/ext/libuv/src/unix/os390-syscalls.h +68 -0
- data/ext/libuv/src/unix/os390.c +1003 -0
- data/ext/libuv/src/unix/pipe.c +377 -0
- data/ext/libuv/src/unix/poll.c +150 -0
- data/ext/libuv/src/unix/posix-hrtime.c +35 -0
- data/ext/libuv/src/unix/posix-poll.c +336 -0
- data/ext/libuv/src/unix/process.c +603 -0
- data/ext/libuv/src/unix/procfs-exepath.c +45 -0
- data/ext/libuv/src/unix/proctitle.c +132 -0
- data/ext/libuv/src/unix/pthread-fixes.c +56 -0
- data/ext/libuv/src/unix/random-devurandom.c +93 -0
- data/ext/libuv/src/unix/random-getentropy.c +57 -0
- data/ext/libuv/src/unix/random-getrandom.c +88 -0
- data/ext/libuv/src/unix/random-sysctl-linux.c +99 -0
- data/ext/libuv/src/unix/signal.c +577 -0
- data/ext/libuv/src/unix/spinlock.h +53 -0
- data/ext/libuv/src/unix/stream.c +1697 -0
- data/ext/libuv/src/unix/sunos.c +836 -0
- data/ext/libuv/src/unix/sysinfo-loadavg.c +36 -0
- data/ext/libuv/src/unix/sysinfo-memory.c +42 -0
- data/ext/libuv/src/unix/tcp.c +450 -0
- data/ext/libuv/src/unix/thread.c +852 -0
- data/ext/libuv/src/unix/tty.c +381 -0
- data/ext/libuv/src/unix/udp.c +1136 -0
- data/ext/libuv/src/uv-common.c +812 -0
- data/ext/libuv/src/uv-common.h +326 -0
- data/ext/libuv/src/uv-data-getter-setters.c +98 -0
- data/ext/libuv/src/version.c +45 -0
- data/ext/libuv/src/win/async.c +98 -0
- data/ext/libuv/src/win/atomicops-inl.h +57 -0
- data/ext/libuv/src/win/core.c +657 -0
- data/ext/libuv/src/win/detect-wakeup.c +35 -0
- data/ext/libuv/src/win/dl.c +136 -0
- data/ext/libuv/src/win/error.c +172 -0
- data/ext/libuv/src/win/fs-event.c +589 -0
- data/ext/libuv/src/win/fs-fd-hash-inl.h +178 -0
- data/ext/libuv/src/win/fs.c +3238 -0
- data/ext/libuv/src/win/getaddrinfo.c +463 -0
- data/ext/libuv/src/win/getnameinfo.c +157 -0
- data/ext/libuv/src/win/handle-inl.h +180 -0
- data/ext/libuv/src/win/handle.c +162 -0
- data/ext/libuv/src/win/internal.h +344 -0
- data/ext/libuv/src/win/loop-watcher.c +122 -0
- data/ext/libuv/src/win/pipe.c +2386 -0
- data/ext/libuv/src/win/poll.c +643 -0
- data/ext/libuv/src/win/process-stdio.c +512 -0
- data/ext/libuv/src/win/process.c +1282 -0
- data/ext/libuv/src/win/req-inl.h +221 -0
- data/ext/libuv/src/win/signal.c +277 -0
- data/ext/libuv/src/win/snprintf.c +42 -0
- data/ext/libuv/src/win/stream-inl.h +54 -0
- data/ext/libuv/src/win/stream.c +243 -0
- data/ext/libuv/src/win/tcp.c +1520 -0
- data/ext/libuv/src/win/thread.c +520 -0
- data/ext/libuv/src/win/tty.c +2348 -0
- data/ext/libuv/src/win/udp.c +1185 -0
- data/ext/libuv/src/win/util.c +1879 -0
- data/ext/libuv/src/win/winapi.c +149 -0
- data/ext/libuv/src/win/winapi.h +4751 -0
- data/ext/libuv/src/win/winsock.c +575 -0
- data/ext/libuv/src/win/winsock.h +201 -0
- data/ext/libuv/test/benchmark-async-pummel.c +119 -0
- data/ext/libuv/test/benchmark-async.c +141 -0
- data/ext/libuv/test/benchmark-fs-stat.c +136 -0
- data/ext/libuv/test/benchmark-getaddrinfo.c +92 -0
- data/ext/libuv/test/benchmark-list.h +163 -0
- data/ext/libuv/test/benchmark-loop-count.c +92 -0
- data/ext/libuv/test/benchmark-million-async.c +112 -0
- data/ext/libuv/test/benchmark-million-timers.c +86 -0
- data/ext/libuv/test/benchmark-multi-accept.c +447 -0
- data/ext/libuv/test/benchmark-ping-pongs.c +221 -0
- data/ext/libuv/test/benchmark-pound.c +351 -0
- data/ext/libuv/test/benchmark-pump.c +476 -0
- data/ext/libuv/test/benchmark-sizes.c +46 -0
- data/ext/libuv/test/benchmark-spawn.c +164 -0
- data/ext/libuv/test/benchmark-tcp-write-batch.c +144 -0
- data/ext/libuv/test/benchmark-thread.c +64 -0
- data/ext/libuv/test/benchmark-udp-pummel.c +243 -0
- data/ext/libuv/test/blackhole-server.c +121 -0
- data/ext/libuv/test/dns-server.c +340 -0
- data/ext/libuv/test/echo-server.c +382 -0
- data/ext/libuv/test/fixtures/empty_file +0 -0
- data/ext/libuv/test/fixtures/load_error.node +1 -0
- data/ext/libuv/test/fixtures/lorem_ipsum.txt +1 -0
- data/ext/libuv/test/run-benchmarks.c +65 -0
- data/ext/libuv/test/run-tests.c +239 -0
- data/ext/libuv/test/runner-unix.c +450 -0
- data/ext/libuv/test/runner-unix.h +36 -0
- data/ext/libuv/test/runner-win.c +357 -0
- data/ext/libuv/test/runner-win.h +41 -0
- data/ext/libuv/test/runner.c +431 -0
- data/ext/libuv/test/runner.h +176 -0
- data/ext/libuv/test/task.h +238 -0
- data/ext/libuv/test/test-active.c +84 -0
- data/ext/libuv/test/test-async-null-cb.c +64 -0
- data/ext/libuv/test/test-async.c +134 -0
- data/ext/libuv/test/test-barrier.c +148 -0
- data/ext/libuv/test/test-callback-order.c +77 -0
- data/ext/libuv/test/test-callback-stack.c +204 -0
- data/ext/libuv/test/test-close-fd.c +80 -0
- data/ext/libuv/test/test-close-order.c +80 -0
- data/ext/libuv/test/test-condvar.c +267 -0
- data/ext/libuv/test/test-connect-unspecified.c +63 -0
- data/ext/libuv/test/test-connection-fail.c +151 -0
- data/ext/libuv/test/test-cwd-and-chdir.c +58 -0
- data/ext/libuv/test/test-default-loop-close.c +59 -0
- data/ext/libuv/test/test-delayed-accept.c +189 -0
- data/ext/libuv/test/test-dlerror.c +61 -0
- data/ext/libuv/test/test-eintr-handling.c +94 -0
- data/ext/libuv/test/test-embed.c +139 -0
- data/ext/libuv/test/test-emfile.c +121 -0
- data/ext/libuv/test/test-env-vars.c +140 -0
- data/ext/libuv/test/test-error.c +79 -0
- data/ext/libuv/test/test-fail-always.c +29 -0
- data/ext/libuv/test/test-fork.c +683 -0
- data/ext/libuv/test/test-fs-copyfile.c +209 -0
- data/ext/libuv/test/test-fs-event.c +1165 -0
- data/ext/libuv/test/test-fs-fd-hash.c +133 -0
- data/ext/libuv/test/test-fs-open-flags.c +435 -0
- data/ext/libuv/test/test-fs-poll.c +300 -0
- data/ext/libuv/test/test-fs-readdir.c +462 -0
- data/ext/libuv/test/test-fs.c +4238 -0
- data/ext/libuv/test/test-get-currentexe.c +86 -0
- data/ext/libuv/test/test-get-loadavg.c +35 -0
- data/ext/libuv/test/test-get-memory.c +40 -0
- data/ext/libuv/test/test-get-passwd.c +86 -0
- data/ext/libuv/test/test-getaddrinfo.c +191 -0
- data/ext/libuv/test/test-gethostname.c +58 -0
- data/ext/libuv/test/test-getnameinfo.c +101 -0
- data/ext/libuv/test/test-getsockname.c +361 -0
- data/ext/libuv/test/test-getters-setters.c +88 -0
- data/ext/libuv/test/test-gettimeofday.c +39 -0
- data/ext/libuv/test/test-handle-fileno.c +125 -0
- data/ext/libuv/test/test-homedir.c +72 -0
- data/ext/libuv/test/test-hrtime.c +52 -0
- data/ext/libuv/test/test-idle.c +99 -0
- data/ext/libuv/test/test-idna.c +195 -0
- data/ext/libuv/test/test-ip4-addr.c +55 -0
- data/ext/libuv/test/test-ip6-addr.c +171 -0
- data/ext/libuv/test/test-ipc-heavy-traffic-deadlock-bug.c +159 -0
- data/ext/libuv/test/test-ipc-send-recv.c +429 -0
- data/ext/libuv/test/test-ipc.c +974 -0
- data/ext/libuv/test/test-list.h +1064 -0
- data/ext/libuv/test/test-loop-alive.c +67 -0
- data/ext/libuv/test/test-loop-close.c +75 -0
- data/ext/libuv/test/test-loop-configure.c +38 -0
- data/ext/libuv/test/test-loop-handles.c +337 -0
- data/ext/libuv/test/test-loop-stop.c +71 -0
- data/ext/libuv/test/test-loop-time.c +63 -0
- data/ext/libuv/test/test-multiple-listen.c +109 -0
- data/ext/libuv/test/test-mutexes.c +182 -0
- data/ext/libuv/test/test-osx-select.c +140 -0
- data/ext/libuv/test/test-pass-always.c +28 -0
- data/ext/libuv/test/test-ping-pong.c +301 -0
- data/ext/libuv/test/test-pipe-bind-error.c +139 -0
- data/ext/libuv/test/test-pipe-close-stdout-read-stdin.c +112 -0
- data/ext/libuv/test/test-pipe-connect-error.c +95 -0
- data/ext/libuv/test/test-pipe-connect-multiple.c +107 -0
- data/ext/libuv/test/test-pipe-connect-prepare.c +83 -0
- data/ext/libuv/test/test-pipe-getsockname.c +266 -0
- data/ext/libuv/test/test-pipe-pending-instances.c +59 -0
- data/ext/libuv/test/test-pipe-sendmsg.c +172 -0
- data/ext/libuv/test/test-pipe-server-close.c +94 -0
- data/ext/libuv/test/test-pipe-set-fchmod.c +90 -0
- data/ext/libuv/test/test-pipe-set-non-blocking.c +99 -0
- data/ext/libuv/test/test-platform-output.c +170 -0
- data/ext/libuv/test/test-poll-close-doesnt-corrupt-stack.c +114 -0
- data/ext/libuv/test/test-poll-close.c +73 -0
- data/ext/libuv/test/test-poll-closesocket.c +92 -0
- data/ext/libuv/test/test-poll-oob.c +210 -0
- data/ext/libuv/test/test-poll.c +668 -0
- data/ext/libuv/test/test-process-priority.c +83 -0
- data/ext/libuv/test/test-process-title-threadsafe.c +89 -0
- data/ext/libuv/test/test-process-title.c +76 -0
- data/ext/libuv/test/test-queue-foreach-delete.c +204 -0
- data/ext/libuv/test/test-random.c +94 -0
- data/ext/libuv/test/test-ref.c +445 -0
- data/ext/libuv/test/test-run-nowait.c +45 -0
- data/ext/libuv/test/test-run-once.c +48 -0
- data/ext/libuv/test/test-semaphore.c +111 -0
- data/ext/libuv/test/test-shutdown-close.c +108 -0
- data/ext/libuv/test/test-shutdown-eof.c +182 -0
- data/ext/libuv/test/test-shutdown-twice.c +85 -0
- data/ext/libuv/test/test-signal-multiple-loops.c +302 -0
- data/ext/libuv/test/test-signal-pending-on-close.c +94 -0
- data/ext/libuv/test/test-signal.c +325 -0
- data/ext/libuv/test/test-socket-buffer-size.c +77 -0
- data/ext/libuv/test/test-spawn.c +1924 -0
- data/ext/libuv/test/test-stdio-over-pipes.c +256 -0
- data/ext/libuv/test/test-strscpy.c +53 -0
- data/ext/libuv/test/test-tcp-alloc-cb-fail.c +123 -0
- data/ext/libuv/test/test-tcp-bind-error.c +254 -0
- data/ext/libuv/test/test-tcp-bind6-error.c +176 -0
- data/ext/libuv/test/test-tcp-close-accept.c +198 -0
- data/ext/libuv/test/test-tcp-close-reset.c +290 -0
- data/ext/libuv/test/test-tcp-close-while-connecting.c +97 -0
- data/ext/libuv/test/test-tcp-close.c +136 -0
- data/ext/libuv/test/test-tcp-connect-error-after-write.c +98 -0
- data/ext/libuv/test/test-tcp-connect-error.c +73 -0
- data/ext/libuv/test/test-tcp-connect-timeout.c +91 -0
- data/ext/libuv/test/test-tcp-connect6-error.c +71 -0
- data/ext/libuv/test/test-tcp-create-socket-early.c +209 -0
- data/ext/libuv/test/test-tcp-flags.c +52 -0
- data/ext/libuv/test/test-tcp-oob.c +146 -0
- data/ext/libuv/test/test-tcp-open.c +400 -0
- data/ext/libuv/test/test-tcp-read-stop.c +76 -0
- data/ext/libuv/test/test-tcp-shutdown-after-write.c +138 -0
- data/ext/libuv/test/test-tcp-try-write-error.c +109 -0
- data/ext/libuv/test/test-tcp-try-write.c +135 -0
- data/ext/libuv/test/test-tcp-unexpected-read.c +117 -0
- data/ext/libuv/test/test-tcp-write-after-connect.c +72 -0
- data/ext/libuv/test/test-tcp-write-fail.c +115 -0
- data/ext/libuv/test/test-tcp-write-queue-order.c +139 -0
- data/ext/libuv/test/test-tcp-write-to-half-open-connection.c +141 -0
- data/ext/libuv/test/test-tcp-writealot.c +180 -0
- data/ext/libuv/test/test-thread-equal.c +45 -0
- data/ext/libuv/test/test-thread.c +286 -0
- data/ext/libuv/test/test-threadpool-cancel.c +349 -0
- data/ext/libuv/test/test-threadpool.c +76 -0
- data/ext/libuv/test/test-timer-again.c +141 -0
- data/ext/libuv/test/test-timer-from-check.c +80 -0
- data/ext/libuv/test/test-timer.c +343 -0
- data/ext/libuv/test/test-tmpdir.c +82 -0
- data/ext/libuv/test/test-tty-duplicate-key.c +321 -0
- data/ext/libuv/test/test-tty.c +464 -0
- data/ext/libuv/test/test-udp-alloc-cb-fail.c +196 -0
- data/ext/libuv/test/test-udp-bind.c +93 -0
- data/ext/libuv/test/test-udp-connect.c +182 -0
- data/ext/libuv/test/test-udp-create-socket-early.c +135 -0
- data/ext/libuv/test/test-udp-dgram-too-big.c +91 -0
- data/ext/libuv/test/test-udp-ipv6.c +200 -0
- data/ext/libuv/test/test-udp-multicast-interface.c +99 -0
- data/ext/libuv/test/test-udp-multicast-interface6.c +103 -0
- data/ext/libuv/test/test-udp-multicast-join.c +181 -0
- data/ext/libuv/test/test-udp-multicast-join6.c +215 -0
- data/ext/libuv/test/test-udp-multicast-ttl.c +94 -0
- data/ext/libuv/test/test-udp-open.c +350 -0
- data/ext/libuv/test/test-udp-options.c +156 -0
- data/ext/libuv/test/test-udp-send-and-recv.c +212 -0
- data/ext/libuv/test/test-udp-send-hang-loop.c +99 -0
- data/ext/libuv/test/test-udp-send-immediate.c +148 -0
- data/ext/libuv/test/test-udp-send-unreachable.c +150 -0
- data/ext/libuv/test/test-udp-try-send.c +121 -0
- data/ext/libuv/test/test-uname.c +69 -0
- data/ext/libuv/test/test-walk-handles.c +77 -0
- data/ext/libuv/test/test-watcher-cross-stop.c +111 -0
- data/ext/libuv/test/test.gyp +293 -0
- data/ext/libuv/tools/make_dist_html.py +124 -0
- data/ext/libuv/tools/vswhere_usability_wrapper.cmd +33 -0
- data/ext/libuv/uv.gyp +368 -0
- data/ext/libuv/vcbuild.bat +184 -0
- data/lib/mt-libuv/tcp.rb +2 -2
- data/lib/mt-libuv/version.rb +1 -1
- data/mt-libuv.gemspec +26 -26
- metadata +2089 -2
@@ -0,0 +1,4119 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
|
3
|
+
<data>
|
4
|
+
<int key="IBDocument.SystemTarget">1060</int>
|
5
|
+
<string key="IBDocument.SystemVersion">10A324</string>
|
6
|
+
<string key="IBDocument.InterfaceBuilderVersion">719</string>
|
7
|
+
<string key="IBDocument.AppKitVersion">1015</string>
|
8
|
+
<string key="IBDocument.HIToolboxVersion">418.00</string>
|
9
|
+
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
10
|
+
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
11
|
+
<string key="NS.object.0">719</string>
|
12
|
+
</object>
|
13
|
+
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
|
14
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
15
|
+
<integer value="371"/>
|
16
|
+
<integer value="29"/>
|
17
|
+
</object>
|
18
|
+
<object class="NSArray" key="IBDocument.PluginDependencies">
|
19
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
20
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
21
|
+
</object>
|
22
|
+
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
23
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
24
|
+
<object class="NSArray" key="dict.sortedKeys" id="0">
|
25
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
26
|
+
</object>
|
27
|
+
<object class="NSMutableArray" key="dict.values">
|
28
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
29
|
+
</object>
|
30
|
+
</object>
|
31
|
+
<object class="NSMutableArray" key="IBDocument.RootObjects" id="1048">
|
32
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
33
|
+
<object class="NSCustomObject" id="1021">
|
34
|
+
<string key="NSClassName">NSApplication</string>
|
35
|
+
</object>
|
36
|
+
<object class="NSCustomObject" id="1014">
|
37
|
+
<string key="NSClassName">FirstResponder</string>
|
38
|
+
</object>
|
39
|
+
<object class="NSCustomObject" id="1050">
|
40
|
+
<string key="NSClassName">NSApplication</string>
|
41
|
+
</object>
|
42
|
+
<object class="NSMenu" id="649796088">
|
43
|
+
<string key="NSTitle">AMainMenu</string>
|
44
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
45
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
46
|
+
<object class="NSMenuItem" id="694149608">
|
47
|
+
<reference key="NSMenu" ref="649796088"/>
|
48
|
+
<string key="NSTitle">TestApp</string>
|
49
|
+
<string key="NSKeyEquiv"/>
|
50
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
51
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
52
|
+
<object class="NSCustomResource" key="NSOnImage" id="35465992">
|
53
|
+
<string key="NSClassName">NSImage</string>
|
54
|
+
<string key="NSResourceName">NSMenuCheckmark</string>
|
55
|
+
</object>
|
56
|
+
<object class="NSCustomResource" key="NSMixedImage" id="502551668">
|
57
|
+
<string key="NSClassName">NSImage</string>
|
58
|
+
<string key="NSResourceName">NSMenuMixedState</string>
|
59
|
+
</object>
|
60
|
+
<string key="NSAction">submenuAction:</string>
|
61
|
+
<object class="NSMenu" key="NSSubmenu" id="110575045">
|
62
|
+
<string key="NSTitle">TestApp</string>
|
63
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
64
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
65
|
+
<object class="NSMenuItem" id="238522557">
|
66
|
+
<reference key="NSMenu" ref="110575045"/>
|
67
|
+
<string key="NSTitle">About TestApp</string>
|
68
|
+
<string key="NSKeyEquiv"/>
|
69
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
70
|
+
<reference key="NSOnImage" ref="35465992"/>
|
71
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
72
|
+
</object>
|
73
|
+
<object class="NSMenuItem" id="304266470">
|
74
|
+
<reference key="NSMenu" ref="110575045"/>
|
75
|
+
<bool key="NSIsDisabled">YES</bool>
|
76
|
+
<bool key="NSIsSeparator">YES</bool>
|
77
|
+
<string key="NSTitle"/>
|
78
|
+
<string key="NSKeyEquiv"/>
|
79
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
80
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
81
|
+
<reference key="NSOnImage" ref="35465992"/>
|
82
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
83
|
+
</object>
|
84
|
+
<object class="NSMenuItem" id="609285721">
|
85
|
+
<reference key="NSMenu" ref="110575045"/>
|
86
|
+
<string key="NSTitle">Preferences…</string>
|
87
|
+
<string key="NSKeyEquiv">,</string>
|
88
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
89
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
90
|
+
<reference key="NSOnImage" ref="35465992"/>
|
91
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
92
|
+
</object>
|
93
|
+
<object class="NSMenuItem" id="481834944">
|
94
|
+
<reference key="NSMenu" ref="110575045"/>
|
95
|
+
<bool key="NSIsDisabled">YES</bool>
|
96
|
+
<bool key="NSIsSeparator">YES</bool>
|
97
|
+
<string key="NSTitle"/>
|
98
|
+
<string key="NSKeyEquiv"/>
|
99
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
100
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
101
|
+
<reference key="NSOnImage" ref="35465992"/>
|
102
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
103
|
+
</object>
|
104
|
+
<object class="NSMenuItem" id="1046388886">
|
105
|
+
<reference key="NSMenu" ref="110575045"/>
|
106
|
+
<string key="NSTitle">Services</string>
|
107
|
+
<string key="NSKeyEquiv"/>
|
108
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
109
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
110
|
+
<reference key="NSOnImage" ref="35465992"/>
|
111
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
112
|
+
<string key="NSAction">submenuAction:</string>
|
113
|
+
<object class="NSMenu" key="NSSubmenu" id="752062318">
|
114
|
+
<string key="NSTitle">Services</string>
|
115
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
116
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
117
|
+
</object>
|
118
|
+
<string key="NSName">_NSServicesMenu</string>
|
119
|
+
</object>
|
120
|
+
</object>
|
121
|
+
<object class="NSMenuItem" id="646227648">
|
122
|
+
<reference key="NSMenu" ref="110575045"/>
|
123
|
+
<bool key="NSIsDisabled">YES</bool>
|
124
|
+
<bool key="NSIsSeparator">YES</bool>
|
125
|
+
<string key="NSTitle"/>
|
126
|
+
<string key="NSKeyEquiv"/>
|
127
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
128
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
129
|
+
<reference key="NSOnImage" ref="35465992"/>
|
130
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
131
|
+
</object>
|
132
|
+
<object class="NSMenuItem" id="755159360">
|
133
|
+
<reference key="NSMenu" ref="110575045"/>
|
134
|
+
<string key="NSTitle">Hide TestApp</string>
|
135
|
+
<string key="NSKeyEquiv">h</string>
|
136
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
137
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
138
|
+
<reference key="NSOnImage" ref="35465992"/>
|
139
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
140
|
+
</object>
|
141
|
+
<object class="NSMenuItem" id="342932134">
|
142
|
+
<reference key="NSMenu" ref="110575045"/>
|
143
|
+
<string key="NSTitle">Hide Others</string>
|
144
|
+
<string key="NSKeyEquiv">h</string>
|
145
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
146
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
147
|
+
<reference key="NSOnImage" ref="35465992"/>
|
148
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
149
|
+
</object>
|
150
|
+
<object class="NSMenuItem" id="908899353">
|
151
|
+
<reference key="NSMenu" ref="110575045"/>
|
152
|
+
<string key="NSTitle">Show All</string>
|
153
|
+
<string key="NSKeyEquiv"/>
|
154
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
155
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
156
|
+
<reference key="NSOnImage" ref="35465992"/>
|
157
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
158
|
+
</object>
|
159
|
+
<object class="NSMenuItem" id="1056857174">
|
160
|
+
<reference key="NSMenu" ref="110575045"/>
|
161
|
+
<bool key="NSIsDisabled">YES</bool>
|
162
|
+
<bool key="NSIsSeparator">YES</bool>
|
163
|
+
<string key="NSTitle"/>
|
164
|
+
<string key="NSKeyEquiv"/>
|
165
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
166
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
167
|
+
<reference key="NSOnImage" ref="35465992"/>
|
168
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
169
|
+
</object>
|
170
|
+
<object class="NSMenuItem" id="632727374">
|
171
|
+
<reference key="NSMenu" ref="110575045"/>
|
172
|
+
<string key="NSTitle">Quit TestApp</string>
|
173
|
+
<string key="NSKeyEquiv">q</string>
|
174
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
175
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
176
|
+
<reference key="NSOnImage" ref="35465992"/>
|
177
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
178
|
+
</object>
|
179
|
+
</object>
|
180
|
+
<string key="NSName">_NSAppleMenu</string>
|
181
|
+
</object>
|
182
|
+
</object>
|
183
|
+
<object class="NSMenuItem" id="379814623">
|
184
|
+
<reference key="NSMenu" ref="649796088"/>
|
185
|
+
<string key="NSTitle">File</string>
|
186
|
+
<string key="NSKeyEquiv"/>
|
187
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
188
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
189
|
+
<reference key="NSOnImage" ref="35465992"/>
|
190
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
191
|
+
<string key="NSAction">submenuAction:</string>
|
192
|
+
<object class="NSMenu" key="NSSubmenu" id="720053764">
|
193
|
+
<string key="NSTitle">File</string>
|
194
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
195
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
196
|
+
<object class="NSMenuItem" id="705341025">
|
197
|
+
<reference key="NSMenu" ref="720053764"/>
|
198
|
+
<string key="NSTitle">New</string>
|
199
|
+
<string key="NSKeyEquiv">n</string>
|
200
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
201
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
202
|
+
<reference key="NSOnImage" ref="35465992"/>
|
203
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
204
|
+
</object>
|
205
|
+
<object class="NSMenuItem" id="722745758">
|
206
|
+
<reference key="NSMenu" ref="720053764"/>
|
207
|
+
<string key="NSTitle">Open…</string>
|
208
|
+
<string key="NSKeyEquiv">o</string>
|
209
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
210
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
211
|
+
<reference key="NSOnImage" ref="35465992"/>
|
212
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
213
|
+
</object>
|
214
|
+
<object class="NSMenuItem" id="1025936716">
|
215
|
+
<reference key="NSMenu" ref="720053764"/>
|
216
|
+
<string key="NSTitle">Open Recent</string>
|
217
|
+
<string key="NSKeyEquiv"/>
|
218
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
219
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
220
|
+
<reference key="NSOnImage" ref="35465992"/>
|
221
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
222
|
+
<string key="NSAction">submenuAction:</string>
|
223
|
+
<object class="NSMenu" key="NSSubmenu" id="1065607017">
|
224
|
+
<string key="NSTitle">Open Recent</string>
|
225
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
226
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
227
|
+
<object class="NSMenuItem" id="759406840">
|
228
|
+
<reference key="NSMenu" ref="1065607017"/>
|
229
|
+
<string key="NSTitle">Clear Menu</string>
|
230
|
+
<string key="NSKeyEquiv"/>
|
231
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
232
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
233
|
+
<reference key="NSOnImage" ref="35465992"/>
|
234
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
235
|
+
</object>
|
236
|
+
</object>
|
237
|
+
<string key="NSName">_NSRecentDocumentsMenu</string>
|
238
|
+
</object>
|
239
|
+
</object>
|
240
|
+
<object class="NSMenuItem" id="425164168">
|
241
|
+
<reference key="NSMenu" ref="720053764"/>
|
242
|
+
<bool key="NSIsDisabled">YES</bool>
|
243
|
+
<bool key="NSIsSeparator">YES</bool>
|
244
|
+
<string key="NSTitle"/>
|
245
|
+
<string key="NSKeyEquiv"/>
|
246
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
247
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
248
|
+
<reference key="NSOnImage" ref="35465992"/>
|
249
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
250
|
+
</object>
|
251
|
+
<object class="NSMenuItem" id="776162233">
|
252
|
+
<reference key="NSMenu" ref="720053764"/>
|
253
|
+
<string key="NSTitle">Close</string>
|
254
|
+
<string key="NSKeyEquiv">w</string>
|
255
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
256
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
257
|
+
<reference key="NSOnImage" ref="35465992"/>
|
258
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
259
|
+
</object>
|
260
|
+
<object class="NSMenuItem" id="1023925487">
|
261
|
+
<reference key="NSMenu" ref="720053764"/>
|
262
|
+
<string key="NSTitle">Save</string>
|
263
|
+
<string key="NSKeyEquiv">s</string>
|
264
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
265
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
266
|
+
<reference key="NSOnImage" ref="35465992"/>
|
267
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
268
|
+
</object>
|
269
|
+
<object class="NSMenuItem" id="117038363">
|
270
|
+
<reference key="NSMenu" ref="720053764"/>
|
271
|
+
<string key="NSTitle">Save As…</string>
|
272
|
+
<string key="NSKeyEquiv">S</string>
|
273
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
274
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
275
|
+
<reference key="NSOnImage" ref="35465992"/>
|
276
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
277
|
+
</object>
|
278
|
+
<object class="NSMenuItem" id="579971712">
|
279
|
+
<reference key="NSMenu" ref="720053764"/>
|
280
|
+
<string key="NSTitle">Revert to Saved</string>
|
281
|
+
<string key="NSKeyEquiv"/>
|
282
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
283
|
+
<reference key="NSOnImage" ref="35465992"/>
|
284
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
285
|
+
</object>
|
286
|
+
<object class="NSMenuItem" id="1010469920">
|
287
|
+
<reference key="NSMenu" ref="720053764"/>
|
288
|
+
<bool key="NSIsDisabled">YES</bool>
|
289
|
+
<bool key="NSIsSeparator">YES</bool>
|
290
|
+
<string key="NSTitle"/>
|
291
|
+
<string key="NSKeyEquiv"/>
|
292
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
293
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
294
|
+
<reference key="NSOnImage" ref="35465992"/>
|
295
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
296
|
+
</object>
|
297
|
+
<object class="NSMenuItem" id="294629803">
|
298
|
+
<reference key="NSMenu" ref="720053764"/>
|
299
|
+
<string key="NSTitle">Page Setup...</string>
|
300
|
+
<string key="NSKeyEquiv">P</string>
|
301
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
302
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
303
|
+
<reference key="NSOnImage" ref="35465992"/>
|
304
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
305
|
+
<string key="NSToolTip"/>
|
306
|
+
</object>
|
307
|
+
<object class="NSMenuItem" id="49223823">
|
308
|
+
<reference key="NSMenu" ref="720053764"/>
|
309
|
+
<string key="NSTitle">Print…</string>
|
310
|
+
<string key="NSKeyEquiv">p</string>
|
311
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
312
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
313
|
+
<reference key="NSOnImage" ref="35465992"/>
|
314
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
315
|
+
</object>
|
316
|
+
</object>
|
317
|
+
</object>
|
318
|
+
</object>
|
319
|
+
<object class="NSMenuItem" id="952259628">
|
320
|
+
<reference key="NSMenu" ref="649796088"/>
|
321
|
+
<string key="NSTitle">Edit</string>
|
322
|
+
<string key="NSKeyEquiv"/>
|
323
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
324
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
325
|
+
<reference key="NSOnImage" ref="35465992"/>
|
326
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
327
|
+
<string key="NSAction">submenuAction:</string>
|
328
|
+
<object class="NSMenu" key="NSSubmenu" id="789758025">
|
329
|
+
<string key="NSTitle">Edit</string>
|
330
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
331
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
332
|
+
<object class="NSMenuItem" id="1058277027">
|
333
|
+
<reference key="NSMenu" ref="789758025"/>
|
334
|
+
<string key="NSTitle">Undo</string>
|
335
|
+
<string key="NSKeyEquiv">z</string>
|
336
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
337
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
338
|
+
<reference key="NSOnImage" ref="35465992"/>
|
339
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
340
|
+
</object>
|
341
|
+
<object class="NSMenuItem" id="790794224">
|
342
|
+
<reference key="NSMenu" ref="789758025"/>
|
343
|
+
<string key="NSTitle">Redo</string>
|
344
|
+
<string key="NSKeyEquiv">Z</string>
|
345
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
346
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
347
|
+
<reference key="NSOnImage" ref="35465992"/>
|
348
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
349
|
+
</object>
|
350
|
+
<object class="NSMenuItem" id="1040322652">
|
351
|
+
<reference key="NSMenu" ref="789758025"/>
|
352
|
+
<bool key="NSIsDisabled">YES</bool>
|
353
|
+
<bool key="NSIsSeparator">YES</bool>
|
354
|
+
<string key="NSTitle"/>
|
355
|
+
<string key="NSKeyEquiv"/>
|
356
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
357
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
358
|
+
<reference key="NSOnImage" ref="35465992"/>
|
359
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
360
|
+
</object>
|
361
|
+
<object class="NSMenuItem" id="296257095">
|
362
|
+
<reference key="NSMenu" ref="789758025"/>
|
363
|
+
<string key="NSTitle">Cut</string>
|
364
|
+
<string key="NSKeyEquiv">x</string>
|
365
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
366
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
367
|
+
<reference key="NSOnImage" ref="35465992"/>
|
368
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
369
|
+
</object>
|
370
|
+
<object class="NSMenuItem" id="860595796">
|
371
|
+
<reference key="NSMenu" ref="789758025"/>
|
372
|
+
<string key="NSTitle">Copy</string>
|
373
|
+
<string key="NSKeyEquiv">c</string>
|
374
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
375
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
376
|
+
<reference key="NSOnImage" ref="35465992"/>
|
377
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
378
|
+
</object>
|
379
|
+
<object class="NSMenuItem" id="29853731">
|
380
|
+
<reference key="NSMenu" ref="789758025"/>
|
381
|
+
<string key="NSTitle">Paste</string>
|
382
|
+
<string key="NSKeyEquiv">v</string>
|
383
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
384
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
385
|
+
<reference key="NSOnImage" ref="35465992"/>
|
386
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
387
|
+
</object>
|
388
|
+
<object class="NSMenuItem" id="82994268">
|
389
|
+
<reference key="NSMenu" ref="789758025"/>
|
390
|
+
<string key="NSTitle">Paste and Match Style</string>
|
391
|
+
<string key="NSKeyEquiv">V</string>
|
392
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
393
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
394
|
+
<reference key="NSOnImage" ref="35465992"/>
|
395
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
396
|
+
</object>
|
397
|
+
<object class="NSMenuItem" id="437104165">
|
398
|
+
<reference key="NSMenu" ref="789758025"/>
|
399
|
+
<string key="NSTitle">Delete</string>
|
400
|
+
<string key="NSKeyEquiv"/>
|
401
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
402
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
403
|
+
<reference key="NSOnImage" ref="35465992"/>
|
404
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
405
|
+
</object>
|
406
|
+
<object class="NSMenuItem" id="583158037">
|
407
|
+
<reference key="NSMenu" ref="789758025"/>
|
408
|
+
<string key="NSTitle">Select All</string>
|
409
|
+
<string key="NSKeyEquiv">a</string>
|
410
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
411
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
412
|
+
<reference key="NSOnImage" ref="35465992"/>
|
413
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
414
|
+
</object>
|
415
|
+
<object class="NSMenuItem" id="212016141">
|
416
|
+
<reference key="NSMenu" ref="789758025"/>
|
417
|
+
<bool key="NSIsDisabled">YES</bool>
|
418
|
+
<bool key="NSIsSeparator">YES</bool>
|
419
|
+
<string key="NSTitle"/>
|
420
|
+
<string key="NSKeyEquiv"/>
|
421
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
422
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
423
|
+
<reference key="NSOnImage" ref="35465992"/>
|
424
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
425
|
+
</object>
|
426
|
+
<object class="NSMenuItem" id="892235320">
|
427
|
+
<reference key="NSMenu" ref="789758025"/>
|
428
|
+
<string key="NSTitle">Find</string>
|
429
|
+
<string key="NSKeyEquiv"/>
|
430
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
431
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
432
|
+
<reference key="NSOnImage" ref="35465992"/>
|
433
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
434
|
+
<string key="NSAction">submenuAction:</string>
|
435
|
+
<object class="NSMenu" key="NSSubmenu" id="963351320">
|
436
|
+
<string key="NSTitle">Find</string>
|
437
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
438
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
439
|
+
<object class="NSMenuItem" id="447796847">
|
440
|
+
<reference key="NSMenu" ref="963351320"/>
|
441
|
+
<string key="NSTitle">Find…</string>
|
442
|
+
<string key="NSKeyEquiv">f</string>
|
443
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
444
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
445
|
+
<reference key="NSOnImage" ref="35465992"/>
|
446
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
447
|
+
<int key="NSTag">1</int>
|
448
|
+
</object>
|
449
|
+
<object class="NSMenuItem" id="326711663">
|
450
|
+
<reference key="NSMenu" ref="963351320"/>
|
451
|
+
<string key="NSTitle">Find Next</string>
|
452
|
+
<string key="NSKeyEquiv">g</string>
|
453
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
454
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
455
|
+
<reference key="NSOnImage" ref="35465992"/>
|
456
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
457
|
+
<int key="NSTag">2</int>
|
458
|
+
</object>
|
459
|
+
<object class="NSMenuItem" id="270902937">
|
460
|
+
<reference key="NSMenu" ref="963351320"/>
|
461
|
+
<string key="NSTitle">Find Previous</string>
|
462
|
+
<string key="NSKeyEquiv">G</string>
|
463
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
464
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
465
|
+
<reference key="NSOnImage" ref="35465992"/>
|
466
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
467
|
+
<int key="NSTag">3</int>
|
468
|
+
</object>
|
469
|
+
<object class="NSMenuItem" id="159080638">
|
470
|
+
<reference key="NSMenu" ref="963351320"/>
|
471
|
+
<string key="NSTitle">Use Selection for Find</string>
|
472
|
+
<string key="NSKeyEquiv">e</string>
|
473
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
474
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
475
|
+
<reference key="NSOnImage" ref="35465992"/>
|
476
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
477
|
+
<int key="NSTag">7</int>
|
478
|
+
</object>
|
479
|
+
<object class="NSMenuItem" id="88285865">
|
480
|
+
<reference key="NSMenu" ref="963351320"/>
|
481
|
+
<string key="NSTitle">Jump to Selection</string>
|
482
|
+
<string key="NSKeyEquiv">j</string>
|
483
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
484
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
485
|
+
<reference key="NSOnImage" ref="35465992"/>
|
486
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
487
|
+
</object>
|
488
|
+
</object>
|
489
|
+
</object>
|
490
|
+
</object>
|
491
|
+
<object class="NSMenuItem" id="972420730">
|
492
|
+
<reference key="NSMenu" ref="789758025"/>
|
493
|
+
<string key="NSTitle">Spelling and Grammar</string>
|
494
|
+
<string key="NSKeyEquiv"/>
|
495
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
496
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
497
|
+
<reference key="NSOnImage" ref="35465992"/>
|
498
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
499
|
+
<string key="NSAction">submenuAction:</string>
|
500
|
+
<object class="NSMenu" key="NSSubmenu" id="769623530">
|
501
|
+
<string key="NSTitle">Spelling and Grammar</string>
|
502
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
503
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
504
|
+
<object class="NSMenuItem" id="679648819">
|
505
|
+
<reference key="NSMenu" ref="769623530"/>
|
506
|
+
<string key="NSTitle">Show Spelling and Grammar</string>
|
507
|
+
<string key="NSKeyEquiv">:</string>
|
508
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
509
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
510
|
+
<reference key="NSOnImage" ref="35465992"/>
|
511
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
512
|
+
</object>
|
513
|
+
<object class="NSMenuItem" id="96193923">
|
514
|
+
<reference key="NSMenu" ref="769623530"/>
|
515
|
+
<string key="NSTitle">Check Document Now</string>
|
516
|
+
<string key="NSKeyEquiv">;</string>
|
517
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
518
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
519
|
+
<reference key="NSOnImage" ref="35465992"/>
|
520
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
521
|
+
</object>
|
522
|
+
<object class="NSMenuItem" id="859480356">
|
523
|
+
<reference key="NSMenu" ref="769623530"/>
|
524
|
+
<bool key="NSIsDisabled">YES</bool>
|
525
|
+
<bool key="NSIsSeparator">YES</bool>
|
526
|
+
<string key="NSTitle"/>
|
527
|
+
<string key="NSKeyEquiv"/>
|
528
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
529
|
+
<reference key="NSOnImage" ref="35465992"/>
|
530
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
531
|
+
</object>
|
532
|
+
<object class="NSMenuItem" id="948374510">
|
533
|
+
<reference key="NSMenu" ref="769623530"/>
|
534
|
+
<string key="NSTitle">Check Spelling While Typing</string>
|
535
|
+
<string key="NSKeyEquiv"/>
|
536
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
537
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
538
|
+
<reference key="NSOnImage" ref="35465992"/>
|
539
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
540
|
+
</object>
|
541
|
+
<object class="NSMenuItem" id="967646866">
|
542
|
+
<reference key="NSMenu" ref="769623530"/>
|
543
|
+
<string key="NSTitle">Check Grammar With Spelling</string>
|
544
|
+
<string key="NSKeyEquiv"/>
|
545
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
546
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
547
|
+
<reference key="NSOnImage" ref="35465992"/>
|
548
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
549
|
+
</object>
|
550
|
+
<object class="NSMenuItem" id="795346622">
|
551
|
+
<reference key="NSMenu" ref="769623530"/>
|
552
|
+
<string key="NSTitle">Correct Spelling Automatically</string>
|
553
|
+
<string key="NSKeyEquiv"/>
|
554
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
555
|
+
<reference key="NSOnImage" ref="35465992"/>
|
556
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
557
|
+
</object>
|
558
|
+
</object>
|
559
|
+
</object>
|
560
|
+
</object>
|
561
|
+
<object class="NSMenuItem" id="507821607">
|
562
|
+
<reference key="NSMenu" ref="789758025"/>
|
563
|
+
<string key="NSTitle">Substitutions</string>
|
564
|
+
<string key="NSKeyEquiv"/>
|
565
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
566
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
567
|
+
<reference key="NSOnImage" ref="35465992"/>
|
568
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
569
|
+
<string key="NSAction">submenuAction:</string>
|
570
|
+
<object class="NSMenu" key="NSSubmenu" id="698887838">
|
571
|
+
<string key="NSTitle">Substitutions</string>
|
572
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
573
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
574
|
+
<object class="NSMenuItem" id="65139061">
|
575
|
+
<reference key="NSMenu" ref="698887838"/>
|
576
|
+
<string key="NSTitle">Show Substitutions</string>
|
577
|
+
<string key="NSKeyEquiv"/>
|
578
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
579
|
+
<reference key="NSOnImage" ref="35465992"/>
|
580
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
581
|
+
</object>
|
582
|
+
<object class="NSMenuItem" id="19036812">
|
583
|
+
<reference key="NSMenu" ref="698887838"/>
|
584
|
+
<bool key="NSIsDisabled">YES</bool>
|
585
|
+
<bool key="NSIsSeparator">YES</bool>
|
586
|
+
<string key="NSTitle"/>
|
587
|
+
<string key="NSKeyEquiv"/>
|
588
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
589
|
+
<reference key="NSOnImage" ref="35465992"/>
|
590
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
591
|
+
</object>
|
592
|
+
<object class="NSMenuItem" id="605118523">
|
593
|
+
<reference key="NSMenu" ref="698887838"/>
|
594
|
+
<string key="NSTitle">Smart Copy/Paste</string>
|
595
|
+
<string key="NSKeyEquiv">f</string>
|
596
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
597
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
598
|
+
<reference key="NSOnImage" ref="35465992"/>
|
599
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
600
|
+
<int key="NSTag">1</int>
|
601
|
+
</object>
|
602
|
+
<object class="NSMenuItem" id="197661976">
|
603
|
+
<reference key="NSMenu" ref="698887838"/>
|
604
|
+
<string key="NSTitle">Smart Quotes</string>
|
605
|
+
<string key="NSKeyEquiv">g</string>
|
606
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
607
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
608
|
+
<reference key="NSOnImage" ref="35465992"/>
|
609
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
610
|
+
<int key="NSTag">2</int>
|
611
|
+
</object>
|
612
|
+
<object class="NSMenuItem" id="672708820">
|
613
|
+
<reference key="NSMenu" ref="698887838"/>
|
614
|
+
<string key="NSTitle">Smart Dashes</string>
|
615
|
+
<string key="NSKeyEquiv"/>
|
616
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
617
|
+
<reference key="NSOnImage" ref="35465992"/>
|
618
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
619
|
+
</object>
|
620
|
+
<object class="NSMenuItem" id="708854459">
|
621
|
+
<reference key="NSMenu" ref="698887838"/>
|
622
|
+
<string key="NSTitle">Smart Links</string>
|
623
|
+
<string key="NSKeyEquiv">G</string>
|
624
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
625
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
626
|
+
<reference key="NSOnImage" ref="35465992"/>
|
627
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
628
|
+
<int key="NSTag">3</int>
|
629
|
+
</object>
|
630
|
+
<object class="NSMenuItem" id="537092702">
|
631
|
+
<reference key="NSMenu" ref="698887838"/>
|
632
|
+
<string key="NSTitle">Text Replacement</string>
|
633
|
+
<string key="NSKeyEquiv"/>
|
634
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
635
|
+
<reference key="NSOnImage" ref="35465992"/>
|
636
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
637
|
+
</object>
|
638
|
+
</object>
|
639
|
+
</object>
|
640
|
+
</object>
|
641
|
+
<object class="NSMenuItem" id="288088188">
|
642
|
+
<reference key="NSMenu" ref="789758025"/>
|
643
|
+
<string key="NSTitle">Transformations</string>
|
644
|
+
<string key="NSKeyEquiv"/>
|
645
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
646
|
+
<reference key="NSOnImage" ref="35465992"/>
|
647
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
648
|
+
<string key="NSAction">submenuAction:</string>
|
649
|
+
<object class="NSMenu" key="NSSubmenu" id="579392910">
|
650
|
+
<string key="NSTitle">Transformations</string>
|
651
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
652
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
653
|
+
<object class="NSMenuItem" id="1060694897">
|
654
|
+
<reference key="NSMenu" ref="579392910"/>
|
655
|
+
<string key="NSTitle">Make Upper Case</string>
|
656
|
+
<string key="NSKeyEquiv"/>
|
657
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
658
|
+
<reference key="NSOnImage" ref="35465992"/>
|
659
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
660
|
+
</object>
|
661
|
+
<object class="NSMenuItem" id="879586729">
|
662
|
+
<reference key="NSMenu" ref="579392910"/>
|
663
|
+
<string key="NSTitle">Make Lower Case</string>
|
664
|
+
<string key="NSKeyEquiv"/>
|
665
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
666
|
+
<reference key="NSOnImage" ref="35465992"/>
|
667
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
668
|
+
</object>
|
669
|
+
<object class="NSMenuItem" id="56570060">
|
670
|
+
<reference key="NSMenu" ref="579392910"/>
|
671
|
+
<string key="NSTitle">Capitalize</string>
|
672
|
+
<string key="NSKeyEquiv"/>
|
673
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
674
|
+
<reference key="NSOnImage" ref="35465992"/>
|
675
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
676
|
+
</object>
|
677
|
+
</object>
|
678
|
+
</object>
|
679
|
+
</object>
|
680
|
+
<object class="NSMenuItem" id="676164635">
|
681
|
+
<reference key="NSMenu" ref="789758025"/>
|
682
|
+
<string key="NSTitle">Speech</string>
|
683
|
+
<string key="NSKeyEquiv"/>
|
684
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
685
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
686
|
+
<reference key="NSOnImage" ref="35465992"/>
|
687
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
688
|
+
<string key="NSAction">submenuAction:</string>
|
689
|
+
<object class="NSMenu" key="NSSubmenu" id="785027613">
|
690
|
+
<string key="NSTitle">Speech</string>
|
691
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
692
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
693
|
+
<object class="NSMenuItem" id="731782645">
|
694
|
+
<reference key="NSMenu" ref="785027613"/>
|
695
|
+
<string key="NSTitle">Start Speaking</string>
|
696
|
+
<string key="NSKeyEquiv"/>
|
697
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
698
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
699
|
+
<reference key="NSOnImage" ref="35465992"/>
|
700
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
701
|
+
</object>
|
702
|
+
<object class="NSMenuItem" id="680220178">
|
703
|
+
<reference key="NSMenu" ref="785027613"/>
|
704
|
+
<string key="NSTitle">Stop Speaking</string>
|
705
|
+
<string key="NSKeyEquiv"/>
|
706
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
707
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
708
|
+
<reference key="NSOnImage" ref="35465992"/>
|
709
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
710
|
+
</object>
|
711
|
+
</object>
|
712
|
+
</object>
|
713
|
+
</object>
|
714
|
+
</object>
|
715
|
+
</object>
|
716
|
+
</object>
|
717
|
+
<object class="NSMenuItem" id="302598603">
|
718
|
+
<reference key="NSMenu" ref="649796088"/>
|
719
|
+
<string key="NSTitle">Format</string>
|
720
|
+
<string key="NSKeyEquiv"/>
|
721
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
722
|
+
<reference key="NSOnImage" ref="35465992"/>
|
723
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
724
|
+
<string key="NSAction">submenuAction:</string>
|
725
|
+
<object class="NSMenu" key="NSSubmenu" id="941447902">
|
726
|
+
<string key="NSTitle">Format</string>
|
727
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
728
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
729
|
+
<object class="NSMenuItem" id="792887677">
|
730
|
+
<reference key="NSMenu" ref="941447902"/>
|
731
|
+
<string key="NSTitle">Font</string>
|
732
|
+
<string key="NSKeyEquiv"/>
|
733
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
734
|
+
<reference key="NSOnImage" ref="35465992"/>
|
735
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
736
|
+
<string key="NSAction">submenuAction:</string>
|
737
|
+
<object class="NSMenu" key="NSSubmenu" id="786677654">
|
738
|
+
<string key="NSTitle">Font</string>
|
739
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
740
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
741
|
+
<object class="NSMenuItem" id="159677712">
|
742
|
+
<reference key="NSMenu" ref="786677654"/>
|
743
|
+
<string key="NSTitle">Show Fonts</string>
|
744
|
+
<string key="NSKeyEquiv">t</string>
|
745
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
746
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
747
|
+
<reference key="NSOnImage" ref="35465992"/>
|
748
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
749
|
+
</object>
|
750
|
+
<object class="NSMenuItem" id="305399458">
|
751
|
+
<reference key="NSMenu" ref="786677654"/>
|
752
|
+
<string key="NSTitle">Bold</string>
|
753
|
+
<string key="NSKeyEquiv">b</string>
|
754
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
755
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
756
|
+
<reference key="NSOnImage" ref="35465992"/>
|
757
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
758
|
+
<int key="NSTag">2</int>
|
759
|
+
</object>
|
760
|
+
<object class="NSMenuItem" id="814362025">
|
761
|
+
<reference key="NSMenu" ref="786677654"/>
|
762
|
+
<string key="NSTitle">Italic</string>
|
763
|
+
<string key="NSKeyEquiv">i</string>
|
764
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
765
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
766
|
+
<reference key="NSOnImage" ref="35465992"/>
|
767
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
768
|
+
<int key="NSTag">1</int>
|
769
|
+
</object>
|
770
|
+
<object class="NSMenuItem" id="330926929">
|
771
|
+
<reference key="NSMenu" ref="786677654"/>
|
772
|
+
<string key="NSTitle">Underline</string>
|
773
|
+
<string key="NSKeyEquiv">u</string>
|
774
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
775
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
776
|
+
<reference key="NSOnImage" ref="35465992"/>
|
777
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
778
|
+
</object>
|
779
|
+
<object class="NSMenuItem" id="533507878">
|
780
|
+
<reference key="NSMenu" ref="786677654"/>
|
781
|
+
<bool key="NSIsDisabled">YES</bool>
|
782
|
+
<bool key="NSIsSeparator">YES</bool>
|
783
|
+
<string key="NSTitle"/>
|
784
|
+
<string key="NSKeyEquiv"/>
|
785
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
786
|
+
<reference key="NSOnImage" ref="35465992"/>
|
787
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
788
|
+
</object>
|
789
|
+
<object class="NSMenuItem" id="158063935">
|
790
|
+
<reference key="NSMenu" ref="786677654"/>
|
791
|
+
<string key="NSTitle">Bigger</string>
|
792
|
+
<string key="NSKeyEquiv">+</string>
|
793
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
794
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
795
|
+
<reference key="NSOnImage" ref="35465992"/>
|
796
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
797
|
+
<int key="NSTag">3</int>
|
798
|
+
</object>
|
799
|
+
<object class="NSMenuItem" id="885547335">
|
800
|
+
<reference key="NSMenu" ref="786677654"/>
|
801
|
+
<string key="NSTitle">Smaller</string>
|
802
|
+
<string key="NSKeyEquiv">-</string>
|
803
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
804
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
805
|
+
<reference key="NSOnImage" ref="35465992"/>
|
806
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
807
|
+
<int key="NSTag">4</int>
|
808
|
+
</object>
|
809
|
+
<object class="NSMenuItem" id="901062459">
|
810
|
+
<reference key="NSMenu" ref="786677654"/>
|
811
|
+
<bool key="NSIsDisabled">YES</bool>
|
812
|
+
<bool key="NSIsSeparator">YES</bool>
|
813
|
+
<string key="NSTitle"/>
|
814
|
+
<string key="NSKeyEquiv"/>
|
815
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
816
|
+
<reference key="NSOnImage" ref="35465992"/>
|
817
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
818
|
+
</object>
|
819
|
+
<object class="NSMenuItem" id="767671776">
|
820
|
+
<reference key="NSMenu" ref="786677654"/>
|
821
|
+
<string key="NSTitle">Kern</string>
|
822
|
+
<string key="NSKeyEquiv"/>
|
823
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
824
|
+
<reference key="NSOnImage" ref="35465992"/>
|
825
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
826
|
+
<string key="NSAction">submenuAction:</string>
|
827
|
+
<object class="NSMenu" key="NSSubmenu" id="175441468">
|
828
|
+
<string key="NSTitle">Kern</string>
|
829
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
830
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
831
|
+
<object class="NSMenuItem" id="252969304">
|
832
|
+
<reference key="NSMenu" ref="175441468"/>
|
833
|
+
<string key="NSTitle">Use Default</string>
|
834
|
+
<string key="NSKeyEquiv"/>
|
835
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
836
|
+
<reference key="NSOnImage" ref="35465992"/>
|
837
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
838
|
+
</object>
|
839
|
+
<object class="NSMenuItem" id="766922938">
|
840
|
+
<reference key="NSMenu" ref="175441468"/>
|
841
|
+
<string key="NSTitle">Use None</string>
|
842
|
+
<string key="NSKeyEquiv"/>
|
843
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
844
|
+
<reference key="NSOnImage" ref="35465992"/>
|
845
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
846
|
+
</object>
|
847
|
+
<object class="NSMenuItem" id="677519740">
|
848
|
+
<reference key="NSMenu" ref="175441468"/>
|
849
|
+
<string key="NSTitle">Tighten</string>
|
850
|
+
<string key="NSKeyEquiv"/>
|
851
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
852
|
+
<reference key="NSOnImage" ref="35465992"/>
|
853
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
854
|
+
</object>
|
855
|
+
<object class="NSMenuItem" id="238351151">
|
856
|
+
<reference key="NSMenu" ref="175441468"/>
|
857
|
+
<string key="NSTitle">Loosen</string>
|
858
|
+
<string key="NSKeyEquiv"/>
|
859
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
860
|
+
<reference key="NSOnImage" ref="35465992"/>
|
861
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
862
|
+
</object>
|
863
|
+
</object>
|
864
|
+
</object>
|
865
|
+
</object>
|
866
|
+
<object class="NSMenuItem" id="691570813">
|
867
|
+
<reference key="NSMenu" ref="786677654"/>
|
868
|
+
<string key="NSTitle">Ligature</string>
|
869
|
+
<string key="NSKeyEquiv"/>
|
870
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
871
|
+
<reference key="NSOnImage" ref="35465992"/>
|
872
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
873
|
+
<string key="NSAction">submenuAction:</string>
|
874
|
+
<object class="NSMenu" key="NSSubmenu" id="1058217995">
|
875
|
+
<string key="NSTitle">Ligature</string>
|
876
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
877
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
878
|
+
<object class="NSMenuItem" id="706297211">
|
879
|
+
<reference key="NSMenu" ref="1058217995"/>
|
880
|
+
<string key="NSTitle">Use Default</string>
|
881
|
+
<string key="NSKeyEquiv"/>
|
882
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
883
|
+
<reference key="NSOnImage" ref="35465992"/>
|
884
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
885
|
+
</object>
|
886
|
+
<object class="NSMenuItem" id="568384683">
|
887
|
+
<reference key="NSMenu" ref="1058217995"/>
|
888
|
+
<string key="NSTitle">Use None</string>
|
889
|
+
<string key="NSKeyEquiv"/>
|
890
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
891
|
+
<reference key="NSOnImage" ref="35465992"/>
|
892
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
893
|
+
</object>
|
894
|
+
<object class="NSMenuItem" id="663508465">
|
895
|
+
<reference key="NSMenu" ref="1058217995"/>
|
896
|
+
<string key="NSTitle">Use All</string>
|
897
|
+
<string key="NSKeyEquiv"/>
|
898
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
899
|
+
<reference key="NSOnImage" ref="35465992"/>
|
900
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
901
|
+
</object>
|
902
|
+
</object>
|
903
|
+
</object>
|
904
|
+
</object>
|
905
|
+
<object class="NSMenuItem" id="769124883">
|
906
|
+
<reference key="NSMenu" ref="786677654"/>
|
907
|
+
<string key="NSTitle">Baseline</string>
|
908
|
+
<string key="NSKeyEquiv"/>
|
909
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
910
|
+
<reference key="NSOnImage" ref="35465992"/>
|
911
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
912
|
+
<string key="NSAction">submenuAction:</string>
|
913
|
+
<object class="NSMenu" key="NSSubmenu" id="18263474">
|
914
|
+
<string key="NSTitle">Baseline</string>
|
915
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
916
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
917
|
+
<object class="NSMenuItem" id="257962622">
|
918
|
+
<reference key="NSMenu" ref="18263474"/>
|
919
|
+
<string key="NSTitle">Use Default</string>
|
920
|
+
<string key="NSKeyEquiv"/>
|
921
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
922
|
+
<reference key="NSOnImage" ref="35465992"/>
|
923
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
924
|
+
</object>
|
925
|
+
<object class="NSMenuItem" id="644725453">
|
926
|
+
<reference key="NSMenu" ref="18263474"/>
|
927
|
+
<string key="NSTitle">Superscript</string>
|
928
|
+
<string key="NSKeyEquiv"/>
|
929
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
930
|
+
<reference key="NSOnImage" ref="35465992"/>
|
931
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
932
|
+
</object>
|
933
|
+
<object class="NSMenuItem" id="1037576581">
|
934
|
+
<reference key="NSMenu" ref="18263474"/>
|
935
|
+
<string key="NSTitle">Subscript</string>
|
936
|
+
<string key="NSKeyEquiv"/>
|
937
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
938
|
+
<reference key="NSOnImage" ref="35465992"/>
|
939
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
940
|
+
</object>
|
941
|
+
<object class="NSMenuItem" id="941806246">
|
942
|
+
<reference key="NSMenu" ref="18263474"/>
|
943
|
+
<string key="NSTitle">Raise</string>
|
944
|
+
<string key="NSKeyEquiv"/>
|
945
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
946
|
+
<reference key="NSOnImage" ref="35465992"/>
|
947
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
948
|
+
</object>
|
949
|
+
<object class="NSMenuItem" id="1045724900">
|
950
|
+
<reference key="NSMenu" ref="18263474"/>
|
951
|
+
<string key="NSTitle">Lower</string>
|
952
|
+
<string key="NSKeyEquiv"/>
|
953
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
954
|
+
<reference key="NSOnImage" ref="35465992"/>
|
955
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
956
|
+
</object>
|
957
|
+
</object>
|
958
|
+
</object>
|
959
|
+
</object>
|
960
|
+
<object class="NSMenuItem" id="739652853">
|
961
|
+
<reference key="NSMenu" ref="786677654"/>
|
962
|
+
<bool key="NSIsDisabled">YES</bool>
|
963
|
+
<bool key="NSIsSeparator">YES</bool>
|
964
|
+
<string key="NSTitle"/>
|
965
|
+
<string key="NSKeyEquiv"/>
|
966
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
967
|
+
<reference key="NSOnImage" ref="35465992"/>
|
968
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
969
|
+
</object>
|
970
|
+
<object class="NSMenuItem" id="1012600125">
|
971
|
+
<reference key="NSMenu" ref="786677654"/>
|
972
|
+
<string key="NSTitle">Show Colors</string>
|
973
|
+
<string key="NSKeyEquiv">C</string>
|
974
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
975
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
976
|
+
<reference key="NSOnImage" ref="35465992"/>
|
977
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
978
|
+
</object>
|
979
|
+
<object class="NSMenuItem" id="214559597">
|
980
|
+
<reference key="NSMenu" ref="786677654"/>
|
981
|
+
<bool key="NSIsDisabled">YES</bool>
|
982
|
+
<bool key="NSIsSeparator">YES</bool>
|
983
|
+
<string key="NSTitle"/>
|
984
|
+
<string key="NSKeyEquiv"/>
|
985
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
986
|
+
<reference key="NSOnImage" ref="35465992"/>
|
987
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
988
|
+
</object>
|
989
|
+
<object class="NSMenuItem" id="596732606">
|
990
|
+
<reference key="NSMenu" ref="786677654"/>
|
991
|
+
<string key="NSTitle">Copy Style</string>
|
992
|
+
<string key="NSKeyEquiv">c</string>
|
993
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
994
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
995
|
+
<reference key="NSOnImage" ref="35465992"/>
|
996
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
997
|
+
</object>
|
998
|
+
<object class="NSMenuItem" id="393423671">
|
999
|
+
<reference key="NSMenu" ref="786677654"/>
|
1000
|
+
<string key="NSTitle">Paste Style</string>
|
1001
|
+
<string key="NSKeyEquiv">v</string>
|
1002
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
1003
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1004
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1005
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1006
|
+
</object>
|
1007
|
+
</object>
|
1008
|
+
<string key="NSName">_NSFontMenu</string>
|
1009
|
+
</object>
|
1010
|
+
</object>
|
1011
|
+
<object class="NSMenuItem" id="215659978">
|
1012
|
+
<reference key="NSMenu" ref="941447902"/>
|
1013
|
+
<string key="NSTitle">Text</string>
|
1014
|
+
<string key="NSKeyEquiv"/>
|
1015
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1016
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1017
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1018
|
+
<string key="NSAction">submenuAction:</string>
|
1019
|
+
<object class="NSMenu" key="NSSubmenu" id="446991534">
|
1020
|
+
<string key="NSTitle">Text</string>
|
1021
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
1022
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1023
|
+
<object class="NSMenuItem" id="875092757">
|
1024
|
+
<reference key="NSMenu" ref="446991534"/>
|
1025
|
+
<string key="NSTitle">Align Left</string>
|
1026
|
+
<string key="NSKeyEquiv">{</string>
|
1027
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1028
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1029
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1030
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1031
|
+
</object>
|
1032
|
+
<object class="NSMenuItem" id="630155264">
|
1033
|
+
<reference key="NSMenu" ref="446991534"/>
|
1034
|
+
<string key="NSTitle">Center</string>
|
1035
|
+
<string key="NSKeyEquiv">|</string>
|
1036
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1037
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1038
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1039
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1040
|
+
</object>
|
1041
|
+
<object class="NSMenuItem" id="945678886">
|
1042
|
+
<reference key="NSMenu" ref="446991534"/>
|
1043
|
+
<string key="NSTitle">Justify</string>
|
1044
|
+
<string key="NSKeyEquiv"/>
|
1045
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1046
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1047
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1048
|
+
</object>
|
1049
|
+
<object class="NSMenuItem" id="512868991">
|
1050
|
+
<reference key="NSMenu" ref="446991534"/>
|
1051
|
+
<string key="NSTitle">Align Right</string>
|
1052
|
+
<string key="NSKeyEquiv">}</string>
|
1053
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1054
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1055
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1056
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1057
|
+
</object>
|
1058
|
+
<object class="NSMenuItem" id="163117631">
|
1059
|
+
<reference key="NSMenu" ref="446991534"/>
|
1060
|
+
<bool key="NSIsDisabled">YES</bool>
|
1061
|
+
<bool key="NSIsSeparator">YES</bool>
|
1062
|
+
<string key="NSTitle"/>
|
1063
|
+
<string key="NSKeyEquiv"/>
|
1064
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1065
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1066
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1067
|
+
</object>
|
1068
|
+
<object class="NSMenuItem" id="31516759">
|
1069
|
+
<reference key="NSMenu" ref="446991534"/>
|
1070
|
+
<string key="NSTitle">Writing Direction</string>
|
1071
|
+
<string key="NSKeyEquiv"/>
|
1072
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1073
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1074
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1075
|
+
<string key="NSAction">submenuAction:</string>
|
1076
|
+
<object class="NSMenu" key="NSSubmenu" id="956096989">
|
1077
|
+
<string key="NSTitle">Writing Direction</string>
|
1078
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
1079
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1080
|
+
<object class="NSMenuItem" id="257099033">
|
1081
|
+
<reference key="NSMenu" ref="956096989"/>
|
1082
|
+
<bool key="NSIsDisabled">YES</bool>
|
1083
|
+
<string key="NSTitle">Paragraph</string>
|
1084
|
+
<string key="NSKeyEquiv"/>
|
1085
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1086
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1087
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1088
|
+
</object>
|
1089
|
+
<object class="NSMenuItem" id="551969625">
|
1090
|
+
<reference key="NSMenu" ref="956096989"/>
|
1091
|
+
<string type="base64-UTF8" key="NSTitle">CURlZmF1bHQ</string>
|
1092
|
+
<string key="NSKeyEquiv"/>
|
1093
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1094
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1095
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1096
|
+
</object>
|
1097
|
+
<object class="NSMenuItem" id="249532473">
|
1098
|
+
<reference key="NSMenu" ref="956096989"/>
|
1099
|
+
<string type="base64-UTF8" key="NSTitle">CUxlZnQgdG8gUmlnaHQ</string>
|
1100
|
+
<string key="NSKeyEquiv"/>
|
1101
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1102
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1103
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1104
|
+
</object>
|
1105
|
+
<object class="NSMenuItem" id="607364498">
|
1106
|
+
<reference key="NSMenu" ref="956096989"/>
|
1107
|
+
<string type="base64-UTF8" key="NSTitle">CVJpZ2h0IHRvIExlZnQ</string>
|
1108
|
+
<string key="NSKeyEquiv"/>
|
1109
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1110
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1111
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1112
|
+
</object>
|
1113
|
+
<object class="NSMenuItem" id="508151438">
|
1114
|
+
<reference key="NSMenu" ref="956096989"/>
|
1115
|
+
<bool key="NSIsDisabled">YES</bool>
|
1116
|
+
<bool key="NSIsSeparator">YES</bool>
|
1117
|
+
<string key="NSTitle"/>
|
1118
|
+
<string key="NSKeyEquiv"/>
|
1119
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1120
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1121
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1122
|
+
</object>
|
1123
|
+
<object class="NSMenuItem" id="981751889">
|
1124
|
+
<reference key="NSMenu" ref="956096989"/>
|
1125
|
+
<bool key="NSIsDisabled">YES</bool>
|
1126
|
+
<string key="NSTitle">Selection</string>
|
1127
|
+
<string key="NSKeyEquiv"/>
|
1128
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1129
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1130
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1131
|
+
</object>
|
1132
|
+
<object class="NSMenuItem" id="380031999">
|
1133
|
+
<reference key="NSMenu" ref="956096989"/>
|
1134
|
+
<string type="base64-UTF8" key="NSTitle">CURlZmF1bHQ</string>
|
1135
|
+
<string key="NSKeyEquiv"/>
|
1136
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1137
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1138
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1139
|
+
</object>
|
1140
|
+
<object class="NSMenuItem" id="825984362">
|
1141
|
+
<reference key="NSMenu" ref="956096989"/>
|
1142
|
+
<string type="base64-UTF8" key="NSTitle">CUxlZnQgdG8gUmlnaHQ</string>
|
1143
|
+
<string key="NSKeyEquiv"/>
|
1144
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1145
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1146
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1147
|
+
</object>
|
1148
|
+
<object class="NSMenuItem" id="560145579">
|
1149
|
+
<reference key="NSMenu" ref="956096989"/>
|
1150
|
+
<string type="base64-UTF8" key="NSTitle">CVJpZ2h0IHRvIExlZnQ</string>
|
1151
|
+
<string key="NSKeyEquiv"/>
|
1152
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1153
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1154
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1155
|
+
</object>
|
1156
|
+
</object>
|
1157
|
+
</object>
|
1158
|
+
</object>
|
1159
|
+
<object class="NSMenuItem" id="908105787">
|
1160
|
+
<reference key="NSMenu" ref="446991534"/>
|
1161
|
+
<bool key="NSIsDisabled">YES</bool>
|
1162
|
+
<bool key="NSIsSeparator">YES</bool>
|
1163
|
+
<string key="NSTitle"/>
|
1164
|
+
<string key="NSKeyEquiv"/>
|
1165
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1166
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1167
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1168
|
+
</object>
|
1169
|
+
<object class="NSMenuItem" id="644046920">
|
1170
|
+
<reference key="NSMenu" ref="446991534"/>
|
1171
|
+
<string key="NSTitle">Show Ruler</string>
|
1172
|
+
<string key="NSKeyEquiv"/>
|
1173
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1174
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1175
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1176
|
+
</object>
|
1177
|
+
<object class="NSMenuItem" id="231811626">
|
1178
|
+
<reference key="NSMenu" ref="446991534"/>
|
1179
|
+
<string key="NSTitle">Copy Ruler</string>
|
1180
|
+
<string key="NSKeyEquiv">c</string>
|
1181
|
+
<int key="NSKeyEquivModMask">1310720</int>
|
1182
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1183
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1184
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1185
|
+
</object>
|
1186
|
+
<object class="NSMenuItem" id="883618387">
|
1187
|
+
<reference key="NSMenu" ref="446991534"/>
|
1188
|
+
<string key="NSTitle">Paste Ruler</string>
|
1189
|
+
<string key="NSKeyEquiv">v</string>
|
1190
|
+
<int key="NSKeyEquivModMask">1310720</int>
|
1191
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1192
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1193
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1194
|
+
</object>
|
1195
|
+
</object>
|
1196
|
+
</object>
|
1197
|
+
</object>
|
1198
|
+
</object>
|
1199
|
+
</object>
|
1200
|
+
</object>
|
1201
|
+
<object class="NSMenuItem" id="586577488">
|
1202
|
+
<reference key="NSMenu" ref="649796088"/>
|
1203
|
+
<string key="NSTitle">View</string>
|
1204
|
+
<string key="NSKeyEquiv"/>
|
1205
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1206
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1207
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1208
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1209
|
+
<string key="NSAction">submenuAction:</string>
|
1210
|
+
<object class="NSMenu" key="NSSubmenu" id="466310130">
|
1211
|
+
<string key="NSTitle">View</string>
|
1212
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
1213
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1214
|
+
<object class="NSMenuItem" id="102151532">
|
1215
|
+
<reference key="NSMenu" ref="466310130"/>
|
1216
|
+
<string key="NSTitle">Show Toolbar</string>
|
1217
|
+
<string key="NSKeyEquiv">t</string>
|
1218
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
1219
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1220
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1221
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1222
|
+
</object>
|
1223
|
+
<object class="NSMenuItem" id="237841660">
|
1224
|
+
<reference key="NSMenu" ref="466310130"/>
|
1225
|
+
<string key="NSTitle">Customize Toolbar…</string>
|
1226
|
+
<string key="NSKeyEquiv"/>
|
1227
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1228
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1229
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1230
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1231
|
+
</object>
|
1232
|
+
</object>
|
1233
|
+
</object>
|
1234
|
+
</object>
|
1235
|
+
<object class="NSMenuItem" id="713487014">
|
1236
|
+
<reference key="NSMenu" ref="649796088"/>
|
1237
|
+
<string key="NSTitle">Window</string>
|
1238
|
+
<string key="NSKeyEquiv"/>
|
1239
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1240
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1241
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1242
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1243
|
+
<string key="NSAction">submenuAction:</string>
|
1244
|
+
<object class="NSMenu" key="NSSubmenu" id="835318025">
|
1245
|
+
<string key="NSTitle">Window</string>
|
1246
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
1247
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1248
|
+
<object class="NSMenuItem" id="1011231497">
|
1249
|
+
<reference key="NSMenu" ref="835318025"/>
|
1250
|
+
<string key="NSTitle">Minimize</string>
|
1251
|
+
<string key="NSKeyEquiv">m</string>
|
1252
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1253
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1254
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1255
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1256
|
+
</object>
|
1257
|
+
<object class="NSMenuItem" id="575023229">
|
1258
|
+
<reference key="NSMenu" ref="835318025"/>
|
1259
|
+
<string key="NSTitle">Zoom</string>
|
1260
|
+
<string key="NSKeyEquiv"/>
|
1261
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1262
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1263
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1264
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1265
|
+
</object>
|
1266
|
+
<object class="NSMenuItem" id="299356726">
|
1267
|
+
<reference key="NSMenu" ref="835318025"/>
|
1268
|
+
<bool key="NSIsDisabled">YES</bool>
|
1269
|
+
<bool key="NSIsSeparator">YES</bool>
|
1270
|
+
<string key="NSTitle"/>
|
1271
|
+
<string key="NSKeyEquiv"/>
|
1272
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1273
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1274
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1275
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1276
|
+
</object>
|
1277
|
+
<object class="NSMenuItem" id="625202149">
|
1278
|
+
<reference key="NSMenu" ref="835318025"/>
|
1279
|
+
<string key="NSTitle">Bring All to Front</string>
|
1280
|
+
<string key="NSKeyEquiv"/>
|
1281
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1282
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1283
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1284
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1285
|
+
</object>
|
1286
|
+
</object>
|
1287
|
+
<string key="NSName">_NSWindowsMenu</string>
|
1288
|
+
</object>
|
1289
|
+
</object>
|
1290
|
+
<object class="NSMenuItem" id="448692316">
|
1291
|
+
<reference key="NSMenu" ref="649796088"/>
|
1292
|
+
<string key="NSTitle">Help</string>
|
1293
|
+
<string key="NSKeyEquiv"/>
|
1294
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1295
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1296
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1297
|
+
<string key="NSAction">submenuAction:</string>
|
1298
|
+
<object class="NSMenu" key="NSSubmenu" id="992780483">
|
1299
|
+
<string key="NSTitle">Help</string>
|
1300
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
1301
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1302
|
+
<object class="NSMenuItem" id="105068016">
|
1303
|
+
<reference key="NSMenu" ref="992780483"/>
|
1304
|
+
<string key="NSTitle">TestApp Help</string>
|
1305
|
+
<string key="NSKeyEquiv">?</string>
|
1306
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1307
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1308
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1309
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1310
|
+
</object>
|
1311
|
+
</object>
|
1312
|
+
<string key="NSName">_NSHelpMenu</string>
|
1313
|
+
</object>
|
1314
|
+
</object>
|
1315
|
+
</object>
|
1316
|
+
<string key="NSName">_NSMainMenu</string>
|
1317
|
+
</object>
|
1318
|
+
<object class="NSWindowTemplate" id="972006081">
|
1319
|
+
<int key="NSWindowStyleMask">15</int>
|
1320
|
+
<int key="NSWindowBacking">2</int>
|
1321
|
+
<string key="NSWindowRect">{{335, 390}, {480, 360}}</string>
|
1322
|
+
<int key="NSWTFlags">1954021376</int>
|
1323
|
+
<string key="NSWindowTitle">TestApp</string>
|
1324
|
+
<string key="NSWindowClass">NSWindow</string>
|
1325
|
+
<nil key="NSViewClass"/>
|
1326
|
+
<string key="NSWindowContentMaxSize">{1.79769e+308, 1.79769e+308}</string>
|
1327
|
+
<object class="NSView" key="NSWindowView" id="439893737">
|
1328
|
+
<reference key="NSNextResponder"/>
|
1329
|
+
<int key="NSvFlags">256</int>
|
1330
|
+
<string key="NSFrameSize">{480, 360}</string>
|
1331
|
+
<reference key="NSSuperview"/>
|
1332
|
+
</object>
|
1333
|
+
<string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string>
|
1334
|
+
<string key="NSMaxSize">{1.79769e+308, 1.79769e+308}</string>
|
1335
|
+
</object>
|
1336
|
+
<object class="NSCustomObject" id="976324537">
|
1337
|
+
<string key="NSClassName">TestAppAppDelegate</string>
|
1338
|
+
</object>
|
1339
|
+
<object class="NSCustomObject" id="755631768">
|
1340
|
+
<string key="NSClassName">NSFontManager</string>
|
1341
|
+
</object>
|
1342
|
+
</object>
|
1343
|
+
<object class="IBObjectContainer" key="IBDocument.Objects">
|
1344
|
+
<object class="NSMutableArray" key="connectionRecords">
|
1345
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1346
|
+
<object class="IBConnectionRecord">
|
1347
|
+
<object class="IBActionConnection" key="connection">
|
1348
|
+
<string key="label">performMiniaturize:</string>
|
1349
|
+
<reference key="source" ref="1014"/>
|
1350
|
+
<reference key="destination" ref="1011231497"/>
|
1351
|
+
</object>
|
1352
|
+
<int key="connectionID">37</int>
|
1353
|
+
</object>
|
1354
|
+
<object class="IBConnectionRecord">
|
1355
|
+
<object class="IBActionConnection" key="connection">
|
1356
|
+
<string key="label">arrangeInFront:</string>
|
1357
|
+
<reference key="source" ref="1014"/>
|
1358
|
+
<reference key="destination" ref="625202149"/>
|
1359
|
+
</object>
|
1360
|
+
<int key="connectionID">39</int>
|
1361
|
+
</object>
|
1362
|
+
<object class="IBConnectionRecord">
|
1363
|
+
<object class="IBActionConnection" key="connection">
|
1364
|
+
<string key="label">print:</string>
|
1365
|
+
<reference key="source" ref="1014"/>
|
1366
|
+
<reference key="destination" ref="49223823"/>
|
1367
|
+
</object>
|
1368
|
+
<int key="connectionID">86</int>
|
1369
|
+
</object>
|
1370
|
+
<object class="IBConnectionRecord">
|
1371
|
+
<object class="IBActionConnection" key="connection">
|
1372
|
+
<string key="label">runPageLayout:</string>
|
1373
|
+
<reference key="source" ref="1014"/>
|
1374
|
+
<reference key="destination" ref="294629803"/>
|
1375
|
+
</object>
|
1376
|
+
<int key="connectionID">87</int>
|
1377
|
+
</object>
|
1378
|
+
<object class="IBConnectionRecord">
|
1379
|
+
<object class="IBActionConnection" key="connection">
|
1380
|
+
<string key="label">clearRecentDocuments:</string>
|
1381
|
+
<reference key="source" ref="1014"/>
|
1382
|
+
<reference key="destination" ref="759406840"/>
|
1383
|
+
</object>
|
1384
|
+
<int key="connectionID">127</int>
|
1385
|
+
</object>
|
1386
|
+
<object class="IBConnectionRecord">
|
1387
|
+
<object class="IBActionConnection" key="connection">
|
1388
|
+
<string key="label">orderFrontStandardAboutPanel:</string>
|
1389
|
+
<reference key="source" ref="1021"/>
|
1390
|
+
<reference key="destination" ref="238522557"/>
|
1391
|
+
</object>
|
1392
|
+
<int key="connectionID">142</int>
|
1393
|
+
</object>
|
1394
|
+
<object class="IBConnectionRecord">
|
1395
|
+
<object class="IBActionConnection" key="connection">
|
1396
|
+
<string key="label">performClose:</string>
|
1397
|
+
<reference key="source" ref="1014"/>
|
1398
|
+
<reference key="destination" ref="776162233"/>
|
1399
|
+
</object>
|
1400
|
+
<int key="connectionID">193</int>
|
1401
|
+
</object>
|
1402
|
+
<object class="IBConnectionRecord">
|
1403
|
+
<object class="IBActionConnection" key="connection">
|
1404
|
+
<string key="label">toggleContinuousSpellChecking:</string>
|
1405
|
+
<reference key="source" ref="1014"/>
|
1406
|
+
<reference key="destination" ref="948374510"/>
|
1407
|
+
</object>
|
1408
|
+
<int key="connectionID">222</int>
|
1409
|
+
</object>
|
1410
|
+
<object class="IBConnectionRecord">
|
1411
|
+
<object class="IBActionConnection" key="connection">
|
1412
|
+
<string key="label">undo:</string>
|
1413
|
+
<reference key="source" ref="1014"/>
|
1414
|
+
<reference key="destination" ref="1058277027"/>
|
1415
|
+
</object>
|
1416
|
+
<int key="connectionID">223</int>
|
1417
|
+
</object>
|
1418
|
+
<object class="IBConnectionRecord">
|
1419
|
+
<object class="IBActionConnection" key="connection">
|
1420
|
+
<string key="label">copy:</string>
|
1421
|
+
<reference key="source" ref="1014"/>
|
1422
|
+
<reference key="destination" ref="860595796"/>
|
1423
|
+
</object>
|
1424
|
+
<int key="connectionID">224</int>
|
1425
|
+
</object>
|
1426
|
+
<object class="IBConnectionRecord">
|
1427
|
+
<object class="IBActionConnection" key="connection">
|
1428
|
+
<string key="label">checkSpelling:</string>
|
1429
|
+
<reference key="source" ref="1014"/>
|
1430
|
+
<reference key="destination" ref="96193923"/>
|
1431
|
+
</object>
|
1432
|
+
<int key="connectionID">225</int>
|
1433
|
+
</object>
|
1434
|
+
<object class="IBConnectionRecord">
|
1435
|
+
<object class="IBActionConnection" key="connection">
|
1436
|
+
<string key="label">paste:</string>
|
1437
|
+
<reference key="source" ref="1014"/>
|
1438
|
+
<reference key="destination" ref="29853731"/>
|
1439
|
+
</object>
|
1440
|
+
<int key="connectionID">226</int>
|
1441
|
+
</object>
|
1442
|
+
<object class="IBConnectionRecord">
|
1443
|
+
<object class="IBActionConnection" key="connection">
|
1444
|
+
<string key="label">stopSpeaking:</string>
|
1445
|
+
<reference key="source" ref="1014"/>
|
1446
|
+
<reference key="destination" ref="680220178"/>
|
1447
|
+
</object>
|
1448
|
+
<int key="connectionID">227</int>
|
1449
|
+
</object>
|
1450
|
+
<object class="IBConnectionRecord">
|
1451
|
+
<object class="IBActionConnection" key="connection">
|
1452
|
+
<string key="label">cut:</string>
|
1453
|
+
<reference key="source" ref="1014"/>
|
1454
|
+
<reference key="destination" ref="296257095"/>
|
1455
|
+
</object>
|
1456
|
+
<int key="connectionID">228</int>
|
1457
|
+
</object>
|
1458
|
+
<object class="IBConnectionRecord">
|
1459
|
+
<object class="IBActionConnection" key="connection">
|
1460
|
+
<string key="label">showGuessPanel:</string>
|
1461
|
+
<reference key="source" ref="1014"/>
|
1462
|
+
<reference key="destination" ref="679648819"/>
|
1463
|
+
</object>
|
1464
|
+
<int key="connectionID">230</int>
|
1465
|
+
</object>
|
1466
|
+
<object class="IBConnectionRecord">
|
1467
|
+
<object class="IBActionConnection" key="connection">
|
1468
|
+
<string key="label">redo:</string>
|
1469
|
+
<reference key="source" ref="1014"/>
|
1470
|
+
<reference key="destination" ref="790794224"/>
|
1471
|
+
</object>
|
1472
|
+
<int key="connectionID">231</int>
|
1473
|
+
</object>
|
1474
|
+
<object class="IBConnectionRecord">
|
1475
|
+
<object class="IBActionConnection" key="connection">
|
1476
|
+
<string key="label">selectAll:</string>
|
1477
|
+
<reference key="source" ref="1014"/>
|
1478
|
+
<reference key="destination" ref="583158037"/>
|
1479
|
+
</object>
|
1480
|
+
<int key="connectionID">232</int>
|
1481
|
+
</object>
|
1482
|
+
<object class="IBConnectionRecord">
|
1483
|
+
<object class="IBActionConnection" key="connection">
|
1484
|
+
<string key="label">startSpeaking:</string>
|
1485
|
+
<reference key="source" ref="1014"/>
|
1486
|
+
<reference key="destination" ref="731782645"/>
|
1487
|
+
</object>
|
1488
|
+
<int key="connectionID">233</int>
|
1489
|
+
</object>
|
1490
|
+
<object class="IBConnectionRecord">
|
1491
|
+
<object class="IBActionConnection" key="connection">
|
1492
|
+
<string key="label">delete:</string>
|
1493
|
+
<reference key="source" ref="1014"/>
|
1494
|
+
<reference key="destination" ref="437104165"/>
|
1495
|
+
</object>
|
1496
|
+
<int key="connectionID">235</int>
|
1497
|
+
</object>
|
1498
|
+
<object class="IBConnectionRecord">
|
1499
|
+
<object class="IBActionConnection" key="connection">
|
1500
|
+
<string key="label">performZoom:</string>
|
1501
|
+
<reference key="source" ref="1014"/>
|
1502
|
+
<reference key="destination" ref="575023229"/>
|
1503
|
+
</object>
|
1504
|
+
<int key="connectionID">240</int>
|
1505
|
+
</object>
|
1506
|
+
<object class="IBConnectionRecord">
|
1507
|
+
<object class="IBActionConnection" key="connection">
|
1508
|
+
<string key="label">performFindPanelAction:</string>
|
1509
|
+
<reference key="source" ref="1014"/>
|
1510
|
+
<reference key="destination" ref="447796847"/>
|
1511
|
+
</object>
|
1512
|
+
<int key="connectionID">241</int>
|
1513
|
+
</object>
|
1514
|
+
<object class="IBConnectionRecord">
|
1515
|
+
<object class="IBActionConnection" key="connection">
|
1516
|
+
<string key="label">centerSelectionInVisibleArea:</string>
|
1517
|
+
<reference key="source" ref="1014"/>
|
1518
|
+
<reference key="destination" ref="88285865"/>
|
1519
|
+
</object>
|
1520
|
+
<int key="connectionID">245</int>
|
1521
|
+
</object>
|
1522
|
+
<object class="IBConnectionRecord">
|
1523
|
+
<object class="IBActionConnection" key="connection">
|
1524
|
+
<string key="label">toggleGrammarChecking:</string>
|
1525
|
+
<reference key="source" ref="1014"/>
|
1526
|
+
<reference key="destination" ref="967646866"/>
|
1527
|
+
</object>
|
1528
|
+
<int key="connectionID">347</int>
|
1529
|
+
</object>
|
1530
|
+
<object class="IBConnectionRecord">
|
1531
|
+
<object class="IBActionConnection" key="connection">
|
1532
|
+
<string key="label">toggleSmartInsertDelete:</string>
|
1533
|
+
<reference key="source" ref="1014"/>
|
1534
|
+
<reference key="destination" ref="605118523"/>
|
1535
|
+
</object>
|
1536
|
+
<int key="connectionID">355</int>
|
1537
|
+
</object>
|
1538
|
+
<object class="IBConnectionRecord">
|
1539
|
+
<object class="IBActionConnection" key="connection">
|
1540
|
+
<string key="label">toggleAutomaticQuoteSubstitution:</string>
|
1541
|
+
<reference key="source" ref="1014"/>
|
1542
|
+
<reference key="destination" ref="197661976"/>
|
1543
|
+
</object>
|
1544
|
+
<int key="connectionID">356</int>
|
1545
|
+
</object>
|
1546
|
+
<object class="IBConnectionRecord">
|
1547
|
+
<object class="IBActionConnection" key="connection">
|
1548
|
+
<string key="label">toggleAutomaticLinkDetection:</string>
|
1549
|
+
<reference key="source" ref="1014"/>
|
1550
|
+
<reference key="destination" ref="708854459"/>
|
1551
|
+
</object>
|
1552
|
+
<int key="connectionID">357</int>
|
1553
|
+
</object>
|
1554
|
+
<object class="IBConnectionRecord">
|
1555
|
+
<object class="IBActionConnection" key="connection">
|
1556
|
+
<string key="label">saveDocument:</string>
|
1557
|
+
<reference key="source" ref="1014"/>
|
1558
|
+
<reference key="destination" ref="1023925487"/>
|
1559
|
+
</object>
|
1560
|
+
<int key="connectionID">362</int>
|
1561
|
+
</object>
|
1562
|
+
<object class="IBConnectionRecord">
|
1563
|
+
<object class="IBActionConnection" key="connection">
|
1564
|
+
<string key="label">saveDocumentAs:</string>
|
1565
|
+
<reference key="source" ref="1014"/>
|
1566
|
+
<reference key="destination" ref="117038363"/>
|
1567
|
+
</object>
|
1568
|
+
<int key="connectionID">363</int>
|
1569
|
+
</object>
|
1570
|
+
<object class="IBConnectionRecord">
|
1571
|
+
<object class="IBActionConnection" key="connection">
|
1572
|
+
<string key="label">revertDocumentToSaved:</string>
|
1573
|
+
<reference key="source" ref="1014"/>
|
1574
|
+
<reference key="destination" ref="579971712"/>
|
1575
|
+
</object>
|
1576
|
+
<int key="connectionID">364</int>
|
1577
|
+
</object>
|
1578
|
+
<object class="IBConnectionRecord">
|
1579
|
+
<object class="IBActionConnection" key="connection">
|
1580
|
+
<string key="label">runToolbarCustomizationPalette:</string>
|
1581
|
+
<reference key="source" ref="1014"/>
|
1582
|
+
<reference key="destination" ref="237841660"/>
|
1583
|
+
</object>
|
1584
|
+
<int key="connectionID">365</int>
|
1585
|
+
</object>
|
1586
|
+
<object class="IBConnectionRecord">
|
1587
|
+
<object class="IBActionConnection" key="connection">
|
1588
|
+
<string key="label">toggleToolbarShown:</string>
|
1589
|
+
<reference key="source" ref="1014"/>
|
1590
|
+
<reference key="destination" ref="102151532"/>
|
1591
|
+
</object>
|
1592
|
+
<int key="connectionID">366</int>
|
1593
|
+
</object>
|
1594
|
+
<object class="IBConnectionRecord">
|
1595
|
+
<object class="IBActionConnection" key="connection">
|
1596
|
+
<string key="label">hide:</string>
|
1597
|
+
<reference key="source" ref="1014"/>
|
1598
|
+
<reference key="destination" ref="755159360"/>
|
1599
|
+
</object>
|
1600
|
+
<int key="connectionID">367</int>
|
1601
|
+
</object>
|
1602
|
+
<object class="IBConnectionRecord">
|
1603
|
+
<object class="IBActionConnection" key="connection">
|
1604
|
+
<string key="label">hideOtherApplications:</string>
|
1605
|
+
<reference key="source" ref="1014"/>
|
1606
|
+
<reference key="destination" ref="342932134"/>
|
1607
|
+
</object>
|
1608
|
+
<int key="connectionID">368</int>
|
1609
|
+
</object>
|
1610
|
+
<object class="IBConnectionRecord">
|
1611
|
+
<object class="IBActionConnection" key="connection">
|
1612
|
+
<string key="label">unhideAllApplications:</string>
|
1613
|
+
<reference key="source" ref="1014"/>
|
1614
|
+
<reference key="destination" ref="908899353"/>
|
1615
|
+
</object>
|
1616
|
+
<int key="connectionID">370</int>
|
1617
|
+
</object>
|
1618
|
+
<object class="IBConnectionRecord">
|
1619
|
+
<object class="IBActionConnection" key="connection">
|
1620
|
+
<string key="label">newDocument:</string>
|
1621
|
+
<reference key="source" ref="1014"/>
|
1622
|
+
<reference key="destination" ref="705341025"/>
|
1623
|
+
</object>
|
1624
|
+
<int key="connectionID">373</int>
|
1625
|
+
</object>
|
1626
|
+
<object class="IBConnectionRecord">
|
1627
|
+
<object class="IBActionConnection" key="connection">
|
1628
|
+
<string key="label">openDocument:</string>
|
1629
|
+
<reference key="source" ref="1014"/>
|
1630
|
+
<reference key="destination" ref="722745758"/>
|
1631
|
+
</object>
|
1632
|
+
<int key="connectionID">374</int>
|
1633
|
+
</object>
|
1634
|
+
<object class="IBConnectionRecord">
|
1635
|
+
<object class="IBActionConnection" key="connection">
|
1636
|
+
<string key="label">addFontTrait:</string>
|
1637
|
+
<reference key="source" ref="755631768"/>
|
1638
|
+
<reference key="destination" ref="305399458"/>
|
1639
|
+
</object>
|
1640
|
+
<int key="connectionID">421</int>
|
1641
|
+
</object>
|
1642
|
+
<object class="IBConnectionRecord">
|
1643
|
+
<object class="IBActionConnection" key="connection">
|
1644
|
+
<string key="label">addFontTrait:</string>
|
1645
|
+
<reference key="source" ref="755631768"/>
|
1646
|
+
<reference key="destination" ref="814362025"/>
|
1647
|
+
</object>
|
1648
|
+
<int key="connectionID">422</int>
|
1649
|
+
</object>
|
1650
|
+
<object class="IBConnectionRecord">
|
1651
|
+
<object class="IBActionConnection" key="connection">
|
1652
|
+
<string key="label">modifyFont:</string>
|
1653
|
+
<reference key="source" ref="755631768"/>
|
1654
|
+
<reference key="destination" ref="885547335"/>
|
1655
|
+
</object>
|
1656
|
+
<int key="connectionID">423</int>
|
1657
|
+
</object>
|
1658
|
+
<object class="IBConnectionRecord">
|
1659
|
+
<object class="IBActionConnection" key="connection">
|
1660
|
+
<string key="label">orderFrontFontPanel:</string>
|
1661
|
+
<reference key="source" ref="755631768"/>
|
1662
|
+
<reference key="destination" ref="159677712"/>
|
1663
|
+
</object>
|
1664
|
+
<int key="connectionID">424</int>
|
1665
|
+
</object>
|
1666
|
+
<object class="IBConnectionRecord">
|
1667
|
+
<object class="IBActionConnection" key="connection">
|
1668
|
+
<string key="label">modifyFont:</string>
|
1669
|
+
<reference key="source" ref="755631768"/>
|
1670
|
+
<reference key="destination" ref="158063935"/>
|
1671
|
+
</object>
|
1672
|
+
<int key="connectionID">425</int>
|
1673
|
+
</object>
|
1674
|
+
<object class="IBConnectionRecord">
|
1675
|
+
<object class="IBActionConnection" key="connection">
|
1676
|
+
<string key="label">raiseBaseline:</string>
|
1677
|
+
<reference key="source" ref="1014"/>
|
1678
|
+
<reference key="destination" ref="941806246"/>
|
1679
|
+
</object>
|
1680
|
+
<int key="connectionID">426</int>
|
1681
|
+
</object>
|
1682
|
+
<object class="IBConnectionRecord">
|
1683
|
+
<object class="IBActionConnection" key="connection">
|
1684
|
+
<string key="label">lowerBaseline:</string>
|
1685
|
+
<reference key="source" ref="1014"/>
|
1686
|
+
<reference key="destination" ref="1045724900"/>
|
1687
|
+
</object>
|
1688
|
+
<int key="connectionID">427</int>
|
1689
|
+
</object>
|
1690
|
+
<object class="IBConnectionRecord">
|
1691
|
+
<object class="IBActionConnection" key="connection">
|
1692
|
+
<string key="label">copyFont:</string>
|
1693
|
+
<reference key="source" ref="1014"/>
|
1694
|
+
<reference key="destination" ref="596732606"/>
|
1695
|
+
</object>
|
1696
|
+
<int key="connectionID">428</int>
|
1697
|
+
</object>
|
1698
|
+
<object class="IBConnectionRecord">
|
1699
|
+
<object class="IBActionConnection" key="connection">
|
1700
|
+
<string key="label">subscript:</string>
|
1701
|
+
<reference key="source" ref="1014"/>
|
1702
|
+
<reference key="destination" ref="1037576581"/>
|
1703
|
+
</object>
|
1704
|
+
<int key="connectionID">429</int>
|
1705
|
+
</object>
|
1706
|
+
<object class="IBConnectionRecord">
|
1707
|
+
<object class="IBActionConnection" key="connection">
|
1708
|
+
<string key="label">superscript:</string>
|
1709
|
+
<reference key="source" ref="1014"/>
|
1710
|
+
<reference key="destination" ref="644725453"/>
|
1711
|
+
</object>
|
1712
|
+
<int key="connectionID">430</int>
|
1713
|
+
</object>
|
1714
|
+
<object class="IBConnectionRecord">
|
1715
|
+
<object class="IBActionConnection" key="connection">
|
1716
|
+
<string key="label">tightenKerning:</string>
|
1717
|
+
<reference key="source" ref="1014"/>
|
1718
|
+
<reference key="destination" ref="677519740"/>
|
1719
|
+
</object>
|
1720
|
+
<int key="connectionID">431</int>
|
1721
|
+
</object>
|
1722
|
+
<object class="IBConnectionRecord">
|
1723
|
+
<object class="IBActionConnection" key="connection">
|
1724
|
+
<string key="label">underline:</string>
|
1725
|
+
<reference key="source" ref="1014"/>
|
1726
|
+
<reference key="destination" ref="330926929"/>
|
1727
|
+
</object>
|
1728
|
+
<int key="connectionID">432</int>
|
1729
|
+
</object>
|
1730
|
+
<object class="IBConnectionRecord">
|
1731
|
+
<object class="IBActionConnection" key="connection">
|
1732
|
+
<string key="label">orderFrontColorPanel:</string>
|
1733
|
+
<reference key="source" ref="1014"/>
|
1734
|
+
<reference key="destination" ref="1012600125"/>
|
1735
|
+
</object>
|
1736
|
+
<int key="connectionID">433</int>
|
1737
|
+
</object>
|
1738
|
+
<object class="IBConnectionRecord">
|
1739
|
+
<object class="IBActionConnection" key="connection">
|
1740
|
+
<string key="label">useAllLigatures:</string>
|
1741
|
+
<reference key="source" ref="1014"/>
|
1742
|
+
<reference key="destination" ref="663508465"/>
|
1743
|
+
</object>
|
1744
|
+
<int key="connectionID">434</int>
|
1745
|
+
</object>
|
1746
|
+
<object class="IBConnectionRecord">
|
1747
|
+
<object class="IBActionConnection" key="connection">
|
1748
|
+
<string key="label">loosenKerning:</string>
|
1749
|
+
<reference key="source" ref="1014"/>
|
1750
|
+
<reference key="destination" ref="238351151"/>
|
1751
|
+
</object>
|
1752
|
+
<int key="connectionID">435</int>
|
1753
|
+
</object>
|
1754
|
+
<object class="IBConnectionRecord">
|
1755
|
+
<object class="IBActionConnection" key="connection">
|
1756
|
+
<string key="label">pasteFont:</string>
|
1757
|
+
<reference key="source" ref="1014"/>
|
1758
|
+
<reference key="destination" ref="393423671"/>
|
1759
|
+
</object>
|
1760
|
+
<int key="connectionID">436</int>
|
1761
|
+
</object>
|
1762
|
+
<object class="IBConnectionRecord">
|
1763
|
+
<object class="IBActionConnection" key="connection">
|
1764
|
+
<string key="label">unscript:</string>
|
1765
|
+
<reference key="source" ref="1014"/>
|
1766
|
+
<reference key="destination" ref="257962622"/>
|
1767
|
+
</object>
|
1768
|
+
<int key="connectionID">437</int>
|
1769
|
+
</object>
|
1770
|
+
<object class="IBConnectionRecord">
|
1771
|
+
<object class="IBActionConnection" key="connection">
|
1772
|
+
<string key="label">useStandardKerning:</string>
|
1773
|
+
<reference key="source" ref="1014"/>
|
1774
|
+
<reference key="destination" ref="252969304"/>
|
1775
|
+
</object>
|
1776
|
+
<int key="connectionID">438</int>
|
1777
|
+
</object>
|
1778
|
+
<object class="IBConnectionRecord">
|
1779
|
+
<object class="IBActionConnection" key="connection">
|
1780
|
+
<string key="label">useStandardLigatures:</string>
|
1781
|
+
<reference key="source" ref="1014"/>
|
1782
|
+
<reference key="destination" ref="706297211"/>
|
1783
|
+
</object>
|
1784
|
+
<int key="connectionID">439</int>
|
1785
|
+
</object>
|
1786
|
+
<object class="IBConnectionRecord">
|
1787
|
+
<object class="IBActionConnection" key="connection">
|
1788
|
+
<string key="label">turnOffLigatures:</string>
|
1789
|
+
<reference key="source" ref="1014"/>
|
1790
|
+
<reference key="destination" ref="568384683"/>
|
1791
|
+
</object>
|
1792
|
+
<int key="connectionID">440</int>
|
1793
|
+
</object>
|
1794
|
+
<object class="IBConnectionRecord">
|
1795
|
+
<object class="IBActionConnection" key="connection">
|
1796
|
+
<string key="label">turnOffKerning:</string>
|
1797
|
+
<reference key="source" ref="1014"/>
|
1798
|
+
<reference key="destination" ref="766922938"/>
|
1799
|
+
</object>
|
1800
|
+
<int key="connectionID">441</int>
|
1801
|
+
</object>
|
1802
|
+
<object class="IBConnectionRecord">
|
1803
|
+
<object class="IBActionConnection" key="connection">
|
1804
|
+
<string key="label">terminate:</string>
|
1805
|
+
<reference key="source" ref="1050"/>
|
1806
|
+
<reference key="destination" ref="632727374"/>
|
1807
|
+
</object>
|
1808
|
+
<int key="connectionID">449</int>
|
1809
|
+
</object>
|
1810
|
+
<object class="IBConnectionRecord">
|
1811
|
+
<object class="IBActionConnection" key="connection">
|
1812
|
+
<string key="label">toggleAutomaticSpellingCorrection:</string>
|
1813
|
+
<reference key="source" ref="1014"/>
|
1814
|
+
<reference key="destination" ref="795346622"/>
|
1815
|
+
</object>
|
1816
|
+
<int key="connectionID">456</int>
|
1817
|
+
</object>
|
1818
|
+
<object class="IBConnectionRecord">
|
1819
|
+
<object class="IBActionConnection" key="connection">
|
1820
|
+
<string key="label">orderFrontSubstitutionsPanel:</string>
|
1821
|
+
<reference key="source" ref="1014"/>
|
1822
|
+
<reference key="destination" ref="65139061"/>
|
1823
|
+
</object>
|
1824
|
+
<int key="connectionID">458</int>
|
1825
|
+
</object>
|
1826
|
+
<object class="IBConnectionRecord">
|
1827
|
+
<object class="IBActionConnection" key="connection">
|
1828
|
+
<string key="label">toggleAutomaticDashSubstitution:</string>
|
1829
|
+
<reference key="source" ref="1014"/>
|
1830
|
+
<reference key="destination" ref="672708820"/>
|
1831
|
+
</object>
|
1832
|
+
<int key="connectionID">461</int>
|
1833
|
+
</object>
|
1834
|
+
<object class="IBConnectionRecord">
|
1835
|
+
<object class="IBActionConnection" key="connection">
|
1836
|
+
<string key="label">toggleAutomaticTextReplacement:</string>
|
1837
|
+
<reference key="source" ref="1014"/>
|
1838
|
+
<reference key="destination" ref="537092702"/>
|
1839
|
+
</object>
|
1840
|
+
<int key="connectionID">463</int>
|
1841
|
+
</object>
|
1842
|
+
<object class="IBConnectionRecord">
|
1843
|
+
<object class="IBActionConnection" key="connection">
|
1844
|
+
<string key="label">uppercaseWord:</string>
|
1845
|
+
<reference key="source" ref="1014"/>
|
1846
|
+
<reference key="destination" ref="1060694897"/>
|
1847
|
+
</object>
|
1848
|
+
<int key="connectionID">464</int>
|
1849
|
+
</object>
|
1850
|
+
<object class="IBConnectionRecord">
|
1851
|
+
<object class="IBActionConnection" key="connection">
|
1852
|
+
<string key="label">capitalizeWord:</string>
|
1853
|
+
<reference key="source" ref="1014"/>
|
1854
|
+
<reference key="destination" ref="56570060"/>
|
1855
|
+
</object>
|
1856
|
+
<int key="connectionID">467</int>
|
1857
|
+
</object>
|
1858
|
+
<object class="IBConnectionRecord">
|
1859
|
+
<object class="IBActionConnection" key="connection">
|
1860
|
+
<string key="label">lowercaseWord:</string>
|
1861
|
+
<reference key="source" ref="1014"/>
|
1862
|
+
<reference key="destination" ref="879586729"/>
|
1863
|
+
</object>
|
1864
|
+
<int key="connectionID">468</int>
|
1865
|
+
</object>
|
1866
|
+
<object class="IBConnectionRecord">
|
1867
|
+
<object class="IBActionConnection" key="connection">
|
1868
|
+
<string key="label">pasteAsPlainText:</string>
|
1869
|
+
<reference key="source" ref="1014"/>
|
1870
|
+
<reference key="destination" ref="82994268"/>
|
1871
|
+
</object>
|
1872
|
+
<int key="connectionID">486</int>
|
1873
|
+
</object>
|
1874
|
+
<object class="IBConnectionRecord">
|
1875
|
+
<object class="IBActionConnection" key="connection">
|
1876
|
+
<string key="label">performFindPanelAction:</string>
|
1877
|
+
<reference key="source" ref="1014"/>
|
1878
|
+
<reference key="destination" ref="326711663"/>
|
1879
|
+
</object>
|
1880
|
+
<int key="connectionID">487</int>
|
1881
|
+
</object>
|
1882
|
+
<object class="IBConnectionRecord">
|
1883
|
+
<object class="IBActionConnection" key="connection">
|
1884
|
+
<string key="label">performFindPanelAction:</string>
|
1885
|
+
<reference key="source" ref="1014"/>
|
1886
|
+
<reference key="destination" ref="270902937"/>
|
1887
|
+
</object>
|
1888
|
+
<int key="connectionID">488</int>
|
1889
|
+
</object>
|
1890
|
+
<object class="IBConnectionRecord">
|
1891
|
+
<object class="IBActionConnection" key="connection">
|
1892
|
+
<string key="label">performFindPanelAction:</string>
|
1893
|
+
<reference key="source" ref="1014"/>
|
1894
|
+
<reference key="destination" ref="159080638"/>
|
1895
|
+
</object>
|
1896
|
+
<int key="connectionID">489</int>
|
1897
|
+
</object>
|
1898
|
+
<object class="IBConnectionRecord">
|
1899
|
+
<object class="IBActionConnection" key="connection">
|
1900
|
+
<string key="label">showHelp:</string>
|
1901
|
+
<reference key="source" ref="1014"/>
|
1902
|
+
<reference key="destination" ref="105068016"/>
|
1903
|
+
</object>
|
1904
|
+
<int key="connectionID">493</int>
|
1905
|
+
</object>
|
1906
|
+
<object class="IBConnectionRecord">
|
1907
|
+
<object class="IBOutletConnection" key="connection">
|
1908
|
+
<string key="label">delegate</string>
|
1909
|
+
<reference key="source" ref="1021"/>
|
1910
|
+
<reference key="destination" ref="976324537"/>
|
1911
|
+
</object>
|
1912
|
+
<int key="connectionID">495</int>
|
1913
|
+
</object>
|
1914
|
+
<object class="IBConnectionRecord">
|
1915
|
+
<object class="IBActionConnection" key="connection">
|
1916
|
+
<string key="label">alignCenter:</string>
|
1917
|
+
<reference key="source" ref="1014"/>
|
1918
|
+
<reference key="destination" ref="630155264"/>
|
1919
|
+
</object>
|
1920
|
+
<int key="connectionID">518</int>
|
1921
|
+
</object>
|
1922
|
+
<object class="IBConnectionRecord">
|
1923
|
+
<object class="IBActionConnection" key="connection">
|
1924
|
+
<string key="label">pasteRuler:</string>
|
1925
|
+
<reference key="source" ref="1014"/>
|
1926
|
+
<reference key="destination" ref="883618387"/>
|
1927
|
+
</object>
|
1928
|
+
<int key="connectionID">519</int>
|
1929
|
+
</object>
|
1930
|
+
<object class="IBConnectionRecord">
|
1931
|
+
<object class="IBActionConnection" key="connection">
|
1932
|
+
<string key="label">toggleRuler:</string>
|
1933
|
+
<reference key="source" ref="1014"/>
|
1934
|
+
<reference key="destination" ref="644046920"/>
|
1935
|
+
</object>
|
1936
|
+
<int key="connectionID">520</int>
|
1937
|
+
</object>
|
1938
|
+
<object class="IBConnectionRecord">
|
1939
|
+
<object class="IBActionConnection" key="connection">
|
1940
|
+
<string key="label">alignRight:</string>
|
1941
|
+
<reference key="source" ref="1014"/>
|
1942
|
+
<reference key="destination" ref="512868991"/>
|
1943
|
+
</object>
|
1944
|
+
<int key="connectionID">521</int>
|
1945
|
+
</object>
|
1946
|
+
<object class="IBConnectionRecord">
|
1947
|
+
<object class="IBActionConnection" key="connection">
|
1948
|
+
<string key="label">copyRuler:</string>
|
1949
|
+
<reference key="source" ref="1014"/>
|
1950
|
+
<reference key="destination" ref="231811626"/>
|
1951
|
+
</object>
|
1952
|
+
<int key="connectionID">522</int>
|
1953
|
+
</object>
|
1954
|
+
<object class="IBConnectionRecord">
|
1955
|
+
<object class="IBActionConnection" key="connection">
|
1956
|
+
<string key="label">alignJustified:</string>
|
1957
|
+
<reference key="source" ref="1014"/>
|
1958
|
+
<reference key="destination" ref="945678886"/>
|
1959
|
+
</object>
|
1960
|
+
<int key="connectionID">523</int>
|
1961
|
+
</object>
|
1962
|
+
<object class="IBConnectionRecord">
|
1963
|
+
<object class="IBActionConnection" key="connection">
|
1964
|
+
<string key="label">alignLeft:</string>
|
1965
|
+
<reference key="source" ref="1014"/>
|
1966
|
+
<reference key="destination" ref="875092757"/>
|
1967
|
+
</object>
|
1968
|
+
<int key="connectionID">524</int>
|
1969
|
+
</object>
|
1970
|
+
<object class="IBConnectionRecord">
|
1971
|
+
<object class="IBActionConnection" key="connection">
|
1972
|
+
<string key="label">makeBaseWritingDirectionNatural:</string>
|
1973
|
+
<reference key="source" ref="1014"/>
|
1974
|
+
<reference key="destination" ref="551969625"/>
|
1975
|
+
</object>
|
1976
|
+
<int key="connectionID">525</int>
|
1977
|
+
</object>
|
1978
|
+
<object class="IBConnectionRecord">
|
1979
|
+
<object class="IBActionConnection" key="connection">
|
1980
|
+
<string key="label">makeBaseWritingDirectionLeftToRight:</string>
|
1981
|
+
<reference key="source" ref="1014"/>
|
1982
|
+
<reference key="destination" ref="249532473"/>
|
1983
|
+
</object>
|
1984
|
+
<int key="connectionID">526</int>
|
1985
|
+
</object>
|
1986
|
+
<object class="IBConnectionRecord">
|
1987
|
+
<object class="IBActionConnection" key="connection">
|
1988
|
+
<string key="label">makeBaseWritingDirectionRightToLeft:</string>
|
1989
|
+
<reference key="source" ref="1014"/>
|
1990
|
+
<reference key="destination" ref="607364498"/>
|
1991
|
+
</object>
|
1992
|
+
<int key="connectionID">527</int>
|
1993
|
+
</object>
|
1994
|
+
<object class="IBConnectionRecord">
|
1995
|
+
<object class="IBActionConnection" key="connection">
|
1996
|
+
<string key="label">makeTextWritingDirectionNatural:</string>
|
1997
|
+
<reference key="source" ref="1014"/>
|
1998
|
+
<reference key="destination" ref="380031999"/>
|
1999
|
+
</object>
|
2000
|
+
<int key="connectionID">528</int>
|
2001
|
+
</object>
|
2002
|
+
<object class="IBConnectionRecord">
|
2003
|
+
<object class="IBActionConnection" key="connection">
|
2004
|
+
<string key="label">makeTextWritingDirectionLeftToRight:</string>
|
2005
|
+
<reference key="source" ref="1014"/>
|
2006
|
+
<reference key="destination" ref="825984362"/>
|
2007
|
+
</object>
|
2008
|
+
<int key="connectionID">529</int>
|
2009
|
+
</object>
|
2010
|
+
<object class="IBConnectionRecord">
|
2011
|
+
<object class="IBActionConnection" key="connection">
|
2012
|
+
<string key="label">makeTextWritingDirectionRightToLeft:</string>
|
2013
|
+
<reference key="source" ref="1014"/>
|
2014
|
+
<reference key="destination" ref="560145579"/>
|
2015
|
+
</object>
|
2016
|
+
<int key="connectionID">530</int>
|
2017
|
+
</object>
|
2018
|
+
<object class="IBConnectionRecord">
|
2019
|
+
<object class="IBOutletConnection" key="connection">
|
2020
|
+
<string key="label">window</string>
|
2021
|
+
<reference key="source" ref="976324537"/>
|
2022
|
+
<reference key="destination" ref="972006081"/>
|
2023
|
+
</object>
|
2024
|
+
<int key="connectionID">532</int>
|
2025
|
+
</object>
|
2026
|
+
</object>
|
2027
|
+
<object class="IBMutableOrderedSet" key="objectRecords">
|
2028
|
+
<object class="NSArray" key="orderedObjects">
|
2029
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2030
|
+
<object class="IBObjectRecord">
|
2031
|
+
<int key="objectID">0</int>
|
2032
|
+
<reference key="object" ref="0"/>
|
2033
|
+
<reference key="children" ref="1048"/>
|
2034
|
+
<nil key="parent"/>
|
2035
|
+
</object>
|
2036
|
+
<object class="IBObjectRecord">
|
2037
|
+
<int key="objectID">-2</int>
|
2038
|
+
<reference key="object" ref="1021"/>
|
2039
|
+
<reference key="parent" ref="0"/>
|
2040
|
+
<string key="objectName">File's Owner</string>
|
2041
|
+
</object>
|
2042
|
+
<object class="IBObjectRecord">
|
2043
|
+
<int key="objectID">-1</int>
|
2044
|
+
<reference key="object" ref="1014"/>
|
2045
|
+
<reference key="parent" ref="0"/>
|
2046
|
+
<string key="objectName">First Responder</string>
|
2047
|
+
</object>
|
2048
|
+
<object class="IBObjectRecord">
|
2049
|
+
<int key="objectID">-3</int>
|
2050
|
+
<reference key="object" ref="1050"/>
|
2051
|
+
<reference key="parent" ref="0"/>
|
2052
|
+
<string key="objectName">Application</string>
|
2053
|
+
</object>
|
2054
|
+
<object class="IBObjectRecord">
|
2055
|
+
<int key="objectID">29</int>
|
2056
|
+
<reference key="object" ref="649796088"/>
|
2057
|
+
<object class="NSMutableArray" key="children">
|
2058
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2059
|
+
<reference ref="713487014"/>
|
2060
|
+
<reference ref="694149608"/>
|
2061
|
+
<reference ref="952259628"/>
|
2062
|
+
<reference ref="379814623"/>
|
2063
|
+
<reference ref="586577488"/>
|
2064
|
+
<reference ref="302598603"/>
|
2065
|
+
<reference ref="448692316"/>
|
2066
|
+
</object>
|
2067
|
+
<reference key="parent" ref="0"/>
|
2068
|
+
</object>
|
2069
|
+
<object class="IBObjectRecord">
|
2070
|
+
<int key="objectID">19</int>
|
2071
|
+
<reference key="object" ref="713487014"/>
|
2072
|
+
<object class="NSMutableArray" key="children">
|
2073
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2074
|
+
<reference ref="835318025"/>
|
2075
|
+
</object>
|
2076
|
+
<reference key="parent" ref="649796088"/>
|
2077
|
+
</object>
|
2078
|
+
<object class="IBObjectRecord">
|
2079
|
+
<int key="objectID">56</int>
|
2080
|
+
<reference key="object" ref="694149608"/>
|
2081
|
+
<object class="NSMutableArray" key="children">
|
2082
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2083
|
+
<reference ref="110575045"/>
|
2084
|
+
</object>
|
2085
|
+
<reference key="parent" ref="649796088"/>
|
2086
|
+
</object>
|
2087
|
+
<object class="IBObjectRecord">
|
2088
|
+
<int key="objectID">217</int>
|
2089
|
+
<reference key="object" ref="952259628"/>
|
2090
|
+
<object class="NSMutableArray" key="children">
|
2091
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2092
|
+
<reference ref="789758025"/>
|
2093
|
+
</object>
|
2094
|
+
<reference key="parent" ref="649796088"/>
|
2095
|
+
</object>
|
2096
|
+
<object class="IBObjectRecord">
|
2097
|
+
<int key="objectID">83</int>
|
2098
|
+
<reference key="object" ref="379814623"/>
|
2099
|
+
<object class="NSMutableArray" key="children">
|
2100
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2101
|
+
<reference ref="720053764"/>
|
2102
|
+
</object>
|
2103
|
+
<reference key="parent" ref="649796088"/>
|
2104
|
+
</object>
|
2105
|
+
<object class="IBObjectRecord">
|
2106
|
+
<int key="objectID">81</int>
|
2107
|
+
<reference key="object" ref="720053764"/>
|
2108
|
+
<object class="NSMutableArray" key="children">
|
2109
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2110
|
+
<reference ref="1023925487"/>
|
2111
|
+
<reference ref="117038363"/>
|
2112
|
+
<reference ref="49223823"/>
|
2113
|
+
<reference ref="722745758"/>
|
2114
|
+
<reference ref="705341025"/>
|
2115
|
+
<reference ref="1025936716"/>
|
2116
|
+
<reference ref="294629803"/>
|
2117
|
+
<reference ref="776162233"/>
|
2118
|
+
<reference ref="425164168"/>
|
2119
|
+
<reference ref="579971712"/>
|
2120
|
+
<reference ref="1010469920"/>
|
2121
|
+
</object>
|
2122
|
+
<reference key="parent" ref="379814623"/>
|
2123
|
+
</object>
|
2124
|
+
<object class="IBObjectRecord">
|
2125
|
+
<int key="objectID">75</int>
|
2126
|
+
<reference key="object" ref="1023925487"/>
|
2127
|
+
<reference key="parent" ref="720053764"/>
|
2128
|
+
</object>
|
2129
|
+
<object class="IBObjectRecord">
|
2130
|
+
<int key="objectID">80</int>
|
2131
|
+
<reference key="object" ref="117038363"/>
|
2132
|
+
<reference key="parent" ref="720053764"/>
|
2133
|
+
</object>
|
2134
|
+
<object class="IBObjectRecord">
|
2135
|
+
<int key="objectID">78</int>
|
2136
|
+
<reference key="object" ref="49223823"/>
|
2137
|
+
<reference key="parent" ref="720053764"/>
|
2138
|
+
</object>
|
2139
|
+
<object class="IBObjectRecord">
|
2140
|
+
<int key="objectID">72</int>
|
2141
|
+
<reference key="object" ref="722745758"/>
|
2142
|
+
<reference key="parent" ref="720053764"/>
|
2143
|
+
</object>
|
2144
|
+
<object class="IBObjectRecord">
|
2145
|
+
<int key="objectID">82</int>
|
2146
|
+
<reference key="object" ref="705341025"/>
|
2147
|
+
<reference key="parent" ref="720053764"/>
|
2148
|
+
</object>
|
2149
|
+
<object class="IBObjectRecord">
|
2150
|
+
<int key="objectID">124</int>
|
2151
|
+
<reference key="object" ref="1025936716"/>
|
2152
|
+
<object class="NSMutableArray" key="children">
|
2153
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2154
|
+
<reference ref="1065607017"/>
|
2155
|
+
</object>
|
2156
|
+
<reference key="parent" ref="720053764"/>
|
2157
|
+
</object>
|
2158
|
+
<object class="IBObjectRecord">
|
2159
|
+
<int key="objectID">77</int>
|
2160
|
+
<reference key="object" ref="294629803"/>
|
2161
|
+
<reference key="parent" ref="720053764"/>
|
2162
|
+
</object>
|
2163
|
+
<object class="IBObjectRecord">
|
2164
|
+
<int key="objectID">73</int>
|
2165
|
+
<reference key="object" ref="776162233"/>
|
2166
|
+
<reference key="parent" ref="720053764"/>
|
2167
|
+
</object>
|
2168
|
+
<object class="IBObjectRecord">
|
2169
|
+
<int key="objectID">79</int>
|
2170
|
+
<reference key="object" ref="425164168"/>
|
2171
|
+
<reference key="parent" ref="720053764"/>
|
2172
|
+
</object>
|
2173
|
+
<object class="IBObjectRecord">
|
2174
|
+
<int key="objectID">112</int>
|
2175
|
+
<reference key="object" ref="579971712"/>
|
2176
|
+
<reference key="parent" ref="720053764"/>
|
2177
|
+
</object>
|
2178
|
+
<object class="IBObjectRecord">
|
2179
|
+
<int key="objectID">74</int>
|
2180
|
+
<reference key="object" ref="1010469920"/>
|
2181
|
+
<reference key="parent" ref="720053764"/>
|
2182
|
+
</object>
|
2183
|
+
<object class="IBObjectRecord">
|
2184
|
+
<int key="objectID">125</int>
|
2185
|
+
<reference key="object" ref="1065607017"/>
|
2186
|
+
<object class="NSMutableArray" key="children">
|
2187
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2188
|
+
<reference ref="759406840"/>
|
2189
|
+
</object>
|
2190
|
+
<reference key="parent" ref="1025936716"/>
|
2191
|
+
</object>
|
2192
|
+
<object class="IBObjectRecord">
|
2193
|
+
<int key="objectID">126</int>
|
2194
|
+
<reference key="object" ref="759406840"/>
|
2195
|
+
<reference key="parent" ref="1065607017"/>
|
2196
|
+
</object>
|
2197
|
+
<object class="IBObjectRecord">
|
2198
|
+
<int key="objectID">205</int>
|
2199
|
+
<reference key="object" ref="789758025"/>
|
2200
|
+
<object class="NSMutableArray" key="children">
|
2201
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2202
|
+
<reference ref="437104165"/>
|
2203
|
+
<reference ref="583158037"/>
|
2204
|
+
<reference ref="1058277027"/>
|
2205
|
+
<reference ref="212016141"/>
|
2206
|
+
<reference ref="296257095"/>
|
2207
|
+
<reference ref="29853731"/>
|
2208
|
+
<reference ref="860595796"/>
|
2209
|
+
<reference ref="1040322652"/>
|
2210
|
+
<reference ref="790794224"/>
|
2211
|
+
<reference ref="892235320"/>
|
2212
|
+
<reference ref="972420730"/>
|
2213
|
+
<reference ref="676164635"/>
|
2214
|
+
<reference ref="507821607"/>
|
2215
|
+
<reference ref="288088188"/>
|
2216
|
+
<reference ref="82994268"/>
|
2217
|
+
</object>
|
2218
|
+
<reference key="parent" ref="952259628"/>
|
2219
|
+
</object>
|
2220
|
+
<object class="IBObjectRecord">
|
2221
|
+
<int key="objectID">202</int>
|
2222
|
+
<reference key="object" ref="437104165"/>
|
2223
|
+
<reference key="parent" ref="789758025"/>
|
2224
|
+
</object>
|
2225
|
+
<object class="IBObjectRecord">
|
2226
|
+
<int key="objectID">198</int>
|
2227
|
+
<reference key="object" ref="583158037"/>
|
2228
|
+
<reference key="parent" ref="789758025"/>
|
2229
|
+
</object>
|
2230
|
+
<object class="IBObjectRecord">
|
2231
|
+
<int key="objectID">207</int>
|
2232
|
+
<reference key="object" ref="1058277027"/>
|
2233
|
+
<reference key="parent" ref="789758025"/>
|
2234
|
+
</object>
|
2235
|
+
<object class="IBObjectRecord">
|
2236
|
+
<int key="objectID">214</int>
|
2237
|
+
<reference key="object" ref="212016141"/>
|
2238
|
+
<reference key="parent" ref="789758025"/>
|
2239
|
+
</object>
|
2240
|
+
<object class="IBObjectRecord">
|
2241
|
+
<int key="objectID">199</int>
|
2242
|
+
<reference key="object" ref="296257095"/>
|
2243
|
+
<reference key="parent" ref="789758025"/>
|
2244
|
+
</object>
|
2245
|
+
<object class="IBObjectRecord">
|
2246
|
+
<int key="objectID">203</int>
|
2247
|
+
<reference key="object" ref="29853731"/>
|
2248
|
+
<reference key="parent" ref="789758025"/>
|
2249
|
+
</object>
|
2250
|
+
<object class="IBObjectRecord">
|
2251
|
+
<int key="objectID">197</int>
|
2252
|
+
<reference key="object" ref="860595796"/>
|
2253
|
+
<reference key="parent" ref="789758025"/>
|
2254
|
+
</object>
|
2255
|
+
<object class="IBObjectRecord">
|
2256
|
+
<int key="objectID">206</int>
|
2257
|
+
<reference key="object" ref="1040322652"/>
|
2258
|
+
<reference key="parent" ref="789758025"/>
|
2259
|
+
</object>
|
2260
|
+
<object class="IBObjectRecord">
|
2261
|
+
<int key="objectID">215</int>
|
2262
|
+
<reference key="object" ref="790794224"/>
|
2263
|
+
<reference key="parent" ref="789758025"/>
|
2264
|
+
</object>
|
2265
|
+
<object class="IBObjectRecord">
|
2266
|
+
<int key="objectID">218</int>
|
2267
|
+
<reference key="object" ref="892235320"/>
|
2268
|
+
<object class="NSMutableArray" key="children">
|
2269
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2270
|
+
<reference ref="963351320"/>
|
2271
|
+
</object>
|
2272
|
+
<reference key="parent" ref="789758025"/>
|
2273
|
+
</object>
|
2274
|
+
<object class="IBObjectRecord">
|
2275
|
+
<int key="objectID">216</int>
|
2276
|
+
<reference key="object" ref="972420730"/>
|
2277
|
+
<object class="NSMutableArray" key="children">
|
2278
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2279
|
+
<reference ref="769623530"/>
|
2280
|
+
</object>
|
2281
|
+
<reference key="parent" ref="789758025"/>
|
2282
|
+
</object>
|
2283
|
+
<object class="IBObjectRecord">
|
2284
|
+
<int key="objectID">200</int>
|
2285
|
+
<reference key="object" ref="769623530"/>
|
2286
|
+
<object class="NSMutableArray" key="children">
|
2287
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2288
|
+
<reference ref="948374510"/>
|
2289
|
+
<reference ref="96193923"/>
|
2290
|
+
<reference ref="679648819"/>
|
2291
|
+
<reference ref="967646866"/>
|
2292
|
+
<reference ref="859480356"/>
|
2293
|
+
<reference ref="795346622"/>
|
2294
|
+
</object>
|
2295
|
+
<reference key="parent" ref="972420730"/>
|
2296
|
+
</object>
|
2297
|
+
<object class="IBObjectRecord">
|
2298
|
+
<int key="objectID">219</int>
|
2299
|
+
<reference key="object" ref="948374510"/>
|
2300
|
+
<reference key="parent" ref="769623530"/>
|
2301
|
+
</object>
|
2302
|
+
<object class="IBObjectRecord">
|
2303
|
+
<int key="objectID">201</int>
|
2304
|
+
<reference key="object" ref="96193923"/>
|
2305
|
+
<reference key="parent" ref="769623530"/>
|
2306
|
+
</object>
|
2307
|
+
<object class="IBObjectRecord">
|
2308
|
+
<int key="objectID">204</int>
|
2309
|
+
<reference key="object" ref="679648819"/>
|
2310
|
+
<reference key="parent" ref="769623530"/>
|
2311
|
+
</object>
|
2312
|
+
<object class="IBObjectRecord">
|
2313
|
+
<int key="objectID">220</int>
|
2314
|
+
<reference key="object" ref="963351320"/>
|
2315
|
+
<object class="NSMutableArray" key="children">
|
2316
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2317
|
+
<reference ref="270902937"/>
|
2318
|
+
<reference ref="88285865"/>
|
2319
|
+
<reference ref="159080638"/>
|
2320
|
+
<reference ref="326711663"/>
|
2321
|
+
<reference ref="447796847"/>
|
2322
|
+
</object>
|
2323
|
+
<reference key="parent" ref="892235320"/>
|
2324
|
+
</object>
|
2325
|
+
<object class="IBObjectRecord">
|
2326
|
+
<int key="objectID">213</int>
|
2327
|
+
<reference key="object" ref="270902937"/>
|
2328
|
+
<reference key="parent" ref="963351320"/>
|
2329
|
+
</object>
|
2330
|
+
<object class="IBObjectRecord">
|
2331
|
+
<int key="objectID">210</int>
|
2332
|
+
<reference key="object" ref="88285865"/>
|
2333
|
+
<reference key="parent" ref="963351320"/>
|
2334
|
+
</object>
|
2335
|
+
<object class="IBObjectRecord">
|
2336
|
+
<int key="objectID">221</int>
|
2337
|
+
<reference key="object" ref="159080638"/>
|
2338
|
+
<reference key="parent" ref="963351320"/>
|
2339
|
+
</object>
|
2340
|
+
<object class="IBObjectRecord">
|
2341
|
+
<int key="objectID">208</int>
|
2342
|
+
<reference key="object" ref="326711663"/>
|
2343
|
+
<reference key="parent" ref="963351320"/>
|
2344
|
+
</object>
|
2345
|
+
<object class="IBObjectRecord">
|
2346
|
+
<int key="objectID">209</int>
|
2347
|
+
<reference key="object" ref="447796847"/>
|
2348
|
+
<reference key="parent" ref="963351320"/>
|
2349
|
+
</object>
|
2350
|
+
<object class="IBObjectRecord">
|
2351
|
+
<int key="objectID">57</int>
|
2352
|
+
<reference key="object" ref="110575045"/>
|
2353
|
+
<object class="NSMutableArray" key="children">
|
2354
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2355
|
+
<reference ref="238522557"/>
|
2356
|
+
<reference ref="755159360"/>
|
2357
|
+
<reference ref="908899353"/>
|
2358
|
+
<reference ref="632727374"/>
|
2359
|
+
<reference ref="646227648"/>
|
2360
|
+
<reference ref="609285721"/>
|
2361
|
+
<reference ref="481834944"/>
|
2362
|
+
<reference ref="304266470"/>
|
2363
|
+
<reference ref="1046388886"/>
|
2364
|
+
<reference ref="1056857174"/>
|
2365
|
+
<reference ref="342932134"/>
|
2366
|
+
</object>
|
2367
|
+
<reference key="parent" ref="694149608"/>
|
2368
|
+
</object>
|
2369
|
+
<object class="IBObjectRecord">
|
2370
|
+
<int key="objectID">58</int>
|
2371
|
+
<reference key="object" ref="238522557"/>
|
2372
|
+
<reference key="parent" ref="110575045"/>
|
2373
|
+
</object>
|
2374
|
+
<object class="IBObjectRecord">
|
2375
|
+
<int key="objectID">134</int>
|
2376
|
+
<reference key="object" ref="755159360"/>
|
2377
|
+
<reference key="parent" ref="110575045"/>
|
2378
|
+
</object>
|
2379
|
+
<object class="IBObjectRecord">
|
2380
|
+
<int key="objectID">150</int>
|
2381
|
+
<reference key="object" ref="908899353"/>
|
2382
|
+
<reference key="parent" ref="110575045"/>
|
2383
|
+
</object>
|
2384
|
+
<object class="IBObjectRecord">
|
2385
|
+
<int key="objectID">136</int>
|
2386
|
+
<reference key="object" ref="632727374"/>
|
2387
|
+
<reference key="parent" ref="110575045"/>
|
2388
|
+
</object>
|
2389
|
+
<object class="IBObjectRecord">
|
2390
|
+
<int key="objectID">144</int>
|
2391
|
+
<reference key="object" ref="646227648"/>
|
2392
|
+
<reference key="parent" ref="110575045"/>
|
2393
|
+
</object>
|
2394
|
+
<object class="IBObjectRecord">
|
2395
|
+
<int key="objectID">129</int>
|
2396
|
+
<reference key="object" ref="609285721"/>
|
2397
|
+
<reference key="parent" ref="110575045"/>
|
2398
|
+
</object>
|
2399
|
+
<object class="IBObjectRecord">
|
2400
|
+
<int key="objectID">143</int>
|
2401
|
+
<reference key="object" ref="481834944"/>
|
2402
|
+
<reference key="parent" ref="110575045"/>
|
2403
|
+
</object>
|
2404
|
+
<object class="IBObjectRecord">
|
2405
|
+
<int key="objectID">236</int>
|
2406
|
+
<reference key="object" ref="304266470"/>
|
2407
|
+
<reference key="parent" ref="110575045"/>
|
2408
|
+
</object>
|
2409
|
+
<object class="IBObjectRecord">
|
2410
|
+
<int key="objectID">131</int>
|
2411
|
+
<reference key="object" ref="1046388886"/>
|
2412
|
+
<object class="NSMutableArray" key="children">
|
2413
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2414
|
+
<reference ref="752062318"/>
|
2415
|
+
</object>
|
2416
|
+
<reference key="parent" ref="110575045"/>
|
2417
|
+
</object>
|
2418
|
+
<object class="IBObjectRecord">
|
2419
|
+
<int key="objectID">149</int>
|
2420
|
+
<reference key="object" ref="1056857174"/>
|
2421
|
+
<reference key="parent" ref="110575045"/>
|
2422
|
+
</object>
|
2423
|
+
<object class="IBObjectRecord">
|
2424
|
+
<int key="objectID">145</int>
|
2425
|
+
<reference key="object" ref="342932134"/>
|
2426
|
+
<reference key="parent" ref="110575045"/>
|
2427
|
+
</object>
|
2428
|
+
<object class="IBObjectRecord">
|
2429
|
+
<int key="objectID">130</int>
|
2430
|
+
<reference key="object" ref="752062318"/>
|
2431
|
+
<reference key="parent" ref="1046388886"/>
|
2432
|
+
</object>
|
2433
|
+
<object class="IBObjectRecord">
|
2434
|
+
<int key="objectID">24</int>
|
2435
|
+
<reference key="object" ref="835318025"/>
|
2436
|
+
<object class="NSMutableArray" key="children">
|
2437
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2438
|
+
<reference ref="299356726"/>
|
2439
|
+
<reference ref="625202149"/>
|
2440
|
+
<reference ref="575023229"/>
|
2441
|
+
<reference ref="1011231497"/>
|
2442
|
+
</object>
|
2443
|
+
<reference key="parent" ref="713487014"/>
|
2444
|
+
</object>
|
2445
|
+
<object class="IBObjectRecord">
|
2446
|
+
<int key="objectID">92</int>
|
2447
|
+
<reference key="object" ref="299356726"/>
|
2448
|
+
<reference key="parent" ref="835318025"/>
|
2449
|
+
</object>
|
2450
|
+
<object class="IBObjectRecord">
|
2451
|
+
<int key="objectID">5</int>
|
2452
|
+
<reference key="object" ref="625202149"/>
|
2453
|
+
<reference key="parent" ref="835318025"/>
|
2454
|
+
</object>
|
2455
|
+
<object class="IBObjectRecord">
|
2456
|
+
<int key="objectID">239</int>
|
2457
|
+
<reference key="object" ref="575023229"/>
|
2458
|
+
<reference key="parent" ref="835318025"/>
|
2459
|
+
</object>
|
2460
|
+
<object class="IBObjectRecord">
|
2461
|
+
<int key="objectID">23</int>
|
2462
|
+
<reference key="object" ref="1011231497"/>
|
2463
|
+
<reference key="parent" ref="835318025"/>
|
2464
|
+
</object>
|
2465
|
+
<object class="IBObjectRecord">
|
2466
|
+
<int key="objectID">295</int>
|
2467
|
+
<reference key="object" ref="586577488"/>
|
2468
|
+
<object class="NSMutableArray" key="children">
|
2469
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2470
|
+
<reference ref="466310130"/>
|
2471
|
+
</object>
|
2472
|
+
<reference key="parent" ref="649796088"/>
|
2473
|
+
</object>
|
2474
|
+
<object class="IBObjectRecord">
|
2475
|
+
<int key="objectID">296</int>
|
2476
|
+
<reference key="object" ref="466310130"/>
|
2477
|
+
<object class="NSMutableArray" key="children">
|
2478
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2479
|
+
<reference ref="102151532"/>
|
2480
|
+
<reference ref="237841660"/>
|
2481
|
+
</object>
|
2482
|
+
<reference key="parent" ref="586577488"/>
|
2483
|
+
</object>
|
2484
|
+
<object class="IBObjectRecord">
|
2485
|
+
<int key="objectID">297</int>
|
2486
|
+
<reference key="object" ref="102151532"/>
|
2487
|
+
<reference key="parent" ref="466310130"/>
|
2488
|
+
</object>
|
2489
|
+
<object class="IBObjectRecord">
|
2490
|
+
<int key="objectID">298</int>
|
2491
|
+
<reference key="object" ref="237841660"/>
|
2492
|
+
<reference key="parent" ref="466310130"/>
|
2493
|
+
</object>
|
2494
|
+
<object class="IBObjectRecord">
|
2495
|
+
<int key="objectID">211</int>
|
2496
|
+
<reference key="object" ref="676164635"/>
|
2497
|
+
<object class="NSMutableArray" key="children">
|
2498
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2499
|
+
<reference ref="785027613"/>
|
2500
|
+
</object>
|
2501
|
+
<reference key="parent" ref="789758025"/>
|
2502
|
+
</object>
|
2503
|
+
<object class="IBObjectRecord">
|
2504
|
+
<int key="objectID">212</int>
|
2505
|
+
<reference key="object" ref="785027613"/>
|
2506
|
+
<object class="NSMutableArray" key="children">
|
2507
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2508
|
+
<reference ref="680220178"/>
|
2509
|
+
<reference ref="731782645"/>
|
2510
|
+
</object>
|
2511
|
+
<reference key="parent" ref="676164635"/>
|
2512
|
+
</object>
|
2513
|
+
<object class="IBObjectRecord">
|
2514
|
+
<int key="objectID">195</int>
|
2515
|
+
<reference key="object" ref="680220178"/>
|
2516
|
+
<reference key="parent" ref="785027613"/>
|
2517
|
+
</object>
|
2518
|
+
<object class="IBObjectRecord">
|
2519
|
+
<int key="objectID">196</int>
|
2520
|
+
<reference key="object" ref="731782645"/>
|
2521
|
+
<reference key="parent" ref="785027613"/>
|
2522
|
+
</object>
|
2523
|
+
<object class="IBObjectRecord">
|
2524
|
+
<int key="objectID">346</int>
|
2525
|
+
<reference key="object" ref="967646866"/>
|
2526
|
+
<reference key="parent" ref="769623530"/>
|
2527
|
+
</object>
|
2528
|
+
<object class="IBObjectRecord">
|
2529
|
+
<int key="objectID">348</int>
|
2530
|
+
<reference key="object" ref="507821607"/>
|
2531
|
+
<object class="NSMutableArray" key="children">
|
2532
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2533
|
+
<reference ref="698887838"/>
|
2534
|
+
</object>
|
2535
|
+
<reference key="parent" ref="789758025"/>
|
2536
|
+
</object>
|
2537
|
+
<object class="IBObjectRecord">
|
2538
|
+
<int key="objectID">349</int>
|
2539
|
+
<reference key="object" ref="698887838"/>
|
2540
|
+
<object class="NSMutableArray" key="children">
|
2541
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2542
|
+
<reference ref="605118523"/>
|
2543
|
+
<reference ref="197661976"/>
|
2544
|
+
<reference ref="708854459"/>
|
2545
|
+
<reference ref="65139061"/>
|
2546
|
+
<reference ref="19036812"/>
|
2547
|
+
<reference ref="672708820"/>
|
2548
|
+
<reference ref="537092702"/>
|
2549
|
+
</object>
|
2550
|
+
<reference key="parent" ref="507821607"/>
|
2551
|
+
</object>
|
2552
|
+
<object class="IBObjectRecord">
|
2553
|
+
<int key="objectID">350</int>
|
2554
|
+
<reference key="object" ref="605118523"/>
|
2555
|
+
<reference key="parent" ref="698887838"/>
|
2556
|
+
</object>
|
2557
|
+
<object class="IBObjectRecord">
|
2558
|
+
<int key="objectID">351</int>
|
2559
|
+
<reference key="object" ref="197661976"/>
|
2560
|
+
<reference key="parent" ref="698887838"/>
|
2561
|
+
</object>
|
2562
|
+
<object class="IBObjectRecord">
|
2563
|
+
<int key="objectID">354</int>
|
2564
|
+
<reference key="object" ref="708854459"/>
|
2565
|
+
<reference key="parent" ref="698887838"/>
|
2566
|
+
</object>
|
2567
|
+
<object class="IBObjectRecord">
|
2568
|
+
<int key="objectID">371</int>
|
2569
|
+
<reference key="object" ref="972006081"/>
|
2570
|
+
<object class="NSMutableArray" key="children">
|
2571
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2572
|
+
<reference ref="439893737"/>
|
2573
|
+
</object>
|
2574
|
+
<reference key="parent" ref="0"/>
|
2575
|
+
</object>
|
2576
|
+
<object class="IBObjectRecord">
|
2577
|
+
<int key="objectID">372</int>
|
2578
|
+
<reference key="object" ref="439893737"/>
|
2579
|
+
<reference key="parent" ref="972006081"/>
|
2580
|
+
</object>
|
2581
|
+
<object class="IBObjectRecord">
|
2582
|
+
<int key="objectID">375</int>
|
2583
|
+
<reference key="object" ref="302598603"/>
|
2584
|
+
<object class="NSMutableArray" key="children">
|
2585
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2586
|
+
<reference ref="941447902"/>
|
2587
|
+
</object>
|
2588
|
+
<reference key="parent" ref="649796088"/>
|
2589
|
+
</object>
|
2590
|
+
<object class="IBObjectRecord">
|
2591
|
+
<int key="objectID">376</int>
|
2592
|
+
<reference key="object" ref="941447902"/>
|
2593
|
+
<object class="NSMutableArray" key="children">
|
2594
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2595
|
+
<reference ref="792887677"/>
|
2596
|
+
<reference ref="215659978"/>
|
2597
|
+
</object>
|
2598
|
+
<reference key="parent" ref="302598603"/>
|
2599
|
+
</object>
|
2600
|
+
<object class="IBObjectRecord">
|
2601
|
+
<int key="objectID">377</int>
|
2602
|
+
<reference key="object" ref="792887677"/>
|
2603
|
+
<object class="NSMutableArray" key="children">
|
2604
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2605
|
+
<reference ref="786677654"/>
|
2606
|
+
</object>
|
2607
|
+
<reference key="parent" ref="941447902"/>
|
2608
|
+
</object>
|
2609
|
+
<object class="IBObjectRecord">
|
2610
|
+
<int key="objectID">388</int>
|
2611
|
+
<reference key="object" ref="786677654"/>
|
2612
|
+
<object class="NSMutableArray" key="children">
|
2613
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2614
|
+
<reference ref="159677712"/>
|
2615
|
+
<reference ref="305399458"/>
|
2616
|
+
<reference ref="814362025"/>
|
2617
|
+
<reference ref="330926929"/>
|
2618
|
+
<reference ref="533507878"/>
|
2619
|
+
<reference ref="158063935"/>
|
2620
|
+
<reference ref="885547335"/>
|
2621
|
+
<reference ref="901062459"/>
|
2622
|
+
<reference ref="767671776"/>
|
2623
|
+
<reference ref="691570813"/>
|
2624
|
+
<reference ref="769124883"/>
|
2625
|
+
<reference ref="739652853"/>
|
2626
|
+
<reference ref="1012600125"/>
|
2627
|
+
<reference ref="214559597"/>
|
2628
|
+
<reference ref="596732606"/>
|
2629
|
+
<reference ref="393423671"/>
|
2630
|
+
</object>
|
2631
|
+
<reference key="parent" ref="792887677"/>
|
2632
|
+
</object>
|
2633
|
+
<object class="IBObjectRecord">
|
2634
|
+
<int key="objectID">389</int>
|
2635
|
+
<reference key="object" ref="159677712"/>
|
2636
|
+
<reference key="parent" ref="786677654"/>
|
2637
|
+
</object>
|
2638
|
+
<object class="IBObjectRecord">
|
2639
|
+
<int key="objectID">390</int>
|
2640
|
+
<reference key="object" ref="305399458"/>
|
2641
|
+
<reference key="parent" ref="786677654"/>
|
2642
|
+
</object>
|
2643
|
+
<object class="IBObjectRecord">
|
2644
|
+
<int key="objectID">391</int>
|
2645
|
+
<reference key="object" ref="814362025"/>
|
2646
|
+
<reference key="parent" ref="786677654"/>
|
2647
|
+
</object>
|
2648
|
+
<object class="IBObjectRecord">
|
2649
|
+
<int key="objectID">392</int>
|
2650
|
+
<reference key="object" ref="330926929"/>
|
2651
|
+
<reference key="parent" ref="786677654"/>
|
2652
|
+
</object>
|
2653
|
+
<object class="IBObjectRecord">
|
2654
|
+
<int key="objectID">393</int>
|
2655
|
+
<reference key="object" ref="533507878"/>
|
2656
|
+
<reference key="parent" ref="786677654"/>
|
2657
|
+
</object>
|
2658
|
+
<object class="IBObjectRecord">
|
2659
|
+
<int key="objectID">394</int>
|
2660
|
+
<reference key="object" ref="158063935"/>
|
2661
|
+
<reference key="parent" ref="786677654"/>
|
2662
|
+
</object>
|
2663
|
+
<object class="IBObjectRecord">
|
2664
|
+
<int key="objectID">395</int>
|
2665
|
+
<reference key="object" ref="885547335"/>
|
2666
|
+
<reference key="parent" ref="786677654"/>
|
2667
|
+
</object>
|
2668
|
+
<object class="IBObjectRecord">
|
2669
|
+
<int key="objectID">396</int>
|
2670
|
+
<reference key="object" ref="901062459"/>
|
2671
|
+
<reference key="parent" ref="786677654"/>
|
2672
|
+
</object>
|
2673
|
+
<object class="IBObjectRecord">
|
2674
|
+
<int key="objectID">397</int>
|
2675
|
+
<reference key="object" ref="767671776"/>
|
2676
|
+
<object class="NSMutableArray" key="children">
|
2677
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2678
|
+
<reference ref="175441468"/>
|
2679
|
+
</object>
|
2680
|
+
<reference key="parent" ref="786677654"/>
|
2681
|
+
</object>
|
2682
|
+
<object class="IBObjectRecord">
|
2683
|
+
<int key="objectID">398</int>
|
2684
|
+
<reference key="object" ref="691570813"/>
|
2685
|
+
<object class="NSMutableArray" key="children">
|
2686
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2687
|
+
<reference ref="1058217995"/>
|
2688
|
+
</object>
|
2689
|
+
<reference key="parent" ref="786677654"/>
|
2690
|
+
</object>
|
2691
|
+
<object class="IBObjectRecord">
|
2692
|
+
<int key="objectID">399</int>
|
2693
|
+
<reference key="object" ref="769124883"/>
|
2694
|
+
<object class="NSMutableArray" key="children">
|
2695
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2696
|
+
<reference ref="18263474"/>
|
2697
|
+
</object>
|
2698
|
+
<reference key="parent" ref="786677654"/>
|
2699
|
+
</object>
|
2700
|
+
<object class="IBObjectRecord">
|
2701
|
+
<int key="objectID">400</int>
|
2702
|
+
<reference key="object" ref="739652853"/>
|
2703
|
+
<reference key="parent" ref="786677654"/>
|
2704
|
+
</object>
|
2705
|
+
<object class="IBObjectRecord">
|
2706
|
+
<int key="objectID">401</int>
|
2707
|
+
<reference key="object" ref="1012600125"/>
|
2708
|
+
<reference key="parent" ref="786677654"/>
|
2709
|
+
</object>
|
2710
|
+
<object class="IBObjectRecord">
|
2711
|
+
<int key="objectID">402</int>
|
2712
|
+
<reference key="object" ref="214559597"/>
|
2713
|
+
<reference key="parent" ref="786677654"/>
|
2714
|
+
</object>
|
2715
|
+
<object class="IBObjectRecord">
|
2716
|
+
<int key="objectID">403</int>
|
2717
|
+
<reference key="object" ref="596732606"/>
|
2718
|
+
<reference key="parent" ref="786677654"/>
|
2719
|
+
</object>
|
2720
|
+
<object class="IBObjectRecord">
|
2721
|
+
<int key="objectID">404</int>
|
2722
|
+
<reference key="object" ref="393423671"/>
|
2723
|
+
<reference key="parent" ref="786677654"/>
|
2724
|
+
</object>
|
2725
|
+
<object class="IBObjectRecord">
|
2726
|
+
<int key="objectID">405</int>
|
2727
|
+
<reference key="object" ref="18263474"/>
|
2728
|
+
<object class="NSMutableArray" key="children">
|
2729
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2730
|
+
<reference ref="257962622"/>
|
2731
|
+
<reference ref="644725453"/>
|
2732
|
+
<reference ref="1037576581"/>
|
2733
|
+
<reference ref="941806246"/>
|
2734
|
+
<reference ref="1045724900"/>
|
2735
|
+
</object>
|
2736
|
+
<reference key="parent" ref="769124883"/>
|
2737
|
+
</object>
|
2738
|
+
<object class="IBObjectRecord">
|
2739
|
+
<int key="objectID">406</int>
|
2740
|
+
<reference key="object" ref="257962622"/>
|
2741
|
+
<reference key="parent" ref="18263474"/>
|
2742
|
+
</object>
|
2743
|
+
<object class="IBObjectRecord">
|
2744
|
+
<int key="objectID">407</int>
|
2745
|
+
<reference key="object" ref="644725453"/>
|
2746
|
+
<reference key="parent" ref="18263474"/>
|
2747
|
+
</object>
|
2748
|
+
<object class="IBObjectRecord">
|
2749
|
+
<int key="objectID">408</int>
|
2750
|
+
<reference key="object" ref="1037576581"/>
|
2751
|
+
<reference key="parent" ref="18263474"/>
|
2752
|
+
</object>
|
2753
|
+
<object class="IBObjectRecord">
|
2754
|
+
<int key="objectID">409</int>
|
2755
|
+
<reference key="object" ref="941806246"/>
|
2756
|
+
<reference key="parent" ref="18263474"/>
|
2757
|
+
</object>
|
2758
|
+
<object class="IBObjectRecord">
|
2759
|
+
<int key="objectID">410</int>
|
2760
|
+
<reference key="object" ref="1045724900"/>
|
2761
|
+
<reference key="parent" ref="18263474"/>
|
2762
|
+
</object>
|
2763
|
+
<object class="IBObjectRecord">
|
2764
|
+
<int key="objectID">411</int>
|
2765
|
+
<reference key="object" ref="1058217995"/>
|
2766
|
+
<object class="NSMutableArray" key="children">
|
2767
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2768
|
+
<reference ref="706297211"/>
|
2769
|
+
<reference ref="568384683"/>
|
2770
|
+
<reference ref="663508465"/>
|
2771
|
+
</object>
|
2772
|
+
<reference key="parent" ref="691570813"/>
|
2773
|
+
</object>
|
2774
|
+
<object class="IBObjectRecord">
|
2775
|
+
<int key="objectID">412</int>
|
2776
|
+
<reference key="object" ref="706297211"/>
|
2777
|
+
<reference key="parent" ref="1058217995"/>
|
2778
|
+
</object>
|
2779
|
+
<object class="IBObjectRecord">
|
2780
|
+
<int key="objectID">413</int>
|
2781
|
+
<reference key="object" ref="568384683"/>
|
2782
|
+
<reference key="parent" ref="1058217995"/>
|
2783
|
+
</object>
|
2784
|
+
<object class="IBObjectRecord">
|
2785
|
+
<int key="objectID">414</int>
|
2786
|
+
<reference key="object" ref="663508465"/>
|
2787
|
+
<reference key="parent" ref="1058217995"/>
|
2788
|
+
</object>
|
2789
|
+
<object class="IBObjectRecord">
|
2790
|
+
<int key="objectID">415</int>
|
2791
|
+
<reference key="object" ref="175441468"/>
|
2792
|
+
<object class="NSMutableArray" key="children">
|
2793
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2794
|
+
<reference ref="252969304"/>
|
2795
|
+
<reference ref="766922938"/>
|
2796
|
+
<reference ref="677519740"/>
|
2797
|
+
<reference ref="238351151"/>
|
2798
|
+
</object>
|
2799
|
+
<reference key="parent" ref="767671776"/>
|
2800
|
+
</object>
|
2801
|
+
<object class="IBObjectRecord">
|
2802
|
+
<int key="objectID">416</int>
|
2803
|
+
<reference key="object" ref="252969304"/>
|
2804
|
+
<reference key="parent" ref="175441468"/>
|
2805
|
+
</object>
|
2806
|
+
<object class="IBObjectRecord">
|
2807
|
+
<int key="objectID">417</int>
|
2808
|
+
<reference key="object" ref="766922938"/>
|
2809
|
+
<reference key="parent" ref="175441468"/>
|
2810
|
+
</object>
|
2811
|
+
<object class="IBObjectRecord">
|
2812
|
+
<int key="objectID">418</int>
|
2813
|
+
<reference key="object" ref="677519740"/>
|
2814
|
+
<reference key="parent" ref="175441468"/>
|
2815
|
+
</object>
|
2816
|
+
<object class="IBObjectRecord">
|
2817
|
+
<int key="objectID">419</int>
|
2818
|
+
<reference key="object" ref="238351151"/>
|
2819
|
+
<reference key="parent" ref="175441468"/>
|
2820
|
+
</object>
|
2821
|
+
<object class="IBObjectRecord">
|
2822
|
+
<int key="objectID">420</int>
|
2823
|
+
<reference key="object" ref="755631768"/>
|
2824
|
+
<reference key="parent" ref="0"/>
|
2825
|
+
</object>
|
2826
|
+
<object class="IBObjectRecord">
|
2827
|
+
<int key="objectID">450</int>
|
2828
|
+
<reference key="object" ref="288088188"/>
|
2829
|
+
<object class="NSMutableArray" key="children">
|
2830
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2831
|
+
<reference ref="579392910"/>
|
2832
|
+
</object>
|
2833
|
+
<reference key="parent" ref="789758025"/>
|
2834
|
+
</object>
|
2835
|
+
<object class="IBObjectRecord">
|
2836
|
+
<int key="objectID">451</int>
|
2837
|
+
<reference key="object" ref="579392910"/>
|
2838
|
+
<object class="NSMutableArray" key="children">
|
2839
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2840
|
+
<reference ref="1060694897"/>
|
2841
|
+
<reference ref="879586729"/>
|
2842
|
+
<reference ref="56570060"/>
|
2843
|
+
</object>
|
2844
|
+
<reference key="parent" ref="288088188"/>
|
2845
|
+
</object>
|
2846
|
+
<object class="IBObjectRecord">
|
2847
|
+
<int key="objectID">452</int>
|
2848
|
+
<reference key="object" ref="1060694897"/>
|
2849
|
+
<reference key="parent" ref="579392910"/>
|
2850
|
+
</object>
|
2851
|
+
<object class="IBObjectRecord">
|
2852
|
+
<int key="objectID">453</int>
|
2853
|
+
<reference key="object" ref="859480356"/>
|
2854
|
+
<reference key="parent" ref="769623530"/>
|
2855
|
+
</object>
|
2856
|
+
<object class="IBObjectRecord">
|
2857
|
+
<int key="objectID">454</int>
|
2858
|
+
<reference key="object" ref="795346622"/>
|
2859
|
+
<reference key="parent" ref="769623530"/>
|
2860
|
+
</object>
|
2861
|
+
<object class="IBObjectRecord">
|
2862
|
+
<int key="objectID">457</int>
|
2863
|
+
<reference key="object" ref="65139061"/>
|
2864
|
+
<reference key="parent" ref="698887838"/>
|
2865
|
+
</object>
|
2866
|
+
<object class="IBObjectRecord">
|
2867
|
+
<int key="objectID">459</int>
|
2868
|
+
<reference key="object" ref="19036812"/>
|
2869
|
+
<reference key="parent" ref="698887838"/>
|
2870
|
+
</object>
|
2871
|
+
<object class="IBObjectRecord">
|
2872
|
+
<int key="objectID">460</int>
|
2873
|
+
<reference key="object" ref="672708820"/>
|
2874
|
+
<reference key="parent" ref="698887838"/>
|
2875
|
+
</object>
|
2876
|
+
<object class="IBObjectRecord">
|
2877
|
+
<int key="objectID">462</int>
|
2878
|
+
<reference key="object" ref="537092702"/>
|
2879
|
+
<reference key="parent" ref="698887838"/>
|
2880
|
+
</object>
|
2881
|
+
<object class="IBObjectRecord">
|
2882
|
+
<int key="objectID">465</int>
|
2883
|
+
<reference key="object" ref="879586729"/>
|
2884
|
+
<reference key="parent" ref="579392910"/>
|
2885
|
+
</object>
|
2886
|
+
<object class="IBObjectRecord">
|
2887
|
+
<int key="objectID">466</int>
|
2888
|
+
<reference key="object" ref="56570060"/>
|
2889
|
+
<reference key="parent" ref="579392910"/>
|
2890
|
+
</object>
|
2891
|
+
<object class="IBObjectRecord">
|
2892
|
+
<int key="objectID">485</int>
|
2893
|
+
<reference key="object" ref="82994268"/>
|
2894
|
+
<reference key="parent" ref="789758025"/>
|
2895
|
+
</object>
|
2896
|
+
<object class="IBObjectRecord">
|
2897
|
+
<int key="objectID">490</int>
|
2898
|
+
<reference key="object" ref="448692316"/>
|
2899
|
+
<object class="NSMutableArray" key="children">
|
2900
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2901
|
+
<reference ref="992780483"/>
|
2902
|
+
</object>
|
2903
|
+
<reference key="parent" ref="649796088"/>
|
2904
|
+
</object>
|
2905
|
+
<object class="IBObjectRecord">
|
2906
|
+
<int key="objectID">491</int>
|
2907
|
+
<reference key="object" ref="992780483"/>
|
2908
|
+
<object class="NSMutableArray" key="children">
|
2909
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2910
|
+
<reference ref="105068016"/>
|
2911
|
+
</object>
|
2912
|
+
<reference key="parent" ref="448692316"/>
|
2913
|
+
</object>
|
2914
|
+
<object class="IBObjectRecord">
|
2915
|
+
<int key="objectID">492</int>
|
2916
|
+
<reference key="object" ref="105068016"/>
|
2917
|
+
<reference key="parent" ref="992780483"/>
|
2918
|
+
</object>
|
2919
|
+
<object class="IBObjectRecord">
|
2920
|
+
<int key="objectID">494</int>
|
2921
|
+
<reference key="object" ref="976324537"/>
|
2922
|
+
<reference key="parent" ref="0"/>
|
2923
|
+
</object>
|
2924
|
+
<object class="IBObjectRecord">
|
2925
|
+
<int key="objectID">496</int>
|
2926
|
+
<reference key="object" ref="215659978"/>
|
2927
|
+
<object class="NSMutableArray" key="children">
|
2928
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2929
|
+
<reference ref="446991534"/>
|
2930
|
+
</object>
|
2931
|
+
<reference key="parent" ref="941447902"/>
|
2932
|
+
</object>
|
2933
|
+
<object class="IBObjectRecord">
|
2934
|
+
<int key="objectID">497</int>
|
2935
|
+
<reference key="object" ref="446991534"/>
|
2936
|
+
<object class="NSMutableArray" key="children">
|
2937
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2938
|
+
<reference ref="875092757"/>
|
2939
|
+
<reference ref="630155264"/>
|
2940
|
+
<reference ref="945678886"/>
|
2941
|
+
<reference ref="512868991"/>
|
2942
|
+
<reference ref="163117631"/>
|
2943
|
+
<reference ref="31516759"/>
|
2944
|
+
<reference ref="908105787"/>
|
2945
|
+
<reference ref="644046920"/>
|
2946
|
+
<reference ref="231811626"/>
|
2947
|
+
<reference ref="883618387"/>
|
2948
|
+
</object>
|
2949
|
+
<reference key="parent" ref="215659978"/>
|
2950
|
+
</object>
|
2951
|
+
<object class="IBObjectRecord">
|
2952
|
+
<int key="objectID">498</int>
|
2953
|
+
<reference key="object" ref="875092757"/>
|
2954
|
+
<reference key="parent" ref="446991534"/>
|
2955
|
+
</object>
|
2956
|
+
<object class="IBObjectRecord">
|
2957
|
+
<int key="objectID">499</int>
|
2958
|
+
<reference key="object" ref="630155264"/>
|
2959
|
+
<reference key="parent" ref="446991534"/>
|
2960
|
+
</object>
|
2961
|
+
<object class="IBObjectRecord">
|
2962
|
+
<int key="objectID">500</int>
|
2963
|
+
<reference key="object" ref="945678886"/>
|
2964
|
+
<reference key="parent" ref="446991534"/>
|
2965
|
+
</object>
|
2966
|
+
<object class="IBObjectRecord">
|
2967
|
+
<int key="objectID">501</int>
|
2968
|
+
<reference key="object" ref="512868991"/>
|
2969
|
+
<reference key="parent" ref="446991534"/>
|
2970
|
+
</object>
|
2971
|
+
<object class="IBObjectRecord">
|
2972
|
+
<int key="objectID">502</int>
|
2973
|
+
<reference key="object" ref="163117631"/>
|
2974
|
+
<reference key="parent" ref="446991534"/>
|
2975
|
+
</object>
|
2976
|
+
<object class="IBObjectRecord">
|
2977
|
+
<int key="objectID">503</int>
|
2978
|
+
<reference key="object" ref="31516759"/>
|
2979
|
+
<object class="NSMutableArray" key="children">
|
2980
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2981
|
+
<reference ref="956096989"/>
|
2982
|
+
</object>
|
2983
|
+
<reference key="parent" ref="446991534"/>
|
2984
|
+
</object>
|
2985
|
+
<object class="IBObjectRecord">
|
2986
|
+
<int key="objectID">504</int>
|
2987
|
+
<reference key="object" ref="908105787"/>
|
2988
|
+
<reference key="parent" ref="446991534"/>
|
2989
|
+
</object>
|
2990
|
+
<object class="IBObjectRecord">
|
2991
|
+
<int key="objectID">505</int>
|
2992
|
+
<reference key="object" ref="644046920"/>
|
2993
|
+
<reference key="parent" ref="446991534"/>
|
2994
|
+
</object>
|
2995
|
+
<object class="IBObjectRecord">
|
2996
|
+
<int key="objectID">506</int>
|
2997
|
+
<reference key="object" ref="231811626"/>
|
2998
|
+
<reference key="parent" ref="446991534"/>
|
2999
|
+
</object>
|
3000
|
+
<object class="IBObjectRecord">
|
3001
|
+
<int key="objectID">507</int>
|
3002
|
+
<reference key="object" ref="883618387"/>
|
3003
|
+
<reference key="parent" ref="446991534"/>
|
3004
|
+
</object>
|
3005
|
+
<object class="IBObjectRecord">
|
3006
|
+
<int key="objectID">508</int>
|
3007
|
+
<reference key="object" ref="956096989"/>
|
3008
|
+
<object class="NSMutableArray" key="children">
|
3009
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3010
|
+
<reference ref="257099033"/>
|
3011
|
+
<reference ref="551969625"/>
|
3012
|
+
<reference ref="249532473"/>
|
3013
|
+
<reference ref="607364498"/>
|
3014
|
+
<reference ref="508151438"/>
|
3015
|
+
<reference ref="981751889"/>
|
3016
|
+
<reference ref="380031999"/>
|
3017
|
+
<reference ref="825984362"/>
|
3018
|
+
<reference ref="560145579"/>
|
3019
|
+
</object>
|
3020
|
+
<reference key="parent" ref="31516759"/>
|
3021
|
+
</object>
|
3022
|
+
<object class="IBObjectRecord">
|
3023
|
+
<int key="objectID">509</int>
|
3024
|
+
<reference key="object" ref="257099033"/>
|
3025
|
+
<reference key="parent" ref="956096989"/>
|
3026
|
+
</object>
|
3027
|
+
<object class="IBObjectRecord">
|
3028
|
+
<int key="objectID">510</int>
|
3029
|
+
<reference key="object" ref="551969625"/>
|
3030
|
+
<reference key="parent" ref="956096989"/>
|
3031
|
+
</object>
|
3032
|
+
<object class="IBObjectRecord">
|
3033
|
+
<int key="objectID">511</int>
|
3034
|
+
<reference key="object" ref="249532473"/>
|
3035
|
+
<reference key="parent" ref="956096989"/>
|
3036
|
+
</object>
|
3037
|
+
<object class="IBObjectRecord">
|
3038
|
+
<int key="objectID">512</int>
|
3039
|
+
<reference key="object" ref="607364498"/>
|
3040
|
+
<reference key="parent" ref="956096989"/>
|
3041
|
+
</object>
|
3042
|
+
<object class="IBObjectRecord">
|
3043
|
+
<int key="objectID">513</int>
|
3044
|
+
<reference key="object" ref="508151438"/>
|
3045
|
+
<reference key="parent" ref="956096989"/>
|
3046
|
+
</object>
|
3047
|
+
<object class="IBObjectRecord">
|
3048
|
+
<int key="objectID">514</int>
|
3049
|
+
<reference key="object" ref="981751889"/>
|
3050
|
+
<reference key="parent" ref="956096989"/>
|
3051
|
+
</object>
|
3052
|
+
<object class="IBObjectRecord">
|
3053
|
+
<int key="objectID">515</int>
|
3054
|
+
<reference key="object" ref="380031999"/>
|
3055
|
+
<reference key="parent" ref="956096989"/>
|
3056
|
+
</object>
|
3057
|
+
<object class="IBObjectRecord">
|
3058
|
+
<int key="objectID">516</int>
|
3059
|
+
<reference key="object" ref="825984362"/>
|
3060
|
+
<reference key="parent" ref="956096989"/>
|
3061
|
+
</object>
|
3062
|
+
<object class="IBObjectRecord">
|
3063
|
+
<int key="objectID">517</int>
|
3064
|
+
<reference key="object" ref="560145579"/>
|
3065
|
+
<reference key="parent" ref="956096989"/>
|
3066
|
+
</object>
|
3067
|
+
</object>
|
3068
|
+
</object>
|
3069
|
+
<object class="NSMutableDictionary" key="flattenedProperties">
|
3070
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3071
|
+
<object class="NSArray" key="dict.sortedKeys">
|
3072
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3073
|
+
<string>-3.IBPluginDependency</string>
|
3074
|
+
<string>112.IBPluginDependency</string>
|
3075
|
+
<string>112.ImportedFromIB2</string>
|
3076
|
+
<string>124.IBPluginDependency</string>
|
3077
|
+
<string>124.ImportedFromIB2</string>
|
3078
|
+
<string>125.IBPluginDependency</string>
|
3079
|
+
<string>125.ImportedFromIB2</string>
|
3080
|
+
<string>125.editorWindowContentRectSynchronizationRect</string>
|
3081
|
+
<string>126.IBPluginDependency</string>
|
3082
|
+
<string>126.ImportedFromIB2</string>
|
3083
|
+
<string>129.IBPluginDependency</string>
|
3084
|
+
<string>129.ImportedFromIB2</string>
|
3085
|
+
<string>130.IBPluginDependency</string>
|
3086
|
+
<string>130.ImportedFromIB2</string>
|
3087
|
+
<string>130.editorWindowContentRectSynchronizationRect</string>
|
3088
|
+
<string>131.IBPluginDependency</string>
|
3089
|
+
<string>131.ImportedFromIB2</string>
|
3090
|
+
<string>134.IBPluginDependency</string>
|
3091
|
+
<string>134.ImportedFromIB2</string>
|
3092
|
+
<string>136.IBPluginDependency</string>
|
3093
|
+
<string>136.ImportedFromIB2</string>
|
3094
|
+
<string>143.IBPluginDependency</string>
|
3095
|
+
<string>143.ImportedFromIB2</string>
|
3096
|
+
<string>144.IBPluginDependency</string>
|
3097
|
+
<string>144.ImportedFromIB2</string>
|
3098
|
+
<string>145.IBPluginDependency</string>
|
3099
|
+
<string>145.ImportedFromIB2</string>
|
3100
|
+
<string>149.IBPluginDependency</string>
|
3101
|
+
<string>149.ImportedFromIB2</string>
|
3102
|
+
<string>150.IBPluginDependency</string>
|
3103
|
+
<string>150.ImportedFromIB2</string>
|
3104
|
+
<string>19.IBPluginDependency</string>
|
3105
|
+
<string>19.ImportedFromIB2</string>
|
3106
|
+
<string>195.IBPluginDependency</string>
|
3107
|
+
<string>195.ImportedFromIB2</string>
|
3108
|
+
<string>196.IBPluginDependency</string>
|
3109
|
+
<string>196.ImportedFromIB2</string>
|
3110
|
+
<string>197.IBPluginDependency</string>
|
3111
|
+
<string>197.ImportedFromIB2</string>
|
3112
|
+
<string>198.IBPluginDependency</string>
|
3113
|
+
<string>198.ImportedFromIB2</string>
|
3114
|
+
<string>199.IBPluginDependency</string>
|
3115
|
+
<string>199.ImportedFromIB2</string>
|
3116
|
+
<string>200.IBEditorWindowLastContentRect</string>
|
3117
|
+
<string>200.IBPluginDependency</string>
|
3118
|
+
<string>200.ImportedFromIB2</string>
|
3119
|
+
<string>200.editorWindowContentRectSynchronizationRect</string>
|
3120
|
+
<string>201.IBPluginDependency</string>
|
3121
|
+
<string>201.ImportedFromIB2</string>
|
3122
|
+
<string>202.IBPluginDependency</string>
|
3123
|
+
<string>202.ImportedFromIB2</string>
|
3124
|
+
<string>203.IBPluginDependency</string>
|
3125
|
+
<string>203.ImportedFromIB2</string>
|
3126
|
+
<string>204.IBPluginDependency</string>
|
3127
|
+
<string>204.ImportedFromIB2</string>
|
3128
|
+
<string>205.IBEditorWindowLastContentRect</string>
|
3129
|
+
<string>205.IBPluginDependency</string>
|
3130
|
+
<string>205.ImportedFromIB2</string>
|
3131
|
+
<string>205.editorWindowContentRectSynchronizationRect</string>
|
3132
|
+
<string>206.IBPluginDependency</string>
|
3133
|
+
<string>206.ImportedFromIB2</string>
|
3134
|
+
<string>207.IBPluginDependency</string>
|
3135
|
+
<string>207.ImportedFromIB2</string>
|
3136
|
+
<string>208.IBPluginDependency</string>
|
3137
|
+
<string>208.ImportedFromIB2</string>
|
3138
|
+
<string>209.IBPluginDependency</string>
|
3139
|
+
<string>209.ImportedFromIB2</string>
|
3140
|
+
<string>210.IBPluginDependency</string>
|
3141
|
+
<string>210.ImportedFromIB2</string>
|
3142
|
+
<string>211.IBPluginDependency</string>
|
3143
|
+
<string>211.ImportedFromIB2</string>
|
3144
|
+
<string>212.IBPluginDependency</string>
|
3145
|
+
<string>212.ImportedFromIB2</string>
|
3146
|
+
<string>212.editorWindowContentRectSynchronizationRect</string>
|
3147
|
+
<string>213.IBPluginDependency</string>
|
3148
|
+
<string>213.ImportedFromIB2</string>
|
3149
|
+
<string>214.IBPluginDependency</string>
|
3150
|
+
<string>214.ImportedFromIB2</string>
|
3151
|
+
<string>215.IBPluginDependency</string>
|
3152
|
+
<string>215.ImportedFromIB2</string>
|
3153
|
+
<string>216.IBPluginDependency</string>
|
3154
|
+
<string>216.ImportedFromIB2</string>
|
3155
|
+
<string>217.IBPluginDependency</string>
|
3156
|
+
<string>217.ImportedFromIB2</string>
|
3157
|
+
<string>218.IBPluginDependency</string>
|
3158
|
+
<string>218.ImportedFromIB2</string>
|
3159
|
+
<string>219.IBPluginDependency</string>
|
3160
|
+
<string>219.ImportedFromIB2</string>
|
3161
|
+
<string>220.IBEditorWindowLastContentRect</string>
|
3162
|
+
<string>220.IBPluginDependency</string>
|
3163
|
+
<string>220.ImportedFromIB2</string>
|
3164
|
+
<string>220.editorWindowContentRectSynchronizationRect</string>
|
3165
|
+
<string>221.IBPluginDependency</string>
|
3166
|
+
<string>221.ImportedFromIB2</string>
|
3167
|
+
<string>23.IBPluginDependency</string>
|
3168
|
+
<string>23.ImportedFromIB2</string>
|
3169
|
+
<string>236.IBPluginDependency</string>
|
3170
|
+
<string>236.ImportedFromIB2</string>
|
3171
|
+
<string>239.IBPluginDependency</string>
|
3172
|
+
<string>239.ImportedFromIB2</string>
|
3173
|
+
<string>24.IBEditorWindowLastContentRect</string>
|
3174
|
+
<string>24.IBPluginDependency</string>
|
3175
|
+
<string>24.ImportedFromIB2</string>
|
3176
|
+
<string>24.editorWindowContentRectSynchronizationRect</string>
|
3177
|
+
<string>29.IBEditorWindowLastContentRect</string>
|
3178
|
+
<string>29.IBPluginDependency</string>
|
3179
|
+
<string>29.ImportedFromIB2</string>
|
3180
|
+
<string>29.WindowOrigin</string>
|
3181
|
+
<string>29.editorWindowContentRectSynchronizationRect</string>
|
3182
|
+
<string>295.IBPluginDependency</string>
|
3183
|
+
<string>296.IBEditorWindowLastContentRect</string>
|
3184
|
+
<string>296.IBPluginDependency</string>
|
3185
|
+
<string>296.editorWindowContentRectSynchronizationRect</string>
|
3186
|
+
<string>297.IBPluginDependency</string>
|
3187
|
+
<string>298.IBPluginDependency</string>
|
3188
|
+
<string>346.IBPluginDependency</string>
|
3189
|
+
<string>346.ImportedFromIB2</string>
|
3190
|
+
<string>348.IBPluginDependency</string>
|
3191
|
+
<string>348.ImportedFromIB2</string>
|
3192
|
+
<string>349.IBEditorWindowLastContentRect</string>
|
3193
|
+
<string>349.IBPluginDependency</string>
|
3194
|
+
<string>349.ImportedFromIB2</string>
|
3195
|
+
<string>349.editorWindowContentRectSynchronizationRect</string>
|
3196
|
+
<string>350.IBPluginDependency</string>
|
3197
|
+
<string>350.ImportedFromIB2</string>
|
3198
|
+
<string>351.IBPluginDependency</string>
|
3199
|
+
<string>351.ImportedFromIB2</string>
|
3200
|
+
<string>354.IBPluginDependency</string>
|
3201
|
+
<string>354.ImportedFromIB2</string>
|
3202
|
+
<string>371.IBEditorWindowLastContentRect</string>
|
3203
|
+
<string>371.IBPluginDependency</string>
|
3204
|
+
<string>371.IBWindowTemplateEditedContentRect</string>
|
3205
|
+
<string>371.NSWindowTemplate.visibleAtLaunch</string>
|
3206
|
+
<string>371.editorWindowContentRectSynchronizationRect</string>
|
3207
|
+
<string>371.windowTemplate.maxSize</string>
|
3208
|
+
<string>372.IBPluginDependency</string>
|
3209
|
+
<string>375.IBPluginDependency</string>
|
3210
|
+
<string>376.IBEditorWindowLastContentRect</string>
|
3211
|
+
<string>376.IBPluginDependency</string>
|
3212
|
+
<string>377.IBPluginDependency</string>
|
3213
|
+
<string>388.IBEditorWindowLastContentRect</string>
|
3214
|
+
<string>388.IBPluginDependency</string>
|
3215
|
+
<string>389.IBPluginDependency</string>
|
3216
|
+
<string>390.IBPluginDependency</string>
|
3217
|
+
<string>391.IBPluginDependency</string>
|
3218
|
+
<string>392.IBPluginDependency</string>
|
3219
|
+
<string>393.IBPluginDependency</string>
|
3220
|
+
<string>394.IBPluginDependency</string>
|
3221
|
+
<string>395.IBPluginDependency</string>
|
3222
|
+
<string>396.IBPluginDependency</string>
|
3223
|
+
<string>397.IBPluginDependency</string>
|
3224
|
+
<string>398.IBPluginDependency</string>
|
3225
|
+
<string>399.IBPluginDependency</string>
|
3226
|
+
<string>400.IBPluginDependency</string>
|
3227
|
+
<string>401.IBPluginDependency</string>
|
3228
|
+
<string>402.IBPluginDependency</string>
|
3229
|
+
<string>403.IBPluginDependency</string>
|
3230
|
+
<string>404.IBPluginDependency</string>
|
3231
|
+
<string>405.IBPluginDependency</string>
|
3232
|
+
<string>406.IBPluginDependency</string>
|
3233
|
+
<string>407.IBPluginDependency</string>
|
3234
|
+
<string>408.IBPluginDependency</string>
|
3235
|
+
<string>409.IBPluginDependency</string>
|
3236
|
+
<string>410.IBPluginDependency</string>
|
3237
|
+
<string>411.IBPluginDependency</string>
|
3238
|
+
<string>412.IBPluginDependency</string>
|
3239
|
+
<string>413.IBPluginDependency</string>
|
3240
|
+
<string>414.IBPluginDependency</string>
|
3241
|
+
<string>415.IBPluginDependency</string>
|
3242
|
+
<string>416.IBPluginDependency</string>
|
3243
|
+
<string>417.IBPluginDependency</string>
|
3244
|
+
<string>418.IBPluginDependency</string>
|
3245
|
+
<string>419.IBPluginDependency</string>
|
3246
|
+
<string>450.IBPluginDependency</string>
|
3247
|
+
<string>451.IBEditorWindowLastContentRect</string>
|
3248
|
+
<string>451.IBPluginDependency</string>
|
3249
|
+
<string>452.IBPluginDependency</string>
|
3250
|
+
<string>453.IBPluginDependency</string>
|
3251
|
+
<string>454.IBPluginDependency</string>
|
3252
|
+
<string>457.IBPluginDependency</string>
|
3253
|
+
<string>459.IBPluginDependency</string>
|
3254
|
+
<string>460.IBPluginDependency</string>
|
3255
|
+
<string>462.IBPluginDependency</string>
|
3256
|
+
<string>465.IBPluginDependency</string>
|
3257
|
+
<string>466.IBPluginDependency</string>
|
3258
|
+
<string>485.IBPluginDependency</string>
|
3259
|
+
<string>490.IBPluginDependency</string>
|
3260
|
+
<string>491.IBEditorWindowLastContentRect</string>
|
3261
|
+
<string>491.IBPluginDependency</string>
|
3262
|
+
<string>492.IBPluginDependency</string>
|
3263
|
+
<string>496.IBPluginDependency</string>
|
3264
|
+
<string>497.IBEditorWindowLastContentRect</string>
|
3265
|
+
<string>497.IBPluginDependency</string>
|
3266
|
+
<string>498.IBPluginDependency</string>
|
3267
|
+
<string>499.IBPluginDependency</string>
|
3268
|
+
<string>5.IBPluginDependency</string>
|
3269
|
+
<string>5.ImportedFromIB2</string>
|
3270
|
+
<string>500.IBPluginDependency</string>
|
3271
|
+
<string>501.IBPluginDependency</string>
|
3272
|
+
<string>502.IBPluginDependency</string>
|
3273
|
+
<string>503.IBPluginDependency</string>
|
3274
|
+
<string>504.IBPluginDependency</string>
|
3275
|
+
<string>505.IBPluginDependency</string>
|
3276
|
+
<string>506.IBPluginDependency</string>
|
3277
|
+
<string>507.IBPluginDependency</string>
|
3278
|
+
<string>508.IBEditorWindowLastContentRect</string>
|
3279
|
+
<string>508.IBPluginDependency</string>
|
3280
|
+
<string>509.IBPluginDependency</string>
|
3281
|
+
<string>510.IBPluginDependency</string>
|
3282
|
+
<string>511.IBPluginDependency</string>
|
3283
|
+
<string>512.IBPluginDependency</string>
|
3284
|
+
<string>513.IBPluginDependency</string>
|
3285
|
+
<string>514.IBPluginDependency</string>
|
3286
|
+
<string>515.IBPluginDependency</string>
|
3287
|
+
<string>516.IBPluginDependency</string>
|
3288
|
+
<string>517.IBPluginDependency</string>
|
3289
|
+
<string>56.IBPluginDependency</string>
|
3290
|
+
<string>56.ImportedFromIB2</string>
|
3291
|
+
<string>57.IBEditorWindowLastContentRect</string>
|
3292
|
+
<string>57.IBPluginDependency</string>
|
3293
|
+
<string>57.ImportedFromIB2</string>
|
3294
|
+
<string>57.editorWindowContentRectSynchronizationRect</string>
|
3295
|
+
<string>58.IBPluginDependency</string>
|
3296
|
+
<string>58.ImportedFromIB2</string>
|
3297
|
+
<string>72.IBPluginDependency</string>
|
3298
|
+
<string>72.ImportedFromIB2</string>
|
3299
|
+
<string>73.IBPluginDependency</string>
|
3300
|
+
<string>73.ImportedFromIB2</string>
|
3301
|
+
<string>74.IBPluginDependency</string>
|
3302
|
+
<string>74.ImportedFromIB2</string>
|
3303
|
+
<string>75.IBPluginDependency</string>
|
3304
|
+
<string>75.ImportedFromIB2</string>
|
3305
|
+
<string>77.IBPluginDependency</string>
|
3306
|
+
<string>77.ImportedFromIB2</string>
|
3307
|
+
<string>78.IBPluginDependency</string>
|
3308
|
+
<string>78.ImportedFromIB2</string>
|
3309
|
+
<string>79.IBPluginDependency</string>
|
3310
|
+
<string>79.ImportedFromIB2</string>
|
3311
|
+
<string>80.IBPluginDependency</string>
|
3312
|
+
<string>80.ImportedFromIB2</string>
|
3313
|
+
<string>81.IBEditorWindowLastContentRect</string>
|
3314
|
+
<string>81.IBPluginDependency</string>
|
3315
|
+
<string>81.ImportedFromIB2</string>
|
3316
|
+
<string>81.editorWindowContentRectSynchronizationRect</string>
|
3317
|
+
<string>82.IBPluginDependency</string>
|
3318
|
+
<string>82.ImportedFromIB2</string>
|
3319
|
+
<string>83.IBPluginDependency</string>
|
3320
|
+
<string>83.ImportedFromIB2</string>
|
3321
|
+
<string>92.IBPluginDependency</string>
|
3322
|
+
<string>92.ImportedFromIB2</string>
|
3323
|
+
</object>
|
3324
|
+
<object class="NSMutableArray" key="dict.values">
|
3325
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3326
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3327
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3328
|
+
<integer value="1"/>
|
3329
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3330
|
+
<integer value="1"/>
|
3331
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3332
|
+
<integer value="1"/>
|
3333
|
+
<string>{{522, 812}, {146, 23}}</string>
|
3334
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3335
|
+
<integer value="1"/>
|
3336
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3337
|
+
<integer value="1"/>
|
3338
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3339
|
+
<integer value="1"/>
|
3340
|
+
<string>{{436, 809}, {64, 6}}</string>
|
3341
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3342
|
+
<integer value="1"/>
|
3343
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3344
|
+
<integer value="1"/>
|
3345
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3346
|
+
<integer value="1"/>
|
3347
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3348
|
+
<integer value="1"/>
|
3349
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3350
|
+
<integer value="1"/>
|
3351
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3352
|
+
<integer value="1"/>
|
3353
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3354
|
+
<integer value="1"/>
|
3355
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3356
|
+
<integer value="1"/>
|
3357
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3358
|
+
<integer value="1"/>
|
3359
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3360
|
+
<integer value="1"/>
|
3361
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3362
|
+
<integer value="1"/>
|
3363
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3364
|
+
<integer value="1"/>
|
3365
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3366
|
+
<integer value="1"/>
|
3367
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3368
|
+
<integer value="1"/>
|
3369
|
+
<string>{{753, 187}, {275, 113}}</string>
|
3370
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3371
|
+
<integer value="1"/>
|
3372
|
+
<string>{{608, 612}, {275, 83}}</string>
|
3373
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3374
|
+
<integer value="1"/>
|
3375
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3376
|
+
<integer value="1"/>
|
3377
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3378
|
+
<integer value="1"/>
|
3379
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3380
|
+
<integer value="1"/>
|
3381
|
+
<string>{{547, 180}, {254, 283}}</string>
|
3382
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3383
|
+
<integer value="1"/>
|
3384
|
+
<string>{{187, 434}, {243, 243}}</string>
|
3385
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3386
|
+
<integer value="1"/>
|
3387
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3388
|
+
<integer value="1"/>
|
3389
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3390
|
+
<integer value="1"/>
|
3391
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3392
|
+
<integer value="1"/>
|
3393
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3394
|
+
<integer value="1"/>
|
3395
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3396
|
+
<integer value="1"/>
|
3397
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3398
|
+
<integer value="1"/>
|
3399
|
+
<string>{{608, 612}, {167, 43}}</string>
|
3400
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3401
|
+
<integer value="1"/>
|
3402
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3403
|
+
<integer value="1"/>
|
3404
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3405
|
+
<integer value="1"/>
|
3406
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3407
|
+
<integer value="1"/>
|
3408
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3409
|
+
<integer value="1"/>
|
3410
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3411
|
+
<integer value="1"/>
|
3412
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3413
|
+
<integer value="1"/>
|
3414
|
+
<string>{{753, 217}, {238, 103}}</string>
|
3415
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3416
|
+
<integer value="1"/>
|
3417
|
+
<string>{{608, 612}, {241, 103}}</string>
|
3418
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3419
|
+
<integer value="1"/>
|
3420
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3421
|
+
<integer value="1"/>
|
3422
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3423
|
+
<integer value="1"/>
|
3424
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3425
|
+
<integer value="1"/>
|
3426
|
+
<string>{{654, 239}, {194, 73}}</string>
|
3427
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3428
|
+
<integer value="1"/>
|
3429
|
+
<string>{{525, 802}, {197, 73}}</string>
|
3430
|
+
<string>{{380, 836}, {512, 20}}</string>
|
3431
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3432
|
+
<integer value="1"/>
|
3433
|
+
<string>{74, 862}</string>
|
3434
|
+
<string>{{6, 978}, {478, 20}}</string>
|
3435
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3436
|
+
<string>{{604, 269}, {231, 43}}</string>
|
3437
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3438
|
+
<string>{{475, 832}, {234, 43}}</string>
|
3439
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3440
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3441
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3442
|
+
<integer value="1"/>
|
3443
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3444
|
+
<integer value="1"/>
|
3445
|
+
<string>{{746, 287}, {220, 133}}</string>
|
3446
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3447
|
+
<integer value="1"/>
|
3448
|
+
<string>{{608, 612}, {215, 63}}</string>
|
3449
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3450
|
+
<integer value="1"/>
|
3451
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3452
|
+
<integer value="1"/>
|
3453
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3454
|
+
<integer value="1"/>
|
3455
|
+
<string>{{380, 496}, {480, 360}}</string>
|
3456
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3457
|
+
<string>{{380, 496}, {480, 360}}</string>
|
3458
|
+
<integer value="1"/>
|
3459
|
+
<string>{{33, 99}, {480, 360}}</string>
|
3460
|
+
<string>{3.40282e+38, 3.40282e+38}</string>
|
3461
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3462
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3463
|
+
<string>{{591, 420}, {83, 43}}</string>
|
3464
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3465
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3466
|
+
<string>{{523, 2}, {178, 283}}</string>
|
3467
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3468
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3469
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3470
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3471
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3472
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3473
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3474
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3475
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3476
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3477
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3478
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3479
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3480
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3481
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3482
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3483
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3484
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3485
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3486
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3487
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3488
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3489
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3490
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3491
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3492
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3493
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3494
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3495
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3496
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3497
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3498
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3499
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3500
|
+
<string>{{753, 197}, {170, 63}}</string>
|
3501
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3502
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3503
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3504
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3505
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3506
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3507
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3508
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3509
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3510
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3511
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3512
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3513
|
+
<string>{{725, 289}, {246, 23}}</string>
|
3514
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3515
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3516
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3517
|
+
<string>{{674, 260}, {204, 183}}</string>
|
3518
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3519
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3520
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3521
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3522
|
+
<integer value="1"/>
|
3523
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3524
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3525
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3526
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3527
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3528
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3529
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3530
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3531
|
+
<string>{{878, 180}, {164, 173}}</string>
|
3532
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3533
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3534
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3535
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3536
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3537
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3538
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3539
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3540
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3541
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3542
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3543
|
+
<integer value="1"/>
|
3544
|
+
<string>{{286, 129}, {275, 183}}</string>
|
3545
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3546
|
+
<integer value="1"/>
|
3547
|
+
<string>{{23, 794}, {245, 183}}</string>
|
3548
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3549
|
+
<integer value="1"/>
|
3550
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3551
|
+
<integer value="1"/>
|
3552
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3553
|
+
<integer value="1"/>
|
3554
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3555
|
+
<integer value="1"/>
|
3556
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3557
|
+
<integer value="1"/>
|
3558
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3559
|
+
<integer value="1"/>
|
3560
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3561
|
+
<integer value="1"/>
|
3562
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3563
|
+
<integer value="1"/>
|
3564
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3565
|
+
<integer value="1"/>
|
3566
|
+
<string>{{452, 109}, {196, 203}}</string>
|
3567
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3568
|
+
<integer value="1"/>
|
3569
|
+
<string>{{145, 474}, {199, 203}}</string>
|
3570
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3571
|
+
<integer value="1"/>
|
3572
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3573
|
+
<integer value="1"/>
|
3574
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3575
|
+
<integer value="1"/>
|
3576
|
+
</object>
|
3577
|
+
</object>
|
3578
|
+
<object class="NSMutableDictionary" key="unlocalizedProperties">
|
3579
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3580
|
+
<reference key="dict.sortedKeys" ref="0"/>
|
3581
|
+
<object class="NSMutableArray" key="dict.values">
|
3582
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3583
|
+
</object>
|
3584
|
+
</object>
|
3585
|
+
<nil key="activeLocalization"/>
|
3586
|
+
<object class="NSMutableDictionary" key="localizations">
|
3587
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3588
|
+
<reference key="dict.sortedKeys" ref="0"/>
|
3589
|
+
<object class="NSMutableArray" key="dict.values">
|
3590
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3591
|
+
</object>
|
3592
|
+
</object>
|
3593
|
+
<nil key="sourceID"/>
|
3594
|
+
<int key="maxID">532</int>
|
3595
|
+
</object>
|
3596
|
+
<object class="IBClassDescriber" key="IBDocument.Classes">
|
3597
|
+
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
|
3598
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3599
|
+
<object class="IBPartialClassDescription">
|
3600
|
+
<string key="className">TestAppAppDelegate</string>
|
3601
|
+
<string key="superclassName">NSObject</string>
|
3602
|
+
<object class="NSMutableDictionary" key="outlets">
|
3603
|
+
<string key="NS.key.0">window</string>
|
3604
|
+
<string key="NS.object.0">NSWindow</string>
|
3605
|
+
</object>
|
3606
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3607
|
+
<string key="majorKey">IBProjectSource</string>
|
3608
|
+
<string key="minorKey">TestAppAppDelegate.h</string>
|
3609
|
+
</object>
|
3610
|
+
</object>
|
3611
|
+
</object>
|
3612
|
+
<object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
3613
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3614
|
+
<object class="IBPartialClassDescription">
|
3615
|
+
<string key="className">NSApplication</string>
|
3616
|
+
<string key="superclassName">NSResponder</string>
|
3617
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="822405504">
|
3618
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3619
|
+
<string key="minorKey">AppKit.framework/Headers/NSApplication.h</string>
|
3620
|
+
</object>
|
3621
|
+
</object>
|
3622
|
+
<object class="IBPartialClassDescription">
|
3623
|
+
<string key="className">NSApplication</string>
|
3624
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="850738725">
|
3625
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3626
|
+
<string key="minorKey">AppKit.framework/Headers/NSApplicationScripting.h</string>
|
3627
|
+
</object>
|
3628
|
+
</object>
|
3629
|
+
<object class="IBPartialClassDescription">
|
3630
|
+
<string key="className">NSApplication</string>
|
3631
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="624831158">
|
3632
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3633
|
+
<string key="minorKey">AppKit.framework/Headers/NSColorPanel.h</string>
|
3634
|
+
</object>
|
3635
|
+
</object>
|
3636
|
+
<object class="IBPartialClassDescription">
|
3637
|
+
<string key="className">NSApplication</string>
|
3638
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3639
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3640
|
+
<string key="minorKey">AppKit.framework/Headers/NSHelpManager.h</string>
|
3641
|
+
</object>
|
3642
|
+
</object>
|
3643
|
+
<object class="IBPartialClassDescription">
|
3644
|
+
<string key="className">NSApplication</string>
|
3645
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3646
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3647
|
+
<string key="minorKey">AppKit.framework/Headers/NSPageLayout.h</string>
|
3648
|
+
</object>
|
3649
|
+
</object>
|
3650
|
+
<object class="IBPartialClassDescription">
|
3651
|
+
<string key="className">NSApplication</string>
|
3652
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3653
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3654
|
+
<string key="minorKey">AppKit.framework/Headers/NSUserInterfaceItemSearching.h</string>
|
3655
|
+
</object>
|
3656
|
+
</object>
|
3657
|
+
<object class="IBPartialClassDescription">
|
3658
|
+
<string key="className">NSBrowser</string>
|
3659
|
+
<string key="superclassName">NSControl</string>
|
3660
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3661
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3662
|
+
<string key="minorKey">AppKit.framework/Headers/NSBrowser.h</string>
|
3663
|
+
</object>
|
3664
|
+
</object>
|
3665
|
+
<object class="IBPartialClassDescription">
|
3666
|
+
<string key="className">NSControl</string>
|
3667
|
+
<string key="superclassName">NSView</string>
|
3668
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="310914472">
|
3669
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3670
|
+
<string key="minorKey">AppKit.framework/Headers/NSControl.h</string>
|
3671
|
+
</object>
|
3672
|
+
</object>
|
3673
|
+
<object class="IBPartialClassDescription">
|
3674
|
+
<string key="className">NSDocument</string>
|
3675
|
+
<string key="superclassName">NSObject</string>
|
3676
|
+
<object class="NSMutableDictionary" key="actions">
|
3677
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3678
|
+
<object class="NSArray" key="dict.sortedKeys">
|
3679
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3680
|
+
<string>printDocument:</string>
|
3681
|
+
<string>revertDocumentToSaved:</string>
|
3682
|
+
<string>runPageLayout:</string>
|
3683
|
+
<string>saveDocument:</string>
|
3684
|
+
<string>saveDocumentAs:</string>
|
3685
|
+
<string>saveDocumentTo:</string>
|
3686
|
+
</object>
|
3687
|
+
<object class="NSMutableArray" key="dict.values">
|
3688
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3689
|
+
<string>id</string>
|
3690
|
+
<string>id</string>
|
3691
|
+
<string>id</string>
|
3692
|
+
<string>id</string>
|
3693
|
+
<string>id</string>
|
3694
|
+
<string>id</string>
|
3695
|
+
</object>
|
3696
|
+
</object>
|
3697
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3698
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3699
|
+
<string key="minorKey">AppKit.framework/Headers/NSDocument.h</string>
|
3700
|
+
</object>
|
3701
|
+
</object>
|
3702
|
+
<object class="IBPartialClassDescription">
|
3703
|
+
<string key="className">NSDocument</string>
|
3704
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3705
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3706
|
+
<string key="minorKey">AppKit.framework/Headers/NSDocumentScripting.h</string>
|
3707
|
+
</object>
|
3708
|
+
</object>
|
3709
|
+
<object class="IBPartialClassDescription">
|
3710
|
+
<string key="className">NSDocumentController</string>
|
3711
|
+
<string key="superclassName">NSObject</string>
|
3712
|
+
<object class="NSMutableDictionary" key="actions">
|
3713
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3714
|
+
<object class="NSArray" key="dict.sortedKeys">
|
3715
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3716
|
+
<string>clearRecentDocuments:</string>
|
3717
|
+
<string>newDocument:</string>
|
3718
|
+
<string>openDocument:</string>
|
3719
|
+
<string>saveAllDocuments:</string>
|
3720
|
+
</object>
|
3721
|
+
<object class="NSMutableArray" key="dict.values">
|
3722
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
3723
|
+
<string>id</string>
|
3724
|
+
<string>id</string>
|
3725
|
+
<string>id</string>
|
3726
|
+
<string>id</string>
|
3727
|
+
</object>
|
3728
|
+
</object>
|
3729
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3730
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3731
|
+
<string key="minorKey">AppKit.framework/Headers/NSDocumentController.h</string>
|
3732
|
+
</object>
|
3733
|
+
</object>
|
3734
|
+
<object class="IBPartialClassDescription">
|
3735
|
+
<string key="className">NSFontManager</string>
|
3736
|
+
<string key="superclassName">NSObject</string>
|
3737
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="946436764">
|
3738
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3739
|
+
<string key="minorKey">AppKit.framework/Headers/NSFontManager.h</string>
|
3740
|
+
</object>
|
3741
|
+
</object>
|
3742
|
+
<object class="IBPartialClassDescription">
|
3743
|
+
<string key="className">NSFormatter</string>
|
3744
|
+
<string key="superclassName">NSObject</string>
|
3745
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3746
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3747
|
+
<string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string>
|
3748
|
+
</object>
|
3749
|
+
</object>
|
3750
|
+
<object class="IBPartialClassDescription">
|
3751
|
+
<string key="className">NSMatrix</string>
|
3752
|
+
<string key="superclassName">NSControl</string>
|
3753
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3754
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3755
|
+
<string key="minorKey">AppKit.framework/Headers/NSMatrix.h</string>
|
3756
|
+
</object>
|
3757
|
+
</object>
|
3758
|
+
<object class="IBPartialClassDescription">
|
3759
|
+
<string key="className">NSMenu</string>
|
3760
|
+
<string key="superclassName">NSObject</string>
|
3761
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="1056362899">
|
3762
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3763
|
+
<string key="minorKey">AppKit.framework/Headers/NSMenu.h</string>
|
3764
|
+
</object>
|
3765
|
+
</object>
|
3766
|
+
<object class="IBPartialClassDescription">
|
3767
|
+
<string key="className">NSMenuItem</string>
|
3768
|
+
<string key="superclassName">NSObject</string>
|
3769
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="472958451">
|
3770
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3771
|
+
<string key="minorKey">AppKit.framework/Headers/NSMenuItem.h</string>
|
3772
|
+
</object>
|
3773
|
+
</object>
|
3774
|
+
<object class="IBPartialClassDescription">
|
3775
|
+
<string key="className">NSMovieView</string>
|
3776
|
+
<string key="superclassName">NSView</string>
|
3777
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3778
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3779
|
+
<string key="minorKey">AppKit.framework/Headers/NSMovieView.h</string>
|
3780
|
+
</object>
|
3781
|
+
</object>
|
3782
|
+
<object class="IBPartialClassDescription">
|
3783
|
+
<string key="className">NSObject</string>
|
3784
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3785
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3786
|
+
<string key="minorKey">AppKit.framework/Headers/NSAccessibility.h</string>
|
3787
|
+
</object>
|
3788
|
+
</object>
|
3789
|
+
<object class="IBPartialClassDescription">
|
3790
|
+
<string key="className">NSObject</string>
|
3791
|
+
<reference key="sourceIdentifier" ref="822405504"/>
|
3792
|
+
</object>
|
3793
|
+
<object class="IBPartialClassDescription">
|
3794
|
+
<string key="className">NSObject</string>
|
3795
|
+
<reference key="sourceIdentifier" ref="850738725"/>
|
3796
|
+
</object>
|
3797
|
+
<object class="IBPartialClassDescription">
|
3798
|
+
<string key="className">NSObject</string>
|
3799
|
+
<reference key="sourceIdentifier" ref="624831158"/>
|
3800
|
+
</object>
|
3801
|
+
<object class="IBPartialClassDescription">
|
3802
|
+
<string key="className">NSObject</string>
|
3803
|
+
<reference key="sourceIdentifier" ref="310914472"/>
|
3804
|
+
</object>
|
3805
|
+
<object class="IBPartialClassDescription">
|
3806
|
+
<string key="className">NSObject</string>
|
3807
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3808
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3809
|
+
<string key="minorKey">AppKit.framework/Headers/NSDictionaryController.h</string>
|
3810
|
+
</object>
|
3811
|
+
</object>
|
3812
|
+
<object class="IBPartialClassDescription">
|
3813
|
+
<string key="className">NSObject</string>
|
3814
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3815
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3816
|
+
<string key="minorKey">AppKit.framework/Headers/NSDragging.h</string>
|
3817
|
+
</object>
|
3818
|
+
</object>
|
3819
|
+
<object class="IBPartialClassDescription">
|
3820
|
+
<string key="className">NSObject</string>
|
3821
|
+
<reference key="sourceIdentifier" ref="946436764"/>
|
3822
|
+
</object>
|
3823
|
+
<object class="IBPartialClassDescription">
|
3824
|
+
<string key="className">NSObject</string>
|
3825
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3826
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3827
|
+
<string key="minorKey">AppKit.framework/Headers/NSFontPanel.h</string>
|
3828
|
+
</object>
|
3829
|
+
</object>
|
3830
|
+
<object class="IBPartialClassDescription">
|
3831
|
+
<string key="className">NSObject</string>
|
3832
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3833
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3834
|
+
<string key="minorKey">AppKit.framework/Headers/NSKeyValueBinding.h</string>
|
3835
|
+
</object>
|
3836
|
+
</object>
|
3837
|
+
<object class="IBPartialClassDescription">
|
3838
|
+
<string key="className">NSObject</string>
|
3839
|
+
<reference key="sourceIdentifier" ref="1056362899"/>
|
3840
|
+
</object>
|
3841
|
+
<object class="IBPartialClassDescription">
|
3842
|
+
<string key="className">NSObject</string>
|
3843
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3844
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3845
|
+
<string key="minorKey">AppKit.framework/Headers/NSNibLoading.h</string>
|
3846
|
+
</object>
|
3847
|
+
</object>
|
3848
|
+
<object class="IBPartialClassDescription">
|
3849
|
+
<string key="className">NSObject</string>
|
3850
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3851
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3852
|
+
<string key="minorKey">AppKit.framework/Headers/NSOutlineView.h</string>
|
3853
|
+
</object>
|
3854
|
+
</object>
|
3855
|
+
<object class="IBPartialClassDescription">
|
3856
|
+
<string key="className">NSObject</string>
|
3857
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3858
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3859
|
+
<string key="minorKey">AppKit.framework/Headers/NSPasteboard.h</string>
|
3860
|
+
</object>
|
3861
|
+
</object>
|
3862
|
+
<object class="IBPartialClassDescription">
|
3863
|
+
<string key="className">NSObject</string>
|
3864
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3865
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3866
|
+
<string key="minorKey">AppKit.framework/Headers/NSSavePanel.h</string>
|
3867
|
+
</object>
|
3868
|
+
</object>
|
3869
|
+
<object class="IBPartialClassDescription">
|
3870
|
+
<string key="className">NSObject</string>
|
3871
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="809545482">
|
3872
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3873
|
+
<string key="minorKey">AppKit.framework/Headers/NSTableView.h</string>
|
3874
|
+
</object>
|
3875
|
+
</object>
|
3876
|
+
<object class="IBPartialClassDescription">
|
3877
|
+
<string key="className">NSObject</string>
|
3878
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3879
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3880
|
+
<string key="minorKey">AppKit.framework/Headers/NSToolbarItem.h</string>
|
3881
|
+
</object>
|
3882
|
+
</object>
|
3883
|
+
<object class="IBPartialClassDescription">
|
3884
|
+
<string key="className">NSObject</string>
|
3885
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="260078765">
|
3886
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3887
|
+
<string key="minorKey">AppKit.framework/Headers/NSView.h</string>
|
3888
|
+
</object>
|
3889
|
+
</object>
|
3890
|
+
<object class="IBPartialClassDescription">
|
3891
|
+
<string key="className">NSObject</string>
|
3892
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3893
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3894
|
+
<string key="minorKey">Foundation.framework/Headers/NSArchiver.h</string>
|
3895
|
+
</object>
|
3896
|
+
</object>
|
3897
|
+
<object class="IBPartialClassDescription">
|
3898
|
+
<string key="className">NSObject</string>
|
3899
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3900
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3901
|
+
<string key="minorKey">Foundation.framework/Headers/NSClassDescription.h</string>
|
3902
|
+
</object>
|
3903
|
+
</object>
|
3904
|
+
<object class="IBPartialClassDescription">
|
3905
|
+
<string key="className">NSObject</string>
|
3906
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3907
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3908
|
+
<string key="minorKey">Foundation.framework/Headers/NSError.h</string>
|
3909
|
+
</object>
|
3910
|
+
</object>
|
3911
|
+
<object class="IBPartialClassDescription">
|
3912
|
+
<string key="className">NSObject</string>
|
3913
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3914
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3915
|
+
<string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
|
3916
|
+
</object>
|
3917
|
+
</object>
|
3918
|
+
<object class="IBPartialClassDescription">
|
3919
|
+
<string key="className">NSObject</string>
|
3920
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3921
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3922
|
+
<string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
|
3923
|
+
</object>
|
3924
|
+
</object>
|
3925
|
+
<object class="IBPartialClassDescription">
|
3926
|
+
<string key="className">NSObject</string>
|
3927
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3928
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3929
|
+
<string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
|
3930
|
+
</object>
|
3931
|
+
</object>
|
3932
|
+
<object class="IBPartialClassDescription">
|
3933
|
+
<string key="className">NSObject</string>
|
3934
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3935
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3936
|
+
<string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
|
3937
|
+
</object>
|
3938
|
+
</object>
|
3939
|
+
<object class="IBPartialClassDescription">
|
3940
|
+
<string key="className">NSObject</string>
|
3941
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3942
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3943
|
+
<string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
|
3944
|
+
</object>
|
3945
|
+
</object>
|
3946
|
+
<object class="IBPartialClassDescription">
|
3947
|
+
<string key="className">NSObject</string>
|
3948
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3949
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3950
|
+
<string key="minorKey">Foundation.framework/Headers/NSObjectScripting.h</string>
|
3951
|
+
</object>
|
3952
|
+
</object>
|
3953
|
+
<object class="IBPartialClassDescription">
|
3954
|
+
<string key="className">NSObject</string>
|
3955
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3956
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3957
|
+
<string key="minorKey">Foundation.framework/Headers/NSPortCoder.h</string>
|
3958
|
+
</object>
|
3959
|
+
</object>
|
3960
|
+
<object class="IBPartialClassDescription">
|
3961
|
+
<string key="className">NSObject</string>
|
3962
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3963
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3964
|
+
<string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
|
3965
|
+
</object>
|
3966
|
+
</object>
|
3967
|
+
<object class="IBPartialClassDescription">
|
3968
|
+
<string key="className">NSObject</string>
|
3969
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3970
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3971
|
+
<string key="minorKey">Foundation.framework/Headers/NSScriptClassDescription.h</string>
|
3972
|
+
</object>
|
3973
|
+
</object>
|
3974
|
+
<object class="IBPartialClassDescription">
|
3975
|
+
<string key="className">NSObject</string>
|
3976
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3977
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3978
|
+
<string key="minorKey">Foundation.framework/Headers/NSScriptKeyValueCoding.h</string>
|
3979
|
+
</object>
|
3980
|
+
</object>
|
3981
|
+
<object class="IBPartialClassDescription">
|
3982
|
+
<string key="className">NSObject</string>
|
3983
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3984
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3985
|
+
<string key="minorKey">Foundation.framework/Headers/NSScriptObjectSpecifiers.h</string>
|
3986
|
+
</object>
|
3987
|
+
</object>
|
3988
|
+
<object class="IBPartialClassDescription">
|
3989
|
+
<string key="className">NSObject</string>
|
3990
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3991
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3992
|
+
<string key="minorKey">Foundation.framework/Headers/NSScriptWhoseTests.h</string>
|
3993
|
+
</object>
|
3994
|
+
</object>
|
3995
|
+
<object class="IBPartialClassDescription">
|
3996
|
+
<string key="className">NSObject</string>
|
3997
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3998
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3999
|
+
<string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
|
4000
|
+
</object>
|
4001
|
+
</object>
|
4002
|
+
<object class="IBPartialClassDescription">
|
4003
|
+
<string key="className">NSObject</string>
|
4004
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4005
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4006
|
+
<string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
|
4007
|
+
</object>
|
4008
|
+
</object>
|
4009
|
+
<object class="IBPartialClassDescription">
|
4010
|
+
<string key="className">NSObject</string>
|
4011
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4012
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4013
|
+
<string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
|
4014
|
+
</object>
|
4015
|
+
</object>
|
4016
|
+
<object class="IBPartialClassDescription">
|
4017
|
+
<string key="className">NSObject</string>
|
4018
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4019
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4020
|
+
<string key="minorKey">Foundation.framework/Headers/NSURLDownload.h</string>
|
4021
|
+
</object>
|
4022
|
+
</object>
|
4023
|
+
<object class="IBPartialClassDescription">
|
4024
|
+
<string key="className">NSResponder</string>
|
4025
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4026
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4027
|
+
<string key="minorKey">AppKit.framework/Headers/NSInterfaceStyle.h</string>
|
4028
|
+
</object>
|
4029
|
+
</object>
|
4030
|
+
<object class="IBPartialClassDescription">
|
4031
|
+
<string key="className">NSResponder</string>
|
4032
|
+
<string key="superclassName">NSObject</string>
|
4033
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4034
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4035
|
+
<string key="minorKey">AppKit.framework/Headers/NSResponder.h</string>
|
4036
|
+
</object>
|
4037
|
+
</object>
|
4038
|
+
<object class="IBPartialClassDescription">
|
4039
|
+
<string key="className">NSTableView</string>
|
4040
|
+
<string key="superclassName">NSControl</string>
|
4041
|
+
<reference key="sourceIdentifier" ref="809545482"/>
|
4042
|
+
</object>
|
4043
|
+
<object class="IBPartialClassDescription">
|
4044
|
+
<string key="className">NSText</string>
|
4045
|
+
<string key="superclassName">NSView</string>
|
4046
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4047
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4048
|
+
<string key="minorKey">AppKit.framework/Headers/NSText.h</string>
|
4049
|
+
</object>
|
4050
|
+
</object>
|
4051
|
+
<object class="IBPartialClassDescription">
|
4052
|
+
<string key="className">NSTextView</string>
|
4053
|
+
<string key="superclassName">NSText</string>
|
4054
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4055
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4056
|
+
<string key="minorKey">AppKit.framework/Headers/NSTextView.h</string>
|
4057
|
+
</object>
|
4058
|
+
</object>
|
4059
|
+
<object class="IBPartialClassDescription">
|
4060
|
+
<string key="className">NSView</string>
|
4061
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4062
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4063
|
+
<string key="minorKey">AppKit.framework/Headers/NSClipView.h</string>
|
4064
|
+
</object>
|
4065
|
+
</object>
|
4066
|
+
<object class="IBPartialClassDescription">
|
4067
|
+
<string key="className">NSView</string>
|
4068
|
+
<reference key="sourceIdentifier" ref="472958451"/>
|
4069
|
+
</object>
|
4070
|
+
<object class="IBPartialClassDescription">
|
4071
|
+
<string key="className">NSView</string>
|
4072
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4073
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4074
|
+
<string key="minorKey">AppKit.framework/Headers/NSRulerView.h</string>
|
4075
|
+
</object>
|
4076
|
+
</object>
|
4077
|
+
<object class="IBPartialClassDescription">
|
4078
|
+
<string key="className">NSView</string>
|
4079
|
+
<string key="superclassName">NSResponder</string>
|
4080
|
+
<reference key="sourceIdentifier" ref="260078765"/>
|
4081
|
+
</object>
|
4082
|
+
<object class="IBPartialClassDescription">
|
4083
|
+
<string key="className">NSWindow</string>
|
4084
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4085
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4086
|
+
<string key="minorKey">AppKit.framework/Headers/NSDrawer.h</string>
|
4087
|
+
</object>
|
4088
|
+
</object>
|
4089
|
+
<object class="IBPartialClassDescription">
|
4090
|
+
<string key="className">NSWindow</string>
|
4091
|
+
<string key="superclassName">NSResponder</string>
|
4092
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4093
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4094
|
+
<string key="minorKey">AppKit.framework/Headers/NSWindow.h</string>
|
4095
|
+
</object>
|
4096
|
+
</object>
|
4097
|
+
<object class="IBPartialClassDescription">
|
4098
|
+
<string key="className">NSWindow</string>
|
4099
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
4100
|
+
<string key="majorKey">IBFrameworkSource</string>
|
4101
|
+
<string key="minorKey">AppKit.framework/Headers/NSWindowScripting.h</string>
|
4102
|
+
</object>
|
4103
|
+
</object>
|
4104
|
+
</object>
|
4105
|
+
</object>
|
4106
|
+
<int key="IBDocument.localizationMode">0</int>
|
4107
|
+
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
|
4108
|
+
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
|
4109
|
+
<integer value="1060" key="NS.object.0"/>
|
4110
|
+
</object>
|
4111
|
+
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
4112
|
+
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
|
4113
|
+
<integer value="3000" key="NS.object.0"/>
|
4114
|
+
</object>
|
4115
|
+
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
4116
|
+
<string key="IBDocument.LastKnownRelativeProjectPath">../TestApp.xcodeproj</string>
|
4117
|
+
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
4118
|
+
</data>
|
4119
|
+
</archive>
|