scms 1.8.7 → 1.8.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 78ff8eda7a24fe3fb46681efa4422eb964b894fc
4
- data.tar.gz: c8b36f9edb0bc0acc91e6e8184782e1fb478598e
3
+ metadata.gz: 241573260a9d95993301a614042d73ec8c8fc562
4
+ data.tar.gz: 234efa2167f1b9356fe2c2004bc75993874f517d
5
5
  SHA512:
6
- metadata.gz: 4de747c81d18e366153e56556f5a7e38f3dfcc002cfc5b3dae6311497c614022930ca5f669033852077ae564ff3fa46d2202aa966c7724f1e7e14c94b5bca824
7
- data.tar.gz: d0d4443420d6fceba3dd27f7366c962414fcf4042ed537db719d3422c04c8403aa4aa42ff7d4dce76a4bc410215320d4fce7c61daaf589a3360b9a3d1e2d86f3
6
+ metadata.gz: 8ed2e74ad0aef5def980af64120838015c7123e92bfcfb10bed95977e4a43151399948dd7c5da3a0222cb1802cead102519caca9b104c0d7380e03b6254317e2
7
+ data.tar.gz: e46a620c21c8733ee1e33c8e70635096dcf364299bd192e4966d65b9188ee355b5eec0efc8e0f0241d58f2bfe7dfd463de7e029b93f40b273f8bdc341bc5a0ed
@@ -0,0 +1,22 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
3
+
4
+ # Custom for Visual Studio
5
+ *.cs diff=csharp
6
+ *.sln merge=union
7
+ *.csproj merge=union
8
+ *.vbproj merge=union
9
+ *.fsproj merge=union
10
+ *.dbproj merge=union
11
+
12
+ # Standard to msysgit
13
+ *.doc diff=astextplain
14
+ *.DOC diff=astextplain
15
+ *.docx diff=astextplain
16
+ *.DOCX diff=astextplain
17
+ *.dot diff=astextplain
18
+ *.DOT diff=astextplain
19
+ *.pdf diff=astextplain
20
+ *.PDF diff=astextplain
21
+ *.rtf diff=astextplain
22
+ *.RTF diff=astextplain
@@ -0,0 +1,28 @@
1
+ *.gem
2
+ *.sublime-project
3
+ *.sublime-workspace
4
+
5
+ # DocProject is a documentation generator add-in
6
+ DocProject/buildhelp/
7
+ DocProject/Help/*.HxT
8
+ DocProject/Help/*.HxC
9
+ DocProject/Help/*.hhc
10
+ DocProject/Help/*.hhk
11
+ DocProject/Help/*.hhp
12
+ DocProject/Help/Html2
13
+ DocProject/Help/html
14
+
15
+
16
+ ############
17
+ ## Windows
18
+ ############
19
+
20
+ # Windows image file caches
21
+ Thumbs.db
22
+
23
+ # Folder config file
24
+ Desktop.ini
25
+
26
+
27
+ # Mac crap
28
+ .DS_Store
data/README.md CHANGED
@@ -14,9 +14,13 @@ When your happy with your website StaticCMS will also deploy to AmazonS3 setting
14
14
 
15
15
  scms -a create -w /path/to/folder
16
16
 
17
+ _(if the -w flag is excluded it assumes current directory)_
18
+
17
19
  ### Building your website
18
20
 
19
- scms - build -w /path/to/folder
21
+ scms -a build -w /path/to/folder
22
+
23
+ _(if the -a flag is excluded defult action is 'build')_
20
24
 
21
25
  ### Publishing your website
22
26
 
@@ -19,9 +19,14 @@ module S3Deploy
19
19
  removeold = ""
20
20
  end
21
21
  end
22
+
23
+ exclude = "--exclude='.svn'"
24
+ if $settings['ignore'] != nil
25
+ exclude = "--exclude=#{$settings["ignore"]}"
26
+ end
22
27
 
23
28
  cmd = "s3sync"
24
- params = "--exclude='.svn' --progress --make-dirs --recursive --public-read #{removeold}"
29
+ params = "#{removeold} #{exclude} --progress --make-dirs --recursive --public-read "
25
30
 
26
31
  if $settings['cache'] != nil
27
32
  $settings['cache'].each do |folder|
@@ -57,7 +62,13 @@ module S3Deploy
57
62
  removeold = ""
58
63
  end
59
64
  end
60
- params = "--exclude='.svn' --progress --make-dirs --recursive #{removeold} \"#{privatedir}/\" #{$settings['bucket']}:private/"
65
+
66
+ exclude = "--exclude='.svn'"
67
+ if $settings['ignore'] != nil
68
+ exclude = "--exclude=#{$settings["ignore"]}"
69
+ end
70
+
71
+ params = "#{exclude} --progress --make-dirs --recursive #{removeold} \"#{privatedir}/\" #{$settings['bucket']}:private/"
61
72
  ScmsUtils.run(cmd, params)
62
73
  ScmsUtils.successLog("** Done :) **")
63
74
  end
@@ -15,8 +15,12 @@ module ScmsUtils
15
15
  def ScmsUtils.errLog(msg)
16
16
  if !msg.nil?
17
17
  if $html == "true"
18
- doc = Maruku.new(msg)
19
- puts "<span style='color: red;'>#{doc.to_html}</span>"
18
+ begin
19
+ doc = Maruku.new(msg)
20
+ puts "<span style='color: red;'>#{doc.to_html}</span>"
21
+ rescue Exception=>e
22
+ puts msg
23
+ end
20
24
  else
21
25
  puts msg
22
26
  end
@@ -26,8 +30,12 @@ module ScmsUtils
26
30
  def ScmsUtils.successLog(msg)
27
31
  if !msg.nil?
28
32
  if $html == "true"
29
- doc = Maruku.new(msg)
30
- puts "<span style='color: green;'>#{doc.to_html}</span>"
33
+ begin
34
+ doc = Maruku.new(msg)
35
+ puts "<span style='color: green;'>#{doc.to_html}</span>"
36
+ rescue Exception=>e
37
+ puts msg
38
+ end
31
39
  else
32
40
  puts msg
33
41
  end
@@ -37,8 +45,12 @@ module ScmsUtils
37
45
  def ScmsUtils.log(msg)
38
46
  if !msg.nil?
39
47
  if $html == "true"
40
- doc = Maruku.new(msg)
41
- puts doc.to_html
48
+ begin
49
+ doc = Maruku.new(msg)
50
+ puts doc.to_html
51
+ rescue Exception=>e
52
+ puts msg
53
+ end
42
54
  else
43
55
  puts msg
44
56
  end
@@ -1,3 +1,3 @@
1
1
  module StaticCMS
2
- VERSION = '1.8.7'
2
+ VERSION = '1.8.8'
3
3
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.description = "A gem for creating static html websites"
13
13
  s.authors = ["Courtenay Probert"]
14
14
  s.email = 'courtenay@probert.me.uk'
15
- s.files = Dir.glob("**/*")
15
+ s.files = `git ls-files`.split("\n")
16
16
 
