├── test ├── perf │ └── OpenFile-perf-files │ │ └── blank.js ├── spec │ ├── ProjectManager-test-files │ │ ├── file.js │ │ └── directory │ │ │ └── file.js │ ├── LiveDevelopment-test-files │ │ ├── simple1.js │ │ ├── dynamic-project-3 │ │ │ ├── index.php │ │ │ └── sub │ │ │ │ └── sub2 │ │ │ │ └── test.css │ │ ├── dynamic-project-4 │ │ │ ├── index.php │ │ │ └── sub │ │ │ │ ├── index.php │ │ │ │ └── sub2 │ │ │ │ ├── index.php │ │ │ │ └── test.css │ │ ├── dynamic-project-5 │ │ │ ├── index.php │ │ │ └── sub │ │ │ │ ├── index.php │ │ │ │ ├── sub2 │ │ │ │ └── index.php │ │ │ │ └── test.css │ │ ├── static-project-3 │ │ │ ├── index.html │ │ │ └── sub │ │ │ │ └── sub2 │ │ │ │ └── test.css │ │ ├── static-project-4 │ │ │ ├── index.html │ │ │ └── sub │ │ │ │ ├── index.html │ │ │ │ └── sub2 │ │ │ │ ├── test.css │ │ │ │ └── index.html │ │ ├── static-project-5 │ │ │ ├── index.html │ │ │ └── sub │ │ │ │ ├── index.html │ │ │ │ ├── sub2 │ │ │ │ └── index.html │ │ │ │ └── test.css │ │ ├── dynamic-project-2 │ │ │ └── sub │ │ │ │ ├── index.php │ │ │ │ └── sub2 │ │ │ │ └── test.css │ │ ├── dynamic-project-6 │ │ │ ├── top1 │ │ │ │ └── index.php │ │ │ └── top2 │ │ │ │ └── test.css │ │ ├── static-project-6 │ │ │ ├── top1 │ │ │ │ └── index.html │ │ │ └── top2 │ │ │ │ └── test.css │ │ ├── dynamic-project-1 │ │ │ └── sub │ │ │ │ └── sub2 │ │ │ │ ├── index.php │ │ │ │ └── test.css │ │ ├── static-project-1 │ │ │ └── sub │ │ │ │ └── sub2 │ │ │ │ ├── index.html │ │ │ │ └── test.css │ │ ├── simple1.css │ │ ├── simpleShared.css │ │ ├── static-project-2 │ │ │ └── sub │ │ │ │ ├── sub2 │ │ │ │ └── test.css │ │ │ │ └── index.html │ │ ├── notlive.css │ │ ├── simple2.css │ │ ├── simple2.html │ │ └── simple1Query.html │ ├── WorkingSetView-test-files │ │ ├── file_one.js │ │ ├── file_two.js │ │ ├── file_three.js │ │ └── directory │ │ │ ├── file_one.js │ │ │ └── directory │ │ │ └── file_one.js │ ├── Document-test-files │ │ ├── test.js │ │ ├── test.css │ │ └── test.html │ ├── LowLevelFileIO-test-files │ │ ├── file_one.txt │ │ ├── file_three.txt │ │ ├── file_two.txt │ │ ├── rename_me │ │ │ └── hello.txt │ │ ├── write_test.txt │ │ ├── cant_read_here │ │ │ └── readme.txt │ │ └── cant_write_here │ │ │ └── readme.txt │ ├── CodeHint-test-files │ │ ├── test.clj │ │ └── test1.html │ ├── ExtensionUtils-test-files │ │ ├── bad-import.css │ │ ├── sub dir │ │ │ ├── fifth.less │ │ │ ├── fourth.css │ │ │ ├── fourth.less │ │ │ └── third.css │ │ ├── less.text │ │ ├── basic.less │ │ └── basic.css │ ├── LiveDevelopment-chrome-user-data │ │ └── Default │ │ │ ├── User StyleSheets │ │ │ └── Custom.css │ │ │ ├── Cookies │ │ │ ├── Favicons │ │ │ ├── History │ │ │ ├── Web Data │ │ │ ├── Last Tabs │ │ │ ├── Shortcuts │ │ │ ├── Top Sites │ │ │ ├── Current Tabs │ │ │ ├── Last Session │ │ │ ├── Visited Links │ │ │ ├── Archived History │ │ │ ├── Current Session │ │ │ ├── History Index 2012-04 │ │ │ ├── History Provider Cache │ │ │ └── Network Action Predictor │ ├── DocumentCommandHandlers-test-files │ │ ├── test.js │ │ ├── test2.js │ │ ├── couz.png │ │ └── couz2.png │ ├── ExtensionManager-test-files │ │ ├── dev │ │ │ └── mock-extension-2 │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ ├── user │ │ │ ├── mock-extension-3 │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ │ ├── mock-extension-4 │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ │ ├── mock-legacy-extension │ │ │ │ └── main.js │ │ │ └── install-later-extension │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ └── default │ │ │ └── mock-extension-1 │ │ │ ├── main.js │ │ │ └── package.json │ ├── extension-test-files │ │ ├── invalid-zip-file.zip │ │ ├── badname.zip │ │ ├── has-macosx.zip │ │ ├── invalid-json.zip │ │ ├── missing-main.zip │ │ ├── with-symlink.zip │ │ ├── bogus-top-dir.zip │ │ ├── invalid-version.zip │ │ ├── main-in-directory.zip │ │ ├── basic-valid-extension.zip │ │ ├── incompatible-version.zip │ │ ├── missing-name-version.zip │ │ ├── missing-package-json.zip │ │ ├── invalid-brackets-version.zip │ │ ├── basic-valid-extension-0.9.zip │ │ ├── basic-valid-extension-2.0.zip │ │ ├── missing-package-json-update.zip │ │ ├── one-level-extension-master.zip │ │ └── added-package-json-test │ │ │ └── missing-package-json.zip │ ├── EditorCommandHandlers-test-files │ │ ├── test.css │ │ └── test.html │ ├── ViewCommandHandlers-test-files │ │ ├── test.css │ │ └── test.html │ ├── InlineEditorProviders-test-files │ │ ├── testOneRuleFile.css │ │ └── test1.css │ ├── EditorOptionHandlers-test-files │ │ ├── test.js │ │ └── test.css │ ├── ExtensionLoader-test-files │ │ ├── NoInit │ │ │ └── main.js │ │ ├── BadRequire │ │ │ └── main.js │ │ ├── InitResolved │ │ │ └── main.js │ │ ├── InitFail │ │ │ └── main.js │ │ ├── InitRuntimeError │ │ │ └── main.js │ │ ├── InitTimeout │ │ │ └── main.js │ │ ├── InitFailWithError │ │ │ └── main.js │ │ ├── InitResolvedAsync │ │ │ └── main.js │ │ └── InitFailWithErrorAsync │ │ │ └── main.js │ ├── JSUtils-test-files │ │ ├── eof.js │ │ ├── eof2.js │ │ ├── invalid.js │ │ ├── test1main.js │ │ ├── test1inline.js │ │ └── tricky.js │ ├── CSSUtils-test-files │ │ ├── universal.css │ │ ├── issue-403-test.css │ │ ├── simple.css │ │ └── selector-positions.css │ └── QuickOpen-test-files │ │ └── somelines.html ├── thirdparty │ ├── jasmine-core │ │ ├── spec │ │ ├── version.rb │ │ └── example │ │ │ ├── src │ │ │ └── Song.js │ │ │ └── spec │ │ │ └── SpecHelper.js │ └── bootstrap2 │ │ └── img │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png ├── node │ ├── node_modules │ │ └── fs-extra │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ └── ncp │ │ │ ├── ncp │ │ │ │ ├── test │ │ │ │ │ └── fixtures │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── c │ │ │ │ │ │ ├── d │ │ │ │ │ │ ├── e │ │ │ │ │ │ ├── f │ │ │ │ │ │ ├── sub │ │ │ │ │ │ ├── b │ │ │ │ │ │ └── a │ │ │ │ │ │ ├── b │ │ │ │ │ │ └── a │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ ├── jsonfile │ │ │ │ ├── .npmignore │ │ │ │ ├── test │ │ │ │ │ ├── resources │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── mocha.opts │ │ │ │ ├── .travis.yml │ │ │ │ └── CHANGELOG.md │ │ │ ├── mkdirp │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ └── examples │ │ │ │ │ └── pow.js │ │ │ └── rimraf │ │ │ │ ├── node_modules │ │ │ │ └── graceful-fs │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── README.md │ │ │ │ ├── test │ │ │ │ ├── test-sync.js │ │ │ │ ├── test-async.js │ │ │ │ └── run.sh │ │ │ │ └── AUTHORS │ │ │ ├── test │ │ │ └── mocha.opts │ │ │ ├── .travis.yml │ │ │ └── lib │ │ │ ├── mkdir.js │ │ │ └── remove.js │ └── package.json └── smokes │ ├── server-tests │ ├── images │ │ ├── events.jpg │ │ ├── lrg_hero.jpg │ │ ├── lrg_logo.png │ │ ├── med_hero.jpg │ │ ├── med_logo.png │ │ ├── sml_logo.png │ │ ├── specials.jpg │ │ ├── icon_chevron.png │ │ ├── icon_facebook.png │ │ └── icon_twitter.png │ └── css │ │ └── citrus_mq.css │ └── citrus completed │ ├── images │ ├── events.jpg │ ├── lrg_hero.jpg │ ├── lrg_logo.png │ ├── med_hero.jpg │ ├── med_logo.png │ ├── sml_logo.png │ ├── specials.jpg │ ├── icon_chevron.png │ ├── icon_twitter.png │ └── icon_facebook.png │ └── css │ └── citrus_mq.css ├── src ├── extensibility │ └── node │ │ ├── node_modules │ │ ├── .bin │ │ │ ├── semver │ │ │ └── decompress-zip │ │ ├── semver │ │ │ ├── .npmignore │ │ │ ├── head.js │ │ │ ├── semver.min.js.gz │ │ │ ├── semver.browser.js.gz │ │ │ └── foot.js │ │ ├── request │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ ├── hawk │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── boom │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── boom.png │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ ├── hoek │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ │ ├── test1.js │ │ │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ │ │ └── test3.js │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── hoek.png │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ ├── sntp │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ └── cryptiles │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── images │ │ │ │ │ │ ├── hawk.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── Makefile │ │ │ │ ├── node-uuid │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── LICENSE.md │ │ │ │ ├── http-signature │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── asn1 │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── ber │ │ │ │ │ │ │ │ └── errors.js │ │ │ │ │ │ └── ctype │ │ │ │ │ │ │ └── tst │ │ │ │ │ │ │ └── ctf │ │ │ │ │ │ │ ├── float.json │ │ │ │ │ │ │ ├── int.json │ │ │ │ │ │ │ └── typedef.json │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .dir-locals.el │ │ │ │ ├── form-data │ │ │ │ │ └── node_modules │ │ │ │ │ │ ├── combined-stream │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── delayed-stream │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ │ │ └── common.js │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── run.js │ │ │ │ │ │ └── async │ │ │ │ │ │ └── component.json │ │ │ │ ├── qs │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .gitmodules │ │ │ │ ├── oauth-sign │ │ │ │ │ └── README.md │ │ │ │ ├── tunnel-agent │ │ │ │ │ └── README.md │ │ │ │ ├── aws-sign │ │ │ │ │ └── README.md │ │ │ │ ├── cookie-jar │ │ │ │ │ └── README.md │ │ │ │ └── forever-agent │ │ │ │ │ └── README.md │ │ │ └── lib │ │ │ │ ├── copy.js │ │ │ │ └── debug.js │ │ ├── fs-extra │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── ncp │ │ │ │ │ └── rimraf │ │ │ │ ├── ncp │ │ │ │ │ ├── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── c │ │ │ │ │ │ │ ├── d │ │ │ │ │ │ │ ├── e │ │ │ │ │ │ │ ├── f │ │ │ │ │ │ │ ├── sub │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── a │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── b │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── jsonfile │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── CHANGELOG.md │ │ │ │ ├── mkdirp │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── examples │ │ │ │ │ │ └── pow.js │ │ │ │ └── rimraf │ │ │ │ │ ├── node_modules │ │ │ │ │ └── graceful-fs │ │ │ │ │ │ └── .npmignore │ │ │ │ │ ├── test │ │ │ │ │ ├── test-sync.js │ │ │ │ │ ├── test-async.js │ │ │ │ │ └── run.sh │ │ │ │ │ └── AUTHORS │ │ │ └── lib │ │ │ │ └── mkdir.js │ │ ├── decompress-zip │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ └── nopt │ │ │ │ ├── binary │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── chainsaw │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ └── traverse │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ │ ├── negative.js │ │ │ │ │ │ │ │ └── leaves.js │ │ │ │ │ │ └── buffers │ │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ └── slice.js │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── example │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ ├── buf.js │ │ │ │ │ │ └── stream.js │ │ │ │ │ └── test │ │ │ │ │ │ └── from_buffer.js │ │ │ │ ├── nopt │ │ │ │ │ └── .npmignore │ │ │ │ ├── touch │ │ │ │ │ └── node_modules │ │ │ │ │ │ ├── nopt │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ └── .bin │ │ │ │ │ │ └── nopt │ │ │ │ ├── mkpath │ │ │ │ │ └── .npmignore │ │ │ │ └── readable-stream │ │ │ │ │ ├── duplex.js │ │ │ │ │ ├── transform.js │ │ │ │ │ ├── writable.js │ │ │ │ │ ├── passthrough.js │ │ │ │ │ └── node_modules │ │ │ │ │ └── core-util-is │ │ │ │ │ └── README.md │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── .editorconfig │ │ │ └── lib │ │ │ │ └── signatures.js │ │ ├── temp │ │ │ ├── node_modules │ │ │ │ └── rimraf │ │ │ │ │ ├── node_modules │ │ │ │ │ └── graceful-fs │ │ │ │ │ │ └── .npmignore │ │ │ │ │ ├── test │ │ │ │ │ ├── test-sync.js │ │ │ │ │ ├── test-async.js │ │ │ │ │ └── run.sh │ │ │ │ │ └── AUTHORS │ │ │ ├── .travis.yml │ │ │ └── .npmignore │ │ └── rewire │ │ │ ├── test │ │ │ ├── testModules │ │ │ │ ├── throwError.js │ │ │ │ ├── fake_node_modules │ │ │ │ │ └── rewire │ │ │ │ │ │ └── package.json │ │ │ │ ├── module.coffee │ │ │ │ ├── emptyModule.js │ │ │ │ ├── debuggerModule.js │ │ │ │ ├── someOtherModule.js │ │ │ │ └── strictModule.js │ │ │ └── debug.test.js │ │ │ ├── .travis.yml │ │ │ ├── .npmignore │ │ │ └── lib │ │ │ └── detectStrictMode.js │ │ ├── README.md │ │ └── package.json ├── extensions │ ├── default │ │ ├── UrlCodeHints │ │ │ ├── testfiles │ │ │ │ └── subfolder │ │ │ │ │ ├── test.js │ │ │ │ │ ├── test.css │ │ │ │ │ └── chevron.png │ │ │ └── data.json │ │ ├── StaticServer │ │ │ ├── unittest-files │ │ │ │ ├── folder1 │ │ │ │ │ └── index.txt │ │ │ │ └── folder2 │ │ │ │ │ └── index.txt │ │ │ └── node │ │ │ │ └── node_modules │ │ │ │ └── connect │ │ │ │ ├── node_modules │ │ │ │ ├── bytes │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── component.json │ │ │ │ │ └── History.md │ │ │ │ ├── fresh │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ └── Makefile │ │ │ │ ├── buffer-crc32 │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── cookie │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── test │ │ │ │ │ │ └── mocha.opts │ │ │ │ │ └── .travis.yml │ │ │ │ ├── multiparty │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── stream-counter │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ └── test.txt │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ └── readable-stream │ │ │ │ │ │ │ ├── duplex.js │ │ │ │ │ │ │ ├── transform.js │ │ │ │ │ │ │ ├── writable.js │ │ │ │ │ │ │ └── passthrough.js │ │ │ │ │ ├── test │ │ │ │ │ │ └── fixture │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ ├── plain.txt │ │ │ │ │ │ │ ├── funkyfilename.txt │ │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ │ ├── pf1y5.png │ │ │ │ │ │ │ ├── beta-sticker-1.png │ │ │ │ │ │ │ ├── binaryfile.tar.gz │ │ │ │ │ │ │ └── menu_separator.png │ │ │ │ │ │ │ ├── multi_video.upload │ │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── encoding │ │ │ │ │ │ │ └── pf1y5.png.http │ │ │ │ │ │ │ └── special-chars-in-filename │ │ │ │ │ │ │ └── info.md │ │ │ │ │ └── .travis.yml │ │ │ │ ├── send │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── range-parser │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── History.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── Makefile │ │ │ │ ├── debug │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── index.js │ │ │ │ │ ├── example │ │ │ │ │ │ └── wildcards.js │ │ │ │ │ └── component.json │ │ │ │ ├── pause │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ └── Makefile │ │ │ │ ├── cookie-signature │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Makefile │ │ │ │ │ └── History.md │ │ │ │ └── qs │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .gitmodules │ │ │ │ ├── .travis.yml │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ └── public │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── icons │ │ │ │ │ ├── page.png │ │ │ │ │ ├── page_add.png │ │ │ │ │ ├── page_code.png │ │ │ │ │ ├── page_copy.png │ │ │ │ │ ├── page_edit.png │ │ │ │ │ ├── page_find.png │ │ │ │ │ ├── page_gear.png │ │ │ │ │ ├── page_go.png │ │ │ │ │ ├── page_key.png │ │ │ │ │ ├── page_link.png │ │ │ │ │ ├── page_red.png │ │ │ │ │ ├── page_save.png │ │ │ │ │ ├── page_word.png │ │ │ │ │ ├── page_attach.png │ │ │ │ │ ├── page_delete.png │ │ │ │ │ ├── page_error.png │ │ │ │ │ ├── page_excel.png │ │ │ │ │ ├── page_green.png │ │ │ │ │ ├── page_paste.png │ │ │ │ │ ├── page_white.png │ │ │ │ │ ├── page_world.png │ │ │ │ │ ├── page_lightning.png │ │ │ │ │ ├── page_refresh.png │ │ │ │ │ ├── page_white_add.png │ │ │ │ │ ├── page_white_c.png │ │ │ │ │ ├── page_white_cd.png │ │ │ │ │ ├── page_white_cup.png │ │ │ │ │ ├── page_white_dvd.png │ │ │ │ │ ├── page_white_get.png │ │ │ │ │ ├── page_white_go.png │ │ │ │ │ ├── page_white_h.png │ │ │ │ │ ├── page_white_key.png │ │ │ │ │ ├── page_white_php.png │ │ │ │ │ ├── page_white_put.png │ │ │ │ │ ├── page_white_tux.png │ │ │ │ │ ├── page_white_zip.png │ │ │ │ │ ├── page_paintbrush.png │ │ │ │ │ ├── page_white_code.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ ├── page_white_error.png │ │ │ │ │ ├── page_white_excel.png │ │ │ │ │ ├── page_white_find.png │ │ │ │ │ ├── page_white_flash.png │ │ │ │ │ ├── page_white_gear.png │ │ │ │ │ ├── page_white_link.png │ │ │ │ │ ├── page_white_medal.png │ │ │ │ │ ├── page_white_paint.png │ │ │ │ │ ├── page_white_paste.png │ │ │ │ │ ├── page_white_ruby.png │ │ │ │ │ ├── page_white_stack.png │ │ │ │ │ ├── page_white_star.png │ │ │ │ │ ├── page_white_text.png │ │ │ │ │ ├── page_white_width.png │ │ │ │ │ ├── page_white_word.png │ │ │ │ │ ├── page_white_world.png │ │ │ │ │ ├── page_white_acrobat.png │ │ │ │ │ ├── page_white_camera.png │ │ │ │ │ ├── page_white_code_red.png │ │ │ │ │ ├── page_white_csharp.png │ │ │ │ │ ├── page_white_database.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_freehand.png │ │ │ │ │ ├── page_white_magnify.png │ │ │ │ │ ├── page_white_office.png │ │ │ │ │ ├── page_white_picture.png │ │ │ │ │ ├── page_white_swoosh.png │ │ │ │ │ ├── page_white_vector.png │ │ │ │ │ ├── page_white_wrench.png │ │ │ │ │ ├── page_white_coldfusion.png │ │ │ │ │ ├── page_white_compressed.png │ │ │ │ │ ├── page_white_cplusplus.png │ │ │ │ │ ├── page_white_horizontal.png │ │ │ │ │ ├── page_white_lightning.png │ │ │ │ │ ├── page_white_paintbrush.png │ │ │ │ │ ├── page_white_powerpoint.png │ │ │ │ │ ├── page_white_text_width.png │ │ │ │ │ ├── page_white_actionscript.png │ │ │ │ │ └── page_white_visualstudio.png │ │ │ │ │ └── error.html │ │ │ │ └── .npmignore │ │ ├── JSLint │ │ │ └── unittest-files │ │ │ │ ├── no-errors.js │ │ │ │ └── errors.js │ │ ├── HtmlEntityCodeHints │ │ │ └── styles.css │ │ ├── JavaScriptCodeHints │ │ │ ├── unittest-files │ │ │ │ ├── preference-test-files │ │ │ │ │ ├── defaults-test │ │ │ │ │ │ └── .jscodehints │ │ │ │ │ ├── negative-test │ │ │ │ │ │ └── .jscodehints │ │ │ │ │ └── positive-test │ │ │ │ │ │ └── .jscodehints │ │ │ │ ├── non-module-test-files │ │ │ │ │ ├── a │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── .jscodehints │ │ │ │ │ ├── c │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── b │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── b1 │ │ │ │ │ │ │ └── b1.js │ │ │ │ │ ├── d │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ ├── d2.js │ │ │ │ │ │ ├── d23.js │ │ │ │ │ │ └── d3-excluded.js │ │ │ │ │ └── excluded │ │ │ │ │ │ └── e.js │ │ │ │ └── module-test-files │ │ │ │ │ ├── Car.js │ │ │ │ │ ├── credits.js │ │ │ │ │ ├── products.js │ │ │ │ │ └── shirt.js │ │ │ ├── ParameterHintTemplate.html │ │ │ └── keyboard.json │ │ ├── CloseOthers │ │ │ ├── unittest-files │ │ │ │ └── dummy.js │ │ │ └── settings.json │ │ ├── JavaScriptQuickEdit │ │ │ └── unittest-files │ │ │ │ ├── jquery-ui │ │ │ │ ├── tests │ │ │ │ │ ├── unit │ │ │ │ │ │ ├── autocomplete │ │ │ │ │ │ │ ├── remote_string_array.txt │ │ │ │ │ │ │ ├── remote_object_array_labels.txt │ │ │ │ │ │ │ └── remote_object_array_values.txt │ │ │ │ │ │ ├── tabs │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ └── test.html │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ ├── button_events.js │ │ │ │ │ │ │ └── button_common.js │ │ │ │ │ │ ├── resizable │ │ │ │ │ │ │ ├── resizable_events.js │ │ │ │ │ │ │ ├── resizable_methods.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ └── test.jpg │ │ │ │ │ │ ├── sortable │ │ │ │ │ │ │ └── sortable_core.js │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── jqueryui_32x32.png │ │ │ │ │ │ ├── progressbar │ │ │ │ │ │ │ └── progressbar_common.js │ │ │ │ │ │ ├── datepicker │ │ │ │ │ │ │ └── datepicker_defaults.js │ │ │ │ │ │ ├── qunit-composite.css │ │ │ │ │ │ ├── spinner │ │ │ │ │ │ │ └── spinner_test_helpers.js │ │ │ │ │ │ ├── droppable │ │ │ │ │ │ │ └── droppable_common.js │ │ │ │ │ │ ├── selectable │ │ │ │ │ │ │ └── selectable_common.js │ │ │ │ │ │ └── menu │ │ │ │ │ │ │ └── menu_common.js │ │ │ │ │ ├── visual │ │ │ │ │ │ └── visual.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.css │ │ │ │ ├── demos │ │ │ │ │ ├── tabs │ │ │ │ │ │ └── ajax │ │ │ │ │ │ │ └── content4-broken.php │ │ │ │ │ ├── tooltip │ │ │ │ │ │ ├── ajax │ │ │ │ │ │ │ ├── content1.html │ │ │ │ │ │ │ └── content2.html │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── st-stephens.jpg │ │ │ │ │ │ │ └── tower-bridge.jpg │ │ │ │ │ ├── images │ │ │ │ │ │ ├── calendar.gif │ │ │ │ │ │ ├── pbar-ani.gif │ │ │ │ │ │ ├── demo-config-on.gif │ │ │ │ │ │ ├── icon-docs-info.gif │ │ │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ │ │ └── demo-spindown-closed.gif │ │ │ │ │ ├── position │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── earth.jpg │ │ │ │ │ │ │ ├── flight.jpg │ │ │ │ │ │ │ └── rocket.jpg │ │ │ │ │ ├── datepicker │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── calendar.gif │ │ │ │ │ ├── droppable │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ │ ├── progressbar │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── pbar-ani.gif │ │ │ │ │ └── autocomplete │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ ├── themes │ │ │ │ │ └── base │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ └── jquery.ui.all.css │ │ │ │ ├── .jshintrc │ │ │ │ ├── .editorconfig │ │ │ │ └── ui │ │ │ │ │ └── .jshintrc │ │ │ │ └── syntax │ │ │ │ ├── tokens.js │ │ │ │ ├── file1.js │ │ │ │ ├── test1main.js │ │ │ │ └── test1inline.js │ │ ├── QuickView │ │ │ ├── preview_bg.png │ │ │ └── QuickViewTemplate.html │ │ ├── RecentProjects │ │ │ └── keyboard.json │ │ ├── InlineTimingFunctionEditor │ │ │ └── grid.png │ │ ├── InlineColorEditor │ │ │ ├── img │ │ │ │ ├── color_thumb_back.png │ │ │ │ ├── grabber_color-well.png │ │ │ │ ├── grabber_gradient.png │ │ │ │ ├── color_thumb_back@2x.png │ │ │ │ ├── grabber_color-slider.png │ │ │ │ ├── grabber_gradient@2x.png │ │ │ │ ├── grabber_color-slider@2x.png │ │ │ │ └── grabber_color-well@2x.png │ │ │ └── unittest-files │ │ │ │ └── unittests.html │ │ ├── WebPlatformDocs │ │ │ └── unittest-files │ │ │ │ ├── test1.css │ │ │ │ └── test1.html │ │ ├── README.txt │ │ └── DebugCommands │ │ │ └── keyboard.json │ ├── samples │ │ ├── InlineImageViewer │ │ │ └── InlineImageViewer.html │ │ └── README.txt │ └── dev │ │ └── README.txt ├── thirdparty │ ├── smart-auto-complete-local │ │ └── spec │ │ │ └── core │ │ │ └── SpecHelper.js │ └── jstree_pre1.0_fix_1 │ │ └── themes │ │ ├── apple │ │ ├── bg.jpg │ │ ├── d.png │ │ ├── dot_for_ie.gif │ │ └── throbber.gif │ │ ├── classic │ │ ├── d.gif │ │ ├── d.png │ │ ├── throbber.gif │ │ └── dot_for_ie.gif │ │ ├── default │ │ ├── d.gif │ │ ├── d.png │ │ └── throbber.gif │ │ └── default-rtl │ │ ├── d.gif │ │ ├── d.png │ │ ├── dots.gif │ │ └── throbber.gif ├── styles │ ├── images │ │ ├── preview_bg.png │ │ ├── throbber.gif │ │ ├── active_back.png │ │ ├── scrollbar-mac-bg.png │ │ ├── propertiespanel_back.png │ │ ├── scrollbar-mac-corner.png │ │ ├── horiz-thumb-fw-outline.png │ │ ├── propertiespanel_back@2x.png │ │ ├── spinner_large_sprites36.png │ │ ├── spinner_small_sprites12.png │ │ ├── vertical-thumb-fw-outline.png │ │ ├── spinner_large_sprites36@2x.png │ │ ├── spinner_small_sprites12@2x.png │ │ ├── stepper-arrow-sprites.svg │ │ ├── horizontal-dash.svg │ │ └── vertical-dash.svg │ ├── fonts │ │ ├── SourceSansPro │ │ │ ├── SourceSansPro-It.ttf │ │ │ ├── SourceSansPro-Light.ttf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ └── SourceSansPro-Semibold.ttf │ │ └── SourceCodePro │ │ │ ├── SourceCodePro-Medium.ttf │ │ │ └── SourceCodePro-Regular.ttf │ └── bootstrap │ │ ├── layouts.less │ │ └── component-animations.less └── htmlContent │ ├── contributors-list.html │ ├── code-hint-list.html │ ├── search-dialog.html │ ├── search-panel.html │ ├── update-list.html │ ├── problems-panel.html │ ├── stylesheets-menu.html │ └── problems-panel-table.html ├── .gitattributes ├── .travis.yml └── samples ├── fi └── Aloitus │ └── screenshots │ └── quick-edit.png ├── sv └── Kom igang │ └── screenshots │ └── quick-edit.png ├── it └── Primi passi │ └── screenshots │ └── quick-edit.png ├── de └── Erste Schritte │ └── screenshots │ └── quick-edit.png ├── es └── Primeros Pasos │ └── screenshots │ └── quick-edit.png ├── fr └── Premiers pas │ └── screenshots │ └── quick-edit.png ├── pl └── Szybki Start │ └── screenshots │ └── quick-edit.png ├── ru └── Getting Started │ └── screenshots │ └── quick-edit.png ├── pt-br └── Primeiros Passos │ └── screenshots │ └── quick-edit.png ├── pt-pt └── Primeiros Passos │ └── screenshots │ └── quick-edit.png └── root └── Getting Started └── screenshots └── quick-edit.png /test/perf/OpenFile-perf-files/blank.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/ProjectManager-test-files/file.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/thirdparty/jasmine-core/spec: -------------------------------------------------------------------------------- 1 | ../../spec -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/simple1.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/file_one.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/file_two.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/ProjectManager-test-files/directory/file.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/file_three.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /test/spec/Document-test-files/test.js: -------------------------------------------------------------------------------- 1 | // test.js content -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/directory/file_one.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/file_one.txt: -------------------------------------------------------------------------------- 1 | Hello world -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/file_three.txt: -------------------------------------------------------------------------------- 1 | Hello world -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/file_two.txt: -------------------------------------------------------------------------------- 1 | Hello world -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/semver/.npmignore: -------------------------------------------------------------------------------- 1 | # nada 2 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/.bin/ncp: -------------------------------------------------------------------------------- 1 | ../ncp/bin/ncp -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/directory/directory/file_one.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/sub/b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/rename_me/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, World. 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/jsonfile/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/jsonfile/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/CodeHint-test-files/test.clj: -------------------------------------------------------------------------------- 1 | (defn square [x] 2 | (* x x)) 3 | -------------------------------------------------------------------------------- /test/spec/Document-test-files/test.css: -------------------------------------------------------------------------------- 1 | .testClass { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/ExtensionUtils-test-files/bad-import.css: -------------------------------------------------------------------------------- 1 | @import "does-not-exist.css" -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/User StyleSheets/Custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/.bin/ncp: -------------------------------------------------------------------------------- 1 | ../ncp/bin/ncp -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/semver/head.js: -------------------------------------------------------------------------------- 1 | ;(function(exports) { 2 | 3 | -------------------------------------------------------------------------------- /src/extensions/default/UrlCodeHints/testfiles/subfolder/test.js: -------------------------------------------------------------------------------- 1 | /* test.js */ 2 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/b: -------------------------------------------------------------------------------- 1 | Hello ncp 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-3/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-4/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-5/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-3/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-4/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-5/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/.bin/rimraf: -------------------------------------------------------------------------------- 1 | ../rimraf/bin.js -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/sub/b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/a: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /test/spec/DocumentCommandHandlers-test-files/test.js: -------------------------------------------------------------------------------- 1 | var myContent="This is awesome!"; -------------------------------------------------------------------------------- /test/spec/DocumentCommandHandlers-test-files/test2.js: -------------------------------------------------------------------------------- 1 | var myContent="This is awesome!"; -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/dev/mock-extension-2/main.js: -------------------------------------------------------------------------------- 1 | // Dummy main.js file -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/user/mock-extension-3/main.js: -------------------------------------------------------------------------------- 1 | // Dummy main.js file -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/user/mock-extension-4/main.js: -------------------------------------------------------------------------------- 1 | // Dummy main.js file -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-2/sub/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-4/sub/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-5/sub/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-6/top1/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-4/sub/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-5/sub/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-6/top1/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/extension-test-files/invalid-zip-file.zip: -------------------------------------------------------------------------------- 1 | NOPE. THIS IS NOT A ZIP FILE. 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/.bin/decompress-zip: -------------------------------------------------------------------------------- 1 | ../decompress-zip/bin/decompress-zip -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/.bin/nopt: -------------------------------------------------------------------------------- 1 | ../nopt/bin/nopt.js -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/mkdirp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/sub/a: -------------------------------------------------------------------------------- 1 | Hello nodejitsu 2 | -------------------------------------------------------------------------------- /test/spec/EditorCommandHandlers-test-files/test.css: -------------------------------------------------------------------------------- 1 | .testClass { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/default/mock-extension-1/main.js: -------------------------------------------------------------------------------- 1 | // Dummy main.js file -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/user/mock-legacy-extension/main.js: -------------------------------------------------------------------------------- 1 | // Dummy main.js file -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-1/sub/sub2/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-4/sub/sub2/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-5/sub/sub2/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-1/sub/sub2/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-5/sub/sub2/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/ViewCommandHandlers-test-files/test.css: -------------------------------------------------------------------------------- 1 | .testClass { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/touch/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/jsonfile/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/a: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/b: -------------------------------------------------------------------------------- 1 | Hello ncp 2 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/unittest-files/folder1/index.txt: -------------------------------------------------------------------------------- 1 | This is a file in folder 1. -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/unittest-files/folder2/index.txt: -------------------------------------------------------------------------------- 1 | This is a file in folder 2. -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/user/install-later-extension/main.js: -------------------------------------------------------------------------------- 1 | // Dummy main.js file -------------------------------------------------------------------------------- /test/spec/InlineEditorProviders-test-files/testOneRuleFile.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-5/sub/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-6/top2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/simple1.css: -------------------------------------------------------------------------------- 1 | .testClass { 2 | color: #000; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-5/sub/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-6/top2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/mkpath/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | -------------------------------------------------------------------------------- /src/extensions/default/JSLint/unittest-files/no-errors.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | "use strict"; 3 | } -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /src/thirdparty/smart-auto-complete-local/spec/core/SpecHelper.js: -------------------------------------------------------------------------------- 1 | beforeEach(function() { 2 | }); 3 | -------------------------------------------------------------------------------- /test/spec/EditorOptionHandlers-test-files/test.js: -------------------------------------------------------------------------------- 1 | var myContent = "This is awesome!"; 2 | // Yes, it is! -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-1/sub/sub2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-2/sub/sub2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-3/sub/sub2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/dynamic-project-4/sub/sub2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/simpleShared.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-1/sub/sub2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-3/sub/sub2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-4/sub/sub2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red } -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/mkdirp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/test/fixtures/src/sub/a: -------------------------------------------------------------------------------- 1 | Hello nodejitsu 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/node-uuid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /src/extensions/default/JSLint/unittest-files/errors.js: -------------------------------------------------------------------------------- 1 | // mispelled function keyword 2 | funtion foo() {}; -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/rimraf/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui bdd 3 | --growl 4 | --timeout 7000 -------------------------------------------------------------------------------- /test/spec/CodeHint-test-files/test1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | < 5 | 6 | -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/write_test.txt: -------------------------------------------------------------------------------- 1 | This content was generated from LowLevelFileIO-test.js -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/touch/node_modules/.bin/nopt: -------------------------------------------------------------------------------- 1 | ../nopt/bin/nopt.js -------------------------------------------------------------------------------- /src/extensions/default/HtmlEntityCodeHints/styles.css: -------------------------------------------------------------------------------- 1 | span.entity-display-character { 2 | float: right; 3 | } -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/preference-test-files/defaults-test/.jscodehints: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/cookie/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | /test/assets 4 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/rimraf/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/temp/node_modules/rimraf/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /src/styles/images/preview_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/preview_bg.png -------------------------------------------------------------------------------- /src/styles/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/throbber.gif -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.9 6 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/jsonfile/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui qunit 3 | --timeout 2000 -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/node_modules/chainsaw/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/boom/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/hoek/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /src/extensions/default/UrlCodeHints/testfiles/subfolder/test.css: -------------------------------------------------------------------------------- 1 | /* test.css */ 2 | body { 3 | margin: 0; 4 | } 5 | -------------------------------------------------------------------------------- /src/styles/images/active_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/active_back.png -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/jsonfile/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/cryptiles/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/http-signature/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/send/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .*.sw[op] 3 | .DS_Store 4 | test/fixtures/out 5 | -------------------------------------------------------------------------------- /test/thirdparty/jasmine-core/version.rb: -------------------------------------------------------------------------------- 1 | module Jasmine 2 | module Core 3 | VERSION = "1.1.0" 4 | end 5 | end 6 | 7 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /src/extensions/default/CloseOthers/unittest-files/dummy.js: -------------------------------------------------------------------------------- 1 | //This is dummy file. To commit unnittest-files folder git needs a file. -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /src/styles/images/scrollbar-mac-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/scrollbar-mac-bg.png -------------------------------------------------------------------------------- /test/spec/ExtensionUtils-test-files/sub dir/fifth.less: -------------------------------------------------------------------------------- 1 | // fifth.less 2 | 3 | #project-title { 4 | letter-spacing: 9px; 5 | } 6 | -------------------------------------------------------------------------------- /test/spec/ExtensionUtils-test-files/sub dir/fourth.css: -------------------------------------------------------------------------------- 1 | /* fourth.css */ 2 | 3 | #project-title { 4 | font-family: serif; 5 | } -------------------------------------------------------------------------------- /test/spec/ExtensionUtils-test-files/sub dir/fourth.less: -------------------------------------------------------------------------------- 1 | // fourth.less 2 | 3 | #project-title { 4 | font-weight: 800; 5 | } 6 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/autocomplete/remote_string_array.txt: -------------------------------------------------------------------------------- 1 | ["java", "javascript"] -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/tabs/data/test.html: -------------------------------------------------------------------------------- 1 |

