locomotivecms-search 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/lib/locomotive/search/engine.rb +8 -4
  3. data/lib/locomotive/search/version.rb +1 -1
  4. data/lib/locomotive/search/wagon.rb +31 -0
  5. data/lib/locomotive/search/wagon/liquid/drops/page.rb +16 -0
  6. data/lib/locomotive/search/wagon/liquid/drops/site.rb +7 -0
  7. data/lib/locomotive/search/wagon/liquid/tags/search_for.rb +72 -0
  8. data/lib/locomotive/search/wagon/searchable_content_entry.rb +9 -0
  9. data/lib/locomotive/search/wagon/searchable_content_field.rb +15 -0
  10. data/lib/locomotive/search/wagon/searchable_page.rb +15 -0
  11. data/spec/dummy/log/test.log +6774 -8871
  12. data/spec/wagon/Gemfile +25 -0
  13. data/spec/wagon/Gemfile.lock +154 -0
  14. data/spec/wagon/app/content_types/categories.yml +56 -0
  15. data/spec/wagon/app/content_types/emails.yml +35 -0
  16. data/spec/wagon/app/content_types/projects.yml +59 -0
  17. data/spec/wagon/app/views/pages/404.liquid.haml +11 -0
  18. data/spec/wagon/app/views/pages/email-registered.liquid.haml +13 -0
  19. data/spec/wagon/app/views/pages/index.liquid.haml +93 -0
  20. data/spec/wagon/app/views/pages/projects/content_type_template.liquid.haml +32 -0
  21. data/spec/wagon/app/views/pages/search.liquid.haml +31 -0
  22. data/spec/wagon/app/views/snippets/newsletter_form.liquid.haml +14 -0
  23. data/spec/wagon/app/views/snippets/projects.liquid.haml +17 -0
  24. data/spec/wagon/app/views/snippets/social_links.liquid.haml +19 -0
  25. data/spec/wagon/config.ru +3 -0
  26. data/spec/wagon/config/site.yml +33 -0
  27. data/spec/wagon/config/translations.yml +8 -0
  28. data/spec/wagon/data/categories.yml +8 -0
  29. data/spec/wagon/data/emails.yml +2 -0
  30. data/spec/wagon/data/projects.yml +39 -0
  31. data/spec/wagon/log/wagon.log +541 -0
  32. metadata +49 -16
