From 68f43edf4488c8f929e8e7e78c39c7b1f5ccd593 Mon Sep 17 00:00:00 2001 From: Guy Date: Thu, 2 Jul 2015 17:24:39 +0300 Subject: [PATCH 001/171] test 123 --- app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.js b/app.js index ecfe4b8..dcce4d2 100644 --- a/app.js +++ b/app.js @@ -4,6 +4,8 @@ var app = express(); app.use(express.static(__dirname)); +// test 123 + var server = app.listen(9000, function () { var host = server.address().address; From 11a4278300210d912f0c0f4592f44c20e1f2c85f Mon Sep 17 00:00:00 2001 From: Guy Date: Wed, 8 Jul 2015 14:33:20 +0300 Subject: [PATCH 002/171] removed comment --- Dockerfile | 1 + app.js | 2 -- todo.html | 43 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 todo.html diff --git a/Dockerfile b/Dockerfile index 6e9a1d9..511196b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ EXPOSE 80 EXPOSE 9000 #node inspector port EXPOSE 8080 +EXPOSE 8585 COPY . /src diff --git a/app.js b/app.js index dcce4d2..ecfe4b8 100644 --- a/app.js +++ b/app.js @@ -4,8 +4,6 @@ var app = express(); app.use(express.static(__dirname)); -// test 123 - var server = app.listen(9000, function () { var host = server.address().address; diff --git a/todo.html b/todo.html new file mode 100644 index 0000000..0794231 --- /dev/null +++ b/todo.html @@ -0,0 +1,43 @@ + + + + TODO List + + + + +

TODO List

