├── test ├── perf │ └── OpenFile-perf-files │ │ └── blank.js ├── spec │ ├── Theme-test-files │ │ ├── empty.css │ │ ├── empty.less │ │ ├── empty.txt │ │ └── simple-scrollbars.css │ ├── ProjectManager-test-files │ │ ├── file.js │ │ ├── git │ │ │ └── index │ │ ├── toDelete1 │ │ │ └── file.js │ │ └── directory │ │ │ └── interiorfile.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 │ │ ├── iframe.css │ │ ├── iframe.html │ │ └── simple1Query.html │ ├── PreferencesBase-test-files │ │ ├── empty.json │ │ └── .brackets.json │ ├── WorkingSetView-test-files │ │ ├── file_two.js │ │ ├── file_four.html │ │ ├── file_three.js │ │ ├── file_zero.css │ │ ├── directory │ │ │ ├── file_one.js │ │ │ └── directory │ │ │ │ └── file_one.js │ │ └── file_one.js │ ├── KeyBindingManager-test-files │ │ ├── blank.json │ │ ├── empty.json │ │ ├── whitespace.json │ │ ├── invalid.json │ │ ├── reassignCopy.json │ │ ├── restrictedShortcut.json │ │ ├── keymap1.json │ │ ├── macKeymap1.json │ │ ├── macRestrictedShortcut.json │ │ ├── keymap.json │ │ ├── macKeymap.json │ │ ├── duplicateShortcuts.json │ │ └── multipleShortcuts.json │ ├── LowLevelFileIO-test-files │ │ ├── emptyfile.txt │ │ ├── file_one.txt │ │ ├── file_three.txt │ │ ├── file_two.txt │ │ ├── rename_me │ │ │ └── hello.txt │ │ ├── write_test.txt │ │ ├── tree.jpg │ │ ├── ru_utf16.html │ │ ├── ru_utf32.html │ │ ├── cant_read_here │ │ │ └── readme.txt │ │ ├── cant_write_here │ │ │ └── readme.txt │ │ └── ru_bad_utf8.html │ ├── Document-test-files │ │ ├── test.js │ │ ├── test.css │ │ └── test.html │ ├── LiveDevelopment-MultiBrowser-test-files │ │ ├── simple1.js │ │ ├── import1.css │ │ ├── simpleShared.css │ │ ├── simple1.css │ │ ├── sub │ │ │ ├── icon_chevron.png │ │ │ └── test.css │ │ ├── index.html │ │ └── withoutHead.html │ ├── MainViewManager-test-files │ │ ├── test.js │ │ ├── test.css │ │ └── test.html │ ├── extension-test-files │ │ ├── basic-valid-theme-1.0 │ │ │ └── theme.less │ │ ├── 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 │ │ ├── basic-valid-theme-1.0.zip │ │ ├── incompatible-version.zip │ │ ├── missing-name-version.zip │ │ ├── missing-package-json.zip │ │ ├── with-npm-dependencies.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 │ ├── CodeHint-test-files │ │ ├── test.clj │ │ ├── testRegExp.js │ │ └── 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 │ ├── CodeInspection-test-files │ │ ├── errors.css │ │ ├── no-errors.js │ │ └── errors.js │ ├── FindReplace-known-goods │ │ ├── changed-file │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ ├── bar.txt │ │ │ └── foo.js │ │ ├── unchanged │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ └── foo.js │ │ ├── regexp-replace-multiline │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ ├── images │ │ │ │ └── icon_twitter.png │ │ │ └── foo.js │ │ ├── simple-case-insensitive │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ └── foo.js │ │ ├── simple-case-sensitive │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ └── foo.js │ │ ├── regexp-dollar-replace │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ └── foo.js │ │ ├── simple-case-insensitive-large │ │ │ ├── bar.txt │ │ │ ├── bar2.txt │ │ │ ├── bar3.txt │ │ │ ├── bar4.txt │ │ │ ├── bar5.txt │ │ │ ├── bar6.txt │ │ │ ├── bar7.txt │ │ │ ├── css │ │ │ │ ├── foo.css │ │ │ │ ├── foo2.css │ │ │ │ ├── foo3.css │ │ │ │ ├── foo4.css │ │ │ │ ├── foo5.css │ │ │ │ ├── foo6.css │ │ │ │ └── foo7.css │ │ │ ├── foo.js │ │ │ ├── foo2.js │ │ │ ├── foo3.js │ │ │ ├── foo4.js │ │ │ ├── foo5.js │ │ │ ├── foo6.js │ │ │ └── foo7.js │ │ ├── regexp-case-sensitive │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ └── foo.js │ │ ├── regexp-replace-multiline-partial │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ ├── images │ │ │ │ └── icon_twitter.png │ │ │ └── foo.js │ │ ├── simple-case-insensitive-modified │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ └── foo.js │ │ ├── simple-case-insensitive-unchecked │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ └── foo.js │ │ ├── regexp-case-insensitive │ │ │ ├── bar.txt │ │ │ └── css │ │ │ │ └── foo.css │ │ ├── simple-case-insensitive-except-foo.css │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ └── foo.js │ │ ├── simple-case-insensitive-only-foo.css │ │ │ ├── bar.txt │ │ │ ├── css │ │ │ │ └── foo.css │ │ │ └── foo.js │ │ └── regexp-zero-length │ │ │ ├── bar.txt │ │ │ └── css │ │ │ └── foo.css │ ├── UpdateNotification-test-files │ │ └── versionInfoBroken.json │ ├── 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 │ │ ├── auto-install-extensions1 │ │ │ ├── should-be-ignored.txt │ │ │ ├── not-an-extension.zip │ │ │ └── mock-extension-v1.0.0.zip │ │ ├── auto-install-extensions2 │ │ │ └── mock-extension-v1.1.1.zip │ │ └── auto-install-extensions3 │ │ │ ├── a-mock-extension-v1.0.0.zip │ │ │ ├── b-mock-extension-v1.1.1.zip │ │ │ └── c-mock-extension-v1.1.0.zip │ ├── EditorCommandHandlers-test-files │ │ ├── test.css │ │ ├── test.js │ │ └── test.html │ ├── ViewCommandHandlers-test-files │ │ ├── test.css │ │ └── test.html │ ├── InlineEditorProviders-test-files │ │ └── testOneRuleFile.css │ ├── EditorOptionHandlers-test-files │ │ └── test.js │ ├── FindReplace-test-files │ │ ├── bar.txt │ │ ├── images │ │ │ └── icon_twitter.png │ │ ├── css │ │ │ └── foo.css │ │ └── foo.js │ ├── ExtensionLoader-test-files │ │ ├── BadRequireConfig │ │ │ └── requirejs-config.json │ │ ├── RequireJSConfig │ │ │ ├── requirejs-config.json │ │ │ ├── bar.js │ │ │ └── main.js │ │ ├── NoInit │ │ │ └── main.js │ │ ├── BadRequire │ │ │ └── main.js │ │ ├── InitResolved │ │ │ └── main.js │ │ ├── InitFail │ │ │ └── main.js │ │ ├── InitRuntimeError │ │ │ └── main.js │ │ ├── InitTimeout │ │ │ └── main.js │ │ └── InitFailWithError │ │ │ └── main.js │ ├── FindReplace-test-files-large │ │ ├── bar.txt │ │ ├── bar2.txt │ │ ├── bar3.txt │ │ ├── bar4.txt │ │ ├── bar5.txt │ │ ├── bar6.txt │ │ ├── bar7.txt │ │ ├── css │ │ │ ├── foo.css │ │ │ ├── foo2.css │ │ │ ├── foo3.css │ │ │ ├── foo4.css │ │ │ ├── foo5.css │ │ │ ├── foo6.css │ │ │ └── foo7.css │ │ ├── foo.js │ │ ├── foo2.js │ │ ├── foo3.js │ │ ├── foo4.js │ │ ├── foo5.js │ │ ├── foo6.js │ │ └── foo7.js │ ├── test-image-files │ │ ├── eye.jpg │ │ └── thermo.jpg │ ├── MainViewFactory-test-files │ │ ├── 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 │ ├── JSUtils-test-files │ │ ├── eof.js │ │ ├── eof2.js │ │ ├── es6-async-arrow.js │ │ ├── es6-static-methods.js │ │ ├── invalid.js │ │ ├── es6-classes.js │ │ ├── test1main.js │ │ ├── test1inline.js │ │ └── es6-inheritance.js │ ├── CSSInlineEdit-test-files │ │ ├── css │ │ │ ├── test.css │ │ │ └── test2.css │ │ └── less │ │ │ └── test.less │ ├── CSSUtils-test-files │ │ ├── universal.css │ │ ├── issue-403-test.css │ │ ├── simple.css │ │ └── property-list.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 └── 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 ├── .eslintignore ├── .gitattributes ├── src ├── extensions │ ├── default │ │ ├── UrlCodeHints │ │ │ ├── testfiles │ │ │ │ └── subfolder │ │ │ │ │ ├── test.js │ │ │ │ │ ├── test.css │ │ │ │ │ ├── chevron.png │ │ │ │ │ └── test.scss │ │ │ └── data.json │ │ ├── JavaScriptCodeHints │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── ParameterHintTemplate.html │ │ │ ├── node │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── keyboard.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 │ │ │ │ │ ├── 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 │ │ │ │ └── .npmignore │ │ ├── JSLint │ │ │ └── unittest-files │ │ │ │ ├── errors.js │ │ │ │ ├── different-indent.js │ │ │ │ └── no-errors.js │ │ ├── HtmlEntityCodeHints │ │ │ └── styles.css │ │ ├── CloseOthers │ │ │ └── unittest-files │ │ │ │ └── dummy.js │ │ ├── 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 │ │ │ │ │ ├── visual │ │ │ │ │ │ └── visual.css │ │ │ │ │ └── index.js │ │ │ │ ├── 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 │ │ │ │ ├── .jshintrc │ │ │ │ ├── .editorconfig │ │ │ │ └── ui │ │ │ │ │ └── .jshintrc │ │ │ │ └── syntax │ │ │ │ ├── tokens.js │ │ │ │ ├── file1.js │ │ │ │ └── test1main.js │ │ ├── QuickView │ │ │ ├── QuickViewTemplate.html │ │ │ ├── preview-bg-dark.svg │ │ │ ├── preview-bg.svg │ │ │ └── unittest-files │ │ │ │ └── test.js │ │ ├── RecentProjects │ │ │ └── keyboard.json │ │ ├── InlineTimingFunctionEditor │ │ │ ├── grid.png │ │ │ └── grid-dark.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 │ │ │ │ ├── color_thumb_back_dark.png │ │ │ │ ├── grabber_color-slider@2x.png │ │ │ │ ├── grabber_color-well@2x.png │ │ │ │ └── color_thumb_back_dark@2x.png │ │ │ └── unittest-files │ │ │ │ └── unittests.html │ │ ├── LESSSupport │ │ │ └── unittests.js │ │ ├── MDNDocs │ │ │ └── unittest-files │ │ │ │ └── test1.css │ │ ├── DebugCommands │ │ │ └── styles.css │ │ └── README.md │ └── samples │ │ ├── InlineImageViewer │ │ ├── InlineImageViewer.html │ │ └── style.css │ │ ├── BracketsConfigCentral │ │ ├── htmlContent │ │ │ └── logo-sm.png │ │ └── styles │ │ │ └── styles.css │ │ └── README.md ├── styles │ ├── images │ │ ├── throbber.gif │ │ ├── scrollbar-mac-bg.png │ │ ├── scrollbar-mac-corner.png │ │ ├── horiz-thumb-fw-outline.png │ │ ├── vertical-thumb-fw-outline.png │ │ ├── preview-bg-dark.svg │ │ ├── select-triangles.svg │ │ ├── preview-bg.svg │ │ ├── horizontal-dash.svg │ │ ├── vertical-dash.svg │ │ ├── topcoat-inactive-15.svg │ │ ├── edit-icon.svg │ │ ├── topcoat-okay-15.svg │ │ └── extension-manager-installed.svg │ └── fonts │ │ ├── SourceSansPro │ │ ├── SourceSansPro-It.ttf │ │ ├── SourceSansPro-Light.ttf │ │ ├── SourceSansPro-Regular.ttf │ │ └── SourceSansPro-Semibold.ttf │ │ └── SourceCodePro │ │ ├── SourceCodePro-Medium.ttf │ │ └── SourceCodePro-Regular.ttf ├── brackets.config.dist.json ├── brackets.config.dev.json ├── filesystem │ └── impls │ │ └── appshell │ │ └── node │ │ └── win32 │ │ ├── CodeHelper.exe │ │ └── CodeHelper.md ├── htmlContent │ ├── contributors-list.html │ ├── code-hint-list.html │ ├── filter-name.html │ ├── search-panel.html │ ├── update-list.html │ ├── problems-panel.html │ └── working-set.html ├── extensibility │ └── node │ │ └── README.md └── package.json ├── samples ├── fi │ └── Aloitus │ │ └── screenshots │ │ └── quick-edit.png ├── id │ └── Memulai │ │ └── screenshots │ │ └── quick-edit.png ├── sv │ └── Kom igang │ │ └── screenshots │ │ └── quick-edit.png ├── it │ └── Primi passi │ │ └── screenshots │ │ └── quick-edit.png ├── nl │ └── Aan-de-slag │ │ └── screenshots │ │ └── quick-edit.png ├── uk │ └── Pochynayemo │ │ └── 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 ├── bg │ └── Getting Started │ │ └── screenshots │ │ └── quick-edit.png ├── cs │ └── Getting Started │ │ └── screenshots │ │ └── quick-edit.png ├── da │ └── Kom godt i gang │ │ └── screenshots │ │ └── quick-edit.png ├── el │ └── Getting Started │ │ └── screenshots │ │ └── quick-edit.png ├── ja │ └── Getting Started │ │ └── 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 ├── zh-cn │ └── Getting Started │ │ └── screenshots │ │ └── quick-edit.png ├── zh-tw │ └── Getting Started │ │ └── screenshots │ │ └── quick-edit.png └── fa-ir │ └── Getting Started │ └── screenshots │ └── farsiquick-edit.png └── tasks └── cla-exceptions.json /test/perf/OpenFile-perf-files/blank.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/Theme-test-files/empty.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/Theme-test-files/empty.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/Theme-test-files/empty.txt: -------------------------------------------------------------------------------- 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/PreferencesBase-test-files/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/ProjectManager-test-files/git/index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/file_two.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /src/extensions/default/brackets-eslint -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/blank.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/emptyfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/ProjectManager-test-files/toDelete1/file.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/file_four.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/file_three.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/file_zero.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/Document-test-files/test.js: -------------------------------------------------------------------------------- 1 | // test.js content -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/whitespace.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/directory/file_one.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-MultiBrowser-test-files/simple1.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 -------------------------------------------------------------------------------- /test/spec/MainViewManager-test-files/test.js: -------------------------------------------------------------------------------- 1 | // test.js content -------------------------------------------------------------------------------- /test/spec/ProjectManager-test-files/directory/interiorfile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/file_one.js: -------------------------------------------------------------------------------- 1 | dirty document -------------------------------------------------------------------------------- /test/spec/extension-test-files/basic-valid-theme-1.0/theme.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/WorkingSetView-test-files/directory/directory/file_one.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/rename_me/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, World. 2 | -------------------------------------------------------------------------------- /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/extensions/default/UrlCodeHints/testfiles/subfolder/test.js: -------------------------------------------------------------------------------- 1 | /* test.js */ 2 | -------------------------------------------------------------------------------- /test/spec/CodeInspection-test-files/errors.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: black; 3 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/changed-file/css/foo.css: -------------------------------------------------------------------------------- 1 | /* changed content */ -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /test/spec/UpdateNotification-test-files/versionInfoBroken.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | ] -------------------------------------------------------------------------------- /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/MainViewManager-test-files/test.css: -------------------------------------------------------------------------------- 1 | .testClass { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/extension-test-files/invalid-zip-file.zip: -------------------------------------------------------------------------------- 1 | NOPE. THIS IS NOT A ZIP FILE. 2 | -------------------------------------------------------------------------------- /test/spec/CodeInspection-test-files/no-errors.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | "use strict"; 3 | } -------------------------------------------------------------------------------- /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/extensions/default/JavaScriptCodeHints/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /node/node_modules/ 3 | -------------------------------------------------------------------------------- /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/CodeInspection-test-files/errors.js: -------------------------------------------------------------------------------- 1 | // mispelled function keyword 2 | funtion foo() {}; -------------------------------------------------------------------------------- /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-MultiBrowser-test-files/import1.css: -------------------------------------------------------------------------------- 1 | .testClass2 { 2 | color: #000; 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/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 | -------------------------------------------------------------------------------- /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/extensions/default/JSLint/unittest-files/errors.js: -------------------------------------------------------------------------------- 1 | // mispelled function keyword 2 | funtion foo() {}; -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/write_test.txt: -------------------------------------------------------------------------------- 1 | This content was generated from LowLevelFileIO-test.js -------------------------------------------------------------------------------- /src/extensions/default/HtmlEntityCodeHints/styles.css: -------------------------------------------------------------------------------- 1 | span.entity-display-character { 2 | float: right; 3 | } -------------------------------------------------------------------------------- /src/extensions/default/JSLint/unittest-files/different-indent.js: -------------------------------------------------------------------------------- 1 | function notAnError() { 2 | "use strict"; 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/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /src/styles/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/styles/images/throbber.gif -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/auto-install-extensions1/should-be-ignored.txt: -------------------------------------------------------------------------------- 1 | This file should be ignored 2 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-MultiBrowser-test-files/simpleShared.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/brackets.config.dist.json: -------------------------------------------------------------------------------- 1 | { 2 | "healthDataServerURL" : "https://health.brackets.io/healthDataLog" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/BadRequireConfig/requirejs-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "paths": "missing trailing quote 3 | } -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/test-image-files/eye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/test-image-files/eye.jpg -------------------------------------------------------------------------------- /src/brackets.config.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "healthDataServerURL" : "https://healthdev.brackets.io/healthDataLog" 3 | } 4 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/send/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/unchanged/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/bar2.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/bar3.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/bar4.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/bar5.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/bar6.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/bar7.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/test-image-files/thermo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/test-image-files/thermo.jpg -------------------------------------------------------------------------------- /test/thirdparty/jasmine-core/version.rb: -------------------------------------------------------------------------------- 1 | module Jasmine 2 | module Core 3 | VERSION = "1.3.1" 4 | end 5 | end 6 | 7 | -------------------------------------------------------------------------------- /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/Wikunia/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 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/changed-file/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /src/extensions/default/CloseOthers/unittest-files/dummy.js: -------------------------------------------------------------------------------- 1 | //This is dummy file. To commit unnittest-files folder git needs a file. 2 | -------------------------------------------------------------------------------- /src/extensions/default/JSLint/unittest-files/no-errors.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | "use strict"; 3 | var body = document.body; 4 | } -------------------------------------------------------------------------------- /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/scrollbar-mac-corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/styles/images/scrollbar-mac-corner.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/events.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/server-tests/images/events.jpg -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/RequireJSConfig/requirejs-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "paths": { 3 | "foo": "bar" 4 | } 5 | } -------------------------------------------------------------------------------- /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/Wikunia/brackets/master/test/spec/extension-test-files/badname.zip -------------------------------------------------------------------------------- /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/Wikunia/brackets/master/src/styles/images/horiz-thumb-fw-outline.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/lrg_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/server-tests/images/lrg_hero.jpg -------------------------------------------------------------------------------- /test/smokes/server-tests/images/lrg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/server-tests/images/lrg_logo.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/med_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/server-tests/images/med_hero.jpg -------------------------------------------------------------------------------- /test/smokes/server-tests/images/med_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/server-tests/images/med_logo.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/sml_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/server-tests/images/sml_logo.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/specials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-replace-multiline/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-sensitive/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LowLevelFileIO-test-files/tree.jpg -------------------------------------------------------------------------------- /samples/fi/Aloitus/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/fi/Aloitus/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/id/Memulai/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/id/Memulai/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/sv/Kom igang/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/sv/Kom igang/screenshots/quick-edit.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/vertical-thumb-fw-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/styles/images/vertical-thumb-fw-outline.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/events.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/events.jpg -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-dollar-replace/bar.txt: -------------------------------------------------------------------------------- 1 | [bar].[txt] file 2 | 3 | This file should *[not]* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-MultiBrowser-test-files/simple1.css: -------------------------------------------------------------------------------- 1 | @import url('import1.css'); 2 | 3 | .testClass { 4 | color: #000; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /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/Wikunia/brackets/master/test/spec/extension-test-files/has-macosx.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/invalid-json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/invalid-json.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/missing-main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/missing-main.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/with-symlink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/with-symlink.zip -------------------------------------------------------------------------------- /samples/it/Primi passi/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/it/Primi passi/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/nl/Aan-de-slag/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/nl/Aan-de-slag/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/uk/Pochynayemo/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/uk/Pochynayemo/screenshots/quick-edit.png -------------------------------------------------------------------------------- /src/extensions/default/QuickView/QuickViewTemplate.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
-------------------------------------------------------------------------------- /src/extensions/default/UrlCodeHints/testfiles/subfolder/test.css: -------------------------------------------------------------------------------- 1 | /* test.css */ 2 | body { 3 | margin: 0; 4 | background-image: url(); 5 | } 6 | -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/lrg_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/lrg_hero.jpg -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/lrg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/lrg_logo.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/med_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/med_hero.jpg -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/med_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/med_logo.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/sml_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/sml_logo.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/specials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/specials.jpg -------------------------------------------------------------------------------- /test/smokes/server-tests/images/icon_chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/server-tests/images/icon_chevron.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/icon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/server-tests/images/icon_facebook.png -------------------------------------------------------------------------------- /test/smokes/server-tests/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/server-tests/images/icon_twitter.png -------------------------------------------------------------------------------- /test/spec/CodeHint-test-files/testRegExp.js: -------------------------------------------------------------------------------- 1 | // Function containing regular expression 2 | function test() { 3 | return (/\.(eot|otf|ttf|wo)$/i); 4 | } -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/NoInit/main.js: -------------------------------------------------------------------------------- 1 | /*global define */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | }); -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-case-sensitive/bar.txt: -------------------------------------------------------------------------------- 1 | CHANGED.CHANGED file 2 | 3 | This file should *CHANGED* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-replace-multiline-partial/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/bar2.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/bar3.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/bar4.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/bar5.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/bar6.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/bar7.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-modified/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-unchecked/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/ru_utf16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LowLevelFileIO-test-files/ru_utf16.html -------------------------------------------------------------------------------- /test/spec/LowLevelFileIO-test-files/ru_utf32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LowLevelFileIO-test-files/ru_utf32.html -------------------------------------------------------------------------------- /test/spec/extension-test-files/bogus-top-dir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/bogus-top-dir.zip -------------------------------------------------------------------------------- /samples/de/Erste Schritte/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/de/Erste Schritte/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/es/Primeros Pasos/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/es/Primeros Pasos/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/fr/Premiers pas/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/fr/Premiers pas/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/pl/Szybki Start/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/pl/Szybki Start/screenshots/quick-edit.png -------------------------------------------------------------------------------- /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/Wikunia/brackets/master/src/styles/fonts/SourceSansPro/SourceSansPro-It.ttf -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/icon_chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/icon_chevron.png -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/icon_twitter.png -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-case-insensitive/bar.txt: -------------------------------------------------------------------------------- 1 | CHANGED.CHANGED file 2 | 3 | This file should *CHANGED* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-except-foo.css/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-only-foo.css/bar.txt: -------------------------------------------------------------------------------- 1 | bar.txt file 2 | 3 | This file should *not* show up in certain searches 4 | -------------------------------------------------------------------------------- /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/LowLevelFileIO-test-files/ru_bad_utf8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LowLevelFileIO-test-files/ru_bad_utf8.html -------------------------------------------------------------------------------- /test/spec/extension-test-files/invalid-version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/invalid-version.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/main-in-directory.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/main-in-directory.zip -------------------------------------------------------------------------------- /samples/bg/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/bg/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/cs/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/cs/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/da/Kom godt i gang/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/da/Kom godt i gang/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/el/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/el/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/ja/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/ja/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/ru/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/ru/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /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/Wikunia/brackets/master/src/styles/fonts/SourceSansPro/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /test/smokes/citrus completed/images/icon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/smokes/citrus completed/images/icon_facebook.png -------------------------------------------------------------------------------- /test/spec/DocumentCommandHandlers-test-files/couz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/DocumentCommandHandlers-test-files/couz.png -------------------------------------------------------------------------------- /test/spec/DocumentCommandHandlers-test-files/couz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/DocumentCommandHandlers-test-files/couz2.png -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/events.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/events.jpg -------------------------------------------------------------------------------- /samples/pt-br/Primeiros Passos/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/pt-br/Primeiros Passos/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/pt-pt/Primeiros Passos/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/pt-pt/Primeiros Passos/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/root/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/root/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/zh-cn/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/zh-cn/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /samples/zh-tw/Getting Started/screenshots/quick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/zh-tw/Getting Started/screenshots/quick-edit.png -------------------------------------------------------------------------------- /src/filesystem/impls/appshell/node/win32/CodeHelper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/filesystem/impls/appshell/node/win32/CodeHelper.exe -------------------------------------------------------------------------------- /src/styles/fonts/SourceCodePro/SourceCodePro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/styles/fonts/SourceCodePro/SourceCodePro-Medium.ttf -------------------------------------------------------------------------------- /src/styles/fonts/SourceCodePro/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/styles/fonts/SourceCodePro/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/SourceSansPro/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/styles/fonts/SourceSansPro/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/SourceSansPro/SourceSansPro-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/styles/fonts/SourceSansPro/SourceSansPro-Semibold.ttf -------------------------------------------------------------------------------- /test/spec/EditorCommandHandlers-test-files/test.js: -------------------------------------------------------------------------------- 1 | function testMe() { 2 | console.log("this is a test"); 3 | } 4 | 5 | function main() { 6 | testMe(); 7 | } -------------------------------------------------------------------------------- /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/FindReplace-known-goods/regexp-replace-multiline/css/foo.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body CHANGED 3 | h1, footer CHANGED 4 | ul.foo CHANGED 5 | .bar CHANGED 6 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-zero-length/bar.txt: -------------------------------------------------------------------------------- 1 | CHANGEDbar.txt file 2 | CHANGED 3 | CHANGEDThis file should *not* show up in certain searches 4 | CHANGED -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/FindReplace-test-files/images/icon_twitter.png -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/lrg_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/lrg_hero.jpg -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/lrg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/lrg_logo.png -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/med_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/med_hero.jpg -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/med_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/med_logo.png -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/sml_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/sml_logo.png -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/specials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/specials.jpg -------------------------------------------------------------------------------- /test/spec/extension-test-files/basic-valid-extension.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/basic-valid-extension.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/basic-valid-theme-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/basic-valid-theme-1.0.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/incompatible-version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/incompatible-version.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/missing-name-version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/missing-name-version.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/missing-package-json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/missing-package-json.zip -------------------------------------------------------------------------------- /test/spec/extension-test-files/with-npm-dependencies.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/with-npm-dependencies.zip -------------------------------------------------------------------------------- /test/thirdparty/bootstrap2/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/thirdparty/bootstrap2/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /src/extensions/default/InlineTimingFunctionEditor/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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 | -------------------------------------------------------------------------------- /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/JSUtils-test-files/es6-async-arrow.js: -------------------------------------------------------------------------------- 1 | // Async fn def 2 | var foo = { async bar() {} }; 3 | // ArrowExpression usage to define function 4 | var fooAgain = () => {}; -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Cookies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Cookies -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Favicons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Favicons -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/History: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/History -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Web Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Web Data -------------------------------------------------------------------------------- /test/spec/extension-test-files/invalid-brackets-version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/invalid-brackets-version.zip -------------------------------------------------------------------------------- /samples/fa-ir/Getting Started/screenshots/farsiquick-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/samples/fa-ir/Getting Started/screenshots/farsiquick-edit.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Last Tabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Last Tabs -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Shortcuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Shortcuts -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Top Sites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Top Sites -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/icon_chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/icon_chevron.png -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/icon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/icon_facebook.png -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/MainViewFactory-test-files/images/icon_twitter.png -------------------------------------------------------------------------------- /test/spec/extension-test-files/basic-valid-extension-0.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/brackets/master/test/spec/extension-test-files/one-level-extension-master.zip -------------------------------------------------------------------------------- /test/thirdparty/bootstrap2/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/thirdparty/bootstrap2/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /src/extensions/default/InlineTimingFunctionEditor/grid-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/extensions/default/InlineTimingFunctionEditor/grid-dark.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Current Tabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Current Tabs -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Last Session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Last Session -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Visited Links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Visited Links -------------------------------------------------------------------------------- /test/spec/PreferencesBase-test-files/.brackets.json: -------------------------------------------------------------------------------- 1 | { 2 | "spaceUnits": 9, 3 | "path": { 4 | "foo.go": { 5 | "spaceUnits": 7 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/color_thumb_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/extensions/default/InlineColorEditor/img/color_thumb_back.png -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_color-well.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/extensions/default/InlineColorEditor/img/grabber_color-well.png -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/brackets/master/src/extensions/default/UrlCodeHints/testfiles/subfolder/chevron.png -------------------------------------------------------------------------------- /src/extensions/samples/InlineImageViewer/InlineImageViewer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 | -------------------------------------------------------------------------------- /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/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Archived History -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Current Session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Current Session -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/color_thumb_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/brackets/master/src/extensions/default/InlineColorEditor/img/grabber_color-slider.png -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/samples/BracketsConfigCentral/htmlContent/logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/extensions/samples/BracketsConfigCentral/htmlContent/logo-sm.png -------------------------------------------------------------------------------- /src/htmlContent/contributors-list.html: -------------------------------------------------------------------------------- 1 | {{#.}}{{login}}{{/.}} 2 | -------------------------------------------------------------------------------- /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/extensions/default/InlineColorEditor/img/color_thumb_back_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/extensions/default/InlineColorEditor/img/color_thumb_back_dark.png -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/grabber_color-slider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/es6-static-methods.js: -------------------------------------------------------------------------------- 1 | class Rectangle extends Shape { 2 | static defaultRectangle () { 3 | return new Rectangle("default", 0, 0, 100, 100) 4 | } 5 | } -------------------------------------------------------------------------------- /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-MultiBrowser-test-files/sub/icon_chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-MultiBrowser-test-files/sub/icon_chevron.png -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/History Index 2012-04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/History Index 2012-04 -------------------------------------------------------------------------------- /src/extensions/default/InlineColorEditor/img/color_thumb_back_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/extensions/default/InlineColorEditor/img/color_thumb_back_dark@2x.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptCodeHints/node/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "brackets-javascript-code-hints", 3 | "dependencies": { 4 | "acorn": "5.1.1", 5 | "tern": "0.21.0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /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}} -------------------------------------------------------------------------------- /src/styles/images/preview-bg-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/History Provider Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/History Provider Cache -------------------------------------------------------------------------------- /src/extensions/default/UrlCodeHints/testfiles/subfolder/test.scss: -------------------------------------------------------------------------------- 1 | /* test.scss */ 2 | body { 3 | .test { 4 | &.brackets { 5 | background-image: url(); 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/styles/images/select-triangles.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/RequireJSConfig/bar.js: -------------------------------------------------------------------------------- 1 | /*global define */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | exports.bar = "bar_exported"; 7 | }); -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/invalid.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "cmd-o": "file.open", 5 | } 6 | } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-chrome-user-data/Default/Network Action Predictor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/LiveDevelopment-chrome-user-data/Default/Network Action Predictor -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /src/styles/images/preview-bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/reassignCopy.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "ctrl-o": "edit.copy" 5 | } 6 | } -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/iframe.css: -------------------------------------------------------------------------------- 1 | #testId { 2 | font-size: 20px; 3 | } 4 | 5 | .testClass { 6 | background-color:rgba(102,102,204,.5); 7 | color:rgba(255,255,255,1); 8 | } 9 | 10 | -------------------------------------------------------------------------------- /test/spec/extension-test-files/added-package-json-test/missing-package-json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/extension-test-files/added-package-json-test/missing-package-json.zip -------------------------------------------------------------------------------- /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/QuickView/preview-bg-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /test/spec/CSSInlineEdit-test-files/css/test.css: -------------------------------------------------------------------------------- 1 | .standard { 2 | background-color: red; 3 | } 4 | 5 | .button { 6 | padding: 30px; 7 | } 8 | .banner-new { 9 | background-color: blue; 10 | } 11 | -------------------------------------------------------------------------------- /test/spec/CSSInlineEdit-test-files/css/test2.css: -------------------------------------------------------------------------------- 1 | .standard { 2 | background-color: red; 3 | } 4 | 5 | .button { 6 | padding: 30px; 7 | } 8 | .banner-new { 9 | background-color: blue; 10 | } 11 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-replace-multiline/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/FindReplace-known-goods/regexp-replace-multiline/images/icon_twitter.png -------------------------------------------------------------------------------- /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/extensions/default/StaticServer/node/node_modules/connect/lib/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/favicon.ico -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/auto-install-extensions1/not-an-extension.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/ExtensionManager-test-files/auto-install-extensions1/not-an-extension.zip -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/restrictedShortcut.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "ctrl-z": "edit.selectLine" 5 | } 6 | } -------------------------------------------------------------------------------- /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/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/QuickView/preview-bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/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()'; -------------------------------------------------------------------------------- /tasks/cla-exceptions.json: -------------------------------------------------------------------------------- 1 | { 2 | "busykai": true, 3 | "mjherna1": true, 4 | "shahabl": true, 5 | "sebaslv": true, 6 | "albertinad": true, 7 | "walfgithub": true, 8 | "mfatekho": true 9 | } 10 | -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/auto-install-extensions1/mock-extension-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/ExtensionManager-test-files/auto-install-extensions1/mock-extension-v1.0.0.zip -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/auto-install-extensions2/mock-extension-v1.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/ExtensionManager-test-files/auto-install-extensions2/mock-extension-v1.1.1.zip -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-replace-multiline-partial/css/foo.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body CHANGED 0; 3 | } 4 | h1, footer CHANGED 2px auto; 5 | } 6 | ul.foo CHANGED none; 7 | } 8 | .bar CHANGED large; 9 | } 10 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-MultiBrowser-test-files/sub/test.css: -------------------------------------------------------------------------------- 1 | body { background-color: red;} 2 | 3 | .main { background: url(icon_chevron.png); } 4 | 5 | .sub { background: url(file:///fake.png); } 6 | 7 | h1 { color: blue; } 8 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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 | -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/auto-install-extensions3/a-mock-extension-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/ExtensionManager-test-files/auto-install-extensions3/a-mock-extension-v1.0.0.zip -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/auto-install-extensions3/b-mock-extension-v1.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/ExtensionManager-test-files/auto-install-extensions3/b-mock-extension-v1.1.1.zip -------------------------------------------------------------------------------- /test/spec/ExtensionManager-test-files/auto-install-extensions3/c-mock-extension-v1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/ExtensionManager-test-files/auto-install-extensions3/c-mock-extension-v1.1.0.zip -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-replace-multiline-partial/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets/master/test/spec/FindReplace-known-goods/regexp-replace-multiline-partial/images/icon_twitter.png -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /src/extensions/default/LESSSupport/unittests.js: -------------------------------------------------------------------------------- 1 | define(function (require, exports, module) { 2 | "use strict"; 3 | 4 | // To make sure we load this extension in order to define LESS mode for tests 5 | require("main"); 6 | }); -------------------------------------------------------------------------------- /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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_zip.png -------------------------------------------------------------------------------- /src/extensions/default/UrlCodeHints/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "htmlAttrs": { 3 | "href": { "attribOption": [] }, 4 | "poster": { "attribOption": [] }, 5 | "src": { "attribOption": [] } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /test/spec/CodeHint-test-files/test1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | < 5 | < 6 | 7 | 12 | -------------------------------------------------------------------------------- /test/spec/JSUtils-test-files/es6-classes.js: -------------------------------------------------------------------------------- 1 | class Shape { 2 | constructor (id, x, y) { 3 | this.id = id 4 | this.move(x, y) 5 | } 6 | move (x, y) { 7 | this.x = x 8 | this.y = y 9 | } 10 | } -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_world.png -------------------------------------------------------------------------------- /test/spec/CSSInlineEdit-test-files/less/test.less: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } 4 | 5 | .banner { 6 | background-color: red; 7 | } 8 | div { 9 | &.banner-new2 { 10 | background-color: blue; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files/css/foo.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_wrench.png -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/css/foo.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/css/foo2.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/css/foo3.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/css/foo4.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/css/foo5.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/css/foo6.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/css/foo7.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_text_width.png -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/unchanged/css/foo.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/lib/public/icons/page_white_visualstudio.png -------------------------------------------------------------------------------- /src/styles/images/horizontal-dash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/styles/images/vertical-dash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /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/Theme-test-files/simple-scrollbars.css: -------------------------------------------------------------------------------- 1 | ::-webkit-scrollbar { 2 | width: 12px; 3 | }::-webkit-scrollbar-thumb:window-inactive{ 4 | background: white; 5 | } 6 | 7 | ::-webkit-scrollbar-thumb 8 | { 9 | background: white; 10 | } 11 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-sensitive/css/foo.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/MainViewManager-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/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /src/htmlContent/filter-name.html: -------------------------------------------------------------------------------- 1 |
    ×
    {{{filter-name}}}{{{filter-patterns}}} -------------------------------------------------------------------------------- /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/FindReplace-known-goods/simple-case-insensitive/css/foo.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /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/JavaScriptCodeHints/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "brackets-javascript-code-hints", 3 | "dependencies": { 4 | "acorn": "3.3.0", 5 | "tern": "0.20.0" 6 | }, 7 | "scripts": { 8 | "postinstall": "node ./fix-acorn" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/pf1y5.png -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-dollar-replace/css/foo.css: -------------------------------------------------------------------------------- 1 | /* [foo].[css] */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.[foo] { 9 | list-style: none; 10 | } 11 | .[bar] { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/css/foo.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/css/foo2.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/css/foo3.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/css/foo4.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/css/foo5.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/css/foo6.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/css/foo7.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/brackets/master/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/extensions/default/MDNDocs/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 | {{6}}-webkit-animation: none; 7 | {{7}}-border-width: 2px; 8 | } 9 | -------------------------------------------------------------------------------- /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/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/multi_video.upload -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-only-foo.css/css/foo.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, barter { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-unchecked/css/foo.css: -------------------------------------------------------------------------------- 1 | /* bar.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.bar { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/Wikunia/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/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/FindReplace-known-goods/regexp-case-insensitive/css/foo.css: -------------------------------------------------------------------------------- 1 | /* CHANGED.CHANGED */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.CHANGED { 9 | list-style: none; 10 | } 11 | .CHANGED { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-case-sensitive/css/foo.css: -------------------------------------------------------------------------------- 1 | /* CHANGED.CHANGED */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.CHANGED { 9 | list-style: none; 10 | } 11 | .CHANGED { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-except-foo.css/css/foo.css: -------------------------------------------------------------------------------- 1 | /* foo.css */ 2 | body { 3 | margin: 0; 4 | } 5 | h1, footer { 6 | padding: 2px auto; 7 | } 8 | ul.foo { 9 | list-style: none; 10 | } 11 | .bar { 12 | font-size: large; 13 | } 14 | -------------------------------------------------------------------------------- /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/DebugCommands/styles.css: -------------------------------------------------------------------------------- 1 | #error-counter { 2 | cursor: pointer; 3 | transition: all 3s; 4 | color: #f74687; 5 | background-color: transparent; 6 | } 7 | #error-counter.flash { 8 | transition: all 1s; 9 | background-color: #ffb0cd; 10 | } 11 | -------------------------------------------------------------------------------- /src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/beta-sticker-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/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/Wikunia/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/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/file/menu_separator.png -------------------------------------------------------------------------------- /src/extensions/samples/InlineImageViewer/style.css: -------------------------------------------------------------------------------- 1 | .inline-image-viewer .filename { 2 | text-align: right; 3 | padding-right: 1.5em; 4 | line-height: 32px; 5 | } 6 | 7 | .inline-image-viewer .image { 8 | display: block; 9 | margin: 0 auto; 10 | opacity: 0; 11 | } -------------------------------------------------------------------------------- /src/filesystem/impls/appshell/node/win32/CodeHelper.md: -------------------------------------------------------------------------------- 1 | # Native File Watching for Windows using C# FileSystemWatcher 2 | 3 | - Repository: https://github.com/Microsoft/vscode-filewatcher-windows 4 | 5 | # Build 6 | 7 | - Build in "Release" config 8 | - Copy CodeHelper.exe over into this folder -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "brackets-src", 3 | "dependencies": { 4 | "acorn": "5.1.1", 5 | "codemirror": "5.28.0", 6 | "less": "2.7.2", 7 | "preact": "8.2.1", 8 | "preact-test-utils": "0.1.3", 9 | "preact-compat": "adobe/preact-compat" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/spec/MainViewFactory-test-files/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/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 | -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/keymap1.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "ctrl-2": "view.toggleSidebar", 5 | "ctrl-l": "navigate.gotoDefinition", 6 | "Alt-Ctrl-L": null 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/macKeymap1.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "ctrl-2": "view.toggleSidebar", 5 | "ctrl-l": "navigate.gotoDefinition", 6 | "Alt-Cmd-L": null 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /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/Wikunia/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/Wikunia/brackets/master/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/multiparty/test/fixture/http/encoding/pf1y5.png.http -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /test/spec/ExtensionLoader-test-files/RequireJSConfig/main.js: -------------------------------------------------------------------------------- 1 | /*global define */ 2 | 3 | define(function (require, exports, module) { 4 | "use strict"; 5 | 6 | // aliased to bar 7 | var foo = require("foo"); 8 | 9 | // print "bar_exported" 10 | console.log(foo.bar); 11 | }); -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-modified/css/foo.css: -------------------------------------------------------------------------------- 1 | /* added a bar line */ 2 | /* bar.css */ 3 | body { 4 | margin: 0; 5 | } 6 | h1, barter { 7 | padding: 2px auto; 8 | } 9 | ul.bar { 10 | list-style: none; 11 | } 12 | .bar { 13 | font-size: large; 14 | } 15 | -------------------------------------------------------------------------------- /src/styles/images/topcoat-inactive-15.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/macRestrictedShortcut.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "cmd-z": "edit.selectLine", 5 | "Cmd-m": "view.toggleSidebar", 6 | "cmd-h": "navigate.quickOpen" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /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/README.md: -------------------------------------------------------------------------------- 1 | # Brackets Default Extensions 2 | 3 | This directory contains extensions that ship with Brackets and are enabled 4 | by default. Examples include extensions for QuickOpen. 5 | 6 | (README.md serves as a dummy file so this directory can be added to git.) 7 | -------------------------------------------------------------------------------- /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/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/extensions/samples/BracketsConfigCentral/styles/styles.css: -------------------------------------------------------------------------------- 1 | .brackets-config-central 2 | { 3 | background-color: bisque; 4 | } 5 | 6 | .brackets-config-central input[type="text"] 7 | { 8 | width: 1em; 9 | } 10 | 11 | .brackets-config-central .config-options 12 | { 13 | margin: 2em; 14 | } 15 | 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/styles/images/edit-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /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/extensions/default/QuickView/unittest-files/test.js: -------------------------------------------------------------------------------- 1 | /* Sample JS for testing the QuickView extension. */ 2 | 3 | function green() { // generate green colors 4 | var color = "green", 5 | tan = Math.tan; 6 | return tan(array["red"], array[red]); 7 | } 8 | darkgray 9 | // #123456 10 | // :rgb(65, 43, 21) 11 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/styles/images/topcoat-okay-15.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /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/samples/README.md: -------------------------------------------------------------------------------- 1 | # Brackets Example Extensions 2 | 3 | This directory contains extensions that should be disabled by default, but 4 | that we want to add to the repo. This might include things like examples and 5 | test cases. 6 | 7 | (README.md also serves as a dummy file so this directory can be added to git.) 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/extension-manager-installed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/htmlContent/search-panel.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | × 5 |
    6 |
    7 |
    8 | -------------------------------------------------------------------------------- /src/htmlContent/update-list.html: -------------------------------------------------------------------------------- 1 | {{#.}} 2 |
    3 |

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

    4 | 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 | }); -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/foo2.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/foo3.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/foo4.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/foo5.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/foo6.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-test-files-large/foo7.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/keymap.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "ctrl-2": "file.openFolder", 5 | "Alt-Ctrl-Backspace": "view.toggleSidebar", 6 | "ctrl-l": "navigate.gotoDefinition", 7 | "Alt-Ctrl-L": null 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-zero-length/css/foo.css: -------------------------------------------------------------------------------- 1 | CHANGED/* foo.css */ 2 | CHANGEDbody { 3 | CHANGED margin: 0; 4 | CHANGED} 5 | CHANGEDh1, footer { 6 | CHANGED padding: 2px auto; 7 | CHANGED} 8 | CHANGEDul.foo { 9 | CHANGED list-style: none; 10 | CHANGED} 11 | CHANGED.bar { 12 | CHANGED font-size: large; 13 | CHANGED} 14 | CHANGED -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/unchanged/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/macKeymap.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "ctrl-2": "file.openFolder", 5 | "Alt-Cmd-Backspace": "view.toggleSidebar", 6 | "ctrl-l": "navigate.gotoDefinition", 7 | "Alt-Cmd-L": null 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /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/htmlContent/problems-panel.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | × 5 |
    6 |
    7 |
    -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/changed-file/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /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/FindReplace-known-goods/simple-case-sensitive/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/duplicateShortcuts.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "ctrl-2": "file.openFolder", 5 | "Ctrl-2": "file.openFolder", 6 | "Ctrl-Alt-4": "view.toggleSidebar", 7 | "Alt-Ctrl-4": "view.toggleSidebar" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /test/spec/KeyBindingManager-test-files/multipleShortcuts.json: -------------------------------------------------------------------------------- 1 | { 2 | "documentation": "https://github.com/adobe/brackets/wiki/Key-Bindings", 3 | "overrides": { 4 | "ctrl-2": "file.openFolder", 5 | "ctrl-3": "file.openFolder", 6 | "ctrl-alt-4": "view.toggleSidebar", 7 | "ctrl-shift-4": "view.toggleSidebar" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-test-files/iframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Simple Test 6 | 7 | 8 | 9 | 10 | 11 |

    Brackets is awesome!

    12 | 13 | 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-replace-multiline/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-MultiBrowser-test-files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test 4 | 5 | 6 | 7 |
    8 |

    Hello

    9 |
    10 |
    11 |
    12 | 13 | 14 | -------------------------------------------------------------------------------- /test/spec/LiveDevelopment-MultiBrowser-test-files/withoutHead.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Simple Test 4 | 5 | 6 | 7 |

    Brackets is awesome!

    8 |

    Red is bad. Green is good.

    9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/htmlContent/working-set.html: -------------------------------------------------------------------------------- 1 |
    2 |
    {{WORKING_FILES}}
    3 |
    4 | 5 | 7 |
    8 |
    -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-case-sensitive/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | CHANGED Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | CHANGED(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/foo2.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/foo3.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/foo4.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/foo5.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/foo6.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-large/foo7.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/regexp-replace-multiline-partial/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var Foo = require("modules/Foo"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callFoo() { 8 | 9 | foo(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-modified/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-only-foo.css/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-unchecked/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /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/FindReplace-known-goods/regexp-dollar-replace/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | [var] [Foo] = require("modules/[Foo]"), 4 | [Bar] = require("modules/[Bar]"), 5 | [Baz] = require("modules/[Baz]"); 6 | 7 | function callFoo() { 8 | 9 | [foo](); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/spec/FindReplace-known-goods/simple-case-insensitive-except-foo.css/foo.js: -------------------------------------------------------------------------------- 1 | /* Test comment */ 2 | define(function (require, exports, module) { 3 | var bar = require("modules/bar"), 4 | Bar = require("modules/Bar"), 5 | Baz = require("modules/Baz"); 6 | 7 | function callbar() { 8 | 9 | bar(); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /test/spec/CSSUtils-test-files/property-list.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif 3 | } 4 | 5 | .alert { 6 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2); 7 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); 8 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); 9 | } 10 | -------------------------------------------------------------------------------- /test/spec/JSUtils-test-files/es6-inheritance.js: -------------------------------------------------------------------------------- 1 | class Rectangle extends Shape { 2 | constructor (id, x, y, width, height) { 3 | super(id, x, y) 4 | this.width = width 5 | this.height = height 6 | } 7 | } 8 | class Circle extends Shape { 9 | constructor (id, x, y, radius) { 10 | super(id, x, y) 11 | this.radius = radius 12 | } 13 | } -------------------------------------------------------------------------------- /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/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 | --------------------------------------------------------------------------------