From df3493de672d021366f9c39dab0a5d83973d965d Mon Sep 17 00:00:00 2001 From: Tim Robinson Date: Wed, 10 Feb 2016 19:23:08 +0000 Subject: [PATCH 01/65] Adding updateProject function to apps_proxy --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index e74f1652..c0f902e0 100644 --- a/package.json +++ b/package.json @@ -91,6 +91,7 @@ "c9.ide.immediate": "#a962119bec", "c9.ide.installer": "#0fde9f0067", "c9.ide.language.python": "#3c9e641b9f", + "c9.ide.language.go": "#undefined", "c9.ide.mount": "#befb8188d5", "c9.ide.navigate": "#38ae100ea1", "c9.ide.newresource": "#981a408a7b", From f1281977062a02e481aaeaa52e04b503adf1b049 Mon Sep 17 00:00:00 2001 From: Tim Robinson Date: Thu, 11 Feb 2016 17:22:35 +0000 Subject: [PATCH 02/65] Check that we have some vfs servers, otherwise search --- plugins/c9.vfs.client/endpoint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/c9.vfs.client/endpoint.js b/plugins/c9.vfs.client/endpoint.js index 50e6bb85..c90ff5e3 100644 --- a/plugins/c9.vfs.client/endpoint.js +++ b/plugins/c9.vfs.client/endpoint.js @@ -87,7 +87,7 @@ define(function(require, exports, module) { // first time take the ones from the options var _servers = servers; - if (_servers) { + if (_servers && _servers.length) { servers = null; return callback(null, _servers); } From 2e7037ef7b245fb9bc43dfa97fd1e19140df444d Mon Sep 17 00:00:00 2001 From: nightwing Date: Thu, 18 Feb 2016 00:05:30 +0400 Subject: [PATCH 03/65] do not disable markers after rename variable --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c202dff7..4a5f7189 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "c9" ], "c9plugins": { - "c9.ide.language": "#050c0de5a4", + "c9.ide.language": "#4c02a26baf", "c9.ide.language.css": "#be07d72209", "c9.ide.language.generic": "#a4023db7f6", "c9.ide.language.html": "#22fdc74869", From 5d3e4702018eb84d905d398957a46f27141efcd9 Mon Sep 17 00:00:00 2001 From: nightwing Date: Thu, 18 Feb 2016 01:42:00 +0400 Subject: [PATCH 04/65] do not block copy from line widgets (e.g immediate output) --- package.json | 2 +- plugins/c9.ide.ace/ace.js | 14 ++++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 4a5f7189..1debaa8b 100644 --- a/package.json +++ b/package.json @@ -89,7 +89,7 @@ "c9.ide.format": "#5ec97fb083", "c9.ide.help.support": "#98a1b45962", "c9.ide.imgeditor": "#612e75ef4f", - "c9.ide.immediate": "#a962119bec", + "c9.ide.immediate": "#19758abe08", "c9.ide.installer": "#0fde9f0067", "c9.ide.language.python": "#675ddb4c8f", "c9.ide.language.go": "#8f6d0beae7", diff --git a/plugins/c9.ide.ace/ace.js b/plugins/c9.ide.ace/ace.js index 19b2c1fa..7ee600f4 100644 --- a/plugins/c9.ide.ace/ace.js +++ b/plugins/c9.ide.ace/ace.js @@ -2058,8 +2058,8 @@ define(function(require, exports, module) { else { tab.classList.remove("dark"); html.style.boxShadow = skin.indexOf("flat") == -1 - "0 1px 0 0 rgba(255, 255, 255, .3) inset" - ""; + ? "0 1px 0 0 rgba(255, 255, 255, .3) inset" + : ""; } html.style.backgroundColor = theme.bg; @@ -2104,7 +2104,7 @@ define(function(require, exports, module) { value = false; // Own Implementations - switch(name) { + switch (name) { case "theme": ace.setTheme(value); return; @@ -2537,13 +2537,16 @@ define(function(require, exports, module) { var data = ace.getCopyText(); ace.onCut(); - e.clipboardData.setData("text/plain", data); + data && e.clipboardData.setData("text/plain", data); }); plugin.on("copy", function(e) { if (e.native) return; // Ace handles this herself var data = ace.getCopyText(); - e.clipboardData.setData("text/plain", data); + // check if user tries to copy text from line widget + if (!data && document.activeElement != ace.textInput.getElement()) + data = document.getSelection().toString(); + data && e.clipboardData.setData("text/plain", data); }); plugin.on("paste", function(e) { if (e.native) return; // Ace handles this herself @@ -2685,7 +2688,6 @@ define(function(require, exports, module) { else { return handle.theme; } - return theme; }, _events: [ From 7f655d8883c7b590b0823424b5f7b548f0fed2e1 Mon Sep 17 00:00:00 2001 From: nightwing Date: Thu, 18 Feb 2016 01:42:50 +0400 Subject: [PATCH 05/65] remove contenttype and tweak file icons --- plugins/c9.core/util.js | 151 ++++++++++++++-------------------- plugins/c9.core/util_test.js | 6 +- plugins/c9.fs/fs.cache.xml.js | 1 - 3 files changed, 62 insertions(+), 96 deletions(-) diff --git a/plugins/c9.core/util.js b/plugins/c9.core/util.js index 0fdeb788..048e26ce 100644 --- a/plugins/c9.core/util.js +++ b/plugins/c9.core/util.js @@ -31,80 +31,38 @@ define(function(require, exports, module) { }; var SupportedIcons = { - "application/xhtml+xml":"html", - "text/css": "css", - "text/x-scss": "css", - "text/x-sass": "css", - "text/html":"html", - "application/pdf":"page_white_acrobat", - "image":"image", - "application/xml":"page_white_code_red", - "image/svg+xml": "page_white_picture", - "text/plain": "page_white_text", - "application/javascript": "page_white_code", - "application/json": "page_white_code", - "text/x-script.python": "page_white_code", - "text/x-script.ocaml": "page_white_code", - "text/x-script.clojure": "page_white_code", - "application/x-httpd-php": "page_white_php", - "application/x-sh": "page_white_wrench", - "text/x-coldfusion": "page_white_coldfusion", - "text/x-script.ruby": "page_white_ruby", - "text/x-script.coffeescript": "page_white_cup", - "text/cpp": "page_white_cplusplus", - "text/x-c": "page_white_c", - "text/x-logiql": "logiql", - "text/x-csharp": "page_white_csharp", - "text/x-java-source": "page_white_cup", - "text/x-markdown": "page_white_text", - "text/x-xquery": "page_white_code", - "text/x-go": "page_white_code", - }; - - var contentTypes = { - "c9search": "text/x-c9search", - - "js": "application/javascript", - "json": "application/json", - "run": "application/javascript", - "build": "application/javascript", - "css": "text/css", - "scss": "text/x-scss", - "sass": "text/x-sass", - - "xml": "application/xml", - "rdf": "application/rdf+xml", - "rss": "application/rss+xml", - "svg": "image/svg+xml", - "wsdl": "application/wsdl+xml", - "xslt": "application/xslt+xml", - "atom": "application/atom+xml", - "mathml": "application/mathml+xml", - "mml": "application/mathml+xml", - - "php": "application/x-httpd-php", - "phtml": "application/x-httpd-php", - "html": "text/html", - "xhtml": "application/xhtml+xml", - "coffee": "text/x-script.coffeescript", - "py": "text/x-script.python", - "go": "text/x-go", - "java": "text/x-java-source", - "logic": "text/x-logiql", - - "ru": "text/x-script.ruby", - "gemspec": "text/x-script.ruby", - "rake": "text/x-script.ruby", - "rb": "text/x-script.ruby", - - "c": "text/x-c", - "cc": "text/x-c", - "cpp": "text/x-c", - "cxx": "text/x-c", - "h": "text/x-c", - "hh": "text/x-c", - "hpp": "text/x-c", - + "c9search": "page_white_magnify", + "js": "page_white_code", + "jsx": "page_white_code_red", + "ts": "page_white_code", + "tsx": "page_white_code_red", + "json": "page_white_code", + "css": "css", + "scss": "css", + "sass": "css", + "less": "css", + "xml": "page_white_code_red", + "svg": "page_white_picture", + "php": "page_white_php", + "phtml": "page_white_php", + "html": "html", + "xhtml": "html", + "coffee": "page_white_cup", + "py": "page_white_code", + "go": "page_white_code", + "java": "page_white_cup", + "logic": "logiql", + "ru": "page_white_ruby", + "gemspec": "page_white_ruby", + "rake": "page_white_ruby", + "rb": "page_white_ruby", + "c": "page_white_c", + "cc": "page_white_c", + "cpp": "page_white_cplusplus", + "cxx": "page_white_c", + "h": "page_white_h", + "hh": "page_white_h", + "hpp": "page_white_h", "bmp": "image", "djv": "image", "djvu": "image", @@ -123,19 +81,32 @@ define(function(require, exports, module) { "tiff": "image", "xbm": "image", "xpm": "image", - - "clj": "text/x-script.clojure", - "ml": "text/x-script.ocaml", - "mli": "text/x-script.ocaml", - "cfm": "text/x-coldfusion", - "sql": "text/x-sql", - - "sh": "application/x-sh", - "bash": "application/x-sh", - - "xq": "text/x-xquery", - - "terminal": "terminal" + "pdf": "page_white_acrobat", + "clj": "page_white_code", + "ml": "page_white_code", + "mli": "page_white_code", + "cfm": "page_white_coldfusion", + "sql": "page_white_database", + "db": "page_white_database", + "sh": "page_white_wrench", + "bash": "page_white_wrench", + "xq": "page_white_code", + "xz": "page_white_zip", + "gz": "page_white_zip", + "bz": "page_white_zip", + "zip": "page_white_zip", + "tar": "page_white_zip", + "rar": "page_white_compressed", + "exe": "page_white_swoosh", + "o": "page_white_swoosh", + "lnk": "page_white_swoosh", + "txt": "page_white_text", + "settings": "page_white_gear", + "run": "page_white_gear", + "build": "page_white_gear", + "gitignore": "page_white_gear", + "profile": "page_white_gear", + "bashrc": "page_white_gear", }; plugin.getFileIcon = function(name) { @@ -144,7 +115,7 @@ define(function(require, exports, module) { if (name) { ext = name.split(".").pop().toLowerCase(); - icon = SupportedIcons[contentTypes[ext]] || "page_white_text"; + icon = SupportedIcons[ext] || "page_white_text"; } return icon; }; @@ -167,8 +138,8 @@ define(function(require, exports, module) { }; plugin.getContentType = function(filename) { - var type = filename.split(".").pop().split("!").pop().toLowerCase() || ""; - return contentTypes[type] || "text/plain"; + console.warn("util content type is deprecated"); + return "text/plain"; }; // taken from http://xregexp.com/ diff --git a/plugins/c9.core/util_test.js b/plugins/c9.core/util_test.js index 02c778b9..ef668547 100644 --- a/plugins/c9.core/util_test.js +++ b/plugins/c9.core/util_test.js @@ -25,11 +25,7 @@ require(["lib/architect/architect", "lib/chai/chai"], function (architect, chai) function main(options, imports, register) { var util = imports.util; - describe('getContentType, getFileIcon', function() { - it('should retrieve the content type based on a filename', function() { - expect(util.getContentType("test.js")).to.equal("application/javascript"); - expect(util.getContentType("test.html")).to.equal("text/html"); - }); + describe('getFileIcon', function() { it('should retrieve the icon class name based on a filename', function() { expect(util.getFileIcon("test.js")).to.equal("page_white_code"); expect(util.getFileIcon("test.html")).to.equal("html"); diff --git a/plugins/c9.fs/fs.cache.xml.js b/plugins/c9.fs/fs.cache.xml.js index de85131e..34b693b2 100644 --- a/plugins/c9.fs/fs.cache.xml.js +++ b/plugins/c9.fs/fs.cache.xml.js @@ -571,7 +571,6 @@ define(function(require, exports, module) { if (isFolder) { node.status = node.status || "pending"; } else { - node.contenttype = stat.mime || util.getContentType(name); node.status = "loaded"; } if (typeof stat.mtime !== "number" && stat.mtime) { From d67f77d98651a8e6fc8a16a452e3c39137b42fd1 Mon Sep 17 00:00:00 2001 From: Ruben Daniels Date: Thu, 18 Feb 2016 02:27:16 +0000 Subject: [PATCH 06/65] Beautified Styling for migration screen. Sanitized loading screen messaging --- configs/client-default.js | 6 ++++++ configs/standalone.js | 4 ++++ .../images/loadingbgrepeat.png | Bin 0 -> 934 bytes .../images/loadingbgrepeat_dark.png | Bin 0 -> 944 bytes plugins/c9.ide.layout.classic/loading-flat.css | 12 +++++------- plugins/c9.ide.server/views/flat-load-screen.html | 14 +------------- 6 files changed, 16 insertions(+), 20 deletions(-) create mode 100644 plugins/c9.ide.layout.classic/images/loadingbgrepeat.png create mode 100644 plugins/c9.ide.layout.classic/images/loadingbgrepeat_dark.png diff --git a/configs/client-default.js b/configs/client-default.js index b3379962..c9e560eb 100644 --- a/configs/client-default.js +++ b/configs/client-default.js @@ -164,6 +164,12 @@ module.exports = function(options) { "plugins/c9.ide.editors/pane", "plugins/c9.ide.editors/undomanager", + { + packagePath: "plugins/c9.ide.restore/restore", + staticPrefix: staticPrefix + "/plugins/c9.ide.layout.classic", + ideBaseUrl: options.ideBaseUrl + }, + "plugins/c9.ide.newresource/newresource", "plugins/c9.ide.newresource/open", "plugins/c9.ide.undo/undo", diff --git a/configs/standalone.js b/configs/standalone.js index bb6f596e..500e16b6 100644 --- a/configs/standalone.js +++ b/configs/standalone.js @@ -194,6 +194,10 @@ module.exports = function(config, optimist) { "./c9.vfs.server/statics", "./c9.analytics/mock_analytics", "./c9.metrics/mock_metrics", + { + packagePath: "./c9.graceful-shutdown/graceful-shutdown", + shutdown_grace_period: 100 + }, "./c9.ide.experiment/mock_experiment", { packagePath: "./c9.vfs.server/vfs.connect.standalone", diff --git a/plugins/c9.ide.layout.classic/images/loadingbgrepeat.png b/plugins/c9.ide.layout.classic/images/loadingbgrepeat.png new file mode 100644 index 0000000000000000000000000000000000000000..36bf5231af84462fc4ea1364e2467c0502193b89 GIT binary patch literal 934 zcmaJ=J#W)M7&de%l`1M&fa&BifJFR})E9D!i5xqnmT(j$k;ur!z9d#^pE+NM6EUDN zvG6k(`2!5FBJm5D_y>$IfXX?IQwD-%`|e&n&+~rXn@;=j{@$HENs{*66Q?WIE8;uY zy(<2L-)G;%a+|jXyhlfTjv0}xfDQ?8BRnQuf`i5L&!jF%J9oqWfDgPU$fuElbBvNj ziC{}oy^$r@pArs+WE{q({Qbj68H9l;KQ%nfOKdU;PnL}ImhHa3ocgsuZaf0@3<-gV za165OG)_@w$}3$Y_PJS=!3x5srhF09!0P~;G6D>xQt~xj2M{XykpZFp0F*VotZL$g zCH)8)5S6Q7{m8-_3r48x9It(elPOO)Pmrq4=W}IVQ79X$daYK=HOl3ZK$Ox&%yCwV z)5Ai+A*s*8goiW+xgs9Y88>AS=|u`rvXPC`b(uuL)C?!8u4s8m1<>>U4~?P?I^|t* z8Sg)Z)BYkMYL}#R#(dGZ(P8c?K{g|pQ`V>Sw5VcdLOD$*Gy!%Gf_onJ!#FqGUokun zxpB&I>=V~9Wuc*jVSuWlx|ZcM?UwdX*IP!j3ZZ2|quI2eWy7O_>rj6dk(d|U;F4=^ z<>tc>CBm~qSonej$Baf`l{5;s$5Pv>x8?@hW3je!RS}GuxAw1A7bY=3`F1n7;;7CSid(K@^|Pciwf{&r3&-jyR4hITu!!t+&{BeD^l{ z4}Pt`vE?DP2egOBbm0-i837(4;6&a8b&(e=UwuXmj=OUj_6Ky}zR-Le@m`MMvnXL~ zj%%D}iRaG{1tT;GV;%ndcnv`q=BpH-TynINHyQamR-+K_11VkMUJe#m*E{oKA59%$^D!yPhA$x#7u{;kud= zr__smp7VDtijvE||#j+1_1s05uxAw1A7bZ48`F20J?64nw z6tj6JY_Lh`46sW99n0uvUq_wGOEek|x$m3JrXtDmI(+{?{siwI54kt`y|-Vkf1Kub M$g$hjhvsno8yIOKt^fc4 literal 0 HcmV?d00001 diff --git a/plugins/c9.ide.layout.classic/loading-flat.css b/plugins/c9.ide.layout.classic/loading-flat.css index ec126a23..4fda746c 100644 --- a/plugins/c9.ide.layout.classic/loading-flat.css +++ b/plugins/c9.ide.layout.classic/loading-flat.css @@ -1,12 +1,10 @@ BODY.loading{ - background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(251,251,251,1) 100%); /* FF3.6-15 */ - background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(251,251,251,1) 100%); /* Chrome10-25,Safari5.1-6 */ - background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(251,251,251,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + background: url(images/loadingbgrepeat.png); + background-size: 1px 8px; } BODY.loading.dark{ - background: -moz-linear-gradient(top, rgba(37,37,37,1) 0%, rgba(35,35,35,1) 100%); /* FF3.6-15 */ - background: -webkit-linear-gradient(top, rgba(37,37,37,1) 0%,rgba(35,35,35,1) 100%); /* Chrome10-25,Safari5.1-6 */ - background: linear-gradient(to bottom, rgba(37,37,37,1) 0%,rgba(35,35,35,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + background: url(images/loadingbgrepeat_dark.png); + background-size: 1px 8px; } #loadingide { @@ -24,7 +22,7 @@ BODY.loading.dark{ -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important; } -#loadingide.dark { +#loadingide.dark, .dark #loadingide{ background-image: url(images/c9-logo-white.png); } diff --git a/plugins/c9.ide.server/views/flat-load-screen.html b/plugins/c9.ide.server/views/flat-load-screen.html index f59a85e1..6c361a61 100644 --- a/plugins/c9.ide.server/views/flat-load-screen.html +++ b/plugins/c9.ide.server/views/flat-load-screen.html @@ -19,24 +19,12 @@ "It's better up here.", "Happy coding!", "Everything as you left it.", - "Give some love to your colleague on the left!", "Thank you Ada Lovelace!", - "Feel the power of a full IDE — in the cloud.", - "Code for the cloud, in the cloud", - "Out with the old, in with the new", "POST /desktop/era", - "#OnCloud9", - "I ❤ Cloud9", - "My life. My code. My Cloud9.", - "For the love of code", - "Get Your Code On", - "Skip the hazing, love the coding", - "Stop cursing, start coding", - "GET /this/workspace#loaded", "Use our Vim mode for extra addictive effect!", "Not your grandmother's IDE", "Now made with 20% more cloud!", - "Literally makes your laptop cooler", + "Makes your laptop cooler" ]; var idx = Math.floor(Math.random() * messages.length); From 82893f291f91c7cfe4c60783edb44bce7a9b61d4 Mon Sep 17 00:00:00 2001 From: Ruben Daniels Date: Thu, 18 Feb 2016 02:27:54 +0000 Subject: [PATCH 07/65] Remove test config --- configs/client-default.js | 6 ------ configs/standalone.js | 4 ---- 2 files changed, 10 deletions(-) diff --git a/configs/client-default.js b/configs/client-default.js index c9e560eb..b3379962 100644 --- a/configs/client-default.js +++ b/configs/client-default.js @@ -164,12 +164,6 @@ module.exports = function(options) { "plugins/c9.ide.editors/pane", "plugins/c9.ide.editors/undomanager", - { - packagePath: "plugins/c9.ide.restore/restore", - staticPrefix: staticPrefix + "/plugins/c9.ide.layout.classic", - ideBaseUrl: options.ideBaseUrl - }, - "plugins/c9.ide.newresource/newresource", "plugins/c9.ide.newresource/open", "plugins/c9.ide.undo/undo", diff --git a/configs/standalone.js b/configs/standalone.js index 500e16b6..bb6f596e 100644 --- a/configs/standalone.js +++ b/configs/standalone.js @@ -194,10 +194,6 @@ module.exports = function(config, optimist) { "./c9.vfs.server/statics", "./c9.analytics/mock_analytics", "./c9.metrics/mock_metrics", - { - packagePath: "./c9.graceful-shutdown/graceful-shutdown", - shutdown_grace_period: 100 - }, "./c9.ide.experiment/mock_experiment", { packagePath: "./c9.vfs.server/vfs.connect.standalone", From 65a13f229c37f95a630a50e2993428147f013ef6 Mon Sep 17 00:00:00 2001 From: nightwing Date: Thu, 18 Feb 2016 10:40:31 +0400 Subject: [PATCH 08/65] fix indentation --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0ce3d1e4..7d5d6aa9 100644 --- a/package.json +++ b/package.json @@ -101,7 +101,7 @@ "c9.ide.preview.browser": "#a732ce9853", "c9.ide.preview.markdown": "#bc846e1562", "c9.ide.pubsub": "#a85fb27eca", - "c9.ide.readonly": "#f5121c3a57", + "c9.ide.readonly": "#fe86d1f152", "c9.ide.recentfiles": "#7c099abf40", "c9.ide.remote": "#301d2ab519", "c9.ide.processlist": "#2b12cd1bdd", From efe91063cb0320ee38c889751970da58d6fa50b6 Mon Sep 17 00:00:00 2001 From: nightwing Date: Wed, 17 Feb 2016 14:47:36 +0000 Subject: [PATCH 09/65] fix caption of request access button --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7d5d6aa9..9896b7b8 100644 --- a/package.json +++ b/package.json @@ -101,7 +101,7 @@ "c9.ide.preview.browser": "#a732ce9853", "c9.ide.preview.markdown": "#bc846e1562", "c9.ide.pubsub": "#a85fb27eca", - "c9.ide.readonly": "#fe86d1f152", + "c9.ide.readonly": "#719881e192", "c9.ide.recentfiles": "#7c099abf40", "c9.ide.remote": "#301d2ab519", "c9.ide.processlist": "#2b12cd1bdd", From d99e924973731527b5ecd67022e9afb7c9c9abf5 Mon Sep 17 00:00:00 2001 From: nightwing Date: Thu, 18 Feb 2016 11:27:00 +0400 Subject: [PATCH 10/65] convert nbsp back to spaces --- plugins/c9.ide.ace/ace.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/c9.ide.ace/ace.js b/plugins/c9.ide.ace/ace.js index 7ee600f4..ff712657 100644 --- a/plugins/c9.ide.ace/ace.js +++ b/plugins/c9.ide.ace/ace.js @@ -2545,7 +2545,7 @@ define(function(require, exports, module) { var data = ace.getCopyText(); // check if user tries to copy text from line widget if (!data && document.activeElement != ace.textInput.getElement()) - data = document.getSelection().toString(); + data = document.getSelection().toString().replace(/\xa0/, " "); data && e.clipboardData.setData("text/plain", data); }); plugin.on("paste", function(e) { From 53679b525b4c5cf8060b7d4b409f034e3dac8606 Mon Sep 17 00:00:00 2001 From: nightwing Date: Thu, 18 Feb 2016 16:33:16 +0400 Subject: [PATCH 11/65] keep classic theme default for sdk and use flat light on c9.io --- configs/client-default.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/client-default.js b/configs/client-default.js index d6d31ec4..d8cf7b69 100644 --- a/configs/client-default.js +++ b/configs/client-default.js @@ -546,7 +546,7 @@ module.exports = function(options) { { packagePath: "plugins/c9.ide.layout.classic/preload", themePrefix: options.themePrefix, - defaultTheme: options.defaultTheme || "flat-light" + defaultTheme: options.defaultTheme || "dark" }, { packagePath: "plugins/c9.ide.tree/tree", From 401a6fcbcf34c65de76b796f55e58f7c85269ebb Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 14:19:02 +0100 Subject: [PATCH 12/65] c9-auto-bump 3.1.1433 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5a5fc26b..1d16e806 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1432", + "version": "3.1.1433", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From a79ddd6439cf13e35e6f872f4541523f6d9b3818 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 14:20:28 +0100 Subject: [PATCH 13/65] c9-auto-bump 3.1.1434 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1d16e806..f3522215 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1433", + "version": "3.1.1434", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 1c6d725324f04104491b72c2d49027d9abbbffac Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 14:26:36 +0100 Subject: [PATCH 14/65] c9-auto-bump 3.1.1435 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f3522215..e5a03626 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1434", + "version": "3.1.1435", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 04923159e84ce760de7562196e4840010b385576 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 15:17:08 +0100 Subject: [PATCH 15/65] c9-auto-bump 3.1.1436 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e5a03626..bac36104 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1435", + "version": "3.1.1436", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 6b119f546402be8a26233f48d72e80ccc5534d20 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 15:27:32 +0100 Subject: [PATCH 16/65] c9-auto-bump 3.1.1437 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bac36104..9a9d5661 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1436", + "version": "3.1.1437", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 88531bc7424afd6feda0e3eddf32b6c7466ccc44 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 15:29:31 +0100 Subject: [PATCH 17/65] c9-auto-bump 3.1.1438 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9a9d5661..a68364a7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1437", + "version": "3.1.1438", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From ea991d1c771f6a3cae0f8b3fe3fcf977b5e3d928 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 15:32:14 +0100 Subject: [PATCH 18/65] c9-auto-bump 3.1.1439 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a68364a7..6011082c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1438", + "version": "3.1.1439", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 420b0e2783c0ebe2186ae1ffd2e5a31229dd7fa9 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 15:34:44 +0100 Subject: [PATCH 19/65] c9-auto-bump 3.1.1440 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6011082c..6fb29a17 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1439", + "version": "3.1.1440", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 62914244e87548998342339584d101bdd4e5bd5d Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 15:55:09 +0100 Subject: [PATCH 20/65] c9-auto-bump 3.1.1441 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6fb29a17..b79a3c21 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1440", + "version": "3.1.1441", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From d330350bafa4e0589ccc2c61b292b2a86551d688 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 15:58:00 +0100 Subject: [PATCH 21/65] c9-auto-bump 3.1.1442 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b79a3c21..bb42fd09 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1441", + "version": "3.1.1442", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 04ea27f8ff43b84c5f5b79c63a55d61f044ab2de Mon Sep 17 00:00:00 2001 From: Nikolai Onken Date: Thu, 18 Feb 2016 15:21:35 +0000 Subject: [PATCH 22/65] fix build --- node_modules/architect-build/compress.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/node_modules/architect-build/compress.js b/node_modules/architect-build/compress.js index 343f5d70..75cf9808 100644 --- a/node_modules/architect-build/compress.js +++ b/node_modules/architect-build/compress.js @@ -11,8 +11,9 @@ function compress(sources, opts) { var literals = []; sources.forEach(function(pkg){ - if (/^"disable compress"/.test(pkg.source)) + if (/"disable compress"/.test(pkg.source)) { return literals.push(pkg.source); + } if (pkg.file) console.log("Adding '" + pkg.file + "'."); From af9c6483bd206bbe114660019488808ee0d584f2 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 16:26:01 +0100 Subject: [PATCH 23/65] c9-auto-bump 3.1.1443 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bb42fd09..391edb44 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1442", + "version": "3.1.1443", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 4c32c84fe54b93947127d4430f313d22527ab864 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 16:30:52 +0100 Subject: [PATCH 24/65] c9-auto-bump 3.1.1444 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 391edb44..bd51f9f3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1443", + "version": "3.1.1444", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 06a20899ea44d64ca8c3159ab1773cd3bc655342 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 16:33:14 +0100 Subject: [PATCH 25/65] c9-auto-bump 3.1.1445 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bd51f9f3..e62b5521 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1444", + "version": "3.1.1445", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From eaa9c713eba9df3ad9109bb752b072a14645c83d Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 17:55:51 +0100 Subject: [PATCH 26/65] c9-auto-bump 3.1.1446 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e62b5521..314b9ca8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1445", + "version": "3.1.1446", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From b3709b256b814e11c781892f8fbc4c3e9ba7e0bc Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 18:21:25 +0100 Subject: [PATCH 27/65] c9-auto-bump 3.1.1447 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 314b9ca8..7f6f29af 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1446", + "version": "3.1.1447", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From cc0f6c4171d8e146b9ebadfac3158a49796ada50 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 18:25:47 +0100 Subject: [PATCH 28/65] c9-auto-bump 3.1.1448 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f6f29af..b0b7c2de 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1447", + "version": "3.1.1448", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 736ff26ab258ffdb5685272a0ca0ada030904599 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 18:30:52 +0100 Subject: [PATCH 29/65] c9-auto-bump 3.1.1449 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b0b7c2de..7e9b3a48 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1448", + "version": "3.1.1449", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 2b301cf397b7fc4158830ec30130947f88cb2191 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 18:34:54 +0100 Subject: [PATCH 30/65] c9-auto-bump 3.1.1450 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e9b3a48..05e10833 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1449", + "version": "3.1.1450", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 3b2a273070bf45f18ab0dd422522ce53666e0961 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 18:51:24 +0100 Subject: [PATCH 31/65] c9-auto-bump 3.1.1451 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 05e10833..b6d6ec5e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1450", + "version": "3.1.1451", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 506622cc014504834a718790f06a10bc1fb30be9 Mon Sep 17 00:00:00 2001 From: c9bot Date: Thu, 18 Feb 2016 21:40:09 +0100 Subject: [PATCH 32/65] c9-auto-bump 3.1.1452 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b6d6ec5e..fb4e5d60 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1451", + "version": "3.1.1452", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 1b5484eec25291de1d89f24c5ee40837408a0754 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 00:01:10 +0100 Subject: [PATCH 33/65] c9-auto-bump 3.1.1453 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fb4e5d60..fa9e65bd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1452", + "version": "3.1.1453", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 671bc4e31b0c4ab31a5a383ad616500d183397d3 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 00:06:43 +0100 Subject: [PATCH 34/65] c9-auto-bump 3.1.1454 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fa9e65bd..1751bfce 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1453", + "version": "3.1.1454", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 7e73912d2db45a26bd701919faed2066ce7f21ab Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 01:54:08 +0100 Subject: [PATCH 35/65] c9-auto-bump 3.1.1455 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1751bfce..f9d60024 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1454", + "version": "3.1.1455", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From bf741eecf175964071ef881eb34763526db33e66 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 08:54:52 +0100 Subject: [PATCH 36/65] c9-auto-bump 3.1.1456 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f9d60024..7e900e81 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1455", + "version": "3.1.1456", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From a2bf682fde26eaf7ffe61e4a4f24c9a2d50a65c0 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 10:13:33 +0100 Subject: [PATCH 37/65] c9-auto-bump 3.1.1457 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e900e81..505f2e5f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1456", + "version": "3.1.1457", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 4fe10310996b503f4511d6095fc899d04a7fc5d2 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 10:16:12 +0100 Subject: [PATCH 38/65] c9-auto-bump 3.1.1458 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 505f2e5f..2f0cf30d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1457", + "version": "3.1.1458", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 9413b1e66012da48b3aa3a488c9ccc1ce007d53d Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 10:23:04 +0100 Subject: [PATCH 39/65] c9-auto-bump 3.1.1459 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 15ebfa4e..a0fb7507 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1458", + "version": "3.1.1459", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 9db936474bbcb87bc64f9599b22d024b18dccabd Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 10:55:47 +0100 Subject: [PATCH 40/65] c9-auto-bump 3.1.1460 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a0fb7507..4279c39b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1459", + "version": "3.1.1460", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 3cb355cb1bbfb553b275cf0006776ba3d8b82b65 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 11:08:33 +0100 Subject: [PATCH 41/65] c9-auto-bump 3.1.1461 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4279c39b..913b5354 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1460", + "version": "3.1.1461", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From c618adb2eb532d7a6161b3ae7441f0e272bca282 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 11:10:11 +0100 Subject: [PATCH 42/65] c9-auto-bump 3.1.1462 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 913b5354..05c4be06 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1461", + "version": "3.1.1462", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 44b094e0a48c7cdeeb17ef50b9650e06f04ee757 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 11:41:20 +0100 Subject: [PATCH 43/65] c9-auto-bump 3.1.1463 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 05c4be06..6ac5501e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1462", + "version": "3.1.1463", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 1d2302c2428c83d9436e80b8abe26e580e06b326 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 12:09:35 +0100 Subject: [PATCH 44/65] c9-auto-bump 3.1.1464 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6ac5501e..ea3a29e9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1463", + "version": "3.1.1464", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From ab978c78320cdefac2564a9e207946f232c87550 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 12:54:55 +0100 Subject: [PATCH 45/65] c9-auto-bump 3.1.1465 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ea3a29e9..89a0f4c2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1464", + "version": "3.1.1465", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From b2a421681bc5c228d7e8debb7ddb0c86a738220a Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 13:05:12 +0100 Subject: [PATCH 46/65] c9-auto-bump 3.1.1466 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 89a0f4c2..c5e284eb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1465", + "version": "3.1.1466", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 42c60718f46127dafbb8569adbbc226ab10afc23 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 15:04:43 +0100 Subject: [PATCH 47/65] c9-auto-bump 3.1.1467 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c5e284eb..660c33c9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1466", + "version": "3.1.1467", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From e74b85d688f73e7375baf9784c3fa8e81286aa40 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 15:43:54 +0100 Subject: [PATCH 48/65] c9-auto-bump 3.1.1468 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 660c33c9..48dacfff 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1467", + "version": "3.1.1468", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 349dd7feddf3a0af0da44ab1f231fbf39d3b3aec Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 16:00:09 +0100 Subject: [PATCH 49/65] c9-auto-bump 3.1.1469 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 48dacfff..f9a5c633 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1468", + "version": "3.1.1469", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 3eef33ee84fa216a34b64d0ea4f0a309dfedb0c3 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 16:32:06 +0100 Subject: [PATCH 50/65] c9-auto-bump 3.1.1470 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f9a5c633..68b5a35e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1469", + "version": "3.1.1470", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 25ab745ab01174931f7790568bc517b50406075d Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 16:36:45 +0100 Subject: [PATCH 51/65] c9-auto-bump 3.1.1471 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 68b5a35e..d9af21fe 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1470", + "version": "3.1.1471", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 5b10d704eca62c4c871708b84f6981f7945bd9ea Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 18:31:51 +0100 Subject: [PATCH 52/65] c9-auto-bump 3.1.1472 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d9af21fe..daf9db9a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1471", + "version": "3.1.1472", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 086209f799f557dd769203c91eef2fca59ce90b4 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 18:32:23 +0100 Subject: [PATCH 53/65] c9-auto-bump 3.1.1473 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index daf9db9a..e84a5f35 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1472", + "version": "3.1.1473", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 88d346247011c953ecae04801cad22b5098c17bb Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 19:09:31 +0100 Subject: [PATCH 54/65] c9-auto-bump 3.1.1474 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e84a5f35..7a07d9ab 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1473", + "version": "3.1.1474", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From ce77aa1aa230f38eb2aa96446b90fc3a4306a413 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 20:02:05 +0100 Subject: [PATCH 55/65] c9-auto-bump 3.1.1475 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7a07d9ab..332e7386 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1474", + "version": "3.1.1475", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From 2c737df808e02eb7de4a3c4b5104149826617135 Mon Sep 17 00:00:00 2001 From: c9bot Date: Fri, 19 Feb 2016 20:20:42 +0100 Subject: [PATCH 56/65] c9-auto-bump 3.1.1476 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 332e7386..5a1eb839 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "c9", "description": "New Cloud9 Client", - "version": "3.1.1475", + "version": "3.1.1476", "author": "Ajax.org B.V. ", "private": true, "main": "bin/c9", From c5a4f9aea6bdd7c2bc93e0de0f24f8c6157ed5ad Mon Sep 17 00:00:00 2001 From: Ruben Daniels Date: Fri, 19 Feb 2016 19:59:25 +0000 Subject: [PATCH 57/65] Show create loading screen based on hash. Hide when vfs is connected --- .../c9.ide.layout.classic/loading-flat.css | 30 ++++++++++------ .../c9.ide.server/views/flat-load-screen.html | 34 ++++++++++++------- .../views/standalone.html.ejs | 18 +++++++--- 3 files changed, 55 insertions(+), 27 deletions(-) diff --git a/plugins/c9.ide.layout.classic/loading-flat.css b/plugins/c9.ide.layout.classic/loading-flat.css index 4fda746c..ac1b168d 100644 --- a/plugins/c9.ide.layout.classic/loading-flat.css +++ b/plugins/c9.ide.layout.classic/loading-flat.css @@ -1,8 +1,14 @@ -BODY.loading{ +#loadingcontainer{ background: url(images/loadingbgrepeat.png); background-size: 1px 8px; + height: 100%; + width: 100%; + position: fixed; + z-index: 200000; + left: 0; + top: 0; } -BODY.loading.dark{ +#loadingcontainer.dark{ background: url(images/loadingbgrepeat_dark.png); background-size: 1px 8px; } @@ -14,15 +20,15 @@ BODY.loading.dark{ font-style: normal; height: 100%; width: 100%; - position: fixed; - text-align: center; + position: absolute; z-index: 200000; left: 0; top: 0; + text-align: center; -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important; } -#loadingide.dark, .dark #loadingide{ +.dark #loadingide{ background-image: url(images/c9-logo-white.png); } @@ -116,14 +122,14 @@ BODY.loading.dark{ width: 200px; text-align: center; top: 57%; - margin-top: 200px; + margin-top: 0; } #loadingide .cool-message { display: block; font-family: Arial; font-size: 30px; - color: #A7A7A7; + color: #717171; white-space: nowrap; position: absolute; top: 30%; @@ -131,7 +137,7 @@ BODY.loading.dark{ width: 1000px; text-align: center; margin-left: -500px; - margin-top: 250px; + margin-top: 350px; } #loadingide.dark .cool-message { color: #757575; @@ -141,10 +147,14 @@ BODY.loading.dark{ background: url(images/running_flat_light@2x.png); background-size: 300px 20px; animation: rotation 0.6s infinite steps(16); - width: 20px; - height: 20px; + width: 20px !important; + height: 20px !important; background-repeat: no-repeat; display: inline-block; + min-width: 20px !important; + min-height: 20px !important; + box-sizing: content-box; + border: 0; } @-webkit-keyframes rotation { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% {-webkit-transform: rotate(359deg); transform: rotate(359deg);}} diff --git a/plugins/c9.ide.server/views/flat-load-screen.html b/plugins/c9.ide.server/views/flat-load-screen.html index 6c361a61..4d1d96b6 100644 --- a/plugins/c9.ide.server/views/flat-load-screen.html +++ b/plugins/c9.ide.server/views/flat-load-screen.html @@ -1,14 +1,16 @@ -
"> -
- - -
-
-