17
17
  s.add_dependency "aproxacs-s3sync"
18
18
  s.add_dependency "nokogiri"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.7
4
+ version: 1.8.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Courtenay Probert
@@ -87,6 +87,9 @@ executables:
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
+ - .gitattributes
91
+ - .gitignore
92
+ - README.md
90
93
  - assets/blank-app-template/application.xml
91
94
  - assets/blank-app-template/cert.p12
92
95
  - assets/blank-app-template/config.yml
@@ -146,14 +149,11 @@ files:
146
149
  - assets/mime.types
147
150
  - bin/scms
148
151
  - build commands.txt
152
+ - lib/scms.rb
149
153
  - lib/scms/s3deploy.rb
150
154
  - lib/scms/scms_utils.rb
151
155
  - lib/scms/version.rb
152
- - lib/scms.rb
153
- - README.md
154
156
  - scms.gemspec
155
- - staticcms.sublime-project
156
- - staticcms.sublime-workspace
157
157
  homepage: http://cprobert.github.io/Static-CMS/
158
158
  licenses: []
159
159
  metadata: {}
@@ -1,8 +0,0 @@
1
- {
2
- "folders":
3
- [
4
- {
5
- "path": "/I/Code/GitHub/Static-CMS"
6
- }
7
- ]
8
- }
@@ -1,679 +0,0 @@
1
- {
2
- "auto_complete":
3
- {
4
- "selected_items":
5
- [
6
- [
7
- "ex",
8
- "exit"
9
- ],
10
- [
11
- "margin",
12
- "margin-bottom"
13
- ],
14
- [
15
- "con",
16
- "console"
17
- ],
18
- [
19
- "re",
20
- "resolvePath"
21
- ],
22
- [
23
- "local",
24
- "local"
25
- ],
26
- [
27
- "we",
28
- "websiteService"
29
- ],
30
- [
31
- "t",
32
- "temp"
33
- ],
34
- [
35
- "has",
36
- "hasBuildDirSetting"
37
- ],
38
- [
39
- "website",
40
- "websites"
41
- ],
42
- [
43
- "fa",
44
- "false"
45
- ],
46
- [
47
- "air",
48
- "air-monkey"
49
- ],
50
- [
51
- "web",
52
- "Websites"
53
- ],
54
- [
55
- "is",
56
- "isApp"
57
- ],
58
- [
59
- "par",
60
- "param"
61
- ],
62
- [
63
- "he",
64
- "height"
65
- ],
66
- [
67
- "h",
68
- "height"
69
- ],
70
- [
71
- "w",
72
- "width"
73
- ],
74
- [
75
- "native",
76
- "nativeWindow"
77
- ],
78
- [
79
- "pre",
80
- "preventDefault"
81
- ],
82
- [
83
- "nat",
84
- "nativePath"
85
- ],
86
- [
87
- "webs",
88
- "websiteFolder"
89
- ],
90
- [
91
- "s",
92
- "saveWebsites"
93
- ],
94
- [
95
- "get",
96
- "getWebsites"
97
- ],
98
- [
99
- "view",
100
- "viewObj"
101
- ],
102
- [
103
- "hea",
104
- "header"
105
- ],
106
- [
107
- "c",
108
- "currentVersion"
109
- ]
110
- ]
111
- },
112
- "buffers":
113
- [
114
- {
115
- "file": "bin/scms",
116
- "settings":
117
- {
118
- "buffer_size": 3766,
119
- "line_ending": "Windows"
120
- }
121
- },
122
- {
123
- "contents": "Searching 69 files for \"_site\"\n\nI:\\Code\\GitHub\\Static-CMS\\assets\\blank-app-template\\application.xml:\n 18 <initialWindow>\n 19 <!-- The main HTML file of the application. Required. -->\n 20: <content>_site/app.html</content>\n 21 <!-- The title of the main window. Optional. -->\n 22 <title/>\n ..\n 49 <programMenuFolder>Air App</programMenuFolder> \n 50 <icon>\n 51: <image16x16>_site/ico/logo-16.png</image16x16>\n 52: <image32x32>_site/ico/logo-32.png</image32x32>\n 53: <image48x48>_site/ico/logo-48.png</image48x48>\n 54: <image128x128>_site/ico/logo-128.png</image128x128>\n 55 </icon>\n 56 <fileTypes></fileTypes>\n\nI:\\Code\\GitHub\\Static-CMS\\assets\\blank-app-template\\package.cmd:\n 12 \n 13 echo Packaging MyAirApp_%v%.air \n 14: adt -package -storetype pkcs12 -keystore cert.p12 -storepass LetItAllOut MyAirApp_%v%.air application.xml _site \n 15 endlocal\n 16 pause\n\nI:\\Code\\GitHub\\Static-CMS\\bin\\scms:\n 66 $stdout.sync = true\n 67 root_folder = File.expand_path(\"../\", File.dirname(__FILE__))\n 68: @pub = File.join(\"#{$website}/_site\")\n 69 unless options[:pub].nil?\n 70 @pub = options[:pub]\n\n7 matches across 3 files\n",
124
- "settings":
125
- {
126
- "buffer_size": 1200,
127
- "line_ending": "Windows",
128
- "name": "Find Results",
129
- "scratch": true
130
- }
131
- },
132
- {
133
- "file": "assets/blank-app-template/application.xml",
134
- "settings":
135
- {
136
- "buffer_size": 2660,
137
- "line_ending": "Windows"
138
- }
139
- },
140
- {
141
- "file": "assets/blank-app-template/package.cmd",
142
- "settings":
143
- {
144
- "buffer_size": 348,
145
- "line_ending": "Windows"
146
- }
147
- },
148
- {
149
- "file": "lib/scms/s3deploy.rb",
150
- "settings":
151
- {
152
- "buffer_size": 2329,
153
- "line_ending": "Windows"
154
- }
155
- }
156
- ],
157
- "build_system": "",
158
- "command_palette":
159
- {
160
- "height": 58.0,
161
- "selected_items":
162
- [
163
- ],
164
- "width": 416.0
165
- },
166
- "console":
167
- {
168
- "height": 0.0
169
- },
170
- "distraction_free":
171
- {
172
- "menu_visible": true,
173
- "show_minimap": false,
174
- "show_open_files": false,
175
- "show_tabs": false,
176
- "side_bar_visible": false,
177
- "status_bar_visible": false
178
- },
179
- "file_history":
180
- [
181
- "/C/Users/cprobert/AppData/Local/Temp/scmsDeploy.rb-rev50.svn000.tmp.rb",
182
- "/C/Users/cprobert/AppData/Local/Temp/scmsDeploy.rb-rev150.svn000.tmp.rb",
183
- "/C/Users/cprobert/AppData/Local/Temp/scmsDeploy.rb-rev250.svn000.tmp.rb",
184
- "/I/Code/GitHub/Static-CMS/lib/scms/s3deploy.rb",
185
- "/I/Code/GitHub/Static-CMS/bin/scms.rb",
186
- "/I/Code/GitHub/Static-CMS/bin/scms",
187
- "/I/Code/GitHub/Static-CMS/build commands.txt",
188
- "/I/Code/GitHub/Static-CMS/staticcms.sublime-workspace",
189
- "/I/Code/GitHub/Static-CMS/lib/scms.rb",
190
- "/I/Code/GitHub/Static-CMS/assets/blank-app-template/application.xml",
191
- "/I/Code/GitHub/Static-CMS/assets/blank-app-template/package.cmd",
192
- "/I/Code/GitHub/Static-CMS/README.md",
193
- "/I/Code/GitHub/Static-CMS/scms.gemspec",
194
- "/I/Code/GitHub/Static-CMS/lib/scms/version.rb",
195
- "/I/Code/GitHub/Static-CMS/lib/staticcms/ScmsUtils.rb",
196
- "/I/Code/GitHub/Static-CMS/lib/staticcms/ScmsDeploy.rb",
197
- "/I/Code/GitHub/Static-CMS/staticcms.gemspec",
198
- "/I/Code/GitHub/Static-CMS/lib/staticcms.rb",
199
- "/I/Code/cs-scripts/QSonic/orderdate.csx",
200
- "/C/Code/static_cms/air-monkey/update-config.xml",
201
- "/C/Code/static_cms/air-monkey/package.bat",
202
- "/C/Code/static_cms/air-monkey/commands/air-monkey-deploy.cmd",
203
- "/C/Code/static_cms/air-monkey/commands/air-monkey-build.cmd",
204
- "/C/Code/static_cms/air-monkey/assets/scripts/modules/website-service.js",
205
- "/C/Code/static_cms/air-monkey/assets/scripts/modules/app.js",
206
- "/C/Code/static_cms/air-monkey/assets/scripts/handlers/cms-handler.js",
207
- "/C/Code/static_cms/air-monkey/assets/scripts/handlers/index-handler.js",
208
- "/C/Code/static_cms/air-monkey/index.html",
209
- "/C/Code/static_cms/air-monkey/cms.html",
210
- "/C/Code/static_cms/air-monkey/assets/scripts/ckeditor-config.js",
211
- "/C/Code/static_cms/air-monkey/assets/stylesheets/bootstrap.buttons.min.css",
212
- "/C/Code/static_cms/air-monkey/assets/scripts/libs/yepnope.1.5.4-min.js",
213
- "/C/Code/static_cms/air-monkey/web-loader.html",
214
- "/C/Code/static_cms/air-monkey/assets/ckeditor/contents.css",
215
- "/C/Code/static_cms/air-monkey/assets/scripts/modules/native-updater.js",
216
- "/C/Code/static_cms/air-monkey/assets/scripts/modules/systray.js",
217
- "/C/Code/static_cms/air-monkey/assets/scripts/modules/netmon.js",
218
- "/C/Code/static_cms/air-monkey/assets/scripts/handlers/global.js",
219
- "/C/Code/static_cms/air-monkey/assets/scripts/utils.js",
220
- "/C/Users/cprobert/Dropbox/Code/Shout-On-Air/scripts/netmon.js",
221
- "/C/Code/static_cms/air-monkey/assets/ckeditor/config.js",
222
- "/C/Code/static_cms/air-monkey/assets/ckeditor/ckeditor.js",
223
- "/C/Code/static_cms/air-monkey/assets/scripts/models/index.model.js",
224
- "/C/Code/static_cms/air-monkey/assets/air/AIRAliases.js",
225
- "/C/Users/cprobert/Dropbox/Websites/shout-on-air.probert.me.uk/compiled/index.html",
226
- "/C/Users/cprobert/Dropbox/Companies/iTutor Tech/Websites/static-cms.ipassexam.com/views/deploy-intro.html",
227
- "/C/Users/cprobert/Dropbox/Companies/iTutor Tech/Websites/static-cms.ipassexam.com/build/index.html",
228
- "/C/Code/static_cms/air-monkey/assets/scripts/handlers/web-loader-handler.js",
229
- "/C/Users/cprobert/AppData/Roaming/Sublime Text 2/Packages/User/Preferences.sublime-settings",
230
- "/C/Users/cprobert/AppData/Roaming/Sublime Text 2/Packages/Default/Preferences.sublime-settings",
231
- "/C/Code/static_cms/air-monkey/assets/scripts/prefs.js",
232
- "/C/Code/static_cms/air-monkey/assets/scripts/libs/knockout-2.1.0-min.js",
233
- "/C/Users/cprobert/Dropbox/Code/Flamingo/flamingo.rb",
234
- "/C/Code/static_cms/air-monkey/assets/scripts/modules/ruby-check.js",
235
- "/C/Code/static_cms/air-monkey/assets/scripts/global.js",
236
- "/C/Code/static_cms/air-monkey/assets/scripts/libs/jquery.pubsub-1.0.js",
237
- "/C/Code/static_cms/air-monkey/assets/scripts/modules/data-persistance.js",
238
- "/C/Code/static_cms/air-monkey/assets/air/AIRIntrospector.js",
239
- "/C/Code/static_cms/air-monkey/assets/scripts/index.js",
240
- "/C/Code/static_cms/air-monkey/assets/scripts/air-monkey.model.js",
241
- "/C/Code/static_cms/air-monkey/assets/scripts/native-updater.js",
242
- "/C/Code/static_cms/air-monkey/assets/scripts/air-libs.js",
243
- "/C/Code/static_cms/air-monkey/assets/scripts/ruby-check.js"
244
- ],
245
- "find":
246
- {
247
- "height": 34.0
248
- },
249
- "find_in_files":
250
- {
251
- "height": 90.0,
252
- "where_history":
253
- [
254
- "I:\\Code\\GitHub\\Static-CMS",
255
- "C:\\Code\\static_cms\\air-monkey",
256
- "C:\\Code\\static_cms\\air-monkey\\assets\\scripts",
257
- "C:\\Code\\static_cms\\air-monkey"
258
- ]
259
- },
260
- "find_state":
261
- {
262
- "case_sensitive": false,
263
- "find_history":
264
- [
265
- "_site",
266
- "S3Deploy.backup",
267
- "Folders[:website]",
268
- "compiled",
269
- "Loading config",
270
- "Loading config:",
271
- "@configdir",
272
- "yamlpath",
273
- "S3Deploy.s3sync",
274
- "StaticCMS.yuiCompress",
275
- "StaticCMS.CleanPubDir",
276
- "StaticCMS.getSettings",
277
- "StaticCMS.BundleStylesheets",
278
- "StaticCMS.BundleScripts",
279
- "StaticCMS.ParseTemplates",
280
- "StaticCMS.render",
281
- "$html",
282
- "StaticCMS.render",
283
- "ScmsDeploy",
284
- "ScmsBuild",
285
- "tools",
286
- "Syncing everything else",
287
- "silksvn",
288
- "Do not close this window",
289
- "update-descriptor.xsl",
290
- "static-cms.rb",
291
- "air-monkey-build.cmd",
292
- "config-peek",
293
- "get-config-setting",
294
- "config-peek",
295
- "CodeMirror",
296
- ">return<",
297
- "return",
298
- "z-index",
299
- "modal-backdrop",
300
- "<script type=\"text/javascript\" src=",
301
- "></script>",
302
- "bootstrap.css",
303
- "view",
304
- "../",
305
- "app-version",
306
- "message-head",
307
- "modal-header",
308
- "File does not exist:",
309
- "<script type=\"text/javascript\" src=\"assets/scripts/handlers/global.js\"></script>",
310
- "netmon",
311
- "left",
312
- "$(this).log",
313
- "Opening pub: ",
314
- "No index",
315
- "engageBridge",
316
- "Edit should build to temp dir",
317
- "data.local",
318
- "customBuildDirProcessor",
319
- "getEditWebsitePubFolder",
320
- "tempEditDir",
321
- "air-monkey-build.cmd",
322
- "customBuildDirProcessor",
323
- "app.website.build",
324
- "customBuildDirProcessor",
325
- "getEditWebsitePubFolder",
326
- "getDefaultWebsitePubFolder",
327
- "console.log",
328
- "engageBridge",
329
- "console.log",
330
- "html",
331
- "console",
332
- "Deploy",
333
- "deployScript",
334
- "getWebsitePubFolder",
335
- "data",
336
- "peek",
337
- "getWebsitePubFolder",
338
- "pub.createDirectory",
339
- "Websites",
340
- "websites",
341
- "web",
342
- "folders",
343
- "Websites",
344
- "websites",
345
- "self",
346
- "getWebsitePubFolder",
347
- "compiled",
348
- "wsGridVM.websites",
349
- "stdOutVM.lines.push",
350
- "stdOutVM.lines",
351
- "push",
352
- ".lines",
353
- "stdOutVM",
354
- "knockout-2.1.0-min.js",
355
- "air.File.",
356
- "folders",
357
- "firstRun",
358
- "prefs.isLaunch",
359
- "app.folder.website",
360
- "app.folder.websites",
361
- "startNativeProcess",
362
- "websiteService.getWebsitePubFolder(",
363
- "app.folder.pub(",
364
- "app.folder",
365
- "app.data(",
366
- "app.data",
367
- "app.folder.pub",
368
- "prefs.isLaunch",
369
- "app.data",
370
- "prefs.",
371
- "prefs.winy",
372
- "prefs.winx",
373
- "popMsg",
374
- "console.log",
375
- "popMsg",
376
- "setMessage",
377
- "message",
378
- "app.website.build",
379
- "app.website.buiul",
380
- "app.website.build",
381
- "air-libs.js",
382
- "showGrid",
383
- "stdOutVM",
384
- "$guiConsole",
385
- "airMonkeyViewModel",
386
- "publishing",
387
- "Process Error:",
388
- "app.data(\"firstRun\"",
389
- "updateGems",
390
- "app.data(\"firstRun\"",
391
- "app.updateGems",
392
- "prefs.firstRun"
393
- ],
394
- "highlight": true,
395
- "in_selection": false,
396
- "preserve_case": false,
397
- "regex": false,
398
- "replace_history":
399
- [
400
- "-site",
401
- "S3Deploy.sync",
402
- "StaticCMS.yuicompress",
403
- "StaticCMS.cleanpubdir",
404
- "StaticCMS.getsettings",
405
- "StaticCMS.bundlestylesheets",
406
- "StaticCMS.bundlescripts",
407
- "StaticCMS.parsetemplates",
408
- "S3Deploy",
409
- "StaticCMS",
410
- "bootstrap.min.css",
411
- "air.trace",
412
- "getEditWebsitePubFolder",
413
- "stdOutVM.print",
414
- "websiteService.folders.website",
415
- "websiteService.folders.websites",
416
- "websiteService.getWebsitePubFolder(",
417
- "data.local(",
418
- "prefs.window.y",
419
- "prefs.window.x",
420
- "popMsg",
421
- "utils.js",
422
- "show",
423
- "stdOutVM",
424
- "wsGridVM"
425
- ],
426
- "reverse": false,
427
- "show_context": true,
428
- "use_buffer2": true,
429
- "whole_word": false,
430
- "wrap": true
431
- },
432
- "groups":
433
- [
434
- {
435
- "selected": 0,
436
- "sheets":
437
- [
438
- {
439
- "buffer": 0,
440
- "file": "bin/scms",
441
- "settings":
442
- {
443
- "buffer_size": 3766,
444
- "regions":
445
- {
446
- },
447
- "selection":
448
- [
449
- [
450
- 0,
451
- 3766
452
- ]
453
- ],
454
- "settings":
455
- {
456
- "syntax": "Packages/Ruby/Ruby.tmLanguage"
457
- },
458
- "translation.x": 0.0,
459
- "translation.y": 359.0,
460
- "zoom_level": 1.0
461
- },
462
- "type": "text"
463
- },
464
- {
465
- "buffer": 1,
466
- "settings":
467
- {
468
- "buffer_size": 1200,
469
- "regions":
470
- {
471
- "match":
472
- {
473
- "flags": 112,
474
- "regions":
475
- [
476
- [
477
- 210,
478
- 215
479
- ],
480
- [
481
- 412,
482
- 417
483
- ],
484
- [
485
- 468,
486
- 473
487
- ],
488
- [
489
- 524,
490
- 529
491
- ],
492
- [
493
- 582,
494
- 587
495
- ],
496
- [
497
- 895,
498
- 900
499
- ],
500
- [
501
- 1101,
502
- 1106
503
- ]
504
- ],
505
- "scope": ""
506
- }
507
- },
508
- "selection":
509
- [
510
- [
511
- 0,
512
- 0
513
- ]
514
- ],
515
- "settings":
516
- {
517
- "detect_indentation": false,
518
- "output_tag": 1,
519
- "result_base_dir": "",
520
- "result_file_regex": "^([A-Za-z\\\\/<].*):$",
521
- "result_line_regex": "^ +([0-9]+):",
522
- "scroll_past_end": true,
523
- "syntax": "Packages/Default/Find Results.hidden-tmLanguage",
524
- "translate_tabs_to_spaces": false
525
- },
526
- "translation.x": 0.0,
527
- "translation.y": 0.0,
528
- "zoom_level": 1.0
529
- },
530
- "type": "text"
531
- },
532
- {
533
- "buffer": 2,
534
- "file": "assets/blank-app-template/application.xml",
535
- "settings":
536
- {
537
- "buffer_size": 2660,
538
- "regions":
539
- {
540
- },
541
- "selection":
542
- [
543
- [
544
- 0,
545
- 0
546
- ]
547
- ],
548
- "settings":
549
- {
550
- "syntax": "Packages/XML/XML.tmLanguage"
551
- },
552
- "translation.x": 0.0,
553
- "translation.y": 0.0,
554
- "zoom_level": 1.0
555
- },
556
- "type": "text"
557
- },
558
- {
559
- "buffer": 3,
560
- "file": "assets/blank-app-template/package.cmd",
561
- "settings":
562
- {
563
- "buffer_size": 348,
564
- "regions":
565
- {
566
- },
567
- "selection":
568
- [
569
- [
570
- 0,
571
- 0
572
- ]
573
- ],
574
- "settings":
575
- {
576
- "syntax": "Packages/Text/Plain text.tmLanguage"
577
- },
578
- "translation.x": 0.0,
579
- "translation.y": 0.0,
580
- "zoom_level": 1.0
581
- },
582
- "type": "text"
583
- },
584
- {
585
- "buffer": 4,
586
- "file": "lib/scms/s3deploy.rb",
587
- "settings":
588
- {
589
- "buffer_size": 2329,
590
- "regions":
591
- {
592
- },
593
- "selection":
594
- [
595
- [
596
- 2329,
597
- 2329
598
- ]
599
- ],
600
- "settings":
601
- {
602
- "syntax": "Packages/Ruby/Ruby.tmLanguage"
603
- },
604
- "translation.x": 0.0,
605
- "translation.y": 0.0,
606
- "zoom_level": 1.0
607
- },
608
- "type": "text"
609
- }
610
- ]
611
- }
612
- ],
613
- "incremental_find":
614
- {
615
- "height": 34.0
616
- },
617
- "input":
618
- {
619
- "height": 31.0
620
- },
621
- "layout":
622
- {
623
- "cells":
624
- [
625
- [
626
- 0,
627
- 0,
628
- 1,
629
- 1
630
- ]
631
- ],
632
- "cols":
633
- [
634
- 0.0,
635
- 1.0
636
- ],
637
- "rows":
638
- [
639
- 0.0,
640
- 1.0
641
- ]
642
- },
643
- "menu_visible": true,
644
- "replace":
645
- {
646
- "height": 62.0
647
- },
648
- "save_all_on_build": true,
649
- "select_file":
650
- {
651
- "height": 0.0,
652
- "selected_items":
653
- [
654
- [
655
- "in",
656
- "assets/scripts/models/index.model.js"
657
- ],
658
- [
659
- "indexmodel",
660
- "assets/scripts/models/index.model.js"
661
- ]
662
- ],
663
- "width": 0.0
664
- },
665
- "select_project":
666
- {
667
- "height": 0.0,
668
- "selected_items":
669
- [
670
- ],
671
- "width": 0.0
672
- },
673
- "show_minimap": true,
674
- "show_open_files": false,
675
- "show_tabs": true,
676
- "side_bar_visible": true,
677
- "side_bar_width": 211.0,
678
- "status_bar_visible": true
679
- }