cortex-reaver 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.
Files changed (128) hide show
  1. data/LICENSE +25 -0
  2. data/README +48 -0
  3. data/bin/console +11 -0
  4. data/bin/cortex_reaver +110 -0
  5. data/bin/import.rb +78 -0
  6. data/lib/cortex_reaver.rb +114 -0
  7. data/lib/cortex_reaver/config.rb +21 -0
  8. data/lib/cortex_reaver/controller/comment.rb +113 -0
  9. data/lib/cortex_reaver/controller/config.rb +14 -0
  10. data/lib/cortex_reaver/controller/journal.rb +40 -0
  11. data/lib/cortex_reaver/controller/main.rb +56 -0
  12. data/lib/cortex_reaver/controller/page.rb +34 -0
  13. data/lib/cortex_reaver/controller/photograph.rb +45 -0
  14. data/lib/cortex_reaver/controller/project.rb +40 -0
  15. data/lib/cortex_reaver/controller/tag.rb +67 -0
  16. data/lib/cortex_reaver/controller/user.rb +71 -0
  17. data/lib/cortex_reaver/helper/activity.rb +9 -0
  18. data/lib/cortex_reaver/helper/attachments.rb +139 -0
  19. data/lib/cortex_reaver/helper/auth.rb +45 -0
  20. data/lib/cortex_reaver/helper/canonical.rb +55 -0
  21. data/lib/cortex_reaver/helper/crud.rb +317 -0
  22. data/lib/cortex_reaver/helper/date.rb +29 -0
  23. data/lib/cortex_reaver/helper/error.rb +14 -0
  24. data/lib/cortex_reaver/helper/feeds.rb +88 -0
  25. data/lib/cortex_reaver/helper/form.rb +114 -0
  26. data/lib/cortex_reaver/helper/navigation.rb +142 -0
  27. data/lib/cortex_reaver/helper/photographs.rb +25 -0
  28. data/lib/cortex_reaver/helper/tags.rb +47 -0
  29. data/lib/cortex_reaver/helper/workflow.rb +27 -0
  30. data/lib/cortex_reaver/migrations/001_users.rb +24 -0
  31. data/lib/cortex_reaver/migrations/002_pages.rb +29 -0
  32. data/lib/cortex_reaver/migrations/003_journals.rb +26 -0
  33. data/lib/cortex_reaver/migrations/004_photographs.rb +24 -0
  34. data/lib/cortex_reaver/migrations/005_projects.rb +27 -0
  35. data/lib/cortex_reaver/migrations/006_tags.rb +64 -0
  36. data/lib/cortex_reaver/migrations/007_comments.rb +40 -0
  37. data/lib/cortex_reaver/migrations/008_config.rb +23 -0
  38. data/lib/cortex_reaver/model/comment.rb +109 -0
  39. data/lib/cortex_reaver/model/journal.rb +53 -0
  40. data/lib/cortex_reaver/model/page.rb +87 -0
  41. data/lib/cortex_reaver/model/photograph.rb +133 -0
  42. data/lib/cortex_reaver/model/project.rb +49 -0
  43. data/lib/cortex_reaver/model/tag.rb +72 -0
  44. data/lib/cortex_reaver/model/user.rb +147 -0
  45. data/lib/cortex_reaver/public/css/admin.css +45 -0
  46. data/lib/cortex_reaver/public/css/custom.css +0 -0
  47. data/lib/cortex_reaver/public/css/form.css +51 -0
  48. data/lib/cortex_reaver/public/css/main.css +325 -0
  49. data/lib/cortex_reaver/public/css/photo.css +113 -0
  50. data/lib/cortex_reaver/public/css/ramaze_error.css +90 -0
  51. data/lib/cortex_reaver/public/css/text.css +25 -0
  52. data/lib/cortex_reaver/public/dispatch.fcgi +11 -0
  53. data/lib/cortex_reaver/public/images/CortexReaver.gif +0 -0
  54. data/lib/cortex_reaver/public/images/atom-xml-icon.png +0 -0
  55. data/lib/cortex_reaver/public/images/body.png +0 -0
  56. data/lib/cortex_reaver/public/images/border_bottom.png +0 -0
  57. data/lib/cortex_reaver/public/images/border_bottom_left.png +0 -0
  58. data/lib/cortex_reaver/public/images/border_bottom_right.png +0 -0
  59. data/lib/cortex_reaver/public/images/border_left.png +0 -0
  60. data/lib/cortex_reaver/public/images/border_right.png +0 -0
  61. data/lib/cortex_reaver/public/images/border_top.png +0 -0
  62. data/lib/cortex_reaver/public/images/border_top_left.png +0 -0
  63. data/lib/cortex_reaver/public/images/border_top_right.png +0 -0
  64. data/lib/cortex_reaver/public/images/comment.gif +0 -0
  65. data/lib/cortex_reaver/public/images/dark_trans.png +0 -0
  66. data/lib/cortex_reaver/public/images/delete.gif +0 -0
  67. data/lib/cortex_reaver/public/images/edit.gif +0 -0
  68. data/lib/cortex_reaver/public/images/header.png +0 -0
  69. data/lib/cortex_reaver/public/images/header.xcf +0 -0
  70. data/lib/cortex_reaver/public/images/header_background.png +0 -0
  71. data/lib/cortex_reaver/public/images/parent.gif +0 -0
  72. data/lib/cortex_reaver/public/images/rss-xml-icon.png +0 -0
  73. data/lib/cortex_reaver/public/images/sections.png +0 -0
  74. data/lib/cortex_reaver/public/images/sections_highlight.png +0 -0
  75. data/lib/cortex_reaver/public/js/admin.js +36 -0
  76. data/lib/cortex_reaver/public/js/cookie.js +27 -0
  77. data/lib/cortex_reaver/public/js/jquery.js +32 -0
  78. data/lib/cortex_reaver/public/js/photo.js +33 -0
  79. data/lib/cortex_reaver/snippets/array.rb +7 -0
  80. data/lib/cortex_reaver/snippets/ramaze/dispatcher/file.rb +37 -0
  81. data/lib/cortex_reaver/support/attachments.rb +235 -0
  82. data/lib/cortex_reaver/support/cached_rendering.rb +79 -0
  83. data/lib/cortex_reaver/support/canonical.rb +107 -0
  84. data/lib/cortex_reaver/support/comments.rb +69 -0
  85. data/lib/cortex_reaver/support/pagination.rb +38 -0
  86. data/lib/cortex_reaver/support/renderer.rb +196 -0
  87. data/lib/cortex_reaver/support/sequenceable.rb +248 -0
  88. data/lib/cortex_reaver/support/tags.rb +108 -0
  89. data/lib/cortex_reaver/support/timestamps.rb +33 -0
  90. data/lib/cortex_reaver/version.rb +8 -0
  91. data/lib/cortex_reaver/view/adminbox.rhtml +56 -0
  92. data/lib/cortex_reaver/view/blank_layout.rhtml +46 -0
  93. data/lib/cortex_reaver/view/comments/comment.rhtml +34 -0
  94. data/lib/cortex_reaver/view/comments/form.rhtml +25 -0
  95. data/lib/cortex_reaver/view/comments/list.rhtml +5 -0
  96. data/lib/cortex_reaver/view/comments/post_form.rhtml +36 -0
  97. data/lib/cortex_reaver/view/config/form.rhtml +10 -0
  98. data/lib/cortex_reaver/view/error.rhtml +72 -0
  99. data/lib/cortex_reaver/view/journals/form.rhtml +12 -0
  100. data/lib/cortex_reaver/view/journals/journal.rhtml +39 -0
  101. data/lib/cortex_reaver/view/journals/list.rhtml +33 -0
  102. data/lib/cortex_reaver/view/journals/short.rhtml +3 -0
  103. data/lib/cortex_reaver/view/journals/show.rhtml +5 -0
  104. data/lib/cortex_reaver/view/pages/form.rhtml +12 -0
  105. data/lib/cortex_reaver/view/pages/list.rhtml +26 -0
  106. data/lib/cortex_reaver/view/pages/show.rhtml +12 -0
  107. data/lib/cortex_reaver/view/photographs/atom_fragment.rhtml +82 -0
  108. data/lib/cortex_reaver/view/photographs/form.rhtml +19 -0
  109. data/lib/cortex_reaver/view/photographs/grid.rhtml +36 -0
  110. data/lib/cortex_reaver/view/photographs/list.rhtml +9 -0
  111. data/lib/cortex_reaver/view/photographs/short.rhtml +3 -0
  112. data/lib/cortex_reaver/view/photographs/show.rhtml +114 -0
  113. data/lib/cortex_reaver/view/photographs/sidebar.rhtml +7 -0
  114. data/lib/cortex_reaver/view/projects/form.rhtml +13 -0
  115. data/lib/cortex_reaver/view/projects/list.rhtml +27 -0
  116. data/lib/cortex_reaver/view/projects/show.rhtml +38 -0
  117. data/lib/cortex_reaver/view/tags/form.rhtml +9 -0
  118. data/lib/cortex_reaver/view/tags/list.rhtml +28 -0
  119. data/lib/cortex_reaver/view/tags/show.rhtml +51 -0
  120. data/lib/cortex_reaver/view/text_layout.rhtml +78 -0
  121. data/lib/cortex_reaver/view/users/form.rhtml +16 -0
  122. data/lib/cortex_reaver/view/users/list.rhtml +38 -0
  123. data/lib/cortex_reaver/view/users/login.rhtml +13 -0
  124. data/lib/cortex_reaver/view/users/register.rhtml +13 -0
  125. data/lib/cortex_reaver/view/users/show.rhtml +37 -0
  126. data/lib/cortex_reaver/view/users/user.rhtml +35 -0
  127. data/lib/proto/cortex_reaver.yaml +28 -0
  128. metadata +285 -0
