strelka-cms 0.0.1.pre.19 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data.tar.gz.sig CHANGED
Binary file
data/History.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- == v0.0.1 [2012-06-29] Michael Granger <ged@FaerieMUD.org>
1
+ == v0.0.1 [2012-10-19] Michael Granger <ged@FaerieMUD.org>
2
2
 
3
3
  Initial release.
4
4
 
data/Manifest.txt CHANGED
@@ -41,6 +41,7 @@ public/javascripts/app.js
41
41
  public/javascripts/foundation.js
42
42
  public/javascripts/jquery.min.js
43
43
  public/javascripts/modernizr.foundation.js
44
+ public/news/v0.0.1.page
44
45
  public/robots.txt
45
46
  public/stylesheets/app.css
46
47
  public/stylesheets/foundation.css
data/README.rdoc CHANGED
@@ -7,12 +7,13 @@ docs :: http://deveiate.org/code/strelka-cms
7
7
 
8
8
  == Description
9
9
 
10
- This is a content-management application for Mongrel2 servers
11
- written as a Strelka plugin.
10
+ This is a web content-management application written for the Strelka
11
+ web application framework.
12
12
 
13
13
 
14
14
  == Prerequisites
15
15
 
16
+ * Mongrel2 1.8.0 or better
16
17
  * Strelka
17
18
  * Ruby 1.9.3 or better
18
19
 
data/Rakefile CHANGED
@@ -35,7 +35,7 @@ hoespec = Hoe.spec 'strelka-cms' do
35
35
 
36
36
  self.spec_extras[:licenses] = ["BSD"]
37
37
  self.spec_extras[:rdoc_options] = ['-f', 'fivefish', '-t', 'Strelka CMS']
38
- self.require_ruby_version( '>=1.9.2' )
38
+ self.require_ruby_version( '>=1.9.3' )
39
39
  self.hg_sign_tags = true if self.respond_to?( :hg_sign_tags= )
40
40
  self.check_history_on_release = true if self.respond_to?( :check_history_on_release= )
41
41
 
@@ -36,6 +36,8 @@ class Strelka::CMS::ContentManager < Strelka::App
36
36
  \A
37
37
  (?<path>(?:
38
38
  [\w\-/] # Allow word characters, slashes, and hyphens
39
+ |
40
+ \.(?!\.) # or periods not followed by another period
39
41
  )*)
40
42
  (?:\.(?<suffix>html|page))? # optional suffix
41
43
  \z
@@ -57,7 +59,7 @@ class Strelka::CMS::ContentManager < Strelka::App
57
59
  templates \
58
60
  page: 'page.tmpl'
59
61
 
60
- # Error-handler
62
+ # Handle errors using a templated view instead of the default text
61
63
  plugin :fancyerrors
62
64
 
63
65
 
@@ -33,6 +33,12 @@
33
33
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
34
34
  <![endif]-->
35
35
 
36
+ <!-- These feeds are generated by the 'content-feeds' app -->
37
+ <link rel="alternate" href="/feed/rss/news" type="application/rss+xml"
38
+ title="Project News" />
39
+ <link rel="alternate" href="/feed/atom/news" type="application/atom+xml"
40
+ title="Project News" />
41
+
36
42
  </head>
37
43
  <body>
38
44
 
@@ -0,0 +1,17 @@
1
+ ---
2
+ title: Initial Release
3
+ filters:
4
+ - example
5
+ - textile
6
+ - strip
7
+ date: 2012/10/26 08:10:00 -0700
8
+ ---
9
+
10
+ h1. Initial Release
11
+
12
+ This is a news page announcing the initial release of the Strelka CMS. It's
13
+ mostly just for the demo so the RSS/Atom feeds app has something to show.
14
+
15
+ The entries are ordered either by the @mtime@ of their corresponding .page
16
+ files, or the page's @date@ as set in its header.
17
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: strelka-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre.19
4
+ version: 0.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -36,7 +36,7 @@ cert_chain:
36
36
  YUhDS0xaZFNLai9SSHVUT3QrZ2JsUmV4OEZBaDhOZUEKY21saFhlNDZwWk5K
37
37
  Z1dLYnhaYWg4NWpJang5NWhSOHZPSStOQU01aUg5a09xSzEzRHJ4YWNUS1Bo
38
38
  cWo1UGp3RgotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
39
- date: 2012-08-10 00:00:00.000000000 Z
39
+ date: 2012-10-29 00:00:00.000000000 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: strelka
@@ -246,9 +246,9 @@ dependencies:
246
246
  - - ~>
247
247
  - !ruby/object:Gem::Version
248
248
  version: '3.0'
249
- description: ! 'This is a content-management application for Mongrel2 servers
249
+ description: ! 'This is a web content-management application written for the Strelka
250
250
 
251
- written as a Strelka plugin.'
251
+ web application framework.'
252
252
  email:
253
253
  - ged@FaerieMUD.org
254
254
  executables: []
@@ -303,6 +303,7 @@ files:
303
303
  - public/javascripts/foundation.js
304
304
  - public/javascripts/jquery.min.js
305
305
  - public/javascripts/modernizr.foundation.js
306
+ - public/news/v0.0.1.page
306
307
  - public/robots.txt
307
308
  - public/stylesheets/app.css
308
309
  - public/stylesheets/foundation.css
@@ -329,7 +330,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
329
330
  requirements:
330
331
  - - ! '>='
331
332
  - !ruby/object:Gem::Version
332
- version: 1.9.2
333
+ version: 1.9.3
333
334
  required_rubygems_version: !ruby/object:Gem::Requirement
334
335
  none: false
335
336
  requirements:
@@ -341,6 +342,6 @@ rubyforge_project: strelka-cms
341
342
  rubygems_version: 1.8.24
342
343
  signing_key:
343
344
  specification_version: 3
344
- summary: This is a content-management application for Mongrel2 servers written as
345
- a Strelka plugin.
345
+ summary: This is a web content-management application written for the Strelka web
346
+ application framework.
346
347
  test_files: []
metadata.gz.sig CHANGED
Binary file