@@ -0,0 +1,32 @@
1
+ ---
2
+ title: Template page of a project
3
+
4
+ # true if the page is included in the menu
5
+ listed: false
6
+
7
+ # true if the page is published
8
+ published: true
9
+
10
+ # position among sibling pages
11
+ # position: 1
12
+
13
+ # content type that this page is templatizing
14
+ content_type: "projects"
15
+
16
+ ---
17
+ {% extends index %}
18
+
19
+ {% block main %}
20
+
21
+ .row
22
+ .small-12.columns
23
+ %h2 {{ project.category.name }} :: {{ project.name }}
24
+
25
+ .row
26
+ .small-12.large-8.columns
27
+ {{ project.description }}
28
+
29
+ .small-12.large-4.columns
30
+ %img{ src: '{{ project.image.url | resize: "300x234#" }}', class: 'th' }
31
+
32
+ {% endblock %}
@@ -0,0 +1,31 @@
1
+ ---
2
+ title: Search testing page
3
+ published: true
4
+ ---
5
+ {% extends index %}
6
+
7
+ {% block 'main' %}
8
+ .row
9
+
10
+ {% search_for params.query, per_page: 10, page: params.page %}
11
+
12
+ %p {{ search.total_entries }} elements found.
13
+
14
+ %ul
15
+ {% for result in search.results %}
16
+ %li
17
+ {% if result.title %}
18
+ %a{ href: "/{{result.fullpath}}" } {{ result.title }}
19
+ {% else %}
20
+ %a{ href: "/projects/{{result._slug}}" } {{ result.label }}
21
+ {% endif %}
22
+ {% endfor %}
23
+
24
+ {% if search.total_pages > params.page %}
25
+ %p
26
+ %a{ href: "?page={{ params.page | plus: 1 }}&query={{ params.query }}" } Next page
27
+ {% endif %}
28
+
29
+ {% endsearch_for %}
30
+
31
+ {% endblock %}
@@ -0,0 +1,14 @@
1
+ %form{ action: '{{ contents.emails.public_submission_url }}', method: 'POST' }
2
+ {% csrf_param %}
3
+ .row.collapse
4
+ %input{ type: 'hidden', value: '/email-registered', name: 'success_callback' }
5
+ %input{ type: 'hidden', value: '/index', name: 'error_callback' }
6
+
7
+ .small-11.medium-11.columns
8
+ %input{ type: 'text', name: 'content[email]', placeholder: 'Join our email newsletter', class: '{% if email.errors.size > 0 %}error{% endif %}' }>
9
+ {% if email.errors %}
10
+ %small.error> {{ email.errors | first | last | capitalize }}
11
+ {% endif %}
12
+ .small-1.medium-1.columns
13
+ %span.postfix.radius
14
+ %i.fa.fa-envelope
@@ -0,0 +1,17 @@
1
+ {% for category in contents.categories %}
2
+ %h2 {{ category.name }}
3
+
4
+ .text
5
+ {{ category.description }}
6
+
7
+ {% if category.projects.size > 0 %}
8
+ %ul.projects.small-block-grid-2.medium-block-grid-4.large-block-grid-6
9
+ {% for project in category.projects %}
10
+ %li
11
+ {% link_to project %}
12
+ %img{ src: '{{ project.image.url }}', class: 'th has-tip', title: '{{ project.name }}', alt: '{{ project.name }}', data: { tooltip: '' } }
13
+ {% endlink_to %}
14
+ {% endfor %}
15
+ {% endif %}
16
+
17
+ {% endfor %}
@@ -0,0 +1,19 @@
1
+ {% if editing %}
2
+ {% assign social_rss_url = "#" %}
3
+ {% assign social_twitter_url = "#" %}
4
+ {% assign social_dribbble_url = "#" %}
5
+ {% assign social_linkedin_url = "#" %}
6
+ {% endif %}
7
+
8
+ #social.large-5.large-offset-1.columns
9
+ %a.rss{ href: '{{ social_rss_url }}' }
10
+ %i.fa.fa-rss
11
+
12
+ %a.twitter{ href: '{{ social_twitter_url }}' }
13
+ %i.fa.fa-twitter
14
+
15
+ %a.dribbble{ href: '{{ social_dribbble_url }}' }
16
+ %i.fa.fa-dribbble
17
+
18
+ %a.linkedin{ href: '{{ social_linkedin_url }}' }
19
+ %i.fa.fa-linkedin
@@ -0,0 +1,3 @@
1
+ require 'locomotive/wagon/standalone_server'
2
+
3
+ run Locomotive::Wagon::StandaloneServer.new(File.expand_path('.'))
@@ -0,0 +1,33 @@
1
+ # The name of this site
2
+ # This text displays in the back-office and
3
+ # can be used in templates through the site.name global variable
4
+ name: LineCase
5
+
6
+ # The site's subdomain
7
+ # This option is for sites on multi-site engines
8
+ # The value determines where the site can be accessed under the engine's primary domain
9
+ # subdomain: sample
10
+
11
+ # An array of domain aliases for the site
12
+ # This option is for sites on multi-site engines
13
+ # domains: [www.example.com, example.com]
14
+
15
+ # An array of locales (languages) the site is available in
16
+ # The locale listed first is the site's default locale
17
+ # Locales are specified using ISO language codes
18
+ # Possible locales include: en, de, fr, pl, pt-BR, it, nl, nb, es, ru, et, ja, zh-CN
19
+ locales: [en]
20
+
21
+ # The site's timezone
22
+ # This converts the server's time to the site's time zone in templates
23
+ # The TimeZone class from Rail's ActiveSupport is used to interpret the string
24
+ # Sample timezone strings: Tokyo, Beijing, Moscow, Cairo, Paris, Pacific Time (US & Canada)
25
+ # timezone: Paris
26
+
27
+ # For SEO purposes, sites may wish to add a relevant string to the <title> tag
28
+ # And include <meta type="keywords"> and <meta type="description">
29
+ # For this purpose you can set values for these variables here
30
+ # They can be accessed in templates through the site.seo_title, site.meta_keywords, and site.meta_description variables
31
+ seo_title: linecase
32
+ meta_keywords: "some meta keywords"
33
+ meta_description: "some meta description"
@@ -0,0 +1,8 @@
1
+ # Your translations go here. To be used with the 'translate' liquid filter
2
+ # Example:
3
+ # {{ 'hello_world' | translate }}
4
+ #
5
+
6
+ # hello_world:
7
+ # en: Hello world !
8
+ # fr: Bonjour le monde !
@@ -0,0 +1,8 @@
1
+ - "Illustrative works":
2
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
3
+
4
+ - "Graphical work":
5
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
6
+
7
+ - "Corporates":
8
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
@@ -0,0 +1,2 @@
1
+ - "test@test.fr"
2
+
@@ -0,0 +1,39 @@
1
+ - "Project 1":
2
+ category: illustrative-works # Permalink of the target entry
3
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p><ul><li>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</li><li>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</li><li>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</li></ul>"
4
+ image: /samples/projects/sample.jpeg # Path to a file in the public/samples folder or to a remote and external file.
5
+
6
+ - "Project 2":
7
+ category: illustrative-works # Permalink of the target entry
8
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
9
+ image: /samples/projects/sample2.jpeg # Path to a file in the public/samples folder or to a remote and external file.
10
+
11
+ - "Project 3":
12
+ category: illustrative-works # Permalink of the target entry
13
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
14
+ image: /samples/projects/sample3.jpeg # Path to a file in the public/samples folder or to a remote and external file.
15
+
16
+ - "Project 4":
17
+ category: illustrative-works # Permalink of the target entry
18
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
19
+ image: /samples/projects/sample4.jpeg # Path to a file in the public/samples folder or to a remote and external file.
20
+
21
+ - "Project 5":
22
+ category: illustrative-works # Permalink of the target entry
23
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
24
+ image: /samples/projects/sample5.jpeg # Path to a file in the public/samples folder or to a remote and external file.
25
+
26
+ - "Project 6":
27
+ category: illustrative-works # Permalink of the target entry
28
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
29
+ image: /samples/projects/sample6.jpeg # Path to a file in the public/samples folder or to a remote and external file.
30
+
31
+ - "Project 7":
32
+ category: graphical-work # Permalink of the target entry
33
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
34
+ image: /samples/projects/sample7.jpeg # Path to a file in the public/samples folder or to a remote and external file.
35
+
36
+ - "Work 8":
37
+ category: graphical-work # Permalink of the target entry
38
+ description: "<p>Sed suscipit risus vel sapien fringilla elementum. Donec vulputate sapien suscipit nulla tincidunt sodales. Ut ut nisi in nisl convallis ultricies. Curabitur tristique faucibus tincidunt. <br/>Donec rutrum mi faucibus nisi luctus sodales facilisis neque semper.</p>"
39
+ image: /samples/projects/sample8.jpeg # Path to a file in the public/samples folder or to a remote and external file.
@@ -0,0 +1,541 @@
1
+ # Logfile created on 2014-04-20 18:40:15 +0200 by logger.rb/1.2.8
2
+ Started GET "/" at 2014-04-20 22:36:20 +0200
3
+ Detecting locale EN
4
+ Found page "Home page" [index]
5
+ Rendered snippet projects
6
+ Rendered snippet newsletter_form
7
+ Rendered snippet social_links
8
+ Rendered liquid page template
9
+ Completed 200 OK in 70.3ms
10
+
11
+ 
12
+ Started GET "/" at 2014-04-20 22:38:02 +0200
13
+ Detecting locale EN
14
+ Found page "Home page" [index]
15
+ Rendered snippet projects
16
+ Rendered snippet newsletter_form
17
+ Rendered snippet social_links
18
+ Rendered liquid page template
19
+ Completed 200 OK in 36.5ms
20
+
21
+ 
22
+ Started GET "/" at 2014-04-20 22:38:23 +0200
23
+ Detecting locale EN
24
+ Found page "Home page" [index]
25
+ Rendered snippet projects
26
+ Rendered snippet newsletter_form
27
+ Rendered snippet social_links
28
+ Rendered liquid page template
29
+ Completed 200 OK in 37.0ms
30
+
31
+ 
32
+ * Reloaded "pages", "snippets" at 2014-04-20 22:38:38 +0200
33
+ Started GET "/" at 2014-04-20 22:38:39 +0200
34
+ Detecting locale EN
35
+ Found page "Home page" [index]
36
+ Rendered snippet projects
37
+ Rendered snippet newsletter_form
38
+ Rendered snippet social_links
39
+ Rendered liquid page template
40
+ Completed 200 OK in 25.7ms
41
+
42
+ 
43
+ Started GET "/" at 2014-04-20 22:38:40 +0200
44
+ Detecting locale EN
45
+ Found page "Home page" [index]
46
+ Rendered snippet projects
47
+ Rendered snippet newsletter_form
48
+ Rendered snippet social_links
49
+ Rendered liquid page template
50
+ Completed 200 OK in 16.8ms
51
+
52
+ 
53
+ Started GET "/" at 2014-04-20 22:38:52 +0200
54
+ Detecting locale EN
55
+ Found page "Home page" [index]
56
+ Rendered snippet projects
57
+ Rendered snippet newsletter_form
58
+ Rendered snippet social_links
59
+ Rendered liquid page template
60
+ Completed 200 OK in 14.6ms
61
+
62
+ 
63
+ Started GET "/" at 2014-04-20 22:39:26 +0200
64
+ Detecting locale EN
65
+ Found page "Home page" [index]
66
+ Rendered snippet projects
67
+ Rendered snippet newsletter_form
68
+ Rendered snippet social_links
69
+ Rendered liquid page template
70
+ Completed 200 OK in 57.4ms
71
+
72
+ 
73
+ Started GET "/" at 2014-04-20 22:39:27 +0200
74
+ Detecting locale EN
75
+ Found page "Home page" [index]
76
+ Rendered snippet projects
77
+ Rendered snippet newsletter_form
78
+ Rendered snippet social_links
79
+ Rendered liquid page template
80
+ Completed 200 OK in 14.1ms
81
+
82
+ 
83
+ * Reloaded "pages", "snippets" at 2014-04-20 22:39:39 +0200
84
+ * Reloaded "pages", "snippets" at 2014-04-20 22:39:41 +0200
85
+ * Reloaded "pages", "snippets" at 2014-04-20 22:39:43 +0200
86
+ * Reloaded "pages", "snippets" at 2014-04-20 22:39:47 +0200
87
+ * Reloaded "pages", "snippets" at 2014-04-20 22:39:47 +0200
88
+ Started GET "/" at 2014-04-20 22:39:47 +0200
89
+ Detecting locale EN
90
+ Found page "Home page" [index]
91
+ Rendered snippet projects
92
+ Rendered snippet newsletter_form
93
+ Rendered snippet social_links
94
+ Rendered liquid page template
95
+ Completed 200 OK in 23.6ms
96
+
97
+ 
98
+ * Reloaded "pages", "snippets" at 2014-04-20 22:41:58 +0200
99
+ Started GET "/" at 2014-04-20 22:44:46 +0200
100
+ Detecting locale EN
101
+ Found page "Home page" [index]
102
+ Rendered snippet projects
103
+ Rendered snippet newsletter_form
104
+ Rendered snippet social_links
105
+ Rendered liquid page template
106
+ Completed 200 OK in 41.6ms
107
+
108
+ 
109
+ Started GET "/" at 2014-04-20 22:44:47 +0200
110
+ Detecting locale EN
111
+ Found page "Home page" [index]
112
+ Rendered snippet projects
113
+ Rendered snippet newsletter_form
114
+ Rendered snippet social_links
115
+ Rendered liquid page template
116
+ Completed 200 OK in 12.5ms
117
+
118
+ 
119
+ * Reloaded "pages", "snippets" at 2014-04-20 22:45:14 +0200
120
+ * Reloaded "pages", "snippets" at 2014-04-20 22:45:17 +0200
121
+ Started GET "/" at 2014-04-20 22:45:21 +0200
122
+ Detecting locale EN
123
+ Found page "Home page" [index]
124
+ Rendered snippet projects
125
+ Rendered snippet newsletter_form
126
+ Rendered snippet social_links
127
+ Rendered liquid page template
128
+ Completed 200 OK in 23.5ms
129
+
130
+ 
131
+ Started GET "/" at 2014-04-20 23:42:01 +0200
132
+ Detecting locale EN
133
+ Found page "Home page" [index]
134
+ Rendered snippet projects
135
+ Rendered snippet newsletter_form
136
+ Rendered snippet social_links
137
+ Rendered liquid page template
138
+ Completed 200 OK in 25.2ms
139
+
140
+ 
141
+ Started GET "/" at 2014-04-20 23:42:02 +0200
142
+ Detecting locale EN
143
+ Found page "Home page" [index]
144
+ Rendered snippet projects
145
+ Rendered snippet newsletter_form
146
+ Rendered snippet social_links
147
+ Rendered liquid page template
148
+ Completed 200 OK in 12.5ms
149
+
150
+ 
151
+ * Reloaded "pages", "snippets" at 2014-04-20 23:42:22 +0200
152
+ * Reloaded "pages", "snippets" at 2014-04-20 23:42:28 +0200
153
+ * Reloaded "pages", "snippets" at 2014-04-20 23:42:34 +0200
154
+ * Reloaded "pages", "snippets" at 2014-04-20 23:42:59 +0200
155
+ * Reloaded "pages", "snippets" at 2014-04-20 23:43:04 +0200
156
+ * Reloaded "pages", "snippets" at 2014-04-20 23:43:06 +0200
157
+ Started GET "/search" at 2014-04-20 23:43:11 +0200
158
+ Detecting locale EN
159
+ Found page "Search testing page" [search]
160
+ [ERROR] uninitialized constant Locomotive::Liquid::SyntaxError - ./app/views/pages/search.liquid.haml:5:in `Search testing page'
161
+ 
162
+ * Reloaded "pages", "snippets" at 2014-04-20 23:43:54 +0200
163
+ * Reloaded "pages", "snippets" at 2014-04-20 23:43:57 +0200
164
+ * Reloaded "pages", "snippets" at 2014-04-20 23:44:19 +0200
165
+ * Reloaded "pages", "snippets" at 2014-04-20 23:44:20 +0200
166
+ * Reloaded "pages", "snippets" at 2014-04-20 23:44:24 +0200
167
+ * Reloaded "pages", "snippets" at 2014-04-20 23:44:42 +0200
168
+ * Reloaded "pages", "snippets" at 2014-04-20 23:44:42 +0200
169
+ Started GET "/search" at 2014-04-20 23:44:43 +0200
170
+ Detecting locale EN
171
+ Found page "Search testing page" [search]
172
+ [ERROR] undefined method `pages' for nil:NilClass - ./app/views/pages/search.liquid.haml:5:in `Search testing page'
173
+ 
174
+ * Reloaded "pages", "snippets" at 2014-04-20 23:44:51 +0200
175
+ Started GET "/search" at 2014-04-20 23:51:48 +0200
176
+ Detecting locale EN
177
+ Found page "Search testing page" [search]
178
+ [ERROR] no implicit conversion from nil to integer - ./app/views/pages/search.liquid.haml:5:in `Search testing page'
179
+ 
180
+ Started GET "/search" at 2014-04-20 23:53:52 +0200
181
+ Detecting locale EN
182
+ Found page "Search testing page" [search]
183
+ Rendered snippet newsletter_form
184
+ Rendered snippet social_links
185
+ Rendered liquid page template
186
+ Completed 200 OK in 49.7ms
187
+
188
+ 
189
+ Started GET "/search" at 2014-04-20 23:53:53 +0200
190
+ Detecting locale EN
191
+ Found page "Search testing page" [search]
192
+ Rendered snippet newsletter_form
193
+ Rendered snippet social_links
194
+ Rendered liquid page template
195
+ Completed 200 OK in 5.3ms
196
+
197
+ 
198
+ Started GET "/search" at 2014-04-20 23:55:41 +0200
199
+ Detecting locale EN
200
+ Found page "Search testing page" [search]
201
+ Rendered snippet newsletter_form
202
+ Rendered snippet social_links
203
+ Rendered liquid page template
204
+ Completed 200 OK in 80.2ms
205
+
206
+ 
207
+ Started GET "/search" at 2014-04-20 23:55:48 +0200
208
+ Detecting locale EN
209
+ Found page "Search testing page" [search]
210
+ Rendered snippet newsletter_form
211
+ Rendered snippet social_links
212
+ Rendered liquid page template
213
+ Completed 200 OK in 7.1ms
214
+
215
+ 
216
+ Started GET "/search" at 2014-04-20 23:55:59 +0200
217
+ Detecting locale EN
218
+ Found page "Search testing page" [search]
219
+ Rendered snippet newsletter_form
220
+ Rendered snippet social_links
221
+ Rendered liquid page template
222
+ Completed 200 OK in 12.9ms
223
+
224
+ 
225
+ Started GET "/search" at 2014-04-20 23:56:00 +0200
226
+ Detecting locale EN
227
+ Found page "Search testing page" [search]
228
+ Rendered snippet newsletter_form
229
+ Rendered snippet social_links
230
+ Rendered liquid page template
231
+ Completed 200 OK in 6.4ms
232
+
233
+ 
234
+ * Reloaded "pages", "snippets" at 2014-04-20 23:56:08 +0200
235
+ Started GET "/search" at 2014-04-20 23:56:09 +0200
236
+ Detecting locale EN
237
+ Found page "Search testing page" [search]
238
+ Rendered snippet newsletter_form
239
+ Rendered snippet social_links
240
+ Rendered liquid page template
241
+ Completed 200 OK in 18.1ms
242
+
243
+ 
244
+ Started GET "/search" at 2014-04-20 23:56:10 +0200
245
+ Detecting locale EN
246
+ Found page "Search testing page" [search]
247
+ Rendered snippet newsletter_form
248
+ Rendered snippet social_links
249
+ Rendered liquid page template
250
+ Completed 200 OK in 6.6ms
251
+
252
+ 
253
+ Started GET "/search" at 2014-04-20 23:56:11 +0200
254
+ Detecting locale EN
255
+ Found page "Search testing page" [search]
256
+ Rendered snippet newsletter_form
257
+ Rendered snippet social_links
258
+ Rendered liquid page template
259
+ Completed 200 OK in 6.7ms
260
+
261
+ 
262
+ Started GET "/search" at 2014-04-20 23:56:12 +0200
263
+ Detecting locale EN
264
+ Found page "Search testing page" [search]
265
+ Rendered snippet newsletter_form
266
+ Rendered snippet social_links
267
+ Rendered liquid page template
268
+ Completed 200 OK in 8.2ms
269
+
270
+ 
271
+ Started GET "/search" at 2014-04-20 23:56:13 +0200
272
+ Detecting locale EN
273
+ Found page "Search testing page" [search]
274
+ Rendered snippet newsletter_form
275
+ Rendered snippet social_links
276
+ Rendered liquid page template
277
+ Completed 200 OK in 8.2ms
278
+
279
+ 
280
+ Started GET "/search" at 2014-04-20 23:56:14 +0200
281
+ Detecting locale EN
282
+ Found page "Search testing page" [search]
283
+ Rendered snippet newsletter_form
284
+ Rendered snippet social_links
285
+ Rendered liquid page template
286
+ Completed 200 OK in 5.7ms
287
+
288
+ 
289
+ * Reloaded "pages", "snippets" at 2014-04-20 23:56:18 +0200
290
+ Started GET "/search" at 2014-04-20 23:56:18 +0200
291
+ Detecting locale EN
292
+ Found page "Search testing page" [search]
293
+ Rendered snippet newsletter_form
294
+ Rendered snippet social_links
295
+ Rendered liquid page template
296
+ Completed 200 OK in 17.4ms
297
+
298
+ 
299
+ Started GET "/search" at 2014-04-20 23:56:19 +0200
300
+ Detecting locale EN
301
+ Found page "Search testing page" [search]
302
+ Rendered snippet newsletter_form
303
+ Rendered snippet social_links
304
+ Rendered liquid page template
305
+ Completed 200 OK in 6.2ms
306
+
307
+ 
308
+ * Reloaded "pages", "snippets" at 2014-04-20 23:56:22 +0200
309
+ * Reloaded "pages", "snippets" at 2014-04-20 23:56:25 +0200
310
+ * Reloaded "pages", "snippets" at 2014-04-20 23:56:29 +0200
311
+ Started GET "/search" at 2014-04-20 23:56:29 +0200
312
+ Detecting locale EN
313
+ Found page "Search testing page" [search]
314
+ Rendered snippet newsletter_form
315
+ Rendered snippet social_links
316
+ Rendered liquid page template
317
+ Completed 200 OK in 19.4ms
318
+
319
+ 
320
+ Started GET "/search" at 2014-04-20 23:57:29 +0200
321
+ Detecting locale EN
322
+ Found page "Search testing page" [search]
323
+ Rendered snippet newsletter_form
324
+ Rendered snippet social_links
325
+ Rendered liquid page template
326
+ Completed 200 OK in 55.6ms
327
+
328
+ 
329
+ Started GET "/search" at 2014-04-20 23:57:29 +0200
330
+ Detecting locale EN
331
+ Found page "Search testing page" [search]
332
+ Rendered snippet newsletter_form
333
+ Rendered snippet social_links
334
+ Rendered liquid page template
335
+ Completed 200 OK in 7.6ms
336
+
337
+ 
338
+ Started GET "/search" at 2014-04-20 23:57:30 +0200
339
+ Detecting locale EN
340
+ Found page "Search testing page" [search]
341
+ Rendered snippet newsletter_form
342
+ Rendered snippet social_links
343
+ Rendered liquid page template
344
+ Completed 200 OK in 6.9ms
345
+
346
+ 
347
+ Started GET "/search" at 2014-04-20 23:57:31 +0200
348
+ Detecting locale EN
349
+ Found page "Search testing page" [search]
350
+ Rendered snippet newsletter_form
351
+ Rendered snippet social_links
352
+ Rendered liquid page template
353
+ Completed 200 OK in 6.7ms
354
+
355
+ 
356
+ Started GET "/search" at 2014-04-20 23:58:06 +0200
357
+ Detecting locale EN
358
+ Found page "Search testing page" [search]
359
+ Rendered snippet newsletter_form
360
+ Rendered snippet social_links
361
+ Rendered liquid page template
362
+ Completed 200 OK in 45.1ms
363
+
364
+ 
365
+ Started GET "/search" at 2014-04-20 23:58:07 +0200
366
+ Detecting locale EN
367
+ Found page "Search testing page" [search]
368
+ Rendered snippet newsletter_form
369
+ Rendered snippet social_links
370
+ Rendered liquid page template
371
+ Completed 200 OK in 7.6ms
372
+
373
+ 
374
+ Started GET "/search" at 2014-04-20 23:58:22 +0200
375
+ Detecting locale EN
376
+ Found page "Search testing page" [search]
377
+ Rendered snippet newsletter_form
378
+ Rendered snippet social_links
379
+ Rendered liquid page template
380
+ Completed 200 OK in 8.5ms
381
+
382
+ 
383
+ Started GET "/search" at 2014-04-20 23:58:25 +0200
384
+ Detecting locale EN
385
+ Found page "Search testing page" [search]
386
+ Rendered snippet newsletter_form
387
+ Rendered snippet social_links
388
+ Rendered liquid page template
389
+ Completed 200 OK in 8.0ms
390
+
391
+ 
392
+ Started GET "/search" at 2014-04-20 23:58:31 +0200
393
+ Detecting locale EN
394
+ Found page "Search testing page" [search]
395
+ Rendered snippet newsletter_form
396
+ Rendered snippet social_links
397
+ Rendered liquid page template
398
+ Completed 200 OK in 7.8ms
399
+
400
+ 
401
+ Started GET "/search" at 2014-04-20 23:58:45 +0200
402
+ Detecting locale EN
403
+ Found page "Search testing page" [search]
404
+ Rendered snippet newsletter_form
405
+ Rendered snippet social_links
406
+ Rendered liquid page template
407
+ Completed 200 OK in 7.6ms
408
+
409
+ 
410
+ * Reloaded "pages", "snippets" at 2014-04-20 23:59:20 +0200
411
+ * Reloaded "pages", "snippets" at 2014-04-20 23:59:23 +0200
412
+ * Reloaded "pages", "snippets" at 2014-04-20 23:59:26 +0200
413
+ Started GET "/search" at 2014-04-20 23:59:26 +0200
414
+ Detecting locale EN
415
+ Found page "Search testing page" [search]
416
+ Rendered snippet newsletter_form
417
+ Rendered snippet social_links
418
+ Rendered liquid page template
419
+ Completed 200 OK in 18.9ms
420
+
421
+ 
422
+ * Reloaded "pages", "snippets" at 2014-04-20 23:59:40 +0200
423
+ Started GET "/search" at 2014-04-20 23:59:42 +0200
424
+ Detecting locale EN
425
+ Found page "Search testing page" [search]
426
+ Rendered snippet newsletter_form
427
+ Rendered snippet social_links
428
+ Rendered liquid page template
429
+ Completed 200 OK in 18.5ms
430
+
431
+ 
432
+ Started GET "/search" at 2014-04-20 23:59:45 +0200
433
+ Detecting locale EN
434
+ Found page "Search testing page" [search]
435
+ Rendered snippet newsletter_form
436
+ Rendered snippet social_links
437
+ Rendered liquid page template
438
+ Completed 200 OK in 6.4ms
439
+
440
+ 
441
+ * Reloaded "content_entries" at 2014-04-21 00:00:00 +0200
442
+ * Reloaded "content_types", "content_entries" at 2014-04-21 00:00:08 +0200
443
+ Started GET "/search" at 2014-04-21 00:00:09 +0200
444
+ Detecting locale EN
445
+ Found page "Search testing page" [search]
446
+ Rendered snippet newsletter_form
447
+ Rendered snippet social_links
448
+ Rendered liquid page template
449
+ Completed 200 OK in 9.1ms
450
+
451
+ 
452
+ Started GET "/search" at 2014-04-21 00:00:13 +0200
453
+ Detecting locale EN
454
+ Found page "Search testing page" [search]
455
+ Rendered snippet newsletter_form
456
+ Rendered snippet social_links
457
+ Rendered liquid page template
458
+ Completed 200 OK in 6.6ms
459
+
460
+ 
461
+ Started GET "/search" at 2014-04-21 00:00:16 +0200
462
+ Detecting locale EN
463
+ Found page "Search testing page" [search]
464
+ Rendered snippet newsletter_form
465
+ Rendered snippet social_links
466
+ Rendered liquid page template
467
+ Completed 200 OK in 6.4ms
468
+
469
+ 
470
+ Started GET "/search" at 2014-04-21 00:00:20 +0200
471
+ Detecting locale EN
472
+ Found page "Search testing page" [search]
473
+ Rendered snippet newsletter_form
474
+ Rendered snippet social_links
475
+ Rendered liquid page template
476
+ Completed 200 OK in 7.7ms
477
+
478
+ 
479
+ Started GET "/work-8" at 2014-04-21 00:00:26 +0200
480
+ Detecting locale EN
481
+ Rendered snippet newsletter_form
482
+ Rendered snippet social_links
483
+ Completed 404 Not Found in 9.3ms
484
+
485
+ 
486
+ * Reloaded "pages", "snippets" at 2014-04-21 00:00:56 +0200
487
+ Started GET "/search" at 2014-04-21 00:00:57 +0200
488
+ Detecting locale EN
489
+ Found page "Search testing page" [search]
490
+ Rendered snippet newsletter_form
491
+ Rendered snippet social_links
492
+ Rendered liquid page template
493
+ Completed 200 OK in 20.1ms
494
+
495
+ 
496
+ Started GET "/projects/work-8" at 2014-04-21 00:00:58 +0200
497
+ Detecting locale EN
498
+ Found page "Template page of a project" [projects/*]
499
+ Rendered snippet newsletter_form
500
+ Rendered snippet social_links
501
+ Rendered liquid page template
502
+ Completed 200 OK in 44.8ms
503
+
504
+ 
505
+ Started GET "/search" at 2014-04-21 00:01:02 +0200
506
+ Detecting locale EN
507
+ Found page "Search testing page" [search]
508
+ Rendered snippet newsletter_form
509
+ Rendered snippet social_links
510
+ Rendered liquid page template
511
+ Completed 200 OK in 7.4ms
512
+
513
+ 
514
+ Started GET "/projects/work-8" at 2014-04-21 00:01:03 +0200
515
+ Detecting locale EN
516
+ Found page "Template page of a project" [projects/*]
517
+ Rendered snippet newsletter_form
518
+ Rendered snippet social_links
519
+ Rendered liquid page template
520
+ Completed 200 OK in 8.5ms
521
+
522
+ 
523
+ Started GET "/search" at 2014-04-21 00:01:07 +0200
524
+ Detecting locale EN
525
+ Found page "Search testing page" [search]
526
+ Rendered snippet newsletter_form
527
+ Rendered snippet social_links
528
+ Rendered liquid page template
529
+ Completed 200 OK in 8.8ms
530
+
531
+ 
532
+ Started GET "/index" at 2014-04-21 00:01:08 +0200
533
+ Detecting locale EN
534
+ Found page "Home page" [index]
535
+ Rendered snippet projects
536
+ Rendered snippet newsletter_form
537
+ Rendered snippet social_links
538
+ Rendered liquid page template
539
+ Completed 200 OK in 14.1ms
540
+
541
+