typo 6.0.6 → 6.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,53 @@
1
+ To fully profit from Typo static caching capabilities, you need to add the
2
+ following rewrite rules to either your .htaccess or your virtualhost after
3
+ declaring the document root.
4
+
5
+ == Rewrite Rules For Apache
6
+
7
+ === If Typo is installed at your URL root.
8
+
9
+ RewriteEngine On
10
+
11
+ RewriteCond %{DOCUMENT_ROOT}/cache/index.html -f
12
+ RewriteRule ^/$ /cache/index.html [PT]
13
+
14
+ RewriteCond %{DOCUMENT_ROOT}/cache/%{REQUEST_FILENAME} -f
15
+ RewriteRule ^/(.*)$ /cache/$1 [PT]
16
+
17
+ RewriteCond %{DOCUMENT_ROOT}/cache/%{REQUEST_FILENAME}.html -f
18
+ RewriteRule ^/(.*)$ /cache/$1.html [PT]
19
+
20
+ === If Typo is installed in a sub-URL, e.g., /blog:
21
+
22
+ # Note that 'blog' appears twice in the rewritten URL.
23
+
24
+ RewriteEngine On
25
+
26
+ RewriteCond %{DOCUMENT_ROOT}/blog/cache/blog.html -f
27
+ RewriteRule ^/blog$ /blog/cache/blog.html [PT]
28
+
29
+ RewriteCond %{DOCUMENT_ROOT}/blog/cache/%{REQUEST_FILENAME} -f
30
+ RewriteRule ^/blog/(.*)$ /blog/cache/blog/$1 [PT]
31
+
32
+ RewriteCond %{DOCUMENT_ROOT}/blog/cache/%{REQUEST_FILENAME}.html -f
33
+ RewriteRule ^/blog/(.*)$ /blog/cache/blog/$1.html [PT]
34
+
35
+ == Rewrite Rules For Nginx
36
+
37
+ if (-f $request_filename) {
38
+ break;
39
+ }
40
+
41
+ if (-f $document_root/cache/index.html) {
42
+ rewrite ^/$ /cache/index.html break;
43
+ }
44
+
45
+ if (-f $document_root/cache$uri) {
46
+ rewrite (.*) /cache$1 break;
47
+ break;
48
+ }
49
+
50
+ if (-f $document_root/cache$uri.html) {
51
+ rewrite (.*) /cache$1.html break;
52
+ break;
53
+ }
data/UPGRADE ADDED
@@ -0,0 +1,66 @@
1
+ UPGRADING TO TYPO 6.0.5 HOWTO
2
+
3
+ *** BEFORE UPGRADING ***
4
+
5
+ Pre migration steps are divided into 2 categories : things you should do, and things you must do.
6
+
7
+ You should make a backup of your current blog, either using a file transfer software or an archiver like zip or tar.
8
+
9
+ You should make a backup of your database, using either mysqldump, pgdump or phpmyadmin, whichever you feel safe with.
10
+
11
+ If you're upgrading from a pre 5.0 version, you should remove all the following sidebars before migrating:
12
+
13
+ * AIM presence
14
+ * Audioscrobbler
15
+ * Backpack
16
+ * Delicious
17
+ * Flickr
18
+ * 43 things
19
+ * 43 places
20
+ * Magnolia
21
+ * Recent comments
22
+ * Tada
23
+ * Upcoming
24
+ * Xbox
25
+
26
+ These sidebars have been removed from Typo core at 5.0 and are now hosted on a separate repository. You can also migrate, then reinstall those plugins before trying to access your blog frontend or admin.
27
+
28
+ If you're using a Typo version priori to 5.1, you must manually remove the lib directory inside your typo install.
29
+
30
+ If you're using a third party theme, you'll have do some changes to your template as well. This is explained later.
31
+
32
+ *** UPGRADING ***
33
+
34
+ Upgrading should be a really easy process, depending on how you installed your typo first.
35
+
36
+ First, stop your Typo installation. As Typo installer does not exist anymore you won't be able to use typo start / stop anymore.
37
+
38
+ I assume you're running typo on a production environment, so firt run:
39
+
40
+ $ export RAILS_ENV=production
41
+
42
+ Then, rename your whole Typo directory to some safe place and replace it with the new one.
43
+
44
+ $ mv typo_path old_typo
45
+ $ mv new_typo typo_path
46
+
47
+ Move your old files, theme, database.yml and any file you want to keep to your new Typo install.
48
+
49
+ $ mv old_typo/themes/yourtheme new_typo/themes
50
+ $ mv old_typo/public/files/ new_typo/public
51
+ $ mv old_typo/config/database.yml new_typo/config
52
+ $ ...
53
+
54
+ Check that your Web server has the right to write your Typo install, then restart your Typo instance.
55
+
56
+
57
+ * UPGRADING DATABASE *
58
+
59
+ Login in to your Typo admin using your favourite web browser. You'll access to the database migration page. Just click on the "migrate" button.
60
+
61
+ If something goes wrong, go back to your terminal, and run
62
+
63
+ $ cd typo_path
64
+ $ rake RAILS_ENV=production db:migrate
65
+
66
+ If things really goes wrong, then please ask for help on the Typo mailing list or on IRC #typo@irc.freenode.net
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  Gem::Specification.new do |s|
3
3
  s.name = "typo"
4
- s.version = "6.0.6"
4
+ s.version = "6.0.8"
5
5
  s.platform = Gem::Platform::RUBY
6
6
  s.authors = ["Frédéric de Villamil", "Matijs van Zuijlen", "Yannick François", "Thomas Lecavellier", "Cyril Mougel"]