…content loaded via Ajax.

-------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/test/test.txt: -------------------------------------------------------------------------------- 1 | 1234 2 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /src/styles/images/propertiespanel_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/propertiespanel_back.png -------------------------------------------------------------------------------- /src/styles/images/scrollbar-mac-corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/scrollbar-mac-corner.png -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/jsonfile/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 0.0.1 / 2012-09-10 2 | ------------------ 3 | * Initial release. 4 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/mkdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.9 6 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/ncp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.4 5 | - 0.6 6 | - 0.7 7 | -------------------------------------------------------------------------------- /test/smokes/server-tests/images/events.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/events.jpg -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-2/sub/sub2/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red;} 2 | 3 | h1 { color: blue; } 4 | -------------------------------------------------------------------------------- /test/spec/extension-test-files/badname.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/badname.zip -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli 6 | - npm install -g jasmine-node -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/node_modules/chainsaw/node_modules/traverse/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .*.sw[op] 3 | .DS_Store 4 | test/fixtures/out 5 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/test/testModules/throwError.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | throw new Error(); 3 | }; 4 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/temp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.8" 6 | - "0.6" -------------------------------------------------------------------------------- /src/extensions/default/CloseOthers/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "close_others": true, 3 | "close_above": true, 4 | "close_below": true 5 | } -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/plain.txt: -------------------------------------------------------------------------------- 1 | I am a plain text file 2 | -------------------------------------------------------------------------------- /src/styles/images/horiz-thumb-fw-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/horiz-thumb-fw-outline.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/lrg_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/lrg_hero.jpg -------------------------------------------------------------------------------- /test/smokes/server-tests/images/lrg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/lrg_logo.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/med_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/med_hero.jpg -------------------------------------------------------------------------------- /test/smokes/server-tests/images/med_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/med_logo.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/sml_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/sml_logo.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/specials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/specials.jpg -------------------------------------------------------------------------------- /test/spec/ExtensionUtils-test-files/sub dir/third.css: -------------------------------------------------------------------------------- 1 | /* third.css */ 2 | 3 | #project-title { 4 | font-variant: small-caps; 5 | } 6 | -------------------------------------------------------------------------------- /samples/fi/Aloitus/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/fi/Aloitus/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/sv/Kom igang/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/sv/Kom igang/screenshots/quick-edit.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/mkdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.9 6 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/form-data/node_modules/combined-stream/.npmignore: -------------------------------------------------------------------------------- 1 | *.un~ 2 | /node_modules 3 | /test/tmp 4 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | 6 | script: 7 | - npm test -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/test/testModules/fake_node_modules/rewire/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "../../../../lib/index.js" 3 | } -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/test/testModules/module.coffee: -------------------------------------------------------------------------------- 1 | fs = require "fs" 2 | 3 | exports.readFileSync = () -> fs.readFileSync() -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/temp/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .\#* 3 | /node_modules 4 | \#* 5 | npm-debug.log 6 | node_modules 7 | *.tgz 8 | -------------------------------------------------------------------------------- /src/extensions/default/QuickView/preview_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/QuickView/preview_bg.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /src/styles/images/propertiespanel_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/propertiespanel_back@2x.png -------------------------------------------------------------------------------- /src/styles/images/spinner_large_sprites36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/spinner_large_sprites36.png -------------------------------------------------------------------------------- /src/styles/images/spinner_small_sprites12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/spinner_small_sprites12.png -------------------------------------------------------------------------------- /src/styles/images/vertical-thumb-fw-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/vertical-thumb-fw-outline.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/events.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/events.jpg -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/notlive.css: -------------------------------------------------------------------------------- 1 | #testId { 2 | background-color:#06F 3 | } 4 | 5 | .testClass { 6 | color:#900 7 | } 8 | 9 | -------------------------------------------------------------------------------- /test/spec/extension-test-files/has-macosx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/has-macosx.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/invalid-json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/invalid-json.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/missing-main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/missing-main.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/with-symlink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/with-symlink.zip -------------------------------------------------------------------------------- /samples/it/Primi passi/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/it/Primi passi/screenshots/quick-edit.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/boom/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/sntp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /src/extensions/default/QuickView/QuickViewTemplate.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
-------------------------------------------------------------------------------- /src/styles/images/spinner_large_sprites36@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/spinner_large_sprites36@2x.png -------------------------------------------------------------------------------- /src/styles/images/spinner_small_sprites12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/images/spinner_small_sprites12@2x.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/lrg_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/lrg_hero.jpg -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/lrg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/lrg_logo.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/med_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/med_hero.jpg -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/med_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/med_logo.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/sml_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/sml_logo.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/specials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/specials.jpg -------------------------------------------------------------------------------- /test/smokes/server-tests/images/icon_chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/icon_chevron.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/icon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/icon_facebook.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/server-tests/images/icon_twitter.png -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/NoInit/main.js: -------------------------------------------------------------------------------- 1 | /*global define */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | }); -------------------------------------------------------------------------------- /test/spec/extension-test-files/bogus-top-dir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/bogus-top-dir.zip -------------------------------------------------------------------------------- /samples/de/Erste Schritte/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/de/Erste Schritte/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/es/Primeros Pasos/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/es/Primeros Pasos/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/fr/Premiers pas/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/fr/Premiers pas/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/pl/Szybki Start/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/pl/Szybki Start/screenshots/quick-edit.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/cryptiles/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/tooltip/ajax/content1.html: -------------------------------------------------------------------------------- 1 |