@@ -0,0 +1,16 @@
1
+ <h2><%= @form_action[/\/new$/] ? 'New' : 'Edit' %> User</h2>
2
+
3
+ <%= errors_on @user %>
4
+
5
+ <form class="edit-form" action="<%= Rs(@form_action) %>" method="post">
6
+ <%= form_p :login, :model => @user %>
7
+ <%= form_p 'name', :model => @user %>
8
+ <%= form_p 'http', :description => 'HTTP', :model => @user %>
9
+ <%= form_p 'email', :description => 'E-mail', :model => @user %>
10
+ <%= form_p 'password', :type => 'password' %>
11
+ <%= form_p 'password_confirmation', :type => 'password', :description => 'Confirm' %>
12
+ <%= form_p :admin, :model => @user, :type => 'checkbox', :description => 'Admin?' %>
13
+ <p>
14
+ <input type="submit" />
15
+ </p>
16
+ </form>
@@ -0,0 +1,38 @@
1
+ <% if @page %>
2
+ <%= page_nav CortexReaver::User, @page %>
3
+ <% end %>
4
+
5
+ <table class="users">
6
+ <thead>
7
+ <tr>
8
+ <th>Login</th>
9
+ <th>Name</th>
10
+ <% if admin? %>
11
+ <th></th>
12
+ <th></th>
13
+ <% end %>
14
+ </tr>
15
+ </thead>
16
+ <tbody>
17
+ <% @users.each do |user| %>
18
+ <tr>
19
+ <td><%= A(user.login, :href => user.url) %></td>
20
+ <td><%= h user.name %></td>
21
+ <% if admin? %>
22
+ <td>
23
+ <a class="edit-link" href="/users/edit/<%= user.login %>">
24
+ <img src="/images/edit.gif" class="icon" alt="edit" /> Edit
25
+ </a>
26
+ </td>
27
+ <td>
28
+ <%= A '<img src="/images/delete.gif" class="icon" alt="delete" /> Delete', :href => "/users/delete/#{user.login}", :onclick => "return confirm('Are you sure you want to delete this user?');" %>
29
+ </td>
30
+ <% end %>
31
+ </tr>
32
+ <% end %>
33
+ </tbody>
34
+ </table>
35
+
36
+ <% if @page %>
37
+ <%= page_nav CortexReaver::User, @page %>
38
+ <% end %>
@@ -0,0 +1,13 @@
1
+ <form action="<%= Rs(:login) %>" method="post">
2
+ <p>
3
+ <label for="login">Login</label>
4
+ <input type="text" name="login" id="login" />
5
+ </p>
6
+ <p>
7
+ <label for="password">Password</label>
8
+ <input type="password" name="password" id="password" />
9
+ </p>
10
+ <p>
11
+ <input type="submit" name="action" value="Log in" />
12
+ </p>
13
+ </form>
@@ -0,0 +1,13 @@
1
+ <form action="<%= Rs(:login) %>" method="post">
2
+ <p>
3
+ <label for="login">Login</label>
4
+ <input type="text" name="login" id="login" />
5
+ </p>
6
+ <p>
7
+ <label for="password">Password</label>
8
+ <input type="password" name="password" id="password" />
9
+ </p>
10
+ <p>
11
+ <input type="submit" name="action" value="Log in" />
12
+ </p>
13
+ </form>
@@ -0,0 +1,37 @@
1
+ <div class="user">
2
+ <h2><a id="user_<%= @user.login %>" href="<%= @user.url %>">User <%=h @user.name %></a></h2>
3
+ <div class="byline">
4
+ <% if @user.admin %>
5
+ Administrator,
6
+ <% end %>
7
+ Created on <%= date_line @user %>
8
+ </div>
9
+ <div class="body">
10
+ <table>
11
+ <tbody>
12
+ <tr>
13
+ <th>Name</td>
14
+ <td><%=h @user.name %></td>
15
+ </tr>
16
+ <tr>
17
+ <th>E-Mail Address</td>
18
+ <td><a href="mailto:<%= attr_h @user.email %>"><%= h @user.email %></td>
19
+ </tr>
20
+ <tr>
21
+ <th>HTTP Address</td>
22
+ <td><a href="<%= attr_h @user.http %>"><%= h @user.http %></td>
23
+ </tr>
24
+ </tbody>
25
+ </table>
26
+ </div>
27
+ <div class="footer">
28
+ <ul class="actions">
29
+ <% if admin? %>
30
+ <li><a href="/users/edit/<%= @user.login %>">
31
+ <img src="/images/edit.gif" class="icon" alt="comment" /> Edit
32
+ </a></li>
33
+ <li><%= A '<img src="/images/delete.gif" class="icon" alt="delete" /> Delete', :href => "/users/delete/#{@user.login}", :onclick => "return confirm('Are you sure you want to delete this user?');" %></li>
34
+ <% end %>
35
+ </ul>
36
+ </div>
37
+ </div>
@@ -0,0 +1,35 @@
1
+ <div class="user">
2
+ <h2><%= A(@user.to_s, :href => @user.url) %></h2>
3
+ <table>
4
+ <tr>
5
+ <td>Name</td>
6
+ <td><%= @user.name %></td>
7
+ </tr>
8
+ <tr>
9
+ <td>Login</td>
10
+ <td><%= @user.login %></td>
11
+ </tr>
12
+ <tr>
13
+ <td>HTTP address</td>
14
+ <td><%= @user.http %></td>
15
+ </tr>
16
+ <tr>
17
+ <td>Email address</td>
18
+ <td><%= @user.email %></td>
19
+ </tr>
20
+ <tr>
21
+ <td>Created</td>
22
+ <td><%= @user.created_on %></td>
23
+ </tr>
24
+ <tr>
25
+ <td>Updated</td>
26
+ <td><%= @user.updated_on %></td>
27
+ </tr>
28
+ </table>
29
+ <div class="footer">
30
+ <ul class="actions">
31
+ <li><%= A('Edit', :href => Rs(:edit, @user.login)) %></li>
32
+ <li><%= A('Delete', :href => Rs(:delete, @user.login), :onclick => "return confirm('Are you sure you want to delete user #{@user.login}?');") %></li>
33
+ </ul>
34
+ </div>
35
+ </div>
@@ -0,0 +1,28 @@
1
+ ---
2
+ # Database connection. You can also just use a Sequel connect() string.
3
+ :database:
4
+ :driver: 'mysql'
5
+ :host: 'localhost'
6
+ :user: 'cortex_reaver'
7
+ :password: 'some-password'
8
+ :database: 'cortex_reaver'
9
+
10
+ # Site-specific configuration parameters
11
+ :site:
12
+ :name: 'Cortex Reaver Site'
13
+ :description: 'A dangerous Ruby blog engine, with a photographic memory.'
14
+ :keywords: 'Cortex Reaver, Citadel Station'
15
+ :author: 'Shodan'
16
+
17
+ # Ramaze port and adapter
18
+ # :adapter: 'ramaze'
19
+ # :port: 7000
20
+
21
+ # The static files overlay of your site. You need to own this directory if you
22
+ # want to use attachments.
23
+ # :public_root: '/var/www/public'
24
+
25
+ # The directory that contains Cortex Reaver templates. You can copy this from
26
+ # the lib/cortex_reaver directory and customize to your liking, then reference
27
+ # that directory here.
28
+ # :view_root: '/var/www/view'
metadata ADDED
@@ -0,0 +1,285 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cortex-reaver
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - aphyr
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-12-16 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: ramaze
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - "="
22
+ - !ruby/object:Gem::Version
23
+ version: "2008.11"
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: builder
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 2.1.2
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: erubis
37
+ type: :runtime
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: 2.6.2
44
+ version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: hpricot
47
+ type: :runtime
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: "0.6"
54
+ version:
55
+ - !ruby/object:Gem::Dependency
56
+ name: BlueCloth
57
+ type: :runtime
58
+ version_requirement:
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ~>
62
+ - !ruby/object:Gem::Version
63
+ version: 1.0.0
64
+ version:
65
+ - !ruby/object:Gem::Dependency
66
+ name: sequel
67
+ type: :runtime
68
+ version_requirement:
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ~>
72
+ - !ruby/object:Gem::Version
73
+ version: 2.7.1
74
+ version:
75
+ - !ruby/object:Gem::Dependency
76
+ name: mongrel
77
+ type: :runtime
78
+ version_requirement:
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ~>
82
+ - !ruby/object:Gem::Version
83
+ version: 1.1.5
84
+ version:
85
+ - !ruby/object:Gem::Dependency
86
+ name: exifr
87
+ type: :runtime
88
+ version_requirement:
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ version: 0.10.7
94
+ version:
95
+ description:
96
+ email: aphyr@aphyr.com
97
+ executables:
98
+ - cortex_reaver
99
+ - console
100
+ extensions: []
101
+
102
+ extra_rdoc_files: []
103
+
104
+ files:
105
+ - bin/import.rb
106
+ - bin/console
107
+ - bin/cortex_reaver
108
+ - lib/proto
109
+ - lib/proto/cortex_reaver.yaml
110
+ - lib/cortex_reaver
111
+ - lib/cortex_reaver/config.rb
112
+ - lib/cortex_reaver/helper
113
+ - lib/cortex_reaver/helper/form.rb
114
+ - lib/cortex_reaver/helper/activity.rb
115
+ - lib/cortex_reaver/helper/attachments.rb
116
+ - lib/cortex_reaver/helper/crud.rb
117
+ - lib/cortex_reaver/helper/photographs.rb
118
+ - lib/cortex_reaver/helper/date.rb
119
+ - lib/cortex_reaver/helper/auth.rb
120
+ - lib/cortex_reaver/helper/workflow.rb
121
+ - lib/cortex_reaver/helper/navigation.rb
122
+ - lib/cortex_reaver/helper/error.rb
123
+ - lib/cortex_reaver/helper/tags.rb
124
+ - lib/cortex_reaver/helper/canonical.rb
125
+ - lib/cortex_reaver/helper/feeds.rb
126
+ - lib/cortex_reaver/controller
127
+ - lib/cortex_reaver/controller/config.rb
128
+ - lib/cortex_reaver/controller/comment.rb
129
+ - lib/cortex_reaver/controller/project.rb
130
+ - lib/cortex_reaver/controller/user.rb
131
+ - lib/cortex_reaver/controller/main.rb
132
+ - lib/cortex_reaver/controller/journal.rb
133
+ - lib/cortex_reaver/controller/photograph.rb
134
+ - lib/cortex_reaver/controller/page.rb
135
+ - lib/cortex_reaver/controller/tag.rb
136
+ - lib/cortex_reaver/support
137
+ - lib/cortex_reaver/support/attachments.rb
138
+ - lib/cortex_reaver/support/sequenceable.rb
139
+ - lib/cortex_reaver/support/comments.rb
140
+ - lib/cortex_reaver/support/tags.rb
141
+ - lib/cortex_reaver/support/cached_rendering.rb
142
+ - lib/cortex_reaver/support/timestamps.rb
143
+ - lib/cortex_reaver/support/renderer.rb
144
+ - lib/cortex_reaver/support/canonical.rb
145
+ - lib/cortex_reaver/support/pagination.rb
146
+ - lib/cortex_reaver/view
147
+ - lib/cortex_reaver/view/users
148
+ - lib/cortex_reaver/view/users/register.rhtml
149
+ - lib/cortex_reaver/view/users/login.rhtml
150
+ - lib/cortex_reaver/view/users/show.rhtml
151
+ - lib/cortex_reaver/view/users/user.rhtml
152
+ - lib/cortex_reaver/view/users/list.rhtml
153
+ - lib/cortex_reaver/view/users/form.rhtml
154
+ - lib/cortex_reaver/view/text_layout.rhtml
155
+ - lib/cortex_reaver/view/pages
156
+ - lib/cortex_reaver/view/pages/show.rhtml
157
+ - lib/cortex_reaver/view/pages/list.rhtml
158
+ - lib/cortex_reaver/view/pages/form.rhtml
159
+ - lib/cortex_reaver/view/adminbox.rhtml
160
+ - lib/cortex_reaver/view/error.rhtml
161
+ - lib/cortex_reaver/view/config
162
+ - lib/cortex_reaver/view/config/form.rhtml
163
+ - lib/cortex_reaver/view/projects
164
+ - lib/cortex_reaver/view/projects/show.rhtml
165
+ - lib/cortex_reaver/view/projects/list.rhtml
166
+ - lib/cortex_reaver/view/projects/form.rhtml
167
+ - lib/cortex_reaver/view/photographs
168
+ - lib/cortex_reaver/view/photographs/show.rhtml
169
+ - lib/cortex_reaver/view/photographs/grid.rhtml
170
+ - lib/cortex_reaver/view/photographs/sidebar.rhtml
171
+ - lib/cortex_reaver/view/photographs/atom_fragment.rhtml
172
+ - lib/cortex_reaver/view/photographs/list.rhtml
173
+ - lib/cortex_reaver/view/photographs/short.rhtml
174
+ - lib/cortex_reaver/view/photographs/form.rhtml
175
+ - lib/cortex_reaver/view/tags
176
+ - lib/cortex_reaver/view/tags/show.rhtml
177
+ - lib/cortex_reaver/view/tags/list.rhtml
178
+ - lib/cortex_reaver/view/tags/form.rhtml
179
+ - lib/cortex_reaver/view/comments
180
+ - lib/cortex_reaver/view/comments/list.rhtml
181
+ - lib/cortex_reaver/view/comments/form.rhtml
182
+ - lib/cortex_reaver/view/comments/post_form.rhtml
183
+ - lib/cortex_reaver/view/comments/comment.rhtml
184
+ - lib/cortex_reaver/view/journals
185
+ - lib/cortex_reaver/view/journals/show.rhtml
186
+ - lib/cortex_reaver/view/journals/journal.rhtml
187
+ - lib/cortex_reaver/view/journals/list.rhtml
188
+ - lib/cortex_reaver/view/journals/short.rhtml
189
+ - lib/cortex_reaver/view/journals/form.rhtml
190
+ - lib/cortex_reaver/view/blank_layout.rhtml
191
+ - lib/cortex_reaver/model
192
+ - lib/cortex_reaver/model/comment.rb
193
+ - lib/cortex_reaver/model/project.rb
194
+ - lib/cortex_reaver/model/user.rb
195
+ - lib/cortex_reaver/model/journal.rb
196
+ - lib/cortex_reaver/model/photograph.rb
197
+ - lib/cortex_reaver/model/page.rb
198
+ - lib/cortex_reaver/model/tag.rb
199
+ - lib/cortex_reaver/public
200
+ - lib/cortex_reaver/public/images
201
+ - lib/cortex_reaver/public/images/delete.gif
202
+ - lib/cortex_reaver/public/images/atom-xml-icon.png
203
+ - lib/cortex_reaver/public/images/header.png
204
+ - lib/cortex_reaver/public/images/header_background.png
205
+ - lib/cortex_reaver/public/images/border_left.png
206
+ - lib/cortex_reaver/public/images/edit.gif
207
+ - lib/cortex_reaver/public/images/border_bottom.png
208
+ - lib/cortex_reaver/public/images/sections.png
209
+ - lib/cortex_reaver/public/images/header.xcf
210
+ - lib/cortex_reaver/public/images/border_top.png
211
+ - lib/cortex_reaver/public/images/parent.gif
212
+ - lib/cortex_reaver/public/images/border_top_left.png
213
+ - lib/cortex_reaver/public/images/border_bottom_right.png
214
+ - lib/cortex_reaver/public/images/dark_trans.png
215
+ - lib/cortex_reaver/public/images/border_bottom_left.png
216
+ - lib/cortex_reaver/public/images/comment.gif
217
+ - lib/cortex_reaver/public/images/body.png
218
+ - lib/cortex_reaver/public/images/border_top_right.png
219
+ - lib/cortex_reaver/public/images/border_right.png
220
+ - lib/cortex_reaver/public/images/sections_highlight.png
221
+ - lib/cortex_reaver/public/images/CortexReaver.gif
222
+ - lib/cortex_reaver/public/images/rss-xml-icon.png
223
+ - lib/cortex_reaver/public/js
224
+ - lib/cortex_reaver/public/js/jquery.js
225
+ - lib/cortex_reaver/public/js/admin.js
226
+ - lib/cortex_reaver/public/js/photo.js
227
+ - lib/cortex_reaver/public/js/cookie.js
228
+ - lib/cortex_reaver/public/css
229
+ - lib/cortex_reaver/public/css/text.css
230
+ - lib/cortex_reaver/public/css/form.css
231
+ - lib/cortex_reaver/public/css/ramaze_error.css
232
+ - lib/cortex_reaver/public/css/custom.css
233
+ - lib/cortex_reaver/public/css/photo.css
234
+ - lib/cortex_reaver/public/css/admin.css
235
+ - lib/cortex_reaver/public/css/main.css
236
+ - lib/cortex_reaver/public/data
237
+ - lib/cortex_reaver/public/data/journals
238
+ - lib/cortex_reaver/public/data/journals/1
239
+ - lib/cortex_reaver/public/dispatch.fcgi
240
+ - lib/cortex_reaver/snippets
241
+ - lib/cortex_reaver/snippets/ramaze
242
+ - lib/cortex_reaver/snippets/ramaze/dispatcher
243
+ - lib/cortex_reaver/snippets/ramaze/dispatcher/file.rb
244
+ - lib/cortex_reaver/snippets/array.rb
245
+ - lib/cortex_reaver/migrations
246
+ - lib/cortex_reaver/migrations/004_photographs.rb
247
+ - lib/cortex_reaver/migrations/002_pages.rb
248
+ - lib/cortex_reaver/migrations/005_projects.rb
249
+ - lib/cortex_reaver/migrations/006_tags.rb
250
+ - lib/cortex_reaver/migrations/008_config.rb
251
+ - lib/cortex_reaver/migrations/007_comments.rb
252
+ - lib/cortex_reaver/migrations/001_users.rb
253
+ - lib/cortex_reaver/migrations/003_journals.rb
254
+ - lib/cortex_reaver/version.rb
255
+ - lib/cortex_reaver.rb
256
+ - LICENSE
257
+ - README
258
+ has_rdoc: true
259
+ homepage: http://aphyr.com
260
+ post_install_message:
261
+ rdoc_options: []
262
+
263
+ require_paths:
264
+ - lib
265
+ required_ruby_version: !ruby/object:Gem::Requirement
266
+ requirements:
267
+ - - ">="
268
+ - !ruby/object:Gem::Version
269
+ version: 1.8.5
270
+ version:
271
+ required_rubygems_version: !ruby/object:Gem::Requirement
272
+ requirements:
273
+ - - ">="
274
+ - !ruby/object:Gem::Version
275
+ version: "0"
276
+ version:
277
+ requirements: []
278
+
279
+ rubyforge_project: cortex-reaver
280
+ rubygems_version: 1.2.0
281
+ signing_key:
282
+ specification_version: 2
283
+ summary: A dangerous Ruby blog engine, with a photographic memory.
284
+ test_files: []
285
+