+ + \ No newline at end of file From 90d6956b114e510bb3bca5cbd9e0320a3f0f9be7 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 21 Jul 2015 11:20:28 +0300 Subject: [PATCH 003/171] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index aa323c8..a2ae4e2 100644 --- a/README.md +++ b/README.md @@ -49,3 +49,5 @@ If you would like to add/remove/update Orion extension points, you will need to ## You can see plugin hosted on Heroku https://orionplugin.herokuapp.com/ + +Codefresh From 7df32ea9062098ae5554dd699442dac044e82416 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 21 Jul 2015 11:24:34 +0300 Subject: [PATCH 004/171] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index a2ae4e2..bdfc141 100644 --- a/README.md +++ b/README.md @@ -50,4 +50,3 @@ If you would like to add/remove/update Orion extension points, you will need to ## You can see plugin hosted on Heroku https://orionplugin.herokuapp.com/ -Codefresh From 013495e209df8488d1f299c4b9b7c63c3098dc61 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 21 Jul 2015 12:47:59 +0300 Subject: [PATCH 005/171] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bdfc141..a2ae4e2 100644 --- a/README.md +++ b/README.md @@ -50,3 +50,4 @@ If you would like to add/remove/update Orion extension points, you will need to ## You can see plugin hosted on Heroku https://orionplugin.herokuapp.com/ +Codefresh From a16fa1e08fbc5f0b4dbfd457dee6145f14ef6e73 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 21 Jul 2015 12:55:11 +0300 Subject: [PATCH 006/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2ae4e2..df36cde 100644 --- a/README.md +++ b/README.md @@ -50,4 +50,4 @@ If you would like to add/remove/update Orion extension points, you will need to ## You can see plugin hosted on Heroku https://orionplugin.herokuapp.com/ -Codefresh + From f4264cb705f406c3f7d671e0c82b483e98714e07 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 22 Jul 2015 17:50:06 +0300 Subject: [PATCH 007/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df36cde..41e4723 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From c21b4b2c6bfa72a397bff2cc5f536e48f323af00 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 22 Jul 2015 17:50:17 +0300 Subject: [PATCH 008/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41e4723..99b59ec 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 22a54b3bb948cf64551276a991273d0284d7a760 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 22 Jul 2015 17:50:26 +0300 Subject: [PATCH 009/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99b59ec..df36cde 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From c611df973d0b84d076bcedd0be17187506568d3a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 22 Jul 2015 17:58:54 +0300 Subject: [PATCH 010/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df36cde..500a4fb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 308e792d412bcb7f65c2371457d0ebaeeb9a6ec6 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 22 Jul 2015 18:00:35 +0300 Subject: [PATCH 011/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 500a4fb..df36cde 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 53717a99d66861279383fdd1be7730dc91e2b95f Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 22 Jul 2015 18:03:28 +0300 Subject: [PATCH 012/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df36cde..6890068 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 6831b7da4bb1c3a4fcff4f3c727924e5d172129e Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 16:36:44 +0300 Subject: [PATCH 013/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6890068..6f48e06 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 4359db05b247c810f212f4fcdf146eeb63a3957a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 16:41:24 +0300 Subject: [PATCH 014/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f48e06..83facf4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 299dd4c6c395b8624d9e706bab5ecb50a5310726 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 16:45:18 +0300 Subject: [PATCH 015/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83facf4..86fb38c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From cb592b9320516607d67a8a5266bd926dbe90a9da Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 16:48:25 +0300 Subject: [PATCH 016/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 86fb38c..41e4723 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 0b249003676bc5342384c327b8babe2afe6c8577 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 16:51:22 +0300 Subject: [PATCH 017/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41e4723..99b59ec 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 9edbc0ecedf7792a06873546efa225fc7f04dd94 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 16:57:31 +0300 Subject: [PATCH 018/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99b59ec..a7e2aaf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 8de3e1481306a8a455e57407a33f2e4bd5d105c1 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 17:27:41 +0300 Subject: [PATCH 019/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a7e2aaf..500a4fb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 9b2efdbd69d211e8102e4e1de1210143d95dfb85 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 17:29:46 +0300 Subject: [PATCH 020/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 500a4fb..6890068 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 2bd0cb23f23fcb13bba3489079f69cf0b6d81378 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 17:43:51 +0300 Subject: [PATCH 021/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6890068..6f48e06 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From b43569c275cdf7470a6f6ff0c18d87d3091a810c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 17:47:28 +0300 Subject: [PATCH 022/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f48e06..83facf4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From a8624eb91229c87a8896e9c0cf047f060060e54a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 18:03:07 +0300 Subject: [PATCH 023/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83facf4..86fb38c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From f69ebc1301a170981c0cc6684bb007f17377ade2 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 23 Jul 2015 18:10:30 +0300 Subject: [PATCH 024/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 86fb38c..c15bb2f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +9# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 02bb031bf4f7a64d804eef6dd78b6c63f8ed170c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Fri, 24 Jul 2015 16:29:04 +0300 Subject: [PATCH 025/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c15bb2f..df36cde 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -9# CodeFresh beautify example plugin +# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From c7d62c0086f94bffbf252000cf2cc8d8bf4419ec Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Fri, 24 Jul 2015 16:53:16 +0300 Subject: [PATCH 026/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df36cde..41e4723 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 16163f945163c48601fe6e3ae97427c26dd977e4 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 28 Jul 2015 12:07:12 +0300 Subject: [PATCH 027/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41e4723..99b59ec 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 9ad29138e6b13858cbf28b87ebc81842ac9c958d Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 29 Jul 2015 11:34:57 +0300 Subject: [PATCH 028/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99b59ec..a7e2aaf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 23c850c26e9fd3ed0acead975cb8f360eebc6051 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 29 Jul 2015 11:37:03 +0300 Subject: [PATCH 029/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a7e2aaf..500a4fb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 1360ff9511c2f5b7f65375d7f6f810c263c0edb5 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 29 Jul 2015 11:39:06 +0300 Subject: [PATCH 030/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 500a4fb..6890068 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 0de91b717c3650b04b6184a132de387e43f8e26d Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 29 Jul 2015 11:41:33 +0300 Subject: [PATCH 031/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6890068..6f48e06 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From 8a2299d27bf9bbeb3031366104a00a8e4a2dfb83 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 29 Jul 2015 11:49:16 +0300 Subject: [PATCH 032/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f48e06..83facf4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From be40a88726d244c348578815b6b2ab67b2a35f96 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 13 Aug 2015 23:07:25 +0300 Subject: [PATCH 033/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83facf4..df36cde 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). From aaf3dd3fd0654aff37cdec58d17f0d303ab83a10 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 13 Aug 2015 23:10:53 +0300 Subject: [PATCH 034/171] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index df36cde..f72a1b8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # CodeFresh beautify example plugin + The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). This implementation is also using Orion settings mechanism to extend the user experience by letting him select how to use the beautify logic. From 08cf9f8e54d07598cb69907b8c1032c03ab1b982 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 13 Aug 2015 23:16:05 +0300 Subject: [PATCH 035/171] Create .drone.yml --- .drone.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..8044198 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,4 @@ +image: dockerfile/nodejs +name: jsbeautify +script: + - npm install From 3d8f387fe1f6c35fcc402292069648bc173aaaad Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 13 Aug 2015 23:17:59 +0300 Subject: [PATCH 036/171] Update .drone.yml --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 8044198..b773eec 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,4 +1,4 @@ -image: dockerfile/nodejs -name: jsbeautify -script: - - npm install +build: + image: dockerfile/nodejs + commands: + - npm install From 88622fb8bb99edcc4dd8147dec6d1f9753bbc178 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 13 Aug 2015 23:22:42 +0300 Subject: [PATCH 037/171] Update .drone.yml --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index b773eec..f8e81ab 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,4 +1,4 @@ build: - image: dockerfile/nodejs + image: node:0.10-onbuild commands: - npm install From 297ecc60bd09652c9c55ca651a3243c058111c8b Mon Sep 17 00:00:00 2001 From: Guy Date: Sun, 23 Aug 2015 11:02:34 +0300 Subject: [PATCH 038/171] aa --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f72a1b8..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 77e4fca5fddf3d59a80d4247a1c235218dd0a192 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 1 Sep 2015 23:56:14 +0300 Subject: [PATCH 039/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From f57680b148a86e16852c01c0bbde91cdb49fbd9a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 1 Sep 2015 23:59:42 +0300 Subject: [PATCH 040/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 6b1a0b2d9370b37df4e52749c7de65ba05659e7c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:05:36 +0300 Subject: [PATCH 041/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 84320871c41068c2ff473fb884524d2f8a2d5d89 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:08:17 +0300 Subject: [PATCH 042/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From e70db4127c26e5024a81dd6194db2f75ba69efa5 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:17:11 +0300 Subject: [PATCH 043/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d0fb4e811d2e7d5662f827c7cdf85acade9e74ac Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:21:57 +0300 Subject: [PATCH 044/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From f3d6cb1cc98c2d99970f9904648d3882bd993ffa Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:23:14 +0300 Subject: [PATCH 045/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 5001bb72c3b91a68b907a3b5765ee245cb2a6992 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:24:32 +0300 Subject: [PATCH 046/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..be99286 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +9# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d8cccf08e21ae182e4f9d691e176103fbd9f3dfd Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:26:04 +0300 Subject: [PATCH 047/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be99286..021723b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -9# CodeFresh beautify example plugin +10# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 21c4f6d6fd5576b6c5ace395ce44ba28e6ea4c7c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:29:56 +0300 Subject: [PATCH 048/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 021723b..1768077 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -10# CodeFresh beautify example plugin +11# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 5412ea2743120f725dd1e5e425226fe4caf69526 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:32:11 +0300 Subject: [PATCH 049/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1768077..7c6174c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -11# CodeFresh beautify example plugin +12# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 9bc1ce809b57fe200294348395b8621a9e5d7744 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:35:13 +0300 Subject: [PATCH 050/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c6174c..e47e08e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -12# CodeFresh beautify example plugin +13# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 6eaeba84227ab964bb521d26b9161f97088bd219 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:37:46 +0300 Subject: [PATCH 051/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e47e08e..705cc08 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -13# CodeFresh beautify example plugin +14# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 2b5d631ab9fbc7f8020c055b2c0f910cfcfd6d7a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:44:18 +0300 Subject: [PATCH 052/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 705cc08..2405ab1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -14# CodeFresh beautify example plugin +15# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 3d141ed3e27d247e970e08d43324569befc70a50 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:55:42 +0300 Subject: [PATCH 053/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2405ab1..4dd9e10 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -15# CodeFresh beautify example plugin +16# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 669bed9a650826f4095755493fa23710e948ea9c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 00:57:29 +0300 Subject: [PATCH 054/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4dd9e10..bba31d2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -16# CodeFresh beautify example plugin +17# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From aedf65dc3ad57ee03ad312fa771c358ea0d3af99 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 2 Sep 2015 15:55:37 +0300 Subject: [PATCH 055/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bba31d2..705db93 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -17# CodeFresh beautify example plugin +18# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 3e19d98d525ba6c31629a334b6e4eb1cecfbe1d7 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:12:48 +0300 Subject: [PATCH 056/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 705db93..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -18# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 55ba4bd6522393f90138d6d538764c17ae0f0fdd Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:13:34 +0300 Subject: [PATCH 057/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d8d5e4fa4f65b08c6ed75a79f81e01eacc813a0c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:15:20 +0300 Subject: [PATCH 058/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From c1e63df575e9d1bf96b3554fd4ea4654f28ef3c1 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:18:10 +0300 Subject: [PATCH 059/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 54404662e7bb7c32c1a738828c74f14b72f7b87d Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:19:32 +0300 Subject: [PATCH 060/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From ca21973e041f3b880e240c2717207a77308cc351 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:21:20 +0300 Subject: [PATCH 061/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From cf0b3fdd871547fb72497ae43a95857b6041906f Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:23:08 +0300 Subject: [PATCH 062/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From b49806bb1779744647b29ece17cefe6f22adf6ed Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:24:09 +0300 Subject: [PATCH 063/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 9a6666ee5d3f8cd293ce85b1a11f3fc1e23fcb95 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:25:23 +0300 Subject: [PATCH 064/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..be99286 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +9# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From b2d99aaf17b89bf09bb5a9012121fbb11af0301a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:26:30 +0300 Subject: [PATCH 065/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be99286..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -9# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From aee107038a564edcb2fe8028d84f74f52748dde1 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:29:04 +0300 Subject: [PATCH 066/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 394b636197d5565b32bc40b4da097608d6b40965 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:52:51 +0300 Subject: [PATCH 067/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From ec56a760de4bf584446ad50f558b88544f6d0b02 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:53:32 +0300 Subject: [PATCH 068/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From a17874be2a188dd6f0a4c696bcd9bae79f770e1b Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:55:57 +0300 Subject: [PATCH 069/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From ffd1bc52140a4d945b304c3f6aeb67361d4b7ded Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 11:59:11 +0300 Subject: [PATCH 070/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From ea477318b16c22fbeb08e1ebb148c30683f61265 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:03:31 +0300 Subject: [PATCH 071/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From a5e302db934dac18f8a1d263e4f13ce9fc9fdddb Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:04:03 +0300 Subject: [PATCH 072/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From b1f5a39f67c55a0b07dc46280946908e868d09a0 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:07:51 +0300 Subject: [PATCH 073/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..be99286 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +9# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 51d0e1fd461f9275d6269ead09be2ea73c53b380 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:11:43 +0300 Subject: [PATCH 074/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be99286..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -9# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From ccfd898f2d7870764addc9411c9a6e25b1e20cfc Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:15:06 +0300 Subject: [PATCH 075/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From b2331dbbe0b488b68e0b0b0e4a5b5912e88f2f46 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:30:34 +0300 Subject: [PATCH 076/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 7685ae14c8836135e3dc83d98f27d45822a44624 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:33:38 +0300 Subject: [PATCH 077/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 57baf9a869f222edf93ccc73cc39a72f707c51f2 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:39:38 +0300 Subject: [PATCH 078/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 2a5b11fee1ae20bb8296847ad5dcc05e80f2e5a2 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:42:09 +0300 Subject: [PATCH 079/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 6313fdb81ba07099476b7d02337625cc0233067c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:49:00 +0300 Subject: [PATCH 080/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From b78b38583f288158047271ccfd2c5732df8365a2 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 12:54:50 +0300 Subject: [PATCH 081/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From e8a46b8bd4dae5a4f336f50e334876d3f99e5d68 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 16:23:44 +0300 Subject: [PATCH 082/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..be99286 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +9# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 872b6c63af75475a6307b595dc1818f8748ea783 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 16:42:54 +0300 Subject: [PATCH 083/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be99286..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -9# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From f330d64eefc2cef6ba1e265895e8c924a1b50763 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 16:49:32 +0300 Subject: [PATCH 084/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 72b5809c786bcc048739c525083dce7f8f991194 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 16:52:34 +0300 Subject: [PATCH 085/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From c41770f1701723bb140742f9fa817b95de54d57e Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 16:56:20 +0300 Subject: [PATCH 086/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 14799482b49c73ff005a6f5121a73b132c19c1f9 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 16:57:26 +0300 Subject: [PATCH 087/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 8c43fbbc68cd321c4bef2bc8a0272040067cf4bf Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 17:16:22 +0300 Subject: [PATCH 088/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 26a5613ffb6974d5842adb54c06d095ed91430fa Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 19:06:45 +0300 Subject: [PATCH 089/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d6c5db0e9121b20be936a2304b460f2a2ecc13d3 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 19:11:40 +0300 Subject: [PATCH 090/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 263d3c3355adf94009b59db39dc686e8e88f449b Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 19:14:15 +0300 Subject: [PATCH 091/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d45651f68df9fe290b292e04eb30f102089b00c8 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 19:28:47 +0300 Subject: [PATCH 092/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From a6f8889db700bbeabecdd404080c6e5d28e4e394 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 8 Sep 2015 19:31:27 +0300 Subject: [PATCH 093/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d772667da98db2d0d4ccb2d1b19aea75a5ab782c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:06:26 +0300 Subject: [PATCH 094/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From ec3e1446c282aca8d198c501b209b4f7a392cfa9 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:14:06 +0300 Subject: [PATCH 095/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From a53a9516f98ab3e13a33fbe6491c843678665345 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:18:58 +0300 Subject: [PATCH 096/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From aa6090cd841cea184db0e33d72f28608f248d021 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:22:41 +0300 Subject: [PATCH 097/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 153eefd0c6b2679d73598ea38a59b243584b5216 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:25:28 +0300 Subject: [PATCH 098/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d5774228d3a70d767644d0c999afb65bc87d6140 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:28:34 +0300 Subject: [PATCH 099/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..be99286 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +9# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 05c3f89af81e5f02658f24b6ed3010a593d7bad4 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:33:47 +0300 Subject: [PATCH 100/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be99286..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -9# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d80bf0eae4d885884a9e3b4c75c6c645b485bc29 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:39:07 +0300 Subject: [PATCH 101/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 5f0685b754cd43a55c3120eb61d31d54226c78f0 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:41:59 +0300 Subject: [PATCH 102/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From f86aac1e0916dd25bedd3ab206bb89293ac7e3a4 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 9 Sep 2015 00:54:23 +0300 Subject: [PATCH 103/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 0f72b85f303919ee8716cb7c7537c3d8ff544a62 Mon Sep 17 00:00:00 2001 From: Guy Date: Sat, 12 Sep 2015 10:23:46 +0300 Subject: [PATCH 104/171] docker file fixes --- Dockerfile | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index 511196b..bcdadc5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,20 +1,14 @@ -FROM ubuntu:14.04 +FROM codefresh/buildpacks:all -RUN sudo apt-get -q -y update -RUN sudo apt-get -q -y install nodejs npm git +ENV NVM_BIN /root/.nvm/versions/node/v0.12.7/bin +ENV PATH $NVM_BIN:$PATH -RUN sudo ln -s "$(which nodejs)" /usr/bin/node +COPY package.json /src/package.json +WORKDIR /src +RUN npm install -RUN npm install npm -g +COPY . /src -#application server -EXPOSE 80 -#nodejs debug port EXPOSE 9000 -#node inspector port -EXPOSE 8080 -EXPOSE 8585 - -COPY . /src -CMD ["/usr/bin/node", "/src/app.js"] +CMD ["node", "/src/app.js"] \ No newline at end of file From 21feccf54ee531c77c437689042e8ff007db12d5 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sat, 12 Sep 2015 10:30:24 +0300 Subject: [PATCH 105/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 219ffb67b58c964f2b5da4734559cd1aec5e861f Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sat, 12 Sep 2015 10:31:02 +0300 Subject: [PATCH 106/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 038c17c7710d7d7ccfa4e8100abb977caee5f2dc Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sat, 12 Sep 2015 20:51:01 +0300 Subject: [PATCH 107/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 86d6f1a54f9b3d4bfd41a954fd2fdecb825da247 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 13 Sep 2015 14:10:49 +0300 Subject: [PATCH 108/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From ca86b5969e4428ae03b687a4fbedc743a1f6b459 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 13 Sep 2015 14:12:39 +0300 Subject: [PATCH 109/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 0a02ecb8418b65b9491bc0b5ee128dab82204b18 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 13 Sep 2015 14:16:10 +0300 Subject: [PATCH 110/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 481211edb64fb7480f2c58f6fee888bb84dc18b9 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 13 Sep 2015 14:18:27 +0300 Subject: [PATCH 111/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From eafd2f36444b3320b95840068b21ca8d207d91df Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 13 Sep 2015 14:40:52 +0300 Subject: [PATCH 112/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From df61e6994ef596effd576a8beb55a2631c2845ad Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 15 Sep 2015 00:51:37 +0300 Subject: [PATCH 113/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 89c7a0ed3fdba8937df3aac3a977c1c35e96b0e8 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 15 Sep 2015 01:25:57 +0300 Subject: [PATCH 114/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 525803847e47e79fb73a28f13be50922488c0dae Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 15 Sep 2015 01:35:34 +0300 Subject: [PATCH 115/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 5226c217e835fec73b2a86e9b6f2760076fd1404 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 15 Sep 2015 01:39:10 +0300 Subject: [PATCH 116/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From a9229e9f689b33b7722808ad7cfb8029e433bc1b Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 15 Sep 2015 01:41:27 +0300 Subject: [PATCH 117/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 572f347f998e78be71c2e6e447b8f4d4aaeb147e Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 15 Sep 2015 01:42:31 +0300 Subject: [PATCH 118/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From b467e1feb1a3b257c942bf2a5266222aa994ebb6 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 15 Sep 2015 01:43:40 +0300 Subject: [PATCH 119/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 1dd9817133048f1f039167168f907d2c31f57119 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 15 Sep 2015 01:45:06 +0300 Subject: [PATCH 120/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 92a34879d391aa51252556d56d14360cc788a6f3 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 15 Sep 2015 01:53:08 +0300 Subject: [PATCH 121/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 1b6c4d8a8856fba12e7ee52bde9234b4aef451ec Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Fri, 18 Sep 2015 13:12:25 +0300 Subject: [PATCH 122/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..f72a1b8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 7f981bb6ab5c8ffbcb77c03653ea359e8aa5a01d Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:17:42 +0300 Subject: [PATCH 123/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f72a1b8..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From b1b17ae776155f8d557da78b04391fdff34c795c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:20:41 +0300 Subject: [PATCH 124/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From a9709e4d5880c964e583864a37da31c046cb591a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:24:11 +0300 Subject: [PATCH 125/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d976099f944f4004f5ae95da2f700dd79c603dd1 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:29:27 +0300 Subject: [PATCH 126/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 1c3e5cac9ebe660affd80d1ffb61ca13b5144783 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:39:34 +0300 Subject: [PATCH 127/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 8f800b2c00dbc0151212d619d211dca0c48eed0f Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:41:11 +0300 Subject: [PATCH 128/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 958287c311c51cbde1cbf9559c02a25b1f99080a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:45:20 +0300 Subject: [PATCH 129/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 50bfaf32e935226c92482fe939c97360b6411848 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:47:40 +0300 Subject: [PATCH 130/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From ccd045d31c0ec20a6a619d36cbf57d08d4584b4c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:48:59 +0300 Subject: [PATCH 131/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From f80b18cd7a15a4a4074c2657328e9c4d88f82b6c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 13:51:55 +0300 Subject: [PATCH 132/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 455b72e4031c6118a102f85595c0c81c3f361fc2 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 14:02:51 +0300 Subject: [PATCH 133/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From f323b0088e25a5061d2742c36995004181872aaa Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Sep 2015 17:41:50 +0300 Subject: [PATCH 134/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From cb32ca033c0c9034ccf267bfcd6a08ee8c5b8c4b Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 30 Sep 2015 15:40:53 +0300 Subject: [PATCH 135/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From d3201f51b155e48f9752bf0a0b40c3cbdef287ce Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 30 Sep 2015 15:41:50 +0300 Subject: [PATCH 136/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From da908b19a537489a28d2409c8db7e27a8276fb7d Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 30 Sep 2015 15:43:42 +0300 Subject: [PATCH 137/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 65dfb57c3198419ac1bc26a07a55a09d025bb5c9 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 30 Sep 2015 16:24:19 +0300 Subject: [PATCH 138/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 6be23e5c2d3ad5361882bb1e294b56e5dea9322e Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 30 Sep 2015 16:30:09 +0300 Subject: [PATCH 139/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..be99286 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +9# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 68ab42e7806c6d2d04bd5ab45243462a22be475a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sat, 3 Oct 2015 13:00:43 +0300 Subject: [PATCH 140/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be99286..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -9# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 10c024f3cb94b8fb547a06466255345979723279 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Mon, 5 Oct 2015 12:13:44 +0300 Subject: [PATCH 141/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From fc9b6502ad91ffe494f152be52b2710139380cf3 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 20:11:41 +0300 Subject: [PATCH 142/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 862dd6bf352bd0f3c31a978a4e7116cee45c8d11 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 20:17:03 +0300 Subject: [PATCH 143/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From f3e2f5474595997449003e297146e3f6f769b5fc Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 20:19:39 +0300 Subject: [PATCH 144/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From a3f793cbfa9b28c306592fe8e771c3e5eccffef1 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:08:03 +0300 Subject: [PATCH 145/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 53aad30af5a6731b7e4e576c605065316f2e9277 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:10:24 +0300 Subject: [PATCH 146/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From de236a64aabcd215377f64e347565eef517ecc80 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:11:18 +0300 Subject: [PATCH 147/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 986ca77390744f845e2016d0bcd85899d4466b95 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:15:36 +0300 Subject: [PATCH 148/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 9c0ce3914dd1ac59bce45b41f963e98be7682f73 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:16:39 +0300 Subject: [PATCH 149/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From e0b91b01458e7956513ca13792bca0dcd5c9cc2a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:17:22 +0300 Subject: [PATCH 150/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From e1910fee2300985e2b984f1623ee98c1a1f5bb25 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:26:18 +0300 Subject: [PATCH 151/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 233e5fa0aafc09463c583221588774d08e944fdc Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:35:40 +0300 Subject: [PATCH 152/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 9b48d19b41ffa3c7c7a0fa000d734e2ef94b6b67 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:40:07 +0300 Subject: [PATCH 153/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..bc03035 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +6# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 254cee49ed866545a7e3e90f4ed5717b8d94da11 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:47:09 +0300 Subject: [PATCH 154/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc03035..cc5fa44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -6# CodeFresh beautify example plugin +7# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 9006f07c95e8aec053b668ba8438bfdf438e8d97 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 6 Oct 2015 21:47:45 +0300 Subject: [PATCH 155/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5fa44..516ba43 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -7# CodeFresh beautify example plugin +8# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From f8c0346ef12c0e4394756b1a8c2e56370052c159 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 13 Oct 2015 10:59:56 +0300 Subject: [PATCH 156/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 516ba43..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -8# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 4e4704c6b2d2706b589399a748b3000dde9d0e01 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 14 Oct 2015 18:18:01 +0300 Subject: [PATCH 157/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 82ef8263f63146c9983fe81d15004fbf2619e994 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 14 Oct 2015 18:20:00 +0300 Subject: [PATCH 158/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 085c120bf30aefd64bdd160816fa5356bd3b1c36 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 14 Oct 2015 18:24:08 +0300 Subject: [PATCH 159/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 68f32e7ae0566815d093278da9adfe4c4a870831 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 15 Oct 2015 11:57:38 +0300 Subject: [PATCH 160/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 3547aec128c34ac1c1d41d4429a56f9f450fe67f Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 20 Oct 2015 13:58:27 +0300 Subject: [PATCH 161/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..5ee9440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +1# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 13ccef4de1842555aafcb22324cc83af1d594555 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Wed, 21 Oct 2015 16:35:53 +0300 Subject: [PATCH 162/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ee9440..cd8042e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -1# CodeFresh beautify example plugin +2# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 0d92c5e55a2fac66ba3563635edd659de443609a Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Mon, 26 Oct 2015 10:55:24 +0200 Subject: [PATCH 163/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8042e..1a02caa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -2# CodeFresh beautify example plugin +3# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From f4e777a21fdff5698eb6a66dfb7788c906cf3546 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 3 Nov 2015 19:12:55 +0200 Subject: [PATCH 164/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a02caa..0084bd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -3# CodeFresh beautify example plugin +4# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 97c2756f85b5dd6bfa2585e8c5ff327fc0d83e8b Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Thu, 10 Dec 2015 15:50:29 +0200 Subject: [PATCH 165/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0084bd1..5aeebea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -4# CodeFresh beautify example plugin +5# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From 01a28aede67a6001d909cd4a1d0338175fc837f5 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 12 Jan 2016 16:43:57 +0200 Subject: [PATCH 166/171] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aeebea..f72a1b8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -5# CodeFresh beautify example plugin +# CodeFresh beautify example plugin The purpose of this example is to show how to write simple Orion plugin, extend it and work with it From e23bb474dff5d32d55db00a7a82bb4f3aad8422c Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 2 Feb 2016 15:48:57 +0200 Subject: [PATCH 167/171] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 027dbcd..403d56e 100644 --- a/index.html +++ b/index.html @@ -73,7 +73,7 @@
-