This content was loaded via ajax.

-------------------------------------------------------------------------------- /src/styles/fonts/SourceSansPro/SourceSansPro-It.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/fonts/SourceSansPro/SourceSansPro-It.ttf -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/icon_chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/icon_chevron.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/icon_twitter.png -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/cant_read_here/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is marked write only when tests are run. Attempts to read files here should fail. -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/cant_write_here/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is marked read only when tests are run. Attempts to write files here should fail. -------------------------------------------------------------------------------- /test/spec/extension-test-files/invalid-version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/invalid-version.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/main-in-directory.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/main-in-directory.zip -------------------------------------------------------------------------------- /samples/ru/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/ru/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/ncp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.4 5 | - 0.6 6 | - 0.7 7 | - 0.8 8 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/http-signature/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/tooltip/ajax/content2.html: -------------------------------------------------------------------------------- 1 |

This other content was loaded via ajax.

-------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/autocomplete/remote_object_array_labels.txt: -------------------------------------------------------------------------------- 1 | [{"label":"java"},{"label":"javascript"}] -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/autocomplete/remote_object_array_values.txt: -------------------------------------------------------------------------------- 1 | [{"value":"java"},{"value":"javascript"}] -------------------------------------------------------------------------------- /src/extensions/default/RecentProjects/keyboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "recentProjects": [ 3 | { 4 | "key": "Ctrl-Alt-R" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/funkyfilename.txt: -------------------------------------------------------------------------------- 1 | I am a text file with a funky name! 2 | -------------------------------------------------------------------------------- /src/styles/fonts/SourceSansPro/SourceSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/fonts/SourceSansPro/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/apple/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/apple/bg.jpg -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/apple/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/apple/d.png -------------------------------------------------------------------------------- /test/node/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "brackets-testing", 3 | "version": "0.22.0", 4 | "dependencies": { 5 | "fs-extra": "0.5.x" 6 | } 7 | } -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/icon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/smokes/citrus completed/images/icon_facebook.png -------------------------------------------------------------------------------- /test/spec/DocumentCommandHandlers-test-files/couz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/DocumentCommandHandlers-test-files/couz.png -------------------------------------------------------------------------------- /test/spec/DocumentCommandHandlers-test-files/couz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/DocumentCommandHandlers-test-files/couz2.png -------------------------------------------------------------------------------- /samples/pt-br/Primeiros Passos/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/pt-br/Primeiros Passos/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/pt-pt/Primeiros Passos/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/pt-pt/Primeiros Passos/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/root/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/samples/root/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | *.un~ 2 | /node_modules/* 3 | -------------------------------------------------------------------------------- /src/styles/fonts/SourceCodePro/SourceCodePro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/fonts/SourceCodePro/SourceCodePro-Medium.ttf -------------------------------------------------------------------------------- /src/styles/fonts/SourceCodePro/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/fonts/SourceCodePro/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/SourceSansPro/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/fonts/SourceSansPro/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/SourceSansPro/SourceSansPro-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/styles/fonts/SourceSansPro/SourceSansPro-Semibold.ttf -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/classic/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/classic/d.gif -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/classic/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/classic/d.png -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/default/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/default/d.gif -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/default/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/default/d.png -------------------------------------------------------------------------------- /test/spec/ExtensionUtils-test-files/less.text: -------------------------------------------------------------------------------- 1 | /* basic.less */ 2 | #project-title { 3 | font-weight: 800; 4 | } 5 | #project-title { 6 | font-size: 66px; 7 | } 8 | -------------------------------------------------------------------------------- /test/spec/extension-test-files/basic-valid-extension.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/basic-valid-extension.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/incompatible-version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/incompatible-version.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/missing-name-version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/missing-name-version.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/missing-package-json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/missing-package-json.zip -------------------------------------------------------------------------------- /test/thirdparty/bootstrap2/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/thirdparty/bootstrap2/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/semver/semver.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensibility/node/node_modules/semver/semver.min.js.gz -------------------------------------------------------------------------------- /src/extensions/default/InlineTimingFunctionEditor/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/InlineTimingFunctionEditor/grid.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/pause/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.1 / 2010-01-03 3 | ================== 4 | 5 | * Initial release 6 | -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/default-rtl/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/default-rtl/d.gif -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/default-rtl/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/default-rtl/d.png -------------------------------------------------------------------------------- /test/spec/JSUtils-test-files/eof.js: -------------------------------------------------------------------------------- 1 | function eofFunc() { 2 | // this is a fake brace: { 3 | var foo; 4 | if (foo) { 5 | alert("brace: }"); 6 | } 7 | } -------------------------------------------------------------------------------- /test/spec/JSUtils-test-files/eof2.js: -------------------------------------------------------------------------------- 1 | function unclosed() { 2 | var foo; 3 | if (foo) { 4 | alert("bar"); 5 | } 6 | alert("something } else"); 7 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Cookies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Cookies -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Favicons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Favicons -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/History: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/History -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Web Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Web Data -------------------------------------------------------------------------------- /test/spec/extension-test-files/invalid-brackets-version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/invalid-brackets-version.zip -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | benchmark.js 4 | component.json 5 | examples.js 6 | History.md 7 | Makefile 8 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/ParameterHintTemplate.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/cookie/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.6" 4 | - "0.8" 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.9" 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/apple/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/apple/dot_for_ie.gif -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/apple/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/apple/throbber.gif -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/classic/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/classic/throbber.gif -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/default-rtl/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/default-rtl/dots.gif -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/default/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/default/throbber.gif -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/lib/mkdir.js: -------------------------------------------------------------------------------- 1 | var mkdirp = require('mkdirp'); 2 | 3 | module.exports.mkdirs = mkdirp; 4 | module.exports.mkdirsSync = mkdirp.sync; 5 | 6 | 7 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Last Tabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Last Tabs -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Shortcuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Shortcuts -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Top Sites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Top Sites -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/simple2.css: -------------------------------------------------------------------------------- 1 | #testId { 2 | background-color:rgba(102,102,204,.5); 3 | } 4 | 5 | .testClass { 6 | color:rgba(255,255,255,1); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /test/spec/extension-test-files/basic-valid-extension-0.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/basic-valid-extension-0.9.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/basic-valid-extension-2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/basic-valid-extension-2.0.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/missing-package-json-update.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/missing-package-json-update.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/one-level-extension-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/one-level-extension-master.zip -------------------------------------------------------------------------------- /test/thirdparty/bootstrap2/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/thirdparty/bootstrap2/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/semver/semver.browser.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensibility/node/node_modules/semver/semver.browser.js.gz -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/htmlContent/contributors-list.html: -------------------------------------------------------------------------------- 1 | {{#.}}{{login}}{{/.}} 2 | -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/classic/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/classic/dot_for_ie.gif -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Current Tabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Current Tabs -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Last Session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Last Session -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Visited Links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Visited Links -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/node-uuid/LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2012 Robert Kieffer 2 | MIT License - http://opensource.org/licenses/mit-license.php 3 | -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/color_thumb_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/InlineColorEditor/img/color_thumb_back.png -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_color-well.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/InlineColorEditor/img/grabber_color-well.png -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/InlineColorEditor/img/grabber_gradient.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = process.env.CONNECT_COV 3 | ? require('./lib-cov/connect') 4 | : require('./lib/connect'); -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/fresh/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.2.0 / 2013-08-11 3 | ================== 4 | 5 | * fix: return false for no-cache 6 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/extensions/default/UrlCodeHints/testfiles/subfolder/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/UrlCodeHints/testfiles/subfolder/chevron.png -------------------------------------------------------------------------------- /src/thirdparty/jstree_pre1.0_fix_1/themes/default-rtl/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/thirdparty/jstree_pre1.0_fix_1/themes/default-rtl/throbber.gif -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/rimraf/test/test-sync.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf.sync(path.join(__dirname, "target")) 4 | -------------------------------------------------------------------------------- /test/spec/ExtensionUtils-test-files/basic.less: -------------------------------------------------------------------------------- 1 | /* basic.less */ 2 | @import url("sub dir/fourth.less"); 3 | @size: 33px; 4 | 5 | #project-title { 6 | font-size: (2 * @size); 7 | } 8 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Archived History: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Archived History -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Current Session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Current Session -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/form-data/node_modules/combined-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/semver/foot.js: -------------------------------------------------------------------------------- 1 | 2 | })( 3 | typeof exports === 'object' ? exports : 4 | typeof define === 'function' && define.amd ? {} : 5 | semver = {} 6 | ); 7 | -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/color_thumb_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/InlineColorEditor/img/color_thumb_back@2x.png -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_color-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/InlineColorEditor/img/grabber_color-slider.png -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/InlineColorEditor/img/grabber_gradient@2x.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/a/a.js: -------------------------------------------------------------------------------- 1 | var app = app || {}; 2 | 3 | (function () { 4 | 'use strict'; 5 | 6 | app.a = 1; 7 | 8 | }()); 9 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | benchmark.js 4 | component.json 5 | examples.js 6 | History.md 7 | Makefile 8 | -------------------------------------------------------------------------------- /src/extensions/default/UrlCodeHints/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "htmlAttrs": { 3 | "href": { "attribOption": [] }, 4 | "src": { "attribOption": [] } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/extensions/samples/InlineImageViewer/InlineImageViewer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
-------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/default/mock-extension-1/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mock-extension-1", 3 | "description": "First mock extension", 4 | "version": "1.0.0" 5 | } -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/dev/mock-extension-2/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mock-extension-2", 3 | "description": "Second mock extension", 4 | "version": "1.0.0" 5 | } -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/user/mock-extension-3/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mock-extension-3", 3 | "description": "Third mock extension", 4 | "version": "1.0.0" 5 | } -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/user/mock-extension-4/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mock-extension-4", 3 | "description": "Fourth mock extension", 4 | "version": "1.0.0" 5 | } -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/readable-stream/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/temp/node_modules/rimraf/test/test-sync.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf.sync(path.join(__dirname, "target")) 4 | -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_color-slider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/InlineColorEditor/img/grabber_color-slider@2x.png -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_color-well@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/InlineColorEditor/img/grabber_color-well@2x.png -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/BadRequire/main.js: -------------------------------------------------------------------------------- 1 | /*global define, $ */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | require("notdefined"); 7 | }); -------------------------------------------------------------------------------- /test/spec/ExtensionUtils-test-files/basic.css: -------------------------------------------------------------------------------- 1 | /* basic.css */ 2 | @import "sub dir/second.css"; 3 | @import url( 'sub dir/fourth.css' ); 4 | 5 | #project-title { 6 | font-size: 25px; 7 | } 8 | -------------------------------------------------------------------------------- /test/spec/JSUtils-test-files/invalid.js: -------------------------------------------------------------------------------- 1 | function 0digitIdentifierStart () { 2 | } 3 | 4 | function .punctuationIdentifierStart () { 5 | } 6 | 7 | function punctuation.IdentifierPart () { 8 | } 9 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/History Index 2012-04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/History Index 2012-04 -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" 5 | before_script: 6 | - npm install grunt-cli -g 7 | - grunt test-files 8 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/rimraf/test/test-sync.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf.sync(path.join(__dirname, "target")) 4 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/oauth-sign/README.md: -------------------------------------------------------------------------------- 1 | oauth-sign 2 | ========== 3 | 4 | OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/bytes/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/fresh/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/pause/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /src/htmlContent/code-hint-list.html: -------------------------------------------------------------------------------- 1 | {{#hints}} 2 |
  • 3 | 4 | {{{formattedHint}}} 5 | 6 |
  • 7 | {{/hints}} -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/History Provider Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/History Provider Cache -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/images/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensibility/node/node_modules/request/node_modules/hawk/images/hawk.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensibility/node/node_modules/request/node_modules/hawk/images/logo.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/tunnel-agent/README.md: -------------------------------------------------------------------------------- 1 | tunnel-agent 2 | ============ 3 | 4 | HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/test/testModules/emptyModule.js: -------------------------------------------------------------------------------- 1 | "use strict"; // run code in ES5 strict mode 2 | 3 | var someVar; 4 | 5 | // Comment on file end. Hope this won't break anything -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Network Action Predictor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Network Action Predictor -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/lib/mkdir.js: -------------------------------------------------------------------------------- 1 | "use strict" 2 | 3 | var mkdirp = require('mkdirp'); 4 | 5 | module.exports.mkdirs = mkdirp; 6 | module.exports.mkdirsSync = mkdirp.sync; 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/lib/copy.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 | function copy (obj) { 3 | var o = {} 4 | Object.keys(obj).forEach(function (i) { 5 | o[i] = obj[i] 6 | }) 7 | return o 8 | } -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/cookie-signature/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /test/spec/extension-test-files/added-package-json-test/missing-package-json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/test/spec/extension-test-files/added-package-json-test/missing-package-json.zip -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/test/testModules/debuggerModule.js: -------------------------------------------------------------------------------- 1 | "use strict"; // run code in ES5 strict mode 2 | 3 | var myNumber = 0; 4 | 5 | module.exports = function () { 6 | myNumber = 1; 7 | }; -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/button/button_events.js: -------------------------------------------------------------------------------- 1 | /* 2 | * button_events.js 3 | */ 4 | (function($) { 5 | 6 | module("button: events"); 7 | 8 | })(jQuery); 9 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/send/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec \ 6 | --bail 7 | 8 | .PHONY: test -------------------------------------------------------------------------------- /src/extensions/default/WebPlatformDocs/unittest-files/test1.css: -------------------------------------------------------------------------------- 1 | {{0}}div { 2 | {{1}}border: 1px solid black{{2}}; 3 | {{3}}does-not-exist: 0; 4 | /* {{5}}color: #000 */ 5 | background: border{{4}}; 6 | } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-4/sub/sub2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/extensibility/node/README.md: -------------------------------------------------------------------------------- 1 | ## Brackets Extensibility 2 | 3 | This code is used by Brackets to implement its extension management features. It is likely not useful to anyone not working with Brackets extensions. 4 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/aws-sign/README.md: -------------------------------------------------------------------------------- 1 | aws-sign 2 | ======== 3 | 4 | AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module. 5 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | node_modules 15 | npm-debug.log -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/favicon.ico -------------------------------------------------------------------------------- /test/thirdparty/jasmine-core/example/src/Song.js: -------------------------------------------------------------------------------- 1 | function Song() { 2 | } 3 | 4 | Song.prototype.persistFavoriteStatus = function(value) { 5 | // something complicated 6 | throw new Error("not yet implemented"); 7 | }; -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/lib/debug.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 | function debug () { 3 | if (/\brequest\b/.test(process.env.NODE_DEBUG)) 4 | console.error('REQUEST %s', util.format.apply(util, arguments)) 5 | } -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/cookie-jar/README.md: -------------------------------------------------------------------------------- 1 | cookie-jar 2 | ========== 3 | 4 | Cookie Jar. Originally pulled from LearnBoost/tobi, maintained as vendor in request, now a standalone module. 5 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/resizable/resizable_events.js: -------------------------------------------------------------------------------- 1 | /* 2 | * resizable_events.js 3 | */ 4 | (function($) { 5 | 6 | module("resizable: events"); 7 | 8 | })(jQuery); 9 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/send/node_modules/range-parser/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/rimraf/test/test-async.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf(path.join(__dirname, "target"), function (er) { 4 | if (er) throw er 5 | }) 6 | -------------------------------------------------------------------------------- /test/spec/CSSUtils-test-files/universal.css: -------------------------------------------------------------------------------- 1 | * { 2 | color: red; 3 | } 4 | 5 | .firstGrade { 6 | color: white; 7 | } 8 | 9 | p { 10 | color: blue; 11 | } 12 | 13 | #brack3ts { 14 | color: yellow; 15 | } -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/sortable/sortable_core.js: -------------------------------------------------------------------------------- 1 | /* 2 | * sortable_core.js 3 | */ 4 | 5 | (function($) { 6 | 7 | module("sortable: core"); 8 | 9 | })(jQuery); 10 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/syntax/tokens.js: -------------------------------------------------------------------------------- 1 | function foo () { 2 | } 3 | 4 | var regExp = /{{0}}foo()/; 5 | /* 6 | {{1}}foo() 7 | */ 8 | // {{2}}foo() 9 | var str1 = "{{3}}foo()", str2 = '{{4}}foo()'; -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/mkdirp/examples/pow.js: -------------------------------------------------------------------------------- 1 | var mkdirp = require('mkdirp'); 2 | 3 | mkdirp('/tmp/foo/bar/baz', function (err) { 4 | if (err) console.error(err) 5 | else console.log('pow!') 6 | }); 7 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/temp/node_modules/rimraf/test/test-async.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf(path.join(__dirname, "target"), function (er) { 4 | if (er) throw er 5 | }) 6 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_add.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_code.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_copy.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_edit.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_find.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_gear.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_go.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_key.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_link.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_red.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_save.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_word.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/debug/index.js: -------------------------------------------------------------------------------- 1 | if ('undefined' == typeof window) { 2 | module.exports = require('./lib/debug'); 3 | } else { 4 | module.exports = require('./debug'); 5 | } 6 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/rimraf/test/test-async.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf(path.join(__dirname, "target"), function (er) { 4 | if (er) throw er 5 | }) 6 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/calendar.gif -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/.npmignore: -------------------------------------------------------------------------------- 1 | *.markdown 2 | *.md 3 | .git* 4 | Makefile 5 | benchmarks/ 6 | docs/ 7 | examples/ 8 | install.sh 9 | support/ 10 | test/ 11 | .DS_Store 12 | coverage.html 13 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_attach.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_delete.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_error.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_excel.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_green.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_paste.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_world.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/buffer-crc32/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | notifications: 6 | email: 7 | recipients: 8 | - brianloveswords@gmail.com -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/user/install-later-extension/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "install-later-extension", 3 | "description": "An extension from the registry that will be installed later", 4 | "version": "1.0.0" 5 | } -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/mkdirp/examples/pow.js: -------------------------------------------------------------------------------- 1 | var mkdirp = require('mkdirp'); 2 | 3 | mkdirp('/tmp/foo/bar/baz', function (err) { 4 | if (err) console.error(err) 5 | else console.log('pow!') 6 | }); 7 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/test/testModules/someOtherModule.js: -------------------------------------------------------------------------------- 1 | "use strict"; // run code in ES5 strict mode 2 | 3 | __filename = "/test/testModules/someOtherModule.js"; 4 | 5 | exports.fs = {}; 6 | exports.filename = __filename; -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/preference-test-files/negative-test/.jscodehints: -------------------------------------------------------------------------------- 1 | { 2 | "excluded-directories" : [], 3 | "excluded-files" : [], 4 | "max-file-count": -100, 5 | "max-file-size": 0 6 | } 7 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/resizable/resizable_methods.js: -------------------------------------------------------------------------------- 1 | /* 2 | * resizable_methods.js 3 | */ 4 | (function($) { 5 | 6 | module("resizable: methods"); 7 | 8 | 9 | })(jQuery); 10 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_lightning.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_refresh.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_add.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_c.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_cd.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_cup.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_dvd.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_get.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_go.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_h.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_key.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_php.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_put.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_tux.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_zip.png -------------------------------------------------------------------------------- /test/spec/InlineEditorProviders-test-files/test1.css: -------------------------------------------------------------------------------- 1 | {{0}}div { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | {{4}} 6 | {{1}}.foo { 7 | {{5}} color: #f00; 8 | {{6}} }{{3}} 9 | {{7}} 10 | {{2}}#myDiv { 11 | display: block; 12 | } -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_paintbrush.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_code.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_copy.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_edit.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_error.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_excel.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_find.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_flash.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_gear.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_link.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_medal.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_paint.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_paste.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_ruby.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_stack.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_star.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_text.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_width.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_word.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_world.png -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/rimraf/test/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | for i in test-*.js; do 4 | echo -n $i ... 5 | bash setup.sh 6 | node $i 7 | ! [ -d target ] 8 | echo "pass" 9 | done 10 | rm -rf target 11 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/form-data/node_modules/combined-stream/test/run.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var far = require('far').create(); 3 | 4 | far.add(__dirname); 5 | far.include(/test-.*\.js$/); 6 | 7 | far.execute(); 8 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /src/extensions/default/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains extensions that ship with brackets and are enabled 2 | by default. Examples include extensions for QuickOpen. 3 | 4 | (README also serves as a dummy file so this directory can be added to git.) 5 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_acrobat.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_camera.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_code_red.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_csharp.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_database.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_delete.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_freehand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_freehand.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_magnify.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_office.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_picture.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_swoosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_swoosh.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_vector.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_wrench.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/rimraf/test/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | for i in test-*.js; do 4 | echo -n $i ... 5 | bash setup.sh 6 | node $i 7 | ! [ -d target ] 8 | echo "pass" 9 | done 10 | rm -rf target 11 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/forever-agent/README.md: -------------------------------------------------------------------------------- 1 | forever-agent 2 | ============= 3 | 4 | HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/temp/node_modules/rimraf/test/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | for i in test-*.js; do 4 | echo -n $i ... 5 | bash setup.sh 6 | node $i 7 | ! [ -d target ] 8 | echo "pass" 9 | done 10 | rm -rf target 11 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/tooltip/images/st-stephens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/tooltip/images/st-stephens.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/resizable/images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/resizable/images/test.jpg -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_coldfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_coldfusion.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_compressed.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_cplusplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_cplusplus.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_horizontal.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_lightning.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_paintbrush.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_powerpoint.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_text_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_text_width.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/tooltip/images/tower-bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/tooltip/images/tower-bridge.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/visual/visual.css: -------------------------------------------------------------------------------- 1 | body { font-size: 62.5%; } 2 | #draggable, #resizable { width: 100px; height: 100px; background: #abc; } 3 | #droppable { width: 100px; height: 100px; background: #cde; } 4 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_actionscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_actionscript.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_visualstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_visualstudio.png -------------------------------------------------------------------------------- /test/spec/Document-test-files/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Simple Test 5 | 6 | 7 | 8 | 9 |

    Brackets is awesome!

    10 | 11 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/static-project-2/sub/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test 4 | 5 | 6 | 7 |

    Hello

    8 | 9 | -------------------------------------------------------------------------------- /test/spec/QuickOpen-test-files/somelines.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

    No Cat Pictures

    5 |

    This is your cat picture-free haven on the Internet. Congratulations for finding this site.

    6 | 7 | 8 | -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/InitResolved/main.js: -------------------------------------------------------------------------------- 1 | /*global define, $ */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | exports.initExtension = function () { 7 | return new $.Deferred().resolve(); 8 | }; 9 | }); -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /test/spec/EditorCommandHandlers-test-files/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Simple Test 5 | 6 | 7 | 8 | 9 |

    Brackets is awesome!

    10 | 11 | -------------------------------------------------------------------------------- /test/spec/ViewCommandHandlers-test-files/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Simple Test 5 | 6 | 7 | 8 | 9 |

    Brackets is awesome!

    10 | 11 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/blank.gif -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/pf1y5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/pf1y5.png -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/run.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var far = require('far').create(); 3 | 4 | far.add(__dirname); 5 | far.include(/test-.*\.js$/); 6 | 7 | far.execute(); 8 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/http-signature/.dir-locals.el: -------------------------------------------------------------------------------- 1 | ((nil . ((indent-tabs-mode . nil) 2 | (tab-width . 8) 3 | (fill-column . 80))) 4 | (js-mode . ((js-indent-level . 2) 5 | (indent-tabs-mode . nil) 6 | ))) -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/bytes/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bytes", 3 | "description": "byte size string parser / serializer", 4 | "keywords": ["bytes", "utility"], 5 | "version": "0.1.0", 6 | "scripts": ["index.js"] 7 | } 8 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/multi_video.upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/multi_video.upload -------------------------------------------------------------------------------- /src/styles/images/stepper-arrow-sprites.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /test/smokes/server-tests/css/citrus_mq.css: -------------------------------------------------------------------------------- 1 | /* Desktop */ 2 | @import url("desktop.css"); 3 | /* Phone */ 4 | @import url("phone.css") only screen and (max-width:320px); 5 | /* Tablet */ 6 | @import url("tablet.css") only screen and (min-width:321px) and (max-width:768px); 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/cryptiles/README.md: -------------------------------------------------------------------------------- 1 | cryptiles 2 | ========= 3 | 4 | General purpose crypto utilities 5 | 6 | [![Build Status](https://secure.travis-ci.org/hueniverse/cryptiles.png)](http://travis-ci.org/hueniverse/cryptiles) 7 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/keyboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "showParameterHint": [ 3 | { 4 | "key": "Ctrl-Shift-Space" 5 | }, 6 | { 7 | "key": "Ctrl-Shift-Space", 8 | "platform": "mac" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/syntax/file1.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global brackets, require */ 3 | 4 | var A1 = { propA : 1 }, 5 | A2 = { propA : 2 }, 6 | A3 = A2; 7 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/rimraf/node_modules/graceful-fs/README.md: -------------------------------------------------------------------------------- 1 | Just like node's `fs` module, but it does an incremental back-off when 2 | EMFILE is encountered. 3 | 4 | Useful in asynchronous situations where one needs to try to open lots 5 | and lots of files. 6 | -------------------------------------------------------------------------------- /test/smokes/citrus completed/css/citrus_mq.css: -------------------------------------------------------------------------------- 1 | /* Desktop */ 2 | @import url("desktop.css"); 3 | /* Phone */ 4 | @import url("phone.css") only screen and (max-width:320px); 5 | /* Tablet */ 6 | @import url("tablet.css") only screen and (min-width:321px) and (max-width:768px); 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/spec/CSSUtils-test-files/issue-403-test.css: -------------------------------------------------------------------------------- 1 | #ruleBeforeIssue403 { 2 | color: red; 3 | } 4 | 5 | /* comment before rule - include */ 6 | #issue403 { 7 | color: green; 8 | } 9 | /* comment after rule - exclude */ 10 | 11 | #ruleAfterIssue403 { 12 | color: red; 13 | } -------------------------------------------------------------------------------- /test/spec/JSUtils-test-files/test1main.js: -------------------------------------------------------------------------------- 1 | 2 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 3 | /*global func1: false, func2: false, func3: false */ 4 | 5 | var a = {{0}}func1(); 6 | var b = fun{{1}}c2(); 7 | var c = func3{{2}}(); 8 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/beta-sticker-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/beta-sticker-1.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/binaryfile.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/binaryfile.tar.gz -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/menu_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/menu_separator.png -------------------------------------------------------------------------------- /src/extensions/samples/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains extensions that should be disabled by default, but 2 | that we want to add to the repo. This might include things like examples and 3 | test cases. 4 | 5 | (README also serves as a dummy file so this directory can be added to git.) 6 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/qs/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "support/expresso"] 2 | path = support/expresso 3 | url = git://github.com/visionmedia/expresso.git 4 | [submodule "support/should"] 5 | path = support/should 6 | url = git://github.com/visionmedia/should.js.git 7 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/bytes/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.2.0 / 2012-10-28 3 | ================== 4 | 5 | * bytes(200).should.eql('200b') 6 | 7 | 0.1.0 / 2012-07-04 8 | ================== 9 | 10 | * add bytes to string conversion [yields] 11 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/.jscodehints: -------------------------------------------------------------------------------- 1 | { 2 | "excluded-directories" : ["/ex[\\w]*ed/"], 3 | "excluded-files" : ["require.js", "jquery*.js", "less*.min.js", "ember*.js", "d2?.js", "d3*"], 4 | "max-file-count": 100, 5 | "max-file-size": 524288 6 | } 7 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/progressbar/progressbar_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "progressbar", { 2 | defaults: { 3 | disabled: false, 4 | value: 0, 5 | max: 100, 6 | 7 | //callbacks 8 | create: null 9 | } 10 | }); 11 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/http/encoding/pf1y5.png.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darobin/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/http/encoding/pf1y5.png.http -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 4 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqnull": true, 4 | "eqeqeq": true, 5 | "expr": true, 6 | "latedef": true, 7 | "noarg": true, 8 | "onevar": true, 9 | "smarttabs": true, 10 | "trailing": true, 11 | "undef": true 12 | } 13 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/common.js: -------------------------------------------------------------------------------- 1 | var common = module.exports; 2 | 3 | common.DelayedStream = require('..'); 4 | common.assert = require('assert'); 5 | common.fake = require('fake'); 6 | common.PORT = 49252; 7 | -------------------------------------------------------------------------------- /src/htmlContent/search-dialog.html: -------------------------------------------------------------------------------- 1 | {{CMD_FIND}}: 2 | 3 |
    4 | {{{label}}} 5 | ({{SEARCH_REGEXP_INFO}}) 6 |
    7 |
    8 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/node_modules/rimraf/AUTHORS: -------------------------------------------------------------------------------- 1 | # Authors sorted by whether or not they're me. 2 | Isaac Z. Schlueter (http://blog.izs.me) 3 | Wayne Larsen (http://github.com/wvl) 4 | ritch 5 | Marcel Laverdet 6 | Yosef Dinerstein 7 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/datepicker/datepicker_defaults.js: -------------------------------------------------------------------------------- 1 | /* 2 | * datepicker_defaults.js 3 | */ 4 | 5 | var datepicker_defaults = { 6 | disabled: false 7 | }; 8 | 9 | //TestHelpers.commonWidgetTests('datepicker', { defaults: datepicker_defaults }); 10 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/debug/example/wildcards.js: -------------------------------------------------------------------------------- 1 | 2 | var debug = { 3 | foo: require('../')('test:foo'), 4 | bar: require('../')('test:bar'), 5 | baz: require('../')('test:baz') 6 | }; 7 | 8 | debug.foo('foo') 9 | debug.bar('bar') 10 | debug.baz('baz') -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/qs/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "support/expresso"] 2 | path = support/expresso 3 | url = git://github.com/visionmedia/expresso.git 4 | [submodule "support/should"] 5 | path = support/should 6 | url = git://github.com/visionmedia/should.js.git 7 | -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/InitFail/main.js: -------------------------------------------------------------------------------- 1 | /*global define, $ */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | exports.initExtension = function () { 7 | // promise is rejected immediately 8 | return new $.Deferred().reject(); 9 | }; 10 | }); -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/temp/node_modules/rimraf/AUTHORS: -------------------------------------------------------------------------------- 1 | # Authors sorted by whether or not they're me. 2 | Isaac Z. Schlueter (http://blog.izs.me) 3 | Wayne Larsen (http://github.com/wvl) 4 | ritch 5 | Marcel Laverdet 6 | Yosef Dinerstein 7 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/c/c.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global */ 3 | 4 | var app = app || {}; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | app.c = 3; 10 | }()); 11 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/index.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | $( "#main" ) 4 | .addClass( "ui-widget" ) 5 | .find( "h1, h2" ) 6 | .addClass( "ui-widget-header ui-corner-top" ) 7 | .next() 8 | .addClass( "ui-widget-content ui-corner-bottom" ); 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/rimraf/AUTHORS: -------------------------------------------------------------------------------- 1 | # Authors sorted by whether or not they're me. 2 | Isaac Z. Schlueter (http://blog.izs.me) 3 | Wayne Larsen (http://github.com/wvl) 4 | ritch 5 | Marcel Laverdet 6 | Yosef Dinerstein 7 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/app.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global */ 3 | 4 | var app = app || {}; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | app.d = 8; 10 | 11 | }()); 12 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/b/b.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global */ 3 | 4 | var app = app || {}; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | app.b = 2; 10 | 11 | }()); 12 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/d/d.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global */ 3 | 4 | var app = app || {}; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | app.d = 4; 10 | 11 | }()); 12 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/syntax/test1main.js: -------------------------------------------------------------------------------- 1 | 2 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 3 | /*global func1: false, func2: false, func3: false */ 4 | 5 | var a = {{0}}func1(); 6 | var b = fun{{1}}c2(); 7 | var c = func3{{2}}(); 8 | -------------------------------------------------------------------------------- /test/thirdparty/jasmine-core/example/spec/SpecHelper.js: -------------------------------------------------------------------------------- 1 | beforeEach(function() { 2 | this.addMatchers({ 3 | toBePlaying: function(expectedSong) { 4 | var player = this.actual; 5 | return player.currentlyPlayingSong === expectedSong && 6 | player.isPlaying; 7 | } 8 | }); 9 | }); 10 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/example/parse.js: -------------------------------------------------------------------------------- 1 | var buf = new Buffer([ 97, 98, 99, 100, 101, 102, 0 ]); 2 | 3 | var binary = require('binary'); 4 | var vars = binary.parse(buf) 5 | .word16ls('ab') 6 | .word32bu('cf') 7 | .word8('x') 8 | .vars 9 | ; 10 | console.dir(vars); 11 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/test/testModules/strictModule.js: -------------------------------------------------------------------------------- 1 | "use strict"; // run code in ES5 strict mode 2 | 3 | function doSomethingUnstrict() { 4 | var caller = arguments.callee.caller; // this should throw an error as a proof that strict mode is on 5 | } 6 | 7 | exports.doSomethingUnstrict = doSomethingUnstrict; -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/b/b1/b1.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global */ 3 | 4 | var app = app || {}; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | app.b1 = 21; 10 | 11 | }()); 12 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/d/d2.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global */ 3 | 4 | var app = app || {}; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | app.d2 = 42; 10 | 11 | }()); 12 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/d/d23.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global */ 3 | 4 | var app = app || {}; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | app.d23 = 423; 10 | 11 | }()); 12 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/excluded/e.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global */ 3 | 4 | var app = app || {}; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | app.e = 5; 10 | 11 | }()); 12 | -------------------------------------------------------------------------------- /test/spec/CSSUtils-test-files/simple.css: -------------------------------------------------------------------------------- 1 | html { 2 | color: red; 3 | } 4 | 5 | HTML { 6 | color: orange; 7 | } 8 | 9 | .firstGrade { 10 | color: green; 11 | } 12 | 13 | .FIRSTGRADE { 14 | color: yellow; 15 | } 16 | 17 | #brack3ts { 18 | color: blue; 19 | } 20 | 21 | #BRACK3TS { 22 | color: black; 23 | } -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/InitRuntimeError/main.js: -------------------------------------------------------------------------------- 1 | /*global define, $ */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | exports.initExtension = function () { 7 | // runtime error 8 | isNotDefined(); 9 | 10 | return new $.Deferred(); 11 | }; 12 | }); -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/InitTimeout/main.js: -------------------------------------------------------------------------------- 1 | /*global define, $ */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | exports.initExtension = function () { 7 | // promise is never resolved, expect default Async timeout 8 | return new $.Deferred(); 9 | }; 10 | }); -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/unittest-files/unittests.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

    5 | 6 | You're not supposed to put colors in your HTML, but we'll let you do it anyway. 7 | 8 |

    9 | 10 | -------------------------------------------------------------------------------- /src/extensions/default/WebPlatformDocs/unittest-files/test1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/htmlContent/search-panel.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | × 5 |
    6 |
    7 |
    8 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/preference-test-files/positive-test/.jscodehints: -------------------------------------------------------------------------------- 1 | { 2 | "excluded-directories" : ["excluded-dir1", "/^excluded-dir2-[\\d]$/"], 3 | "excluded-files" : ["file1?.js", "file2*.js", "file3.js", "/file4[x|y|z]?.js/"], 4 | "max-file-count": 512, 5 | "max-file-size": 100000 6 | } 7 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/qunit-composite.css: -------------------------------------------------------------------------------- 1 | iframe.qunit-subsuite{ 2 | position: fixed; 3 | bottom: 0; 4 | left: 0; 5 | 6 | margin: 0; 7 | padding: 0; 8 | border-width: 1px 0 0; 9 | height: 45%; 10 | width: 100%; 11 | 12 | background: #fff; 13 | } -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/module-test-files/Car.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global define, $ */ 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | exports.name = "Honda"; 6 | exports.model = "2013 MDX"; 7 | }); -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/non-module-test-files/d/d3-excluded.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global */ 3 | 4 | var app = app || {}; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | app.d3Excluded = 43; 10 | 11 | }()); 12 | -------------------------------------------------------------------------------- /src/styles/images/horizontal-dash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/styles/images/vertical-dash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/example/buf.js: -------------------------------------------------------------------------------- 1 | var buf = new Buffer([ 97, 98, 99, 100, 101, 102, 0 ]); 2 | 3 | var binary = require('binary'); 4 | binary(buf) 5 | .word16ls('ab') 6 | .word32bu('cf') 7 | .word8('x') 8 | .tap(function (vars) { 9 | console.dir(vars); 10 | }) 11 | ; 12 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/node_modules/chainsaw/node_modules/traverse/examples/negative.js: -------------------------------------------------------------------------------- 1 | var Traverse = require('traverse'); 2 | var obj = [ 5, 6, -3, [ 7, 8, -2, 1 ], { f : 10, g : -13 } ]; 3 | 4 | Traverse(obj).forEach(function (x) { 5 | if (x < 0) this.update(x + 128); 6 | }); 7 | 8 | console.dir(obj); 9 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/boom/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/sntp/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /src/htmlContent/update-list.html: -------------------------------------------------------------------------------- 1 | {{#.}} 2 |
    3 |

    {{versionString}} - {{dateString}} ({{Strings.RELEASE_NOTES}})

    4 |
      5 | {{#newFeatures}} 6 |
    • {{name}} - {{description}}
    • 7 | {{/newFeatures}} 8 |
    9 |
    10 | {{/.}} -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/InitFailWithError/main.js: -------------------------------------------------------------------------------- 1 | /*global define, $ */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | exports.initExtension = function () { 7 | // promise is rejected immediately with an error 8 | return new $.Deferred().reject("Didn't work"); 9 | }; 10 | }); -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/example/stream.js: -------------------------------------------------------------------------------- 1 | var binary = require('binary'); 2 | 3 | var ws = binary() 4 | .word32lu('x') 5 | .word16bs('y') 6 | .word16bu('z') 7 | .tap(function (vars) { 8 | console.dir(vars); 9 | }) 10 | ; 11 | process.stdin.pipe(ws); 12 | process.stdin.resume(); 13 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/cryptiles/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/button/button_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "button", { 2 | defaults: { 3 | disabled: null, 4 | icons: { 5 | primary: null, 6 | secondary: null 7 | }, 8 | label: null, 9 | text: true, 10 | 11 | // callbacks 12 | create: null 13 | } 14 | }); 15 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/debug/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "debug", 3 | "repo": "visionmedia/debug", 4 | "description": "small debugging utility", 5 | "version": "0.7.2", 6 | "keywords": ["debug", "log", "debugger"], 7 | "scripts": ["index.js", "debug.js"], 8 | "dependencies": {} 9 | } 10 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/hoek/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | complexity.md 19 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/cookie-signature/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.1 / 2013-04-15 3 | ================== 4 | 5 | * Revert "Changed underlying HMAC algo. to sha512." 6 | * Revert "Fix for timing attacks on MAC verification." 7 | 8 | 0.0.1 / 2010-01-03 9 | ================== 10 | 11 | * Initial release 12 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/http/special-chars-in-filename/info.md: -------------------------------------------------------------------------------- 1 | * Opera does not allow submitting this file, it shows a warning to the 2 | user that the file could not be found instead. Tested in 9.8, 11.51 on OSX. 3 | Reported to Opera on 08.09.2011 (tracking email DSK-346009@bugs.opera.com). 4 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/simple2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Simple Test 6 | 7 | 8 | 9 | 10 | 11 |

    Brackets is awesome!

    12 | 13 | 14 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/node_modules/buffers/examples/slice.js: -------------------------------------------------------------------------------- 1 | var Buffers = require('buffers'); 2 | var bufs = Buffers(); 3 | bufs.push(new Buffer([1,2,3])); 4 | bufs.push(new Buffer([4,5,6,7])); 5 | bufs.push(new Buffer([8,9,10])); 6 | 7 | console.dir(bufs.slice(2,8)) 8 | 9 | // Output: 10 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/.editorconfig: -------------------------------------------------------------------------------- 1 | ; This file is for unifying the coding style for different editors and IDEs. 2 | ; More information at http://EditorConfig.org 3 | 4 | root = true 5 | 6 | [grunt.js] 7 | indent_style = tab 8 | 9 | [ui/**.js] 10 | indent_style = tab 11 | 12 | [tests/unit/**.js] 13 | indent_style = tab 14 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/spinner/spinner_test_helpers.js: -------------------------------------------------------------------------------- 1 | TestHelpers.spinner = { 2 | simulateKeyDownUp: function( element, keyCode, shift ) { 3 | element 4 | .simulate( "keydown", { keyCode: keyCode, shiftKey: shift || false } ) 5 | .simulate( "keyup", { keyCode: keyCode, shiftKey: shift || false } ); 6 | } 7 | }; 8 | 9 | -------------------------------------------------------------------------------- /test/spec/JSUtils-test-files/test1inline.js: -------------------------------------------------------------------------------- 1 | {{0}}function func1() { 2 | // comment 3 | } 4 | 5 | /* 6 | * comment 7 | */ 8 | {{1}}var func2 = function() { 9 | 10 | {{2}} func3: function() { 11 | /* comment */ 12 | } 13 | 14 | } 15 | 16 | function func4() { 17 | return func1(); 18 | } 19 | 20 | function func5() { 21 | return true; 22 | } 23 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/droppable/droppable_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "droppable", { 2 | defaults: { 3 | accept: "*", 4 | activeClass: false, 5 | addClasses: true, 6 | disabled: false, 7 | greedy: false, 8 | hoverClass: false, 9 | scope: "default", 10 | tolerance: "intersect" 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/simple1Query.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Simple Test 6 | 7 | 8 | 9 | 10 | 11 |

    Brackets is awesome!

    12 | 13 | 14 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/module-test-files/credits.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global define, $ */ 3 | define(function () { 4 | 'use strict'; 5 | return { 6 | getCredits: function () { 7 | var credits = "100"; 8 | return credits; 9 | } 10 | }; 11 | }); 12 | -------------------------------------------------------------------------------- /src/htmlContent/problems-panel.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | × 5 |
    6 |
    7 |
    8 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/float.json: -------------------------------------------------------------------------------- 1 | { "metadata": 2 | { 3 | "ctf2json_version": "1.0", 4 | "created_at": 1316563626, 5 | "derived_from": "/lib/libc.so", 6 | "ctf_version": 2, 7 | "requested_types": [ "float" ] 8 | }, 9 | "data": 10 | [ 11 | { "name": "float", "float": { "length": 4 } } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/ui/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "browser": true, 3 | "curly": true, 4 | "eqnull": true, 5 | "eqeqeq": true, 6 | "expr": true, 7 | "jquery": true, 8 | "latedef": true, 9 | "noarg": true, 10 | "onevar": true, 11 | "smarttabs": true, 12 | "trailing": true, 13 | "undef": true, 14 | "predef": [ 15 | "Globalize" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/errors.js: -------------------------------------------------------------------------------- 1 | // Copyright 2011 Mark Cavage All rights reserved. 2 | 3 | 4 | module.exports = { 5 | 6 | newInvalidAsn1Error: function(msg) { 7 | var e = new Error(); 8 | e.name = 'InvalidAsn1Error'; 9 | e.message = msg || ''; 10 | return e; 11 | } 12 | 13 | }; 14 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/selectable/selectable_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests('selectable', { 2 | defaults: { 3 | appendTo: 'body', 4 | autoRefresh: true, 5 | cancel: 'input,textarea,button,select,option', 6 | delay: 0, 7 | disabled: false, 8 | distance: 0, 9 | filter: '*', 10 | tolerance: 'touch' 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/sntp/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/lab 3 | test-cov: 4 | @./node_modules/.bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @./node_modules/.bin/lab -r html -o coverage.html 7 | complexity: 8 | @./node_modules/.bin/cr -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | 12 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/int.json: -------------------------------------------------------------------------------- 1 | { "metadata": 2 | { 3 | "ctf2json_version": "1.0", 4 | "created_at": 1316563631, 5 | "derived_from": "/lib/libc.so", 6 | "ctf_version": 2, 7 | "requested_types": [ "int" ] 8 | }, 9 | "data": 10 | [ 11 | { "name": "int", "integer": { "length": 4, "signed": true } } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/test/debug.test.js: -------------------------------------------------------------------------------- 1 | var rewire = require("../lib/index.js"); 2 | 3 | // add breakpoints in testModules/debuggerModule.js and debug this file with your IDE to 4 | // check if debugging works with rewire. 5 | var debuggerModule = rewire("./testModules/debuggerModule.js"); 6 | 7 | debugger; 8 | 9 | debuggerModule.__set__("myNumber", 1); 10 | 11 | debuggerModule(); -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 62.5%; 3 | } 4 | .ui-widget-header { 5 | padding: 0.2em 0.5em; 6 | margin: 0; 7 | } 8 | .ui-widget-content { 9 | padding: 1em; 10 | margin-bottom: 1em; 11 | } 12 | p { 13 | margin: 0; 14 | } 15 | ul { 16 | margin: 0; 17 | list-style: none; 18 | } 19 | li { 20 | line-height: 2em; 21 | } 22 | -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/InitResolvedAsync/main.js: -------------------------------------------------------------------------------- 1 | /*global define, $, window */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | exports.initExtension = function () { 7 | var deferred = new $.Deferred(); 8 | 9 | window.setTimeout(function () { deferred.resolve(); }, 100); 10 | 11 | return deferred.promise(); 12 | }; 13 | }); -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/cryptiles/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/lab 3 | test-cov: 4 | @./node_modules/.bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @./node_modules/.bin/lab -r html -o coverage.html 7 | complexity: 8 | @./node_modules/.bin/cr -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | 12 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/syntax/test1inline.js: -------------------------------------------------------------------------------- 1 | {{0}}function func1() { 2 | // comment 3 | } 4 | 5 | /* 6 | * comment 7 | */ 8 | {{1}}var func2 = function() { 9 | 10 | {{2}} func3: function() { 11 | /* comment */ 12 | } 13 | 14 | } 15 | 16 | function func4() { 17 | return func1(); 18 | } 19 | 20 | function func5() { 21 | return true; 22 | } 23 | -------------------------------------------------------------------------------- /src/extensions/dev/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains extensions that are being developed. User-installed 2 | extensions are placed in the "user" extensions directory, which can be accessed 3 | by running the Help > Show Extensions Folder menu command. The contents of 4 | this directory (except the README file) are ignored by git. 5 | 6 | (README also serves as a dummy file so this directory can be added to git.) 7 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/menu/menu_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "menu", { 2 | defaults: { 3 | disabled: false, 4 | menus: "ul", 5 | position: { 6 | my: "left top", 7 | at: "right top" 8 | }, 9 | role: "menu", 10 | 11 | // callbacks 12 | blur: null, 13 | create: null, 14 | focus: null, 15 | select: null 16 | } 17 | }); 18 | -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/InitFailWithErrorAsync/main.js: -------------------------------------------------------------------------------- 1 | /*global define, $ */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | exports.initExtension = function () { 7 | var deferred = new $.Deferred(); 8 | 9 | window.setTimeout(function () { deferred.reject("Didn't work"); }, 100); 10 | 11 | return deferred.promise(); 12 | }; 13 | }); -------------------------------------------------------------------------------- /test/spec/JSUtils-test-files/tricky.js: -------------------------------------------------------------------------------- 1 | // This function's name collides with an Object.prototype member 2 | function toString() { 3 | return ""; 4 | } 5 | 6 | // This function's name collides with an Array.prototype member 7 | function length() { 8 | return 0; 9 | } 10 | 11 | // This function's name collides with an Object.prototype member 12 | function hasOwnProperty() { 13 | return false; 14 | } 15 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/form-data/node_modules/async/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "async", 3 | "repo": "caolan/async", 4 | "description": "Higher-order functions and common patterns for asynchronous code", 5 | "version": "0.1.23", 6 | "keywords": [], 7 | "dependencies": {}, 8 | "development": {}, 9 | "main": "lib/async.js", 10 | "scripts": [ "lib/async.js" ] 11 | } 12 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/module-test-files/products.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global define, $ */ 3 | define(function (products) { 4 | 'use strict'; 5 | return { 6 | reserveProduct: function () { 7 | console.log("Function : reserveProduct"); 8 | return true; 9 | } 10 | }; 11 | }); 12 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {error} 5 | 6 | 7 | 8 |
    9 |

    {title}

    10 |

    {statusCode} {error}

    11 |
      {stack}
    12 |
    13 | 14 | 15 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/send/node_modules/range-parser/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.4 / 2012-06-17 3 | ================== 4 | 5 | * changed: ret -1 for unsatisfiable and -2 when invalid 6 | 7 | 0.0.3 / 2012-06-17 8 | ================== 9 | 10 | * fix last-byte-pos default to len - 1 11 | 12 | 0.0.2 / 2012-06-14 13 | ================== 14 | 15 | * add `.type` 16 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/fs-extra/node_modules/jsonfile/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 1.0.1 / 2013-09-05 2 | ------------------ 3 | - removed `homepage` field from package.json to remove NPM warning 4 | 5 | 1.0.0 / 2013-06-28 6 | ------------------ 7 | * added `.npmignore`, #1 8 | * changed spacing default from `4` to `2` to follow Node conventions 9 | 10 | 0.0.1 / 2012-09-10 11 | ------------------ 12 | * Initial release. 13 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @node node_modules/lab/bin/lab 3 | test-cov: 4 | @node node_modules/lab/bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @node node_modules/lab/bin/lab -r html -o coverage.html 7 | complexity: 8 | @node node_modules/complexity-report/src/cli.js -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | -------------------------------------------------------------------------------- /src/styles/bootstrap/layouts.less: -------------------------------------------------------------------------------- 1 | // 2 | // Layouts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container (centered, fixed-width layouts) 7 | .container { 8 | .container-fixed(); 9 | } 10 | 11 | // Fluid layouts (left aligned, with sidebar, min- & max-width content) 12 | .container-fluid { 13 | padding-right: @gridGutterWidth; 14 | padding-left: @gridGutterWidth; 15 | .clearfix(); 16 | } -------------------------------------------------------------------------------- /test/spec/EditorOptionHandlers-test-files/test.css: -------------------------------------------------------------------------------- 1 | .longLineClass { margin: 0 auto; padding: 2em; max-width: 800px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.5em; color: #333333; background-color: #ffffff; -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.4); box-shadow: 0 0 12px rgba(0, 0, 0, 0.4); } 2 | .shortLineClass { color: red; } 3 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/boom/README.md: -------------------------------------------------------------------------------- 1 | 2 | ![boom Logo](https://raw.github.com/spumko/boom/master/images/boom.png) 3 | 4 | HTTP-friendly error objects 5 | 6 | [![Build Status](https://secure.travis-ci.org/spumko/boom.png)](http://travis-ci.org/spumko/boom) 7 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/unittest-files/module-test-files/shirt.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ 2 | /*global define, $ */ 3 | define(function () { 4 | 'use strict'; 5 | return { 6 | color: "black", 7 | size: 10, 8 | material: function () { 9 | return "cotton"; 10 | } 11 | }; 12 | }); -------------------------------------------------------------------------------- /src/htmlContent/stylesheets-menu.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /test/spec/CSSUtils-test-files/selector-positions.css: -------------------------------------------------------------------------------- 1 | div { 2 | color: green; 3 | } 4 | 5 | div{ 6 | color: green; 7 | } 8 | 9 | div 10 | { 11 | color: green; 12 | } 13 | /* spaces */ 14 | div 15 | { 16 | color: green; 17 | } 18 | /* tab */ 19 | div 20 | { 21 | color: green; 22 | } 23 | 24 | h3, h2, h1 25 | { 26 | color: yellow; 27 | } 28 | 29 | h3, h2, h1 30 | { 31 | color: yellow; 32 | } -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework @VERSION 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /src/htmlContent/problems-panel-table.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{#reportList}} 4 | 5 | 6 | 7 | 8 | 9 | {{/reportList}} 10 | 11 |
    {{friendlyLine}}{{message}}{{codeSnippet}}
    12 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/lib/signatures.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | LOCAL_FILE_HEADER: 0x04034b50, 3 | DATA_DESCRIPTOR_RECORD: 0x08074b50, 4 | ARCHIVE_EXTRA_DATA: 0x08064b50, 5 | CENTRAL_FILE_HEADER: 0x02014b50, 6 | HEADER: 0x05054b50, 7 | ZIP64_END_OF_CENTRAL_DIRECTORY: 0x06064b50, 8 | ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR: 0x07064b50, 9 | END_OF_CENTRAL_DIRECTORY: 0x06054b50 10 | }; 11 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/hoek/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @node node_modules/lab/bin/lab 3 | test-cov: 4 | @node node_modules/lab/bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @node node_modules/lab/bin/lab -r html -o coverage.html 7 | complexity: 8 | @node node_modules/complexity-report/src/cli.js -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | -------------------------------------------------------------------------------- /test/node/node_modules/fs-extra/lib/remove.js: -------------------------------------------------------------------------------- 1 | var rimraf = require('rimraf') 2 | , fs = require('fs'); 3 | 4 | function rmrfSync(dir) { 5 | return rimraf.sync(dir); 6 | } 7 | 8 | function rmrf(dir, cb) { 9 | if (cb != null) { 10 | return rimraf(dir, cb); 11 | } else { 12 | return rimraf(dir, (function() {})); 13 | } 14 | } 15 | 16 | module.exports.remove = rmrf; 17 | module.exports.removeSync = rmrfSync; 18 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/test/from_buffer.js: -------------------------------------------------------------------------------- 1 | var binary = require('../'); 2 | var test = require('tap').test; 3 | 4 | test('from buffer', function (t) { 5 | t.plan(1); 6 | 7 | binary(new Buffer([ 97, 98, 99 ])) 8 | .word8('a') 9 | .word16be('bc') 10 | .tap(function (vars) { 11 | t.same(vars, { a : 97, bc : 25187 }); 12 | }) 13 | ; 14 | }); 15 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/hawk/node_modules/boom/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @node node_modules/lab/bin/lab 3 | test-cov: 4 | @node node_modules/lab/bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @node node_modules/lab/bin/lab -r html -o coverage.html 7 | complexity: 8 | @node node_modules/complexity-report/src/cli.js -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | 12 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/rewire/lib/detectStrictMode.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns true if the source code is intended to run in strict mode. Does not detect 3 | * "use strict" if it occurs in a nested function. 4 | * 5 | * @param {String} src 6 | * @return {Boolean} 7 | */ 8 | function detectStrictMode(src) { 9 | return (/^\s*(?:"use strict"|'use strict')[ \t]*(?:[\r\n]|;)/g).test(src); 10 | } 11 | 12 | module.exports = detectStrictMode; -------------------------------------------------------------------------------- /src/styles/bootstrap/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | 6 | .fade { 7 | opacity: 0; 8 | .transition(opacity .15s linear); 9 | &.in { 10 | opacity: 1; 11 | } 12 | } 13 | 14 | .collapse { 15 | position: relative; 16 | height: 0; 17 | overflow: hidden; 18 | .transition(height .35s ease); 19 | &.in { 20 | height: auto; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/typedef.json: -------------------------------------------------------------------------------- 1 | { "metadata": 2 | { 3 | "ctf2json_version": "1.0", 4 | "created_at": 1316302348, 5 | "derived_from": "/lib/libc.so", 6 | "ctf_version": 2, 7 | "requested_types": [ "bar_t" ] 8 | }, 9 | "data": 10 | [ 11 | { "name": "int", "integer": { "length": 4, "signed": true } }, 12 | { "name": "bar_t", "typedef": "int" } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/extensibility/node/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "brackets-extensibility", 3 | "description": "Used in the management of Brackets extensions", 4 | "version": "0.32.0", 5 | "dependencies": { 6 | "decompress-zip": "0.0.2", 7 | "semver": "2.x", 8 | "fs-extra": "0.6.x", 9 | "async": "0.2.x", 10 | "request": "2.27.x", 11 | "temp": "~0.6.0" 12 | }, 13 | "devDependencies": { 14 | "rewire": "1.1.x" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/extensions/default/DebugCommands/keyboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDeveloperTools": [ 3 | { 4 | "key": "F12" 5 | }, 6 | { 7 | "key": "Cmd-Opt-I", 8 | "platform": "mac" 9 | } 10 | ], 11 | "refreshWindow": [ 12 | { 13 | "key": "F5" 14 | }, 15 | { 16 | "key": "Cmd-R", 17 | "platform": "mac" 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/extensibility/node/node_modules/decompress-zip/node_modules/binary/node_modules/chainsaw/node_modules/traverse/examples/leaves.js: -------------------------------------------------------------------------------- 1 | var Traverse = require('traverse'); 2 | 3 | var obj = { 4 | a : [1,2,3], 5 | b : 4, 6 | c : [5,6], 7 | d : { e : [7,8], f : 9 }, 8 | }; 9 | 10 | var leaves = Traverse(obj).reduce(function (acc, x) { 11 | if (this.isLeaf) acc.push(x); 12 | return acc; 13 | }, []); 14 | 15 | console.dir(leaves); 16 | --------------------------------------------------------------------------------