middleman 2.0.9.pre.2-x86-mingw32 → 2.0.9.pre.3-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +9 -0
- data/features/builder.feature +6 -0
- data/features/data.feature +16 -1
- data/features/fonts.feature +11 -0
- data/features/relative_assets.feature +8 -2
- data/features/step_definitions/middleman_steps.rb +9 -2
- data/fixtures/data-app/config.rb +3 -0
- data/fixtures/data-app/data/pages.yml +6 -0
- data/fixtures/data-app/source/index.html.haml +1 -0
- data/fixtures/data-app/source/layout.haml +3 -0
- data/fixtures/fonts-app/config.rb +0 -0
- data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
- data/fixtures/fonts-app/source/stylesheets/fonts.css.sass +3 -0
- data/fixtures/glob-app/config.rb +1 -0
- data/fixtures/glob-app/source/index.html.haml +6 -0
- data/fixtures/glob-app/source/stylesheets/site.css.sass +1 -0
- data/fixtures/test-app/config.rb +1 -0
- data/fixtures/test-app/data/test2.json +4 -0
- data/fixtures/test-app/source/data3.html.erb +1 -0
- data/lib/middleman/base.rb +8 -3
- data/lib/middleman/builder.rb +61 -22
- data/lib/middleman/cli.rb +2 -1
- data/lib/middleman/core_extensions/assets.rb +1 -1
- data/lib/middleman/core_extensions/compass.rb +6 -2
- data/lib/middleman/core_extensions/data.rb +20 -3
- data/lib/middleman/templates/html5.rb +1 -0
- data/lib/middleman/templates/mobile.rb +17 -0
- data/lib/middleman/templates/mobile/source/404.html +38 -0
- data/lib/middleman/templates/mobile/source/README.markdown +64 -0
- data/lib/middleman/templates/mobile/source/crossdomain.xml +25 -0
- data/lib/middleman/templates/mobile/source/css/style.css +236 -0
- data/lib/middleman/templates/mobile/source/default.appcache +17 -0
- data/lib/middleman/templates/mobile/source/humans.txt +43 -0
- data/lib/middleman/templates/mobile/source/img/h/apple-touch-icon.png +0 -0
- data/lib/middleman/templates/mobile/source/img/h/splash.png +0 -0
- data/lib/middleman/templates/mobile/source/img/l/apple-touch-icon-precomposed.png +0 -0
- data/lib/middleman/templates/mobile/source/img/l/apple-touch-icon.png +0 -0
- data/lib/middleman/templates/mobile/source/img/l/splash.png +0 -0
- data/lib/middleman/templates/mobile/source/img/m/apple-touch-icon.png +0 -0
- data/lib/middleman/templates/mobile/source/index.html +95 -0
- data/lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.js +8316 -0
- data/lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.min.js +16 -0
- data/lib/middleman/templates/mobile/source/js/libs/modernizr-custom.js +14 -0
- data/lib/middleman/templates/mobile/source/js/libs/respond.min.js +7 -0
- data/lib/middleman/templates/mobile/source/js/mylibs/helper.js +147 -0
- data/lib/middleman/templates/mobile/source/js/script.js +0 -0
- data/lib/middleman/templates/mobile/source/robots.txt +5 -0
- data/lib/middleman/templates/mobile/source/sitemap.xml +10 -0
- data/lib/middleman/templates/mobile/source/test/index.html +31 -0
- data/lib/middleman/templates/mobile/source/test/qunit/qunit.css +148 -0
- data/lib/middleman/templates/mobile/source/test/qunit/qunit.js +1265 -0
- data/lib/middleman/templates/mobile/source/test/tests.js +26 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/Readme.PDF +0 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx1.snippet +31 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx2.snippet +2 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/ga.aspx +195 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/sample.aspx +44 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/ga.jsp +225 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp1.snippet +35 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp2.snippet +2 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/sample.jsp +51 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/ga.php +176 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php1.snippet +30 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php2.snippet +4 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/sample.php +44 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/ga.pl +195 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet +27 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl2.snippet +1 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/sample.pl +38 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/COPYING +202 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/bookmark_bubble.js +559 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.html +43 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.js +57 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/arrow.png +0 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/close.png +0 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/generate_base64_images +33 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/icon_calendar.png +0 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/README +27 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/databasefactory.js +45 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbworker.js +324 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbworker_test.html +393 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbworkerstarter.js +32 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears.js +595 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears_test.html +404 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5.js +203 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5_test.html +468 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi.js +202 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi_test.html +51 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_resultset.js +71 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_resultset_test.html +86 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_transaction.js +196 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_transaction_test.html +221 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gearsutils.js +94 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gearsutils_test.html +84 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/global_functions.js +72 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/index.html +347 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/simplenotes.js +503 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/styles.css +66 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/template.js +75 -0
- data/lib/middleman/version.rb +1 -1
- data/middleman-x86-mingw32.gemspec +0 -1
- data/middleman.gemspec +3 -2
- metadata +103 -6
- data/lib/middleman/config.ru +0 -2
- data/lib/middleman/features/tiny_src.rb +0 -11
@@ -0,0 +1,66 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2009 Google Inc.
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
15
|
+
*/
|
16
|
+
|
17
|
+
body {
|
18
|
+
background-color: #efefef;
|
19
|
+
font: medium "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
|
20
|
+
}
|
21
|
+
|
22
|
+
.status-bar {
|
23
|
+
background-color: #ffd21d;
|
24
|
+
display: none;
|
25
|
+
-webkit-border-radius: 6.0px;
|
26
|
+
-moz-border-radius: 6.0px;
|
27
|
+
border-style: solid;
|
28
|
+
border-width: 1px;
|
29
|
+
padding: 3px;
|
30
|
+
text-align: center;
|
31
|
+
}
|
32
|
+
|
33
|
+
.screen {
|
34
|
+
border: thin solid #939393;
|
35
|
+
padding: 2px 2px 2px 2px;
|
36
|
+
}
|
37
|
+
|
38
|
+
.command-bar {
|
39
|
+
background-color: #275390;
|
40
|
+
}
|
41
|
+
|
42
|
+
.title-bar {
|
43
|
+
font-weight: bold;
|
44
|
+
background-color: #4b4b4b;
|
45
|
+
text-align: center;
|
46
|
+
padding: 3px;
|
47
|
+
color: #aaa;
|
48
|
+
}
|
49
|
+
|
50
|
+
textarea {
|
51
|
+
font-size: 16pt;
|
52
|
+
}
|
53
|
+
|
54
|
+
button {
|
55
|
+
text-align:center;
|
56
|
+
font-family: Helvetica;
|
57
|
+
font-weight: bold;
|
58
|
+
font-size: 20px;
|
59
|
+
text-decoration: none;
|
60
|
+
text-shadow: #fff 0px 2px 2px;
|
61
|
+
padding: 3px;
|
62
|
+
-webkit-border-radius: 6.0px;
|
63
|
+
-moz-border-radius: 6.0px;
|
64
|
+
margin-right: 4px;
|
65
|
+
margin-left: 4px;
|
66
|
+
}
|
@@ -0,0 +1,75 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2009 Google Inc.
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
15
|
+
*/
|
16
|
+
|
17
|
+
/**
|
18
|
+
* @fileoverview template.js contains the implementation for a simple template
|
19
|
+
* scheme. Templates are fragments of HTML containing patterns into which
|
20
|
+
* arguments will be substituted.
|
21
|
+
*/
|
22
|
+
|
23
|
+
google.wspl.simplenotes = google.wspl.simplenotes || {};
|
24
|
+
|
25
|
+
/**
|
26
|
+
* Template class constructor. A template is an object which will
|
27
|
+
* substitute provided parameters into a marked-up string.
|
28
|
+
* @param {string} template
|
29
|
+
* @constructor
|
30
|
+
*/
|
31
|
+
google.wspl.simplenotes.Template = function(template) {
|
32
|
+
this.template_ = template;
|
33
|
+
this.res_ = null;
|
34
|
+
};
|
35
|
+
|
36
|
+
/**
|
37
|
+
* Returns the template expanded with the given args where args
|
38
|
+
* is an object (acting as an associative array) binding keys (found
|
39
|
+
* in the template wrapped with % symbols) to the associated
|
40
|
+
* values.
|
41
|
+
*
|
42
|
+
* Template substitution symbols without corresponding arguments
|
43
|
+
* will be passed through unchanged to the output.
|
44
|
+
*
|
45
|
+
* We assume that in typical use, the same template will be expanded
|
46
|
+
* repeatedly with different values. In this case, storing and re-using
|
47
|
+
* previously generated regular expressions will provide a performance
|
48
|
+
* improvement.
|
49
|
+
* @param {Object} args associates names with values
|
50
|
+
* @param {boolean} opt_rebuild set to true to force re-building the
|
51
|
+
* the regular epxression.
|
52
|
+
*/
|
53
|
+
google.wspl.simplenotes.Template.prototype.process = function(args,
|
54
|
+
opt_rebuild) {
|
55
|
+
var rebuild = opt_rebuild || false;
|
56
|
+
|
57
|
+
if (rebuild || this.res_ == null) {
|
58
|
+
var accumulatedRe = [];
|
59
|
+
this.res_ = null;
|
60
|
+
for (var a in args) {
|
61
|
+
accumulatedRe.push('%' + String(a) + '%');
|
62
|
+
}
|
63
|
+
if (accumulatedRe.length > 0) {
|
64
|
+
this.res_ = new RegExp(accumulatedRe.join('|'), 'g');
|
65
|
+
}
|
66
|
+
}
|
67
|
+
if (this.res_ != null) {
|
68
|
+
return this.template_.replace(this.res_, function(match) {
|
69
|
+
var keyName = match.slice(1,-1);
|
70
|
+
return args[keyName];
|
71
|
+
});
|
72
|
+
} else {
|
73
|
+
return this.template_;
|
74
|
+
}
|
75
|
+
};
|
data/lib/middleman/version.rb
CHANGED
data/middleman.gemspec
CHANGED
@@ -43,6 +43,7 @@ eos
|
|
43
43
|
s.add_dependency("tilt", ["~> 1.3.1"])
|
44
44
|
s.add_dependency("maruku", ["~> 0.6.0"])
|
45
45
|
s.add_dependency("sinatra", ["~> 1.2.6"])
|
46
|
+
# s.add_dependency("sinatra-synchrony", ["~> 0.2.1"])
|
46
47
|
s.add_dependency("rack-test", ["~> 0.6.1"])
|
47
48
|
s.add_dependency("uglifier", ["~> 1.0.0"])
|
48
49
|
s.add_dependency("slim", ["~> 1.0.1"])
|
@@ -60,8 +61,8 @@ eos
|
|
60
61
|
# s.add_dependency("win32-process", ["~> 0.6.5"])
|
61
62
|
# s.add_dependency("rb-fchange")
|
62
63
|
# else
|
63
|
-
s.add_dependency("rb-fsevent", ["~> 0.4.2"])
|
64
|
-
s.add_dependency("therubyracer", ["~> 0.9.4"])
|
64
|
+
# s.add_dependency("rb-fsevent", ["~> 0.4.2"])
|
65
|
+
# s.add_dependency("therubyracer", ["~> 0.9.4"])
|
65
66
|
# end
|
66
67
|
|
67
68
|
s.add_dependency("guard", ["~> 0.6.2"])
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 1923831975
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
9
|
- 9
|
10
10
|
- pre
|
11
|
-
-
|
12
|
-
version: 2.0.9.pre.
|
11
|
+
- 3
|
12
|
+
version: 2.0.9.pre.3
|
13
13
|
platform: x86-mingw32
|
14
14
|
authors:
|
15
15
|
- Thomas Reynolds
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2011-09-
|
20
|
+
date: 2011-09-20 00:00:00 -07:00
|
21
21
|
default_executable:
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|
@@ -469,6 +469,7 @@ files:
|
|
469
469
|
- features/data.feature
|
470
470
|
- features/directory_index.feature
|
471
471
|
- features/dynamic_pages.feature
|
472
|
+
- features/fonts.feature
|
472
473
|
- features/front-matter.feature
|
473
474
|
- features/generator.feature
|
474
475
|
- features/helpers_auto_javascript_include_tag.feature
|
@@ -493,6 +494,16 @@ files:
|
|
493
494
|
- features/step_definitions/page_layout_steps.rb
|
494
495
|
- features/support/env.rb
|
495
496
|
- features/tiny_src.feature
|
497
|
+
- fixtures/data-app/config.rb
|
498
|
+
- fixtures/data-app/data/pages.yml
|
499
|
+
- fixtures/data-app/source/index.html.haml
|
500
|
+
- fixtures/data-app/source/layout.haml
|
501
|
+
- fixtures/fonts-app/config.rb
|
502
|
+
- fixtures/fonts-app/source/fonts/StMarie-Thin.otf
|
503
|
+
- fixtures/fonts-app/source/stylesheets/fonts.css.sass
|
504
|
+
- fixtures/glob-app/config.rb
|
505
|
+
- fixtures/glob-app/source/index.html.haml
|
506
|
+
- fixtures/glob-app/source/stylesheets/site.css.sass
|
496
507
|
- fixtures/indexable-app/config.rb
|
497
508
|
- fixtures/indexable-app/source/a_folder/needs_index.html
|
498
509
|
- fixtures/indexable-app/source/leave_me_alone.html
|
@@ -507,6 +518,7 @@ files:
|
|
507
518
|
- fixtures/sprockets-app/source/library/javascripts/sprockets_sub.js
|
508
519
|
- fixtures/test-app/config.rb
|
509
520
|
- fixtures/test-app/data/test.yml
|
521
|
+
- fixtures/test-app/data/test2.json
|
510
522
|
- fixtures/test-app/source/_liquid_partial.liquid
|
511
523
|
- fixtures/test-app/source/_partial.haml
|
512
524
|
- fixtures/test-app/source/a_folder/needs_index.html
|
@@ -525,6 +537,7 @@ files:
|
|
525
537
|
- fixtures/test-app/source/custom-layout.html.haml
|
526
538
|
- fixtures/test-app/source/data.html.erb
|
527
539
|
- fixtures/test-app/source/data2.html.liquid
|
540
|
+
- fixtures/test-app/source/data3.html.erb
|
528
541
|
- fixtures/test-app/source/front-matter.html.erb
|
529
542
|
- fixtures/test-app/source/images/Child folder/regular_file(example).txt
|
530
543
|
- fixtures/test-app/source/images/Read me (example).txt
|
@@ -579,7 +592,6 @@ files:
|
|
579
592
|
- lib/middleman/base.rb
|
580
593
|
- lib/middleman/builder.rb
|
581
594
|
- lib/middleman/cli.rb
|
582
|
-
- lib/middleman/config.ru
|
583
595
|
- lib/middleman/core_extensions/assets.rb
|
584
596
|
- lib/middleman/core_extensions/builder.rb
|
585
597
|
- lib/middleman/core_extensions/compass.rb
|
@@ -600,7 +612,6 @@ files:
|
|
600
612
|
- lib/middleman/features/minify_css.rb
|
601
613
|
- lib/middleman/features/minify_javascript.rb
|
602
614
|
- lib/middleman/features/relative_assets.rb
|
603
|
-
- lib/middleman/features/tiny_src.rb
|
604
615
|
- lib/middleman/guard.rb
|
605
616
|
- lib/middleman/renderers/coffee_script.rb
|
606
617
|
- lib/middleman/renderers/haml.rb
|
@@ -639,6 +650,79 @@ files:
|
|
639
650
|
- lib/middleman/templates/html5/source/test/qunit/qunit.js
|
640
651
|
- lib/middleman/templates/html5/source/test/tests.js
|
641
652
|
- lib/middleman/templates/local.rb
|
653
|
+
- lib/middleman/templates/mobile.rb
|
654
|
+
- lib/middleman/templates/mobile/source/404.html
|
655
|
+
- lib/middleman/templates/mobile/source/README.markdown
|
656
|
+
- lib/middleman/templates/mobile/source/crossdomain.xml
|
657
|
+
- lib/middleman/templates/mobile/source/css/style.css
|
658
|
+
- lib/middleman/templates/mobile/source/default.appcache
|
659
|
+
- lib/middleman/templates/mobile/source/humans.txt
|
660
|
+
- lib/middleman/templates/mobile/source/img/h/apple-touch-icon.png
|
661
|
+
- lib/middleman/templates/mobile/source/img/h/splash.png
|
662
|
+
- lib/middleman/templates/mobile/source/img/l/apple-touch-icon-precomposed.png
|
663
|
+
- lib/middleman/templates/mobile/source/img/l/apple-touch-icon.png
|
664
|
+
- lib/middleman/templates/mobile/source/img/l/splash.png
|
665
|
+
- lib/middleman/templates/mobile/source/img/m/apple-touch-icon.png
|
666
|
+
- lib/middleman/templates/mobile/source/index.html
|
667
|
+
- lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.js
|
668
|
+
- lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.min.js
|
669
|
+
- lib/middleman/templates/mobile/source/js/libs/modernizr-custom.js
|
670
|
+
- lib/middleman/templates/mobile/source/js/libs/respond.min.js
|
671
|
+
- lib/middleman/templates/mobile/source/js/mylibs/helper.js
|
672
|
+
- lib/middleman/templates/mobile/source/js/script.js
|
673
|
+
- lib/middleman/templates/mobile/source/robots.txt
|
674
|
+
- lib/middleman/templates/mobile/source/sitemap.xml
|
675
|
+
- lib/middleman/templates/mobile/source/test/index.html
|
676
|
+
- lib/middleman/templates/mobile/source/test/qunit/qunit.css
|
677
|
+
- lib/middleman/templates/mobile/source/test/qunit/qunit.js
|
678
|
+
- lib/middleman/templates/mobile/source/test/tests.js
|
679
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/Readme.PDF
|
680
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx1.snippet
|
681
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx2.snippet
|
682
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/ga.aspx
|
683
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/sample.aspx
|
684
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/ga.jsp
|
685
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp1.snippet
|
686
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp2.snippet
|
687
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/sample.jsp
|
688
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/ga.php
|
689
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php1.snippet
|
690
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php2.snippet
|
691
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/sample.php
|
692
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/ga.pl
|
693
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
|
694
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl2.snippet
|
695
|
+
- lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/sample.pl
|
696
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/COPYING
|
697
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/bookmark_bubble.js
|
698
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.html
|
699
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.js
|
700
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/arrow.png
|
701
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/close.png
|
702
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/generate_base64_images
|
703
|
+
- lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/icon_calendar.png
|
704
|
+
- lib/middleman/templates/mobile/source/tools/wspl/README
|
705
|
+
- lib/middleman/templates/mobile/source/tools/wspl/databasefactory.js
|
706
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbworker.js
|
707
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbworker_test.html
|
708
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbworkerstarter.js
|
709
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears.js
|
710
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears_test.html
|
711
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5.js
|
712
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5_test.html
|
713
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi.js
|
714
|
+
- lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi_test.html
|
715
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gears_resultset.js
|
716
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gears_resultset_test.html
|
717
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gears_transaction.js
|
718
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gears_transaction_test.html
|
719
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gearsutils.js
|
720
|
+
- lib/middleman/templates/mobile/source/tools/wspl/gearsutils_test.html
|
721
|
+
- lib/middleman/templates/mobile/source/tools/wspl/global_functions.js
|
722
|
+
- lib/middleman/templates/mobile/source/tools/wspl/simplenotes/index.html
|
723
|
+
- lib/middleman/templates/mobile/source/tools/wspl/simplenotes/simplenotes.js
|
724
|
+
- lib/middleman/templates/mobile/source/tools/wspl/simplenotes/styles.css
|
725
|
+
- lib/middleman/templates/mobile/source/tools/wspl/simplenotes/template.js
|
642
726
|
- lib/middleman/templates/shared/Gemfile.tt
|
643
727
|
- lib/middleman/templates/shared/config.ru
|
644
728
|
- lib/middleman/templates/shared/config.tt
|
@@ -704,6 +788,7 @@ test_files:
|
|
704
788
|
- features/data.feature
|
705
789
|
- features/directory_index.feature
|
706
790
|
- features/dynamic_pages.feature
|
791
|
+
- features/fonts.feature
|
707
792
|
- features/front-matter.feature
|
708
793
|
- features/generator.feature
|
709
794
|
- features/helpers_auto_javascript_include_tag.feature
|
@@ -728,6 +813,16 @@ test_files:
|
|
728
813
|
- features/step_definitions/page_layout_steps.rb
|
729
814
|
- features/support/env.rb
|
730
815
|
- features/tiny_src.feature
|
816
|
+
- fixtures/data-app/config.rb
|
817
|
+
- fixtures/data-app/data/pages.yml
|
818
|
+
- fixtures/data-app/source/index.html.haml
|
819
|
+
- fixtures/data-app/source/layout.haml
|
820
|
+
- fixtures/fonts-app/config.rb
|
821
|
+
- fixtures/fonts-app/source/fonts/StMarie-Thin.otf
|
822
|
+
- fixtures/fonts-app/source/stylesheets/fonts.css.sass
|
823
|
+
- fixtures/glob-app/config.rb
|
824
|
+
- fixtures/glob-app/source/index.html.haml
|
825
|
+
- fixtures/glob-app/source/stylesheets/site.css.sass
|
731
826
|
- fixtures/indexable-app/config.rb
|
732
827
|
- fixtures/indexable-app/source/a_folder/needs_index.html
|
733
828
|
- fixtures/indexable-app/source/leave_me_alone.html
|
@@ -742,6 +837,7 @@ test_files:
|
|
742
837
|
- fixtures/sprockets-app/source/library/javascripts/sprockets_sub.js
|
743
838
|
- fixtures/test-app/config.rb
|
744
839
|
- fixtures/test-app/data/test.yml
|
840
|
+
- fixtures/test-app/data/test2.json
|
745
841
|
- fixtures/test-app/source/_liquid_partial.liquid
|
746
842
|
- fixtures/test-app/source/_partial.haml
|
747
843
|
- fixtures/test-app/source/a_folder/needs_index.html
|
@@ -760,6 +856,7 @@ test_files:
|
|
760
856
|
- fixtures/test-app/source/custom-layout.html.haml
|
761
857
|
- fixtures/test-app/source/data.html.erb
|
762
858
|
- fixtures/test-app/source/data2.html.liquid
|
859
|
+
- fixtures/test-app/source/data3.html.erb
|
763
860
|
- fixtures/test-app/source/front-matter.html.erb
|
764
861
|
- fixtures/test-app/source/images/Child folder/regular_file(example).txt
|
765
862
|
- fixtures/test-app/source/images/Read me (example).txt
|
data/lib/middleman/config.ru
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
module Middleman::Features::TinySrc
|
2
|
-
class << self
|
3
|
-
def registered(app)
|
4
|
-
app.register_asset_handler :tiny_src do |path, prefix, request|
|
5
|
-
original_output = app.before_asset_handler(:tiny_src, path, prefix, request)
|
6
|
-
"http://i.tinysrc.mobi/#{original_output}"
|
7
|
-
end
|
8
|
-
end
|
9
|
-
alias :included :registered
|
10
|
-
end
|
11
|
-
end
|