Orion JS Beautify Example

+

Orion JS Beautify Example - Test1

Example of simple orion plugin

From c323772d2071382d58d962a73d0a143ce7d373ec Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Tue, 2 Feb 2016 15:50:46 +0200 Subject: [PATCH 168/171] Test2 --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 403d56e..9a95932 100644 --- a/index.html +++ b/index.html @@ -73,7 +73,7 @@
-

Orion JS Beautify Example - Test1

+

Orion JS Beautify Example - Test2

Example of simple orion plugin

From c10930f50f21569e0cd217af75774706aa7feb65 Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sat, 12 Mar 2016 16:38:17 +0200 Subject: [PATCH 169/171] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 9a95932..8c86816 100644 --- a/index.html +++ b/index.html @@ -73,7 +73,7 @@
-

Orion JS Beautify Example - Test2

+

Orion JS Beautify Example - Chezy

Example of simple orion plugin

From 6caddb34ce7a8d4a282d6ea10de2f572c6b3ab0b Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 20 Mar 2016 17:42:39 +0200 Subject: [PATCH 170/171] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 8c86816..437e53a 100644 --- a/index.html +++ b/index.html @@ -73,7 +73,7 @@
-

Orion JS Beautify Example - Chezy

+

Orion JS Beautify Example - Irin

Example of simple orion plugin

From 9a3b0d49b1c935369602dbb7cfd54d9ea1cd3f6d Mon Sep 17 00:00:00 2001 From: Guy Balteriski Date: Sun, 27 Mar 2016 18:47:32 +0300 Subject: [PATCH 171/171] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index f72a1b8..df36cde 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # CodeFresh beautify example plugin - The purpose of this example is to show how to write simple Orion plugin, extend it and work with it In this example we have developed very simple JS beautify plugin that will add menu item ('Beautify JS' under the 'Tools' drop down menu) that cab be executed on any .js file (visible when a JS file is opened). This implementation is also using Orion settings mechanism to extend the user experience by letting him select how to use the beautify logic.