7
7
  s.email = ["frederic@de-villamil.com"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 35
4
+ hash: 63
5
5
  prerelease:
6
6
  segments:
7
7
  - 6
8
8
  - 0
9
- - 6
10
- version: 6.0.6
9
+ - 8
10
+ version: 6.0.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Fr\xC3\xA9d\xC3\xA9ric de Villamil"
@@ -19,7 +19,7 @@ autorequire:
19
19
  bindir: bin
20
20
  cert_chain: []
21
21
 
22
- date: 2011-08-02 00:00:00 +02:00
22
+ date: 2011-08-13 00:00:00 +02:00
23
23
  default_executable:
24
24
  dependencies: []
25
25
 
@@ -33,14 +33,9 @@ extensions: []
33
33
  extra_rdoc_files: []
34
34
 
35
35
  files:
36
- - CHANGELOG
37
- - Gemfile
38
- - MIT-LICENSE
36
+ - CACHE.SETUP.README
39
37
  - PostInstall.txt
40
- - README.textile
41
- - Rakefile
42
- - TODO.todo
43
- - config.ru
38
+ - UPGRADE
44
39
  - typo.gemspec
45
40
  has_rdoc: true
46
41
  homepage: http://typosphere.org
data/CHANGELOG DELETED
@@ -1,1442 +0,0 @@
1
- commit a06c78d321b14b030b6d24cdf504c5ed815b961c
2
- Author: Yannick Francois <yannick.francois@free.fr>
3
-
4
- fix spec error in category model, fix order with rails override default_scope method
5
-
6
- commit f415a01a01762154edd1f8b3855269c453829810
7
- Author: Yannick Francois <yannick.francois@free.fr>
8
-
9
- fix spec failure on controller. Clean settings update and category controller fixture and code
10
-
11
- commit 65a645c3fc5c257b74f6c6e2d5c4e7ea5b50c6fd
12
- Merge: 143baf3 a668a5e
13
- Author: Frédéric de Villamil <frederic@de-villamil.com>
14
-
15
- Merge pull request #25 from justinbkay/master
16
-
17
- commit aee952497bf5fd42a0b99fe5024d6aa3a093e281
18
- Merge: 65a645c f415a01
19
- Author: Frédéric de Villamil <frederic@de-villamil.com>
20
-
21
- Merge pull request #26 from yaf/master
22
-
23
- commit 430a73cc9832d86079e4d0112d98d684db35d6e3
24
- Author: Justin <justinbkay@gmail.com>
25
-
26
- Edited config/initializers/access_rules.rb via GitHub
27
-
28
- commit ffef976fa0198566fa7cb88763869b69509fdee2
29
- Author: Matijs van Zuijlen <matijs@matijs.net>
30
-
31
- Turn of syntax highlighting for metrical/metric_fu.
32
-
33
- commit a51c3e5d788dc7dbecd78878d3da9df27abbdacc
34
- Author: Matijs van Zuijlen <matijs@matijs.net>
35
-
36
- Add validation on Blog#blog_name.
37
-
38
- commit 851b38e285952858523f099ad45745bdb0f97c91
39
- Author: Matijs van Zuijlen <matijs@matijs.net>
40
-
41
- Do not autosave when setting a setting.
42
-
43
- commit d889ecdb67d2a56b3576e543c91889bee96685c7
44
- Author: Matijs van Zuijlen <matijs@matijs.net>
45
-
46
- Simplify setup controller: Let models do input validation.
47
-
48
- commit 7acb06115f48b53a464da5da2c088b89feb4fbfd
49
- Author: Matijs van Zuijlen <matijs@matijs.net>
50
-
51
- Avoid unnecessary database access in Blog specs.
52
-
53
- commit 5bba4f9b48ceda2380a0540c0c2bd77d812dcd36
54
- Author: Matijs van Zuijlen <matijs@matijs.net>
55
-
56
- Simplify render in controllers (Rails Best Practice).
57
-
58
- commit 96bf5db9bae3da4f5f0c2d01e36f158647f19005
59
- Author: Matijs van Zuijlen <matijs@matijs.net>
60
-
61
- Fix deprecation warning.
62
-
63
- commit 08bad715208f2dd16a46dacfe29dfeef83306716
64
- Author: Matijs van Zuijlen <matijs@matijs.net>
65
-
66
- Fix typo.
67
-
68
- commit 197b7b00085bfea830d62f82a333316ddb3b2aef
69
- Author: Matijs van Zuijlen <matijs@matijs.net>
70
-
71
- Remove trailing whitespace.
72
-
73
- commit 52445259731a4427b8dc3fc9bd702bf033fa9746
74
- Author: Matijs van Zuijlen <matijs@matijs.net>
75
-
76
- Simplify render in views: themes and articles.
77
-
78
- commit 278be15bbaeb779454ef9d641de4e55e3b57a36d
79
- Author: Matijs van Zuijlen <matijs@matijs.net>
80
-
81
- Simplify render in views: other non-admin templates.
82
-
83
- commit ebe5b04ee2ba84059c953c70b8688e47e50ca40e
84
- Author: Matijs van Zuijlen <matijs@matijs.net>
85
-
86
- Simplify render in views: admin.
87
-
88
- commit 602b9b8f14b4de86421ec39f6c278d46318320a5
89
- Author: Matijs van Zuijlen <matijs@matijs.net>
90
-
91
- Simplify render in views: feed builders.
92
-
93
- commit a6fc8e9e33477a533f6303e1582102afacc19c8d
94
- Author: Matijs van Zuijlen <matijs@matijs.net>
95
-
96
- Remove duplicated article_content partial.
97
-
98
- commit 16a989064751e2f926d9098a112d49e59fd113ec
99
- Author: Matijs van Zuijlen <matijs@matijs.net>
100
-
101
- Make all theme text translatable.
102
-
103
- commit 9729e1e55709fb2f323f2f7f3c6064bbcdf58832
104
- Author: Matijs van Zuijlen <matijs@matijs.net>
105
-
106
- Simplify test, fixing ordering issue.
107
-
108
- commit 99f6cbaedd11bbd2e6c84584f82dd76465b33369
109
- Author: Matijs van Zuijlen <matijs@matijs.net>
110
-
111
- Speed up XML controller spec.
112
-
113
- commit 2221da8492310afa1eda37234f937231a3cd1e22
114
- Author: Matijs van Zuijlen <matijs@matijs.net>
115
-
116
- Factor password-protected article view logic into partials.
117
-
118
- commit 0e206fec58cee7833276988748afbfe1e9266311
119
- Author: Matijs van Zuijlen <matijs@matijs.net>
120
-
121
- Make themes use new password-protected article partials.
122
-
123
- commit 38b22400cde61894bdc48191fe4172cc2b500cc4
124
- Author: Eric Sorenson <ahpook@gmail.com>
125
-
126
- Corrected URL to sidebar plugin wiki page
127
-
128
- commit d966eaba59ef9be2694c3bc2d5d5307aaccaa8a8
129
- Merge: 0e206fe 38b2240
130
- Author: Frédéric de Villamil <frederic@de-villamil.com>
131
-
132
- Merge pull request #28 from ahpook/master
133
-
134
- commit 24b1ee01d771ecc2eafc5622c264d89e2827073e
135
- Author: Yannick Francois <yannick.francois@free.fr>
136
-
137
- just remove :contributor fixture
138
-
139
- commit a7964f419c6b94ee816827172b3a4e8bbbdc6747
140
- Author: Matijs van Zuijlen <matijs@matijs.net>
141
-
142
- Fix up migration 093, both up and down.
143
-
144
- commit cddc9bd4e45aac08cc6a15918ea9a0157d485f75
145
- Author: Matijs van Zuijlen <matijs@matijs.net>
146
-
147
- Any content can have redirections.
148
-
149
- commit 965b2216777e4e5d61913f4ffe21871bb8e19884
150
- Author: Matijs van Zuijlen <matijs@matijs.net>
151
-
152
- Properly indent migration logging for migration 093.
153
-
154
- commit 31e50e3fd8b16bbd65d7936e4a04d87393796c5d
155
- Author: Matijs van Zuijlen <matijs@matijs.net>
156
-
157
- Add a TODO: Clean up themes.
158
-
159
- commit c4314cf116338eecc801d2c2f71f6aa382bcd1a3
160
- Author: Matijs van Zuijlen <matijs@matijs.net>
161
-
162
- Use flickraw with cached API knowledge.
163
-
164
- commit e876760bc7f883449f4408457c9eeff2c7da95e0
165
- Author: Frédéric de Villamil <frederic@de-villamil.com>
166
-
167
- Moving to MySQL 3.0.8
168
-
169
- commit 985b8df3e47b782c57c8e32a8bb38e76e07a51e7
170
- Author: Maarten Mulders <m.th.mulders@xs4all.nl>
171
-
172
- Updated a part of the missing Dutch translations
173
-
174
- commit 5d9f852aaee9024ef57ca8f41fa4f265268e4b5a
175
- Author: Matijs van Zuijlen <matijs@matijs.net>
176
-
177
- Use say instead of puts in migrations.
178
-
179
- commit 86f4d68770c637c42a581249bf3a2727a2574541
180
- Author: Matijs van Zuijlen <matijs@matijs.net>
181
-
182
- Make entire migrate/rollback cycle work.
183
-
184
- commit 0377de0e08223142abab2306ba0ddaa14b17ecc1
185
- Author: Matijs van Zuijlen <matijs@matijs.net>
186
-
187
- Remove empty helpers.
188
-
189
- commit e220b77aec27057745a9e1ab19e43820db6600ee
190
- Merge: e876760 985b8df
191
- Author: Matijs van Zuijlen <matijs@matijs.net>
192
-
193
- Merge pull request #30 from mthmulders/master
194
-
195
- commit 47068dbf1ddf628007be34c8db004dcd2bd3a33d
196
- Author: Frédéric de Villamil <frederic@de-villamil.com>
197
-
198
- Upgrade to Rails 3.0.9 (yes, this is Rails indeed, see my previous commit)
199
-
200
- commit 1d300196ca030ff6c3b0753a6f7b7689b55e0292
201
- Author: Matijs van Zuijlen <matijs@matijs.net>
202
-
203
- Small Law of Demeter fix (eases mocking for view specs).
204
-
205
- commit 4466e9e03e5599fe968cb6f0ea2a6e8147e4dbae
206
- Author: Matijs van Zuijlen <matijs@matijs.net>
207
-
208
- Start creating specs for admin views.
209
-
210
- commit 74536f96dd343d0e397f1c0c1eda6f69a7fcb3be
211
- Author: Matijs van Zuijlen <matijs@matijs.net>
212
-
213
- Law of Demeter fix for User.profile.label.
214
-
215
- commit 5e9250442d483a3720f292b39c43c8960b6b70a9
216
- Author: Matijs van Zuijlen <matijs@matijs.net>
217
-
218
- Don't stub out subtabs_for anymore in spec.
219
-
220
- commit 48eaa39a91524c5bba715d06d1b6e040f0baf140
221
- Author: Matijs van Zuijlen <matijs@matijs.net>
222
-
223
- Specs for new content view should use an Article that behaves as new.
224
-
225
- commit 6e32ab4be7571ddc4422db03bf235e5ea643def5
226
- Author: Matijs van Zuijlen <matijs@matijs.net>
227
-
228
- Fix rendering of image carousel in content (article) form.
229
-
230
- commit 8b8776e9de85b04831d4ee3f5729330c754a675f
231
- Author: Matijs van Zuijlen <matijs@matijs.net>
232
-
233
- Mock out all database access for admin/content/new view spec.
234
-
235
- commit 9718e6549766bd4adb6de35183a2b6a23c399a56
236
- Author: Matijs van Zuijlen <matijs@matijs.net>
237
-
238
- Remove superfluous text_filter form field.
239
-
240
- commit d881dca4f5b04d4e07fc7ad181b95228d1031595
241
- Author: Matijs van Zuijlen <matijs@matijs.net>
242
-
243
- Fix rendering of image carousel in page form.
244
-
245
- commit 7d985e91e6ca8aa6af1fb03cc1a0f79d3299d80b
246
- Merge: d881dca 47068db
247
- Author: Matijs van Zuijlen <matijs@matijs.net>
248
-
249
- Merge branch 'master' of github.com:fdv/typo
250
-
251
- commit 240af082440410bb0c4c45bf86a3c67cff84e13d
252
- Author: Matijs van Zuijlen <matijs@matijs.net>
253
-
254
- Make down for migration 082 complete.
255
-
256
- commit be92c5cd980fb0dbd22446e55957c239b99cb1d7
257
- Author: Matijs van Zuijlen <matijs@matijs.net>
258
-
259
- Replace complicated migration 068 with a simple rename.
260
-
261
- commit dca67e798977da240636a2d15ea388bf7da9c659
262
- Author: Matijs van Zuijlen <matijs@matijs.net>
263
-
264
- Avoid STI errors in migration 093.
265
-
266
- commit 064719238e8b1ff486461ea9991f82939012b37f
267
- Author: Matijs van Zuijlen <matijs@matijs.net>
268
-
269
- Remove dependency on present model code in migration 096.
270
-
271
- commit 4f1336ebf34ea14e1c834b0994a9250168a6e9bf
272
- Author: Matijs van Zuijlen <matijs@matijs.net>
273
-
274
- Remove unused method in migration 024.
275
-
276
- commit 66fe732e528cd12746999fe1f0a64758d4ce9de4
277
- Author: Matijs van Zuijlen <matijs@matijs.net>
278
-
279
- Avoid STI errors in migration 058.
280
-
281
- commit 4174e23a9bca431bc7f403647243147c799734d8
282
- Author: Matijs van Zuijlen <matijs@matijs.net>
283
-
284
- Add fake models to migration 067.
285
-
286
- commit e2d101433b5263e14f67894620c08b8acb04f1bc
287
- Merge: 4174e23 24b1ee0
288
- Author: Matijs van Zuijlen <matijs@matijs.net>
289
-
290
- Merge pull request #29 from yaf/master
291
-
292
- commit 8cbbb51ebe28311e0909b06b433f1c7dd7920d6b
293
- Merge: e2d1014 430a73c
294
- Author: Matijs van Zuijlen <matijs@matijs.net>
295
-
296
- Merge pull request #27 from justinbkay/master
297
-
298
- commit 79a2635cb2ed98cb9bfd8a8c6b98e2b6bb90db2c
299
- Merge: 8cbbb51 75dbc8e
300
- Author: Matijs van Zuijlen <matijs@matijs.net>
301
-
302
- Merge remote-tracking branch 'silviorelli/master'
303
-
304
- commit 62289bfdca4cfb164d88f5d70f544b238faec332
305
- Author: Matijs van Zuijlen <matijs@matijs.net>
306
-
307
- Add reCaptcha support to the True Red theme.
308
-
309
- commit 4d9fb0f0088f2691531165b3c77583d666d082ec
310
- Author: Matijs van Zuijlen <matijs@matijs.net>
311
-
312
- Fix RedCloth gem to a version that compiles with GCC 4.6.0.
313
-
314
- commit 2d1d0cf9e81bb181086df748fd998e6213401b37
315
- Author: Matijs van Zuijlen <matijs@matijs.net>
316
-
317
- Fix up retrieval of use_recaptcha setting in views.
318
-
319
- commit 9725039d81dc4c79a47fdd366ca4ae244b84e423
320
- Author: Melanie Shebel <warchildbosnia@gmail.com>
321
-
322
- Edited README.textile via GitHub
323
-
324
- commit fc2314df8eb5222fb4f1f8e08849c3864b779f34
325
- Author: Matijs van Zuijlen <matijs@matijs.net>
326
-
327
- Replace inject([]) with map.
328
-
329
- commit b9d91239bebb097f664c098775625e3e8580b61d
330
- Author: Matijs van Zuijlen <matijs@matijs.net>
331
-
332
- Replace inject('') with map plus join.
333
-
334
- commit 13df024567c2600f0b25399ec65908451b4bcae6
335
- Author: Matijs van Zuijlen <matijs@matijs.net>
336
-
337
- Fix Content#short_url for sub-uri blogs.
338
-
339
- commit 17b2b7c41239500fbdbba179b602ee30bdb9f89b
340
- Author: Matijs van Zuijlen <matijs@matijs.net>
341
-
342
- Fix redirect where to_path is a full URL and the blog is in a sub-URL.
343
-
344
- commit 431d1f99cf69af115b85e0344c158edd95049a56
345
- Author: Matijs van Zuijlen <matijs@matijs.net>
346
-
347
- Speed up article specs.
348
-
349
- commit bc0b3c4b850192c0987c4ca25abc7eae22dbb1ec
350
- Author: Matijs van Zuijlen <matijs@matijs.net>
351
-
352
- Move atom feed spec for special characters to view spec.
353
-
354
- commit 5bf6e0dc5887a8fe09d3bd5523742812cb854c5b
355
- Author: Matijs van Zuijlen <matijs@matijs.net>
356
-
357
- Remove unused XmlController methods.
358
-
359
- commit d475d627364dd3602fd14bd56980186aa95386ce
360
- Author: Matijs van Zuijlen <matijs@matijs.net>
361
-
362
- Don't need Article instance to test articlerss redirect.
363
-
364
- commit be753d8c58b2630a65b169045f18c2d9a6e1f6aa
365
- Author: Matijs van Zuijlen <matijs@matijs.net>
366
-
367
- Use stub_model to avoid hitting the database.
368
-
369
- commit a5c7759db8022326a449e35702047782f7d353cc
370
- Author: Matijs van Zuijlen <matijs@matijs.net>
371
-
372
- Make handling of unsupported type similar to unsupported format.
373
-
374
- commit 015000e01e05f8daad481a9f6458b156dde24087
375
- Author: Matijs van Zuijlen <matijs@matijs.net>
376
-
377
- Add (passing) specs for TrackbacksController#index for feeds.
378
-
379
- commit 41357cec59b2fa6f1daa77e4b6a6b9ebfb2df69d
380
- Author: Yannick François <yannick.francois@free.fr>
381
-
382
- patch migration 81 to work
383
-
384
- commit f8997896423cff5a68fb3b2a70d12a2f717ddcc2
385
- Author: Matijs van Zuijlen <matijs@matijs.net>
386
-
387
- Make atom and rss feed builders shared partials.
388
-
389
- commit 4498feff7221ac894e4131ed0a5926c1f33ae0d6
390
- Author: Matijs van Zuijlen <matijs@matijs.net>
391
-
392
- Add view spec for atom feed of trackbacks.
393
-
394
- commit c6748e5b7fe41aaaa3ec1db3b2d64d4d6d76fba2
395
- Author: Matijs van Zuijlen <matijs@matijs.net>
396
-
397
- Spec RSS feed view.
398
-
399
- commit 5539779a1956219b506b86a0db2ae4fe99f211e0
400
- Merge: 41357ce c6748e5
401
- Author: Yannick François <yannick.francois@free.fr>
402
-
403
- Merge remote-tracking branch 'upstream/master'
404
-
405
- commit ee7e17899988aef35e6d65d84f3af89f492c5344
406
- Author: Yannick François <yannick.francois@free.fr>
407
-
408
- moove some test from category_controller to category model
409
-
410
- commit 63c69dafeeca5e32eef914cfa9df9b2fb50e37e6
411
- Author: Yannick François <yannick.francois@free.fr>
412
-
413
- extract method, test refactoring, to improve test time execution and code understandability
414
-
415
- commit ced7fd474c9cf67e7ab41c68d66cc4da6d790a57
416
- Author: Matijs van Zuijlen <matijs@matijs.net>
417
-
418
- Fix up feedback table name in migration 067.
419
-
420
- commit c1bffe131ded73835e9202bcf64ee09482419b4b
421
- Author: Matijs van Zuijlen <matijs@matijs.net>
422
-
423
- Make migration 081 also succeed with items in the cache.
424
-
425
- commit d45b3e296cb89f0fe954d003ca47c73ebdf0bd31
426
- Author: Matijs van Zuijlen <matijs@matijs.net>
427
-
428
- Add check that rendered feed is of type RSS.
429
-
430
- commit c57db7e93323eb5df82c053433ec4357c6d23c1f
431
- Author: Yannick François <yannick.francois@free.fr>
432
-
433
- refactoring to reduce test execution time
434
-
435
- commit 1bf33c132f83c56fe1beb0e18debb40dd9587ecb
436
- Merge: c57db7e c1bffe1
437
- Author: Yannick François <yannick.francois@free.fr>
438
-
439
- Merge remote-tracking branch 'upstream/master'
440
-
441
- commit ada18831929fe14f0f76becc8a4f0d4f3b17f33b
442
- Author: Yannick François <yannick.francois@free.fr>
443
-
444
- improve test time execution
445
-
446
- commit 3c361f9eae8766cb84b60135c9c1b8c05f8e9a85
447
- Merge: d45b3e2 ada1883
448
- Author: Matijs van Zuijlen <matijs@matijs.net>
449
-
450
- Merge pull request #32 from yaf/master
451
-
452
- commit 1c63fcb8525ae2d0a75d53249083feb7f4044925
453
- Author: Frédéric de Villamil <neuro@asocial.org>
454
-
455
- Splits administration CSS stylesheet into structure and colors. Adds some documentation for more clarity. Global structure and fonts are in administration_structure.css. Colors related info are in administration_colors.css
456
-
457
- commit 81d99927ce0ddb2b39f90cf481f3f78ad98af3e8
458
- Author: Frédéric de Villamil <neuro@asocial.org>
459
-
460
- A few fixes in the file manager. We really ned to get a common one for both standard and visual editors. Anyone willing to take over it?
461
-
462
- commit bc2093b80f703dbf2d38ddfdf078fc5dc2b6d4a1
463
- Author: Frédéric de Villamil <neuro@asocial.org>
464
-
465
- Fixing broken sidebar configuration.
466
-
467
- commit 8735b93b63b4a4c5a41970c30d91bec64adb3d1c
468
- Author: Frédéric de Villamil <neuro@asocial.org>
469
-
470
- Removing debugs
471
-
472
- commit bfdca969505410602d1472b5dced8ccd77eb78b4
473
- Author: Frédéric de Villamil <neuro@asocial.org>
474
-
475
- Fixing sidebars publishing.
476
-
477
- commit 422b91f8e35ec3c9e46d40094b638b35c2790af0
478
- Author: Matijs van Zuijlen <matijs@matijs.net>
479
-
480
- Add check to view spec that rendered feed is of type Atom.
481
-
482
- commit 658a17fc9481ec0d269a7c0bb0b31b90fb03f6c5
483
- Author: Matijs van Zuijlen <matijs@matijs.net>
484
-
485
- Use direct XML parsing to check the RSS feed also
486
-
487
- commit 58f945244f6d15869e3c8e00c058c93007bcaf7c
488
- Author: Matijs van Zuijlen <matijs@matijs.net>
489
-
490
- Split large spec on Trackback model.
491
-
492
- commit 3fc4e7a3ee3d776d9d195bd8427244717db21c48
493
- Author: Matijs van Zuijlen <matijs@matijs.net>
494
-
495
- Split large atom feed view spec for trackbacks.
496
-
497
- commit 532a9b1196093e149cec9dbb80be5ca4950db9c5
498
- Author: Matijs van Zuijlen <matijs@matijs.net>
499
-
500
- Show current typo version number in atom feed.
501
-
502
- commit ef573e86cf312c7b256a3a74b8e83f6818536eb9
503
- Author: Matijs van Zuijlen <matijs@matijs.net>
504
-
505
- Remove feed validator checks for items covered in the view spec.
506
-
507
- commit 733818a6bbe6c8f999c76f783e573893dd1887ea
508
- Author: Frédéric de Villamil <neuro@asocial.org>
509
-
510
- Migrating users to the same config manager we're using for blogs.
511
-
512
- commit 1b072b1420d5caad715b725bd4ded5168b742fbb
513
- Author: Frédéric de Villamil <neuro@asocial.org>
514
-
515
- Ensure editor selection works even with a bogus user.
516
-
517
- commit c1acfa56cb4c9683b829f54216eaed0c474c98d6
518
- Author: Matijs van Zuijlen <matijs@matijs.net>
519
-
520
- Give articles index Atom feed its own template.
521
-
522
- commit 5a0c2a7f544bc6e7a712ac8a33c64cc46f7c5706
523
- Author: Matijs van Zuijlen <matijs@matijs.net>
524
-
525
- Specify assigns for article feeds.
526
-
527
- commit bacc4c66f4c0303d7440c3bbed0673d90cbf938d
528
- Author: Matijs van Zuijlen <matijs@matijs.net>
529
-
530
- Give article feedback Atom feed its own template.
531
-
532
- commit f132f97842d3502165f89f2c46dba56a383ed935
533
- Author: Matijs van Zuijlen <matijs@matijs.net>
534
-
535
- Use article index Atom feed template for search results.
536
-
537
- commit 4d63538209c61a930ce8c4782ca655b6d3368d90
538
- Author: Matijs van Zuijlen <matijs@matijs.net>
539
-
540
- Move article comment feed spec to view specs.
541
-
542
- commit 97ee400e285f6b6ad2843c25403d726298002c49
543
- Author: Matijs van Zuijlen <matijs@matijs.net>
544
-
545
- Give articles index RSS feed its own template.
546
-
547
- commit 5ddce99059985f416d5ec372d8262e21bfe7679e
548
- Author: Matijs van Zuijlen <matijs@matijs.net>
549
-
550
- Give article feedback RSS feed its own template.
551
-
552
- commit 48d5f21a250d25745dc50272b8fde6a6a9410583
553
- Author: Matijs van Zuijlen <matijs@matijs.net>
554
-
555
- Use article index RSS feed template for search results.
556
-
557
- commit 28d909ed6bc1e143f417242c0ca9914a11a7731c
558
- Author: Frédéric de Villamil <neuro@asocial.org>
559
-
560
- Fixes a 404 on 2 gifs in the admin. This unfortunately won't fix them when blog uses a sub URI.
561
-
562
- commit 1ce83332dd5c4bccaa58ef63cfd461f661da8b37
563
- Author: Matijs van Zuijlen <matijs@matijs.net>
564
-
565
- Remove now unused render_feed method.
566
-
567
- commit 07f9da6b2c6f0c69f24d7ff7fdbd83fd6f96f6ef
568
- Author: Matijs van Zuijlen <matijs@matijs.net>
569
-
570
- Re-enable spec for ignoring the HTTP Accept header.
571
-
572
- commit af3674168fc204a4d5ccd6fc533086065e931f80
573
- Author: Frédéric de Villamil <neuro@asocial.org>
574
-
575
- Fixes a buggy default setting that desindexes tags pages.
576
-
577
- commit 3699ebc49ef94cae1799912c8e69db6b1cf34145
578
- Author: Frédéric de Villamil <neuro@asocial.org>
579
-
580
- Makes categories listing a bit more useable adding some important information.
581
-
582
- commit bc1b6b8424b7b01640685870d9fe8d99be8556be
583
- Author: Frédéric de Villamil <neuro@asocial.org>
584
-
585
- Adding a bit of readability to articles / tags / categories lists
586
-
587
- commit f53cc0c5363f451b87fec0c145b660076b31f7cb
588
- Author: Frédéric de Villamil <neuro@asocial.org>
589
-
590
- Improves article lists readability.
591
-
592
- commit 8eaa22d82e9ceb9f03e26e6390317ed7ed3e948d
593
- Author: Frédéric de Villamil <neuro@asocial.org>
594
-
595
- Makes migration 95 work backward too
596
-
597
- commit 91d4628f266a9a583e2d6675f3ceea3cbd774bab
598
- Author: Frédéric de Villamil <neuro@asocial.org>
599
-
600
- Reorganizes admin menus and submenus.
601
-
602
- commit 5b35f9499aa8c6a82a49cc1ae6420c1a4c6d3014
603
- Author: Frédéric de Villamil <neuro@asocial.org>
604
-
605
- Fixing category controller specs
606
-
607
- commit 772c6afe009d3f2622314d12551617c46729a5f6
608
- Author: Matijs van Zuijlen <matijs@matijs.net>
609
-
610
- Give trackbacks index Atom feed its own template.
611
-
612
- commit 59ceb506a15de7011fcc95cd230300f4a00334d7
613
- Author: Matijs van Zuijlen <matijs@matijs.net>
614
-
615
- Extract atom trackback item template.
616
-
617
- commit cc613a392a3556f3095d71d3432a2ff49388e2db
618
- Author: Matijs van Zuijlen <matijs@matijs.net>
619
-
620
- Give trackbacks index RSS feed its own template.
621
-
622
- commit fbd171e2b8fa7f3273e3e2cb07b311329951d65e
623
- Author: Matijs van Zuijlen <matijs@matijs.net>
624
-
625
- Give comment index Atom and RSS feeds their own templates.
626
-
627
- commit ce2e5ac880f09f7ef1699faed56df2016cb05105
628
- Author: Matijs van Zuijlen <matijs@matijs.net>
629
-
630
- Fix RJS for sidebar admin.
631
-
632
- commit 7eb3c5fb56cdbbdc2eb11116a3742acb3dbff4cf
633
- Author: Matijs van Zuijlen <matijs@matijs.net>
634
-
635
- Render correct id for items in article feedback Atom feed.
636
-
637
- commit 6119e448096ff5950f209b81dc4f40702270da6d
638
- Author: Matijs van Zuijlen <matijs@matijs.net>
639
-
640
- No need to re-test feed validity.
641
-
642
- commit cf05decb590c5bc4f88de705f4c0741b450c7fec
643
- Author: Matijs van Zuijlen <matijs@matijs.net>
644
-
645
- Clean up spec for AuthorsController#show.
646
-
647
- commit 89a121e9144f885fc761b7da975d8a79663a890e
648
- Author: Matijs van Zuijlen <matijs@matijs.net>
649
-
650
- Fetch author's articles inside controller.
651
-
652
- commit 01c72c387e4277d8df1f10768cf8834377d751b1
653
- Author: Matijs van Zuijlen <matijs@matijs.net>
654
-
655
- Extract Atom feed header into a partial.
656
-
657
- commit 5c3fecb8f0789bacd0019b7274cc8912481ef41a
658
- Author: Matijs van Zuijlen <matijs@matijs.net>
659
-
660
- Use stub_full_article helper in articles atom feed view spec.
661
-
662
- commit c8c9582abfa7a496f7b09adbf0031d939d4bac02
663
- Author: Frédéric de Villamil <neuro@asocial.org>
664
-
665
- Fixes tabs / subtabs in admin + specs.
666
-
667
- commit a8b4cb53a8e3a817847d15c6e682c9aab05abc81
668
- Author: Frédéric de Villamil <neuro@asocial.org>
669
-
670
- Forgot to add migration to add new rules for articles and pages.
671
-
672
- commit f6a3344905f86835520ce65ee8f87e5010cac189
673
- Author: Frédéric de Villamil <neuro@asocial.org>
674
-
675
- Fixes a bug making theme catalogue exploding when Typo does not have internet access or has DNS failure.
676
-
677
- commit cd5979b6e4af20634f8b24654990c7696e77337e
678
- Author: Frédéric de Villamil <neuro@asocial.org>
679
-
680
- Fixes tag controller specs
681
-
682
- commit b7cc6607a50b0a7f6f3843e5007d298b200b77ba
683
- Author: Frédéric de Villamil <neuro@asocial.org>
684
-
685
- Fixes author sidebar count display
686
-
687
- commit 0338c06384447d2b2cef722ebdc5462b473fbe5e
688
- Author: Matijs van Zuijlen <matijs@matijs.net>
689
-
690
- Give Atom and RSS feeds for author articles their own templates.
691
-
692
- commit e2a02f9a80a138846a902d8b997d03506abbde25
693
- Author: Matijs van Zuijlen <matijs@matijs.net>
694
-
695
- Create spec for atom header partial.
696
-
697
- commit c449a88ebfb59f35a2c6f7573e5cdc0df64839b3
698
- Author: Matijs van Zuijlen <matijs@matijs.net>
699
-
700
- Make grouping controller use article's feed templates.
701
-
702
- commit 39613b882c3a9d687811ca58d682eb848129f918
703
- Author: Matijs van Zuijlen <matijs@matijs.net>
704
-
705
- Speed up CategoriesController specs.
706
-
707
- commit c50549f4af77db678d37e62bcc504f17ef1a8916
708
- Author: Frédéric de Villamil <neuro@asocial.org>
709
-
710
- Give Write New Article link more importance. Improves admin header readability
711
-
712
- commit 9eaf50117695e9a17777c69b504c9c5233f8d9a6
713
- Author: Matijs van Zuijlen <matijs@matijs.net>
714
-
715
- Make feedback controller use individual templates.
716
-
717
- commit 3863ae180f5dfbbd9fbf0f3e5d9a4a5ca60d600c
718
- Author: Frédéric de Villamil <neuro@asocial.org>
719
-
720
- Adds options to articles and pages.
721
-
722
- commit d28950ea0e112b358c772ea73210a549727bad4a
723
- Author: Frédéric de Villamil <neuro@asocial.org>
724
-
725
- Adding some text shadow here and there. A little bit of eye candy
726
-
727
- commit 43835fc45a1e6cb1ee57835da3101ae28dd5eb8f
728
- Author: Frédéric de Villamil <neuro@asocial.org>
729
-
730
- Makes simple and visual editor buttons look (more or less) alike.
731
-
732
- commit e4838cdcf135044275684786c146d4a9ff56a509
733
- Author: Matijs van Zuijlen <matijs@matijs.net>
734
-
735
- Test atom feed view partial for articles with tags, categories and resources.
736
-
737
- commit 997f6f0ee1a514f3e7f174642e8fde57c48a5b10
738
- Merge: 43835fc c449a88
739
- Author: Frédéric de Villamil <neuro@asocial.org>
740
-
741
- Merge branch 'master' of github.com:fdv/typo
742
-
743
- commit 775fcc4551abc42bec71b6f546681560c7c2f1c8
744
- Author: Matijs van Zuijlen <matijs@matijs.net>
745
-
746
- Fix tag factory: display name, if set, should not be different from name.
747
-
748
- commit a6b39ccd71acf6bbb301357c747444589248d0ce
749
- Author: Matijs van Zuijlen <matijs@matijs.net>
750
-
751
- Remove now-superfluous inclusion of Rake::DSL.
752
-
753
- commit 29c6cc2043f462bc7d506af5ec5431ff05540bee
754
- Merge: a6b39cc 997f6f0
755
- Author: Matijs van Zuijlen <matijs@matijs.net>
756
-
757
- Merge branch 'master' of github.com:fdv/typo
758
-
759
- commit f98afdad61ace81787ce5564c70be441059a9c91
760
- Author: Matijs van Zuijlen <matijs@matijs.net>
761
-
762
- Use a partial to render each article entry in tha articles Atom feed.
763
-
764
- commit 364c9525cc3a816bf6d17483ffd81e069bed267f
765
- Author: Matijs van Zuijlen <matijs@matijs.net>
766
-
767
- Use the article partial in the authors Atom feed.
768
-
769
- commit 658e8108b709125202f57d7f5995450db91186c5
770
- Author: Matijs van Zuijlen <matijs@matijs.net>
771
-
772
- Fix rendering of resources in article Atom partial.
773
-
774
- commit 8df2ce10febf0223fc9a8630239190181ebd7c47
775
- Author: Matijs van Zuijlen <matijs@matijs.net>
776
-
777
- Fix user factory and fixtures to make all specs pass.
778
-
779
- commit 89e1fb1e1524bc85578337992d34dc4921c34592
780
- Author: Matijs van Zuijlen <matijs@matijs.net>
781
-
782
- Protect password-protected articles in Atom feed (again).
783
-
784
- commit 15af968a0149c9334507bae6af926c651ddb7d53
785
- Author: Matijs van Zuijlen <matijs@matijs.net>
786
-
787
- Hide extended content if the blog says so (again).
788
-
789
- commit 5703a3250de84daf6ec0f6a8f9d08ddbc51f5cc2
790
- Author: Matijs van Zuijlen <matijs@matijs.net>
791
-
792
- Remove secret-leaking summary element from article Atom template.
793
-
794
- commit ae6bea55cc8b7421e1b5bb745483f2f5f037d78a
795
- Author: Matijs van Zuijlen <matijs@matijs.net>
796
-
797
- Show RSS description in Atom feed article entry.
798
-
799
- commit 1f33b984cf6401c0659e4de28e6cf0970687ec11
800
- Author: Matijs van Zuijlen <matijs@matijs.net>
801
-
802
- Remove shared Atom feed builder and all #to_atom methods.
803
-
804
- commit 0dd5efa2ebce92a05edc0af8dc8225d2cff8a888
805
- Author: Yannick Francois <yannick.francois@free.fr>
806
-
807
- clean spec on categoriesController SEO Options to prepare time execution improvement
808
-
809
- commit c9eb71f63aa5ea4e75f0456d98304c0d93214de9
810
- Author: Yannick Francois <yannick.francois@free.fr>
811
-
812
- add spec on set_noindex method and clean grouping_controller code
813
-
814
- commit 8846ee960ee2f475d73d388f5323047f112e5e99
815
- Author: Yannick Francois <yannick.francois@free.fr>
816
-
817
- refactoring SEO Options on article_controller_spec
818
-
819
- commit 49c7fe635d13712483b299bacc2e34a5051653ee
820
- Author: Matijs van Zuijlen <matijs@matijs.net>
821
-
822
- Create RSS item partial for articles.
823
-
824
- commit 547c1e3f1eaa2bdfd5b8b2abf7ee86ac7b19217d
825
- Author: Matijs van Zuijlen <matijs@matijs.net>
826
-
827
- Add spec for non-ascii permalinks in RSS.
828
-
829
- commit da4fa193b77499f7b03c771046402d77092cf0cb
830
- Author: Matijs van Zuijlen <matijs@matijs.net>
831
-
832
- Use the RSS article partial in the authors rss feed.
833
-
834
- commit 3606e2fac6f74d7c2759ad4617a9d0a96d100bcb
835
- Author: Matijs van Zuijlen <matijs@matijs.net>
836
-
837
- Use trackback and comment partials in article feedback RSS feed.
838
-
839
- commit 6cf5dc51830235549e2f74f9b0e41ba39bc21ffc
840
- Author: Matijs van Zuijlen <matijs@matijs.net>
841
-
842
- Simplify feedback atom feed spec.
843
-
844
- commit 25cb69df3e8b539dfabe7eadf9c9564bdbaaca9b
845
- Author: Matijs van Zuijlen <matijs@matijs.net>
846
-
847
- Remove shared RSS feed builder and all #to_rss methods.
848
-
849
- commit adcc69741033a4e9ad5b6632a3754af9420e8dd4
850
- Merge: 25cb69d c9eb71f
851
- Author: Matijs van Zuijlen <matijs@matijs.net>
852
-
853
- Merge branch 'master' of github.com:fdv/typo
854
-
855
- commit d484a05e9e68272de63551dc655b8404810f75e2
856
- Author: Matijs van Zuijlen <matijs@matijs.net>
857
-
858
- Reformat XML controller specs.
859
-
860
- commit ef088cc4b10c48bf26844024983c51dac4dfee4b
861
- Author: Matijs van Zuijlen <matijs@matijs.net>
862
-
863
- Clean up XML controller assertions.
864
-
865
- commit 08d5df7915f215b8cb9485aa5e56a8862754f26d
866
- Author: Matijs van Zuijlen <matijs@matijs.net>
867
-
868
- Make ancient XmlController actions redirect to their final destination.
869
-
870
- commit 1ac761ad836ac448396db1121b34db345a130808
871
- Author: Matijs van Zuijlen <matijs@matijs.net>
872
-
873
- Redirect XmlController#feed of type trackbacks to TrackbacksController.
874
-
875
- commit 939070a49addee941768db906610ff8be6133be3
876
- Author: Matijs van Zuijlen <matijs@matijs.net>
877
-
878
- Collect #feed redirect specs in one describe block.
879
-
880
- commit 3e62f542d419dce8efca8cb78acb81b853f17eaa
881
- Author: Matijs van Zuijlen <matijs@matijs.net>
882
-
883
- Clean up XmlController#feed as it now only needs to render googlesitemap.
884
-
885
- commit 321c0bde8798b4f05745dce3427be722ed2a35ca
886
- Author: Matijs van Zuijlen <matijs@matijs.net>
887
-
888
- Remove now-unused rss and atom views for XmlController.
889
-
890
- commit 25267d5bbc343031860a5b1598ab9d82ebfff737
891
- Author: Matijs van Zuijlen <matijs@matijs.net>
892
-
893
- Remove long-unused XmlController itunes views.
894
-
895
- commit 00b21d5eed88e566f140bd6d718e4a6db2d9a715
896
- Author: Matijs van Zuijlen <matijs@matijs.net>
897
-
898
- Remove superfluous copy of rsd view.
899
-
900
- commit 41b929b1ca8ae4050c9ea4091c40a616182d1bc7
901
- Merge: 8846ee9 adcc697
902
- Author: Yannick Francois <yannick.francois@free.fr>
903
-
904
- Merge branch 'master' of github.com:fdv/typo
905
-
906
- commit 2583435c5dc19f461f031df16478489cdfaeaea5
907
- Author: Matijs van Zuijlen <matijs@matijs.net>
908
-
909
- Make #rsd use rsd format.
910
-
911
- commit 6345fc8fb9a02165690ec9342924335e8b2f484d
912
- Author: Matijs van Zuijlen <matijs@matijs.net>
913
-
914
- Clean up RSD route.
915
-
916
- commit e9b0b650e3be22ef49c2c4edf6198cabce1b8064
917
- Author: Matijs van Zuijlen <matijs@matijs.net>
918
-
919
- Remove unused catch-all route.
920
-
921
- commit d0eabe9568d3d5dbd471dae756b3d43ba581f62c
922
- Author: Matijs van Zuijlen <matijs@matijs.net>
923
-
924
- Organize routes more logically.
925
-
926
- commit 7d56340b076a1837adf6a115426e6e0f49efd2c7
927
- Author: Matijs van Zuijlen <matijs@matijs.net>
928
-
929
- Add specific route for XmlController#feed without format.
930
-
931
- commit 965b92aaab15360c6ff0b6bbbcc47c701f959cae
932
- Author: Matijs van Zuijlen <matijs@matijs.net>
933
-
934
- Fix link to dashboard in administration layout.
935
-
936
- commit bc440a587224400292409cafe12078cb521126b3
937
- Author: Matijs van Zuijlen <matijs@matijs.net>
938
-
939
- Change blog model specs to use existing route.
940
-
941
- commit 00541fc033f0b409ad8abd650d39206a86c1a4c0
942
- Author: Matijs van Zuijlen <matijs@matijs.net>
943
-
944
- Add specific route for ArticlesController#markup_help.
945
-
946
- commit b1bfc68cf4954080e03283d89c18a303c248b921
947
- Author: Matijs van Zuijlen <matijs@matijs.net>
948
-
949
- Add specific route for TagsController#check_password.
950
-
951
- commit 841f400b7b72287b6f11b67df4a037eb6122e9ce
952
- Author: Matijs van Zuijlen <matijs@matijs.net>
953
-
954
- Fix specs to use correct controller.
955
-
956
- commit 6c72ae268ee20b5a23b8558c12e07f6dfffb57cf
957
- Author: Matijs van Zuijlen <matijs@matijs.net>
958
-
959
- Fix User#permalink_url: There is no UsersController.
960
-
961
- commit fd7fe55c391009ddf5187b1102aed6ed6ba49681
962
- Author: Matijs van Zuijlen <matijs@matijs.net>
963
-
964
- Fix remaining spec failures caused by the removal of the catch-all route.
965
-
966
- commit 798b2a8d709332b24ca0aea1c633d5d7d3bd6e9c
967
- Author: Huy Dinh <mail@huydinh.eu>
968
-
969
- sqlite3-ruby was renamed to sqlite3; changing that in Gemfile, too.
970
-
971
- commit 49451a431484e1843ddac5e46ec248def0886159
972
- Author: Matijs van Zuijlen <matijs@matijs.net>
973
-
974
- Reorganize CategoriesController specs.
975
-
976
- commit b64afaf00a9d544561cb702a0860448fe04b32d5
977
- Author: Matijs van Zuijlen <matijs@matijs.net>
978
-
979
- Remove trailing whitespace.
980
-
981
- commit b459f5790f51c12e72e4e990c78e1cc273b7cad0
982
- Author: Matijs van Zuijlen <matijs@matijs.net>
983
-
984
- Prevent down migration on migrations 098 and 100.
985
-
986
- commit 2026b6237adcc602f1762c5ba7793333933e1174
987
- Merge: 41b929b 49451a4
988
- Author: Yannick Francois <yannick.francois@free.fr>
989
-
990
- Merge branch 'master' of github.com:fdv/typo
991
-
992
- commit 2590b7115095080defe26dd9f390999d6ce2a0b9
993
- Author: Matijs van Zuijlen <matijs@matijs.net>
994
-
995
- Move comment partial under comments/.
996
-
997
- commit 54376e4f0cf801374cfd2bc78ae00800631bc679
998
- Author: Matijs van Zuijlen <matijs@matijs.net>
999
-
1000
- Remove duplicate comment_list partials.
1001
-
1002
- commit 23d7c7d7c2a6c5bbcc25f27d4da65550699a74ee
1003
- Author: Frédéric de Villamil <neuro@asocial.org>
1004
-
1005
- Cleaning old code.
1006
-
1007
- commit 2dc44bc8bf9d29059f12531f049a2cfb9572b074
1008
- Merge: 23d7c7d 2026b62
1009
- Author: Frédéric de Villamil <neuro@asocial.org>
1010
-
1011
- Merge branch 'master' of github.com:fdv/typo
1012
-
1013
- commit 706de133cc41348665756080a2a100f5e09c613a
1014
- Author: Frédéric de Villamil <neuro@asocial.org>
1015
-
1016
- Removing old, unused code since we're now using content#preview
1017
-
1018
- commit 36053308a8a7432b24a6d1b6109b7c72b6767dc8
1019
- Author: Yannick Francois <yannick.francois@free.fr>
1020
-
1021
- remove users fixture usage in account_controller_spec
1022
-
1023
- commit 47c2ba5a456a66379b04e9fb33f04235371ab4c8
1024
- Author: Yannick Francois <yannick.francois@free.fr>
1025
-
1026
- remove users fixtures in model's specs
1027
-
1028
- commit 16929b882c1847582d0b3dd64c3e9e2bfa51fd96
1029
- Author: Frédéric de Villamil <neuro@asocial.org>
1030
-
1031
- Fixing a buggy behavior where a permalink could not contain a unique ID.
1032
-
1033
- commit 61d81a2d90d49b39e443d0ec5e8199d47013aa1b
1034
- Author: Frédéric de Villamil <neuro@asocial.org>
1035
-
1036
- Adding permalinks SEO tab.
1037
-
1038
- commit 10e86d4ff3a0a21c7bb923cebe2477eb4e4cf867
1039
- Author: Frédéric de Villamil <neuro@asocial.org>
1040
-
1041
- Forgot to add the seo#permalinks view in latest commit
1042
-
1043
- commit 2cff8ab2cd38b8396049712a7f0b6f4b61b8baa1
1044
- Merge: 10e86d4 47c2ba5
1045
- Author: Frédéric de Villamil <neuro@asocial.org>
1046
-
1047
- Merge branch 'master' of github.com:fdv/typo
1048
-
1049
- commit 7d42911209da0c02457560fbb67a8ea7245b5b02
1050
- Author: Frédéric de Villamil <neuro@asocial.org>
1051
-
1052
- Adding some documentation + translation
1053
-
1054
- commit 3ed958718ba89ec57d9410e1831844f638e99bed
1055
- Author: Frédéric de Villamil <neuro@asocial.org>
1056
-
1057
- A bit of form styling.
1058
-
1059
- commit ef02008bbd4ebc6edab21eb7efdede9e81388e5a
1060
- Author: Matijs van Zuijlen <matijs@matijs.net>
1061
-
1062
- Fix automatic finding of file to render.
1063
-
1064
- commit 6f3dd59da8028ef7b5dd35ce8f2f163c52b590cd
1065
- Author: Frédéric de Villamil <neuro@asocial.org>
1066
-
1067
- Changes permalinks form destination and Seo#permalinks behavior for further devs (further meaning now)
1068
-
1069
- commit d83dbfaf6f146ca01607bb731260798b1e164591
1070
- Author: Frédéric de Villamil <neuro@asocial.org>
1071
-
1072
- Fixes post save redirects for SeoController
1073
-
1074
- commit 9adde9e05e929b6f08a96fd61babc9daa3ca49b5
1075
- Author: Matijs van Zuijlen <matijs@matijs.net>
1076
-
1077
- Pull out blog creation to outer before block in article view spec.
1078
-
1079
- commit 9f6c33e415d1191689fe5f6799426b459eb18c53
1080
- Author: Matijs van Zuijlen <matijs@matijs.net>
1081
-
1082
- Pull out article creation to outer block in article read spec.
1083
-
1084
- commit 17c6ddb78d86a81e41cdf3941c213ebcaa8411c3
1085
- Author: Matijs van Zuijlen <matijs@matijs.net>
1086
-
1087
- Pull out remaining before block contents in article read spec.
1088
-
1089
- commit becbb1ec37a2ad2d3b7e938f20f9f7ea31bc59b9
1090
- Author: Matijs van Zuijlen <matijs@matijs.net>
1091
-
1092
- Clean up and reformat context blocks in article read spec.
1093
-
1094
- commit 74c97e5debca96c00fdf01241d1da0c49c211c6d
1095
- Author: Matijs van Zuijlen <matijs@matijs.net>
1096
-
1097
- Stub out all database access in article read view spec.
1098
-
1099
- commit adab5018b0f8ce0f8dd7318858296d1e113da755
1100
- Author: Yannick Francois <yannick.francois@free.fr>
1101
-
1102
- fix spec error on blog permalink validation rules
1103
-
1104
- commit 608b2c4bf1de5dd7c0ae10950b97f748e6c0767b
1105
- Merge: d83dbfa adab501
1106
- Author: Frédéric de Villamil <neuro@asocial.org>
1107
-
1108
- Merge branch 'master' of github.com:fdv/typo
1109
-
1110
- commit 03b2ce4542d197407abb4c1ae5b0baebd777cf46
1111
- Author: Matijs van Zuijlen <matijs@matijs.net>
1112
-
1113
- Fix feed specs since article stub now uses textile text filter.
1114
-
1115
- commit 56e98cebb641afc9949f73dd64e175c4342028b3
1116
- Merge: 03b2ce4 adab501
1117
- Author: Matijs van Zuijlen <matijs@matijs.net>
1118
-
1119
- Merge branch 'master' of github.com:fdv/typo
1120
-
1121
- commit f4367e1acf9ac2ed9aed23f9700a9b1224bbf655
1122
- Author: Matijs van Zuijlen <matijs@matijs.net>
1123
-
1124
- Spec now-invalid permalink formats as invalid in blog model spec.
1125
-
1126
- commit 5f09721d764ce620ebbdbdc87f958edeca831114
1127
- Author: Matijs van Zuijlen <matijs@matijs.net>
1128
-
1129
- Fix SEO controller specs: Move `get` to before block.
1130
-
1131
- commit 39274abbe71ab1b7579e25a1f1f405116cc38f74
1132
- Merge: 5f09721 798b2a8
1133
- Author: Matijs van Zuijlen <matijs@matijs.net>
1134
-
1135
- Merge pull request #34 from Skudo/sqlite3
1136
-
1137
- commit d41ecbd6f4332b44a993d30f612364ef9d59c41e
1138
- Author: Matijs van Zuijlen <matijs@matijs.net>
1139
-
1140
- Move comment partials to their appropriate location in themes.
1141
-
1142
- commit b4de3cd25671d18b0e57ba6da7c59820fbbc77f0
1143
- Author: Matijs van Zuijlen <matijs@matijs.net>
1144
-
1145
- Show only published articles on the author page and feeds.
1146
-
1147
- commit 9c8a7dadc86e9a0361e4754f5e24dbcf30ad4f93
1148
- Author: Matijs van Zuijlen <matijs@matijs.net>
1149
-
1150
- Show comment creation date and time in partial for Standard Issue.
1151
-
1152
- commit b60f18d5b24b000db44bddb1c400d40d5742021c
1153
- Author: Matijs van Zuijlen <matijs@matijs.net>
1154
-
1155
- Add back admin tools for comments.
1156
-
1157
- commit 9af91d4179f11ea66c59c70af71cfd99ad686581
1158
- Author: Matijs van Zuijlen <matijs@matijs.net>
1159
-
1160
- Move themeless comment_box partial to comment_form.
1161
-
1162
- commit 4c54ec3618d0bbc1930e6cefb5daa3cdb169275a
1163
- Author: Matijs van Zuijlen <matijs@matijs.net>
1164
-
1165
- Fix automatic finding of file to render in article index view spec.
1166
-
1167
- commit ce9b89eda731ac6ec21319a40027b6988d66c638
1168
- Author: Matijs van Zuijlen <matijs@matijs.net>
1169
-
1170
- Clean up formatting of sidebar controller and its specs.
1171
-
1172
- commit 0e9fa8261311cd7a9ffead99754c495d7e0589b8
1173
- Author: Matijs van Zuijlen <matijs@matijs.net>
1174
-
1175
- Clean up sidebars table if it contains a record with an invalid type.
1176
-
1177
- commit c151318d373041660ec69a1b59a5cbd0ff7ba321
1178
- Author: Yannick Francois <yannick.francois@free.fr>
1179
-
1180
- remove fixture usage in profiles controller spec
1181
-
1182
- commit 2113cc234a2af151c804a3bb08c3edc66a1625ba
1183
- Author: Yannick Francois <yannick.francois@free.fr>
1184
-
1185
- remove fixture usage in setting_controller_spec
1186
-
1187
- commit 5d315be98486da31141ef5b3edf82fce8a52ec85
1188
- Author: Frédéric de Villamil <neuro@asocial.org>
1189
-
1190
- Adding a custom template for all pages meta titles and description.
1191
-
1192
- commit 7dd4c827f72ec31a7ef0a7f284bcaa29338b418b
1193
- Merge: 5d315be c151318
1194
- Author: Frédéric de Villamil <neuro@asocial.org>
1195
-
1196
- Fixing some conflicts
1197
-
1198
- commit f557e30524d9357c53d46a8287da98919e6fc00c
1199
- Author: Frédéric de Villamil <neuro@asocial.org>
1200
-
1201
- Allows theme developper to pass a string parametre to xxx_links helpers:
1202
- - article_links
1203
- - category_links
1204
- - tag_links
1205
- - next_link
1206
- - prev_link
1207
-
1208
- commit 71a788b92705c26cc6ad6e0141ff72e4d21426ec
1209
- Merge: 2113cc2 7dd4c82
1210
- Author: Yannick Francois <yannick.francois@free.fr>
1211
-
1212
- Merge branch 'master' of github.com:fdv/typo
1213
-
1214
- commit face17d9fb5bdb5f5f67e98bd78db6dd8fb300fb
1215
- Author: Matijs van Zuijlen <matijs@matijs.net>
1216
-
1217
- Deprecate use of view_root in sidebar plugins.
1218
-
1219
- commit 6bb98338d3df42952292acb36f9b95ee8747334a
1220
- Author: Matijs van Zuijlen <matijs@matijs.net>
1221
-
1222
- Make default plugins use new default view location.
1223
-
1224
- commit f14834cc644cfc11f15c8c653c82b8158e8ffb29
1225
- Merge: f557e30 71a788b
1226
- Author: Frédéric de Villamil <neuro@asocial.org>
1227
-
1228
- Merge branch 'master' of github.com:fdv/typo
1229
-
1230
- commit f88ace6e1b1e130835f72cb703ecdaa7f1360693
1231
- Author: Frédéric de Villamil <neuro@asocial.org>
1232
-
1233
- Adding test on render without layout back after a Rails fix
1234
-
1235
- commit a82bd3900a43c1891e60d6e9dd738cb3b3637db8
1236
- Author: Frédéric de Villamil <neuro@asocial.org>
1237
-
1238
- A little refactoring of to_title to make it more readable (how could I commit this???)
1239
-
1240
- commit 58760bcbc437df90a2c840dc7621453a7e42f91c
1241
- Author: Yaf <yannick.francois@free.fr>
1242
-
1243
- Remove Feedback Fixtures usage in spec...
1244
-
1245
- commit cc8407987c2d78462627b95307eda93a270cc89a
1246
- Author: Yannick Francois <yannick.francois@free.fr>
1247
-
1248
- Remove user fixture usage
1249
-
1250
- commit e07d6133712679b7872a24b9a783ab4fcf9e72dc
1251
- Merge: cc84079 58760bc
1252
- Author: Yannick Francois <yannick.francois@free.fr>
1253
-
1254
- Merge branch 'master' of github.com:fdv/typo
1255
-
1256
- commit 7c07738e57e4c72cc1f790bd6c74958fbf1447b5
1257
- Author: Yannick Francois <yannick.francois@free.fr>
1258
-
1259
- As usual: removing users fixture usage in few controllers
1260
-
1261
- commit baa0825b852d30cfbb07eba7e42845c4884ce8a0
1262
- Author: Yannick Francois <yannick.francois@free.fr>
1263
-
1264
- remove users fixtures usage...
1265
-
1266
- commit 8ace69ea2de1aaa76962e1fed04d0887a9d0a674
1267
- Author: Thomas Lecavelier <thomas@lecavelier.name>
1268
-
1269
- Remove artifact
1270
-
1271
- commit 82bcadf7a88ec39f590803ee4e9f1e9d859609e6
1272
- Author: Thomas Lecavelier <thomas@lecavelier.name>
1273
-
1274
- Fix admin category#new view
1275
-
1276
- commit 75285bf89d647aa74816b7fb89d25e068c392898
1277
- Merge: 6bb9833 82bcadf
1278
- Author: Matijs van Zuijlen <matijs@matijs.net>
1279
-
1280
- Merge branch 'master' of github.com:fdv/typo
1281
-
1282
- commit 2ce0a1cb21efa93a56c991f307ebd1815c53a3be
1283
- Author: Yannick Francois <yannick.francois@free.fr>
1284
-
1285
- Remove Users fixture usage...
1286
-
1287
- commit ef9cb65e030bec2d49c240d91a8a36fc685e4944
1288
- Author: Matijs van Zuijlen <matijs@matijs.net>
1289
-
1290
- Fix view spec to work properly on Ruby 1.9.
1291
-
1292
- commit bb96f82f1eb66d96895b82513edfd8d060002086
1293
- Author: Matijs van Zuijlen <matijs@matijs.net>
1294
-
1295
- Add coding comment for Ruby 1.9.2.
1296
-
1297
- commit c1b2ba833730dcd5602f232b56706baf5b697923
1298
- Author: Matijs van Zuijlen <matijs@matijs.net>
1299
-
1300
- Move rendering part of SEO options spec to view specs.
1301
-
1302
- commit 392c78df621e91740b102636a5b1f9bb3b886884
1303
- Author: Matijs van Zuijlen <matijs@matijs.net>
1304
-
1305
- Log caught sidebar errors to aid debugging.
1306
-
1307
- commit bd29bff6f41898c0ffb870757b64f85747698a70
1308
- Author: Matijs van Zuijlen <matijs@matijs.net>
1309
-
1310
- Move sidebar views to match default view path for Rails plugins.
1311
-
1312
- commit 72d1871d3f8e5da3964a61e132a0933dc6069591
1313
- Author: Yannick Francois <yannick.francois@free.fr>
1314
-
1315
- Refactorign spec to be more independant
1316
-
1317
- commit a52d4cb1237acf67fc228280eda1edd2254e6b44
1318
- Author: Yannick Francois <yannick.francois@free.fr>
1319
-
1320
- Fix sidebar helper spec
1321
-
1322
- commit c7061eb6d3e1b2efe1bc2d7019f6b004644b7108
1323
- Author: Yaf <yannick.francois@free.fr>
1324
-
1325
- removing Feedback fixture \o/
1326
-
1327
- commit 960c46fbb0661c03b4e723c606b6f8fbaf75ca74
1328
- Author: Lars Tobias Skjong-Børsting <larstobi@relatime.no>
1329
-
1330
- Use newer RedCloth than 4.2.3. Fixes this error: couldn't parse YAML at line 183 column 9
1331
-
1332
- commit e5e1f63b77a6f9bf7e58c131ca2f76dc606b0ef2
1333
- Merge: c7061eb 960c46f
1334
- Author: Frédéric de Villamil <frederic@de-villamil.com>
1335
-
1336
- Merge pull request #35 from larstobi/master
1337
-
1338
- commit 240efdd92aeb47b063cda97ccaf2b388de26580d
1339
- Author: Frédéric de Villamil <neuro@asocial.org>
1340
-
1341
- Feature request: add a custom tracking field for people not using Google Analytics.
1342
-
1343
- commit 5099220c7cdfa83505304d0ba7277e6fb94b70a2
1344
- Author: Frédéric de Villamil <neuro@asocial.org>
1345
-
1346
- Adds post types with admin management.
1347
-
1348
- commit dd004ed2b32b7d242d954dfb828f61c7d25356ec
1349
- Merge: 5099220 e5e1f63
1350
- Author: Frédéric de Villamil <neuro@asocial.org>
1351
-
1352
- Merge branch 'master' of github.com:fdv/typo
1353
-
1354
- commit 50f57c4dc31d985575fc441d518338e4002f926a
1355
- Author: Yannick Francois <yannick.francois@free.fr>
1356
-
1357
- Remove another fixture ... \o/
1358
-
1359
- commit 6e8d844330b119548e5f6eb3d4b28abc64e02d14
1360
- Merge: 50f57c4 dd004ed
1361
- Author: Yannick Francois <yannick.francois@free.fr>
1362
-
1363
- Merge branch 'master' of github.com:fdv/typo
1364
-
1365
- commit 5909042805f2bf32f7df3d649ed106dcce7b7424
1366
- Author: Frédéric de Villamil <neuro@asocial.org>
1367
-
1368
- Adding Yannick and Thomas to default static sidebar contents
1369
-
1370
- commit 88ac7aa9941c8afafbfed2c0ab5e6b86cbbdd1a4
1371
- Author: Frédéric de Villamil <neuro@asocial.org>
1372
-
1373
- Updateing various documentation for next release. Now waiting for Norwegian translation to finish
1374
-
1375
- commit b9a4c587470fc714ae691e3818f1f55d70d2559f
1376
- Author: Frédéric de Villamil <neuro@asocial.org>
1377
-
1378
- Readme update
1379
-
1380
- commit 2beacc028979370cd200e3c2053e32801cc0ee65
1381
- Author: Yannick Francois <yannick.francois@free.fr>
1382
-
1383
- Refactoring to greenbar (content_helper code cleaner)
1384
-
1385
- commit 6d63b5a2c150b2e76b6b950ae6fe84b9546ad882
1386
- Merge: 2beacc0 b9a4c58
1387
- Author: Yannick Francois <yannick.francois@free.fr>
1388
-
1389
- Merge branch 'master' of github.com:fdv/typo
1390
-
1391
- commit b413b029d7d0d04005d857fc6b2989d4f2a5dc0b
1392
- Author: Yannick Francois <yannick.francois@free.fr>
1393
-
1394
- Remove unuse fixture file
1395
-
1396
- commit b60f243dc84eeea018af8253e547ff889468eb39
1397
- Author: Lars Tobias Skjong-Børsting <larstobi@relatime.no>
1398
-
1399
- Typo: double any.
1400
-
1401
- commit c82448293be20d2be699d9185cbf7c39e71854ad
1402
- Author: Lars Tobias Skjong-Børsting <larstobi@relatime.no>
1403
-
1404
- Typo: double any.
1405
-
1406
- commit fc6cfaa992a01492c72b65d188477c63e26c9dee
1407
- Merge: c824482 b60f243
1408
- Author: Lars Tobias Skjong-Børsting <larstobi@relatime.no>
1409
-
1410
- Merge branch 'master' of github.com:larstobi/typo
1411
-
1412
- commit 73947273b3098b94e7a199af17a9be43ced9c822
1413
- Author: Lars Tobias Skjong-Børsting <larstobi@relatime.no>
1414
-
1415
- Norwegian translation
1416
-
1417
- commit dc3ba7d1c30bdce8bd935dd3c0d5c1a667420274
1418
- Author: Frédéric de Villamil <neuro@asocial.org>
1419
-
1420
- Fixes a typo in all languages files
1421
-
1422
- commit 13c84400393e1038ef0d09213dac31a27bda1872
1423
- Merge: dc3ba7d 7394727
1424
- Author: Frédéric de Villamil <frederic@de-villamil.com>
1425
-
1426
- Merge pull request #36 from larstobi/master
1427
-
1428
- commit 49659205b25c7188ec24f1ed0bbde933ad1455ce
1429
- Author: Frédéric de Villamil <neuro@asocial.org>
1430
-
1431
- Fixes UTF8 issues
1432
-
1433
- commit ae13d42e053affea5491b192ddde671abac9bc90
1434
- Author: Frédéric de Villamil <neuro@asocial.org>
1435
-
1436
- Fixes French translation
1437
-
1438
- commit cdaaaa582e5d3d330a86a1bd588e706c363263c3
1439
- Merge: ae13d42 13c8440
1440
- Author: Frédéric de Villamil <neuro@asocial.org>
1441
-
1442
- Merge branch 'master' of github.com:fdv/typo