my_wiki_generator 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/my_wiki/grep.txt +238 -0
- data/my_wiki/my_wiki_generator.rb +248 -0
- data/my_wiki/templates/POST_GENERATION_REMINDER +1 -0
- data/my_wiki/templates/app/controllers/application.rb +75 -0
- data/my_wiki/templates/app/controllers/content_history_controller.rb +49 -0
- data/my_wiki/templates/app/controllers/login_controller.rb +93 -0
- data/my_wiki/templates/app/controllers/my_wiki_admin_controller.rb +26 -0
- data/my_wiki/templates/app/controllers/my_wiki_controller.rb +250 -0
- data/my_wiki/templates/app/controllers/page_admin_controller.rb +51 -0
- data/my_wiki/templates/app/controllers/user_admin_controller.rb +34 -0
- data/my_wiki/templates/app/helpers/application_helper.rb +3 -0
- data/my_wiki/templates/app/helpers/content_history_helper.rb +2 -0
- data/my_wiki/templates/app/helpers/login_helper.rb +2 -0
- data/my_wiki/templates/app/helpers/my_wiki_admin_helper.rb +2 -0
- data/my_wiki/templates/app/helpers/my_wiki_helper.rb +94 -0
- data/my_wiki/templates/app/helpers/page_admin_helper.rb +2 -0
- data/my_wiki/templates/app/helpers/user_admin_helper.rb +2 -0
- data/my_wiki/templates/app/models/attachment.rb +55 -0
- data/my_wiki/templates/app/models/content.rb +32 -0
- data/my_wiki/templates/app/models/content_history.rb +49 -0
- data/my_wiki/templates/app/models/content_sweeper.rb +7 -0
- data/my_wiki/templates/app/models/my_wiki_mailer.rb +29 -0
- data/my_wiki/templates/app/models/role.rb +18 -0
- data/my_wiki/templates/app/models/setting.rb +7 -0
- data/my_wiki/templates/app/models/user.rb +60 -0
- data/my_wiki/templates/app/views/content_history/_form.rhtml +19 -0
- data/my_wiki/templates/app/views/content_history/edit.rhtml +9 -0
- data/my_wiki/templates/app/views/content_history/list.rhtml +27 -0
- data/my_wiki/templates/app/views/content_history/new.rhtml +8 -0
- data/my_wiki/templates/app/views/content_history/show.rhtml +21 -0
- data/my_wiki/templates/app/views/layouts/my_wiki.rhtml +105 -0
- data/my_wiki/templates/app/views/login/edit.rhtml +25 -0
- data/my_wiki/templates/app/views/login/login.rhtml +23 -0
- data/my_wiki/templates/app/views/login/logout.rhtml +10 -0
- data/my_wiki/templates/app/views/login/signup.rhtml +23 -0
- data/my_wiki/templates/app/views/login/welcome.rhtml +13 -0
- data/my_wiki/templates/app/views/my_wiki/_form.rhtml +11 -0
- data/my_wiki/templates/app/views/my_wiki/css.rhtml +224 -0
- data/my_wiki/templates/app/views/my_wiki/diff.rhtml +4 -0
- data/my_wiki/templates/app/views/my_wiki/edit.rhtml +34 -0
- data/my_wiki/templates/app/views/my_wiki/fileinfo.rhtml +22 -0
- data/my_wiki/templates/app/views/my_wiki/list.rhtml +1 -0
- data/my_wiki/templates/app/views/my_wiki/mails.rhtml +1 -0
- data/my_wiki/templates/app/views/my_wiki/new.rhtml +6 -0
- data/my_wiki/templates/app/views/my_wiki/recent.rhtml +3 -0
- data/my_wiki/templates/app/views/my_wiki/search.rhtml +5 -0
- data/my_wiki/templates/app/views/my_wiki/search_result.rhtml +10 -0
- data/my_wiki/templates/app/views/my_wiki/show.rhtml +31 -0
- data/my_wiki/templates/app/views/my_wiki_admin/index.rhtml +5 -0
- data/my_wiki/templates/app/views/my_wiki_admin/setting.rhtml +64 -0
- data/my_wiki/templates/app/views/my_wiki_mailer/inform.rhtml +3 -0
- data/my_wiki/templates/app/views/page_admin/_form.rhtml +22 -0
- data/my_wiki/templates/app/views/page_admin/edit.rhtml +9 -0
- data/my_wiki/templates/app/views/page_admin/list.rhtml +55 -0
- data/my_wiki/templates/app/views/page_admin/new.rhtml +8 -0
- data/my_wiki/templates/app/views/page_admin/show.rhtml +8 -0
- data/my_wiki/templates/app/views/user_admin/_form.rhtml +10 -0
- data/my_wiki/templates/app/views/user_admin/change_password.rhtml +9 -0
- data/my_wiki/templates/app/views/user_admin/list.rhtml +25 -0
- data/my_wiki/templates/app/views/user_admin/signup.rhtml +20 -0
- data/my_wiki/templates/components/admin/menu/menu.rhtml +5 -0
- data/my_wiki/templates/components/admin/menu_controller.rb +3 -0
- data/my_wiki/templates/components/list/list/list.rhtml +11 -0
- data/my_wiki/templates/components/list/list_controller.rb +11 -0
- data/my_wiki/templates/components/sidebar/sidebar/show.rhtml +7 -0
- data/my_wiki/templates/components/sidebar/sidebar_controller.rb +9 -0
- data/my_wiki/templates/config/routes.rb +35 -0
- data/my_wiki/templates/db/migrate/001_my_wiki_migration.rb +75 -0
- data/my_wiki/templates/lib/diff/lcs.rb +1105 -0
- data/my_wiki/templates/lib/diff/lcs/array.rb +21 -0
- data/my_wiki/templates/lib/diff/lcs/block.rb +51 -0
- data/my_wiki/templates/lib/diff/lcs/callbacks.rb +322 -0
- data/my_wiki/templates/lib/diff/lcs/change.rb +169 -0
- data/my_wiki/templates/lib/diff/lcs/hunk.rb +257 -0
- data/my_wiki/templates/lib/diff/lcs/ldiff.rb +226 -0
- data/my_wiki/templates/lib/diff/lcs/string.rb +19 -0
- data/my_wiki/templates/lib/login_system.rb +87 -0
- data/my_wiki/templates/lib/markup/simple_markup.rb +489 -0
- data/my_wiki/templates/lib/markup/simple_markup/fragments.rb +329 -0
- data/my_wiki/templates/lib/markup/simple_markup/inline.rb +338 -0
- data/my_wiki/templates/lib/markup/simple_markup/lines.rb +151 -0
- data/my_wiki/templates/lib/markup/simple_markup/preprocess.rb +68 -0
- data/my_wiki/templates/lib/markup/simple_markup/to_flow.rb +188 -0
- data/my_wiki/templates/lib/markup/simple_markup/to_html.rb +302 -0
- data/my_wiki/templates/lib/markup/simple_markup/to_latex.rb +333 -0
- data/my_wiki/templates/lib/my_wiki_plugin.rb +60 -0
- data/my_wiki/templates/lib/my_wiki_plugins/christel.rb +5 -0
- data/my_wiki/templates/lib/my_wiki_plugins/join.rb +3 -0
- data/my_wiki/templates/lib/my_wiki_plugins/link_to_attach.rb +17 -0
- data/my_wiki/templates/lib/my_wiki_plugins/recent.rb +8 -0
- data/my_wiki/templates/public/javascripts/my_wiki.js +8 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/back.jpg +0 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/back1.jpg +0 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/back2.jpg +0 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/foot.jpg +0 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/h1.gif +0 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/h1.jpg +0 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/menu.jpg +0 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/menu2.jpg +0 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/menu_c.jpg +0 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/my_wiki.css +336 -0
- data/my_wiki/templates/public/stylesheets/my_wiki/title.jpg +0 -0
- metadata +181 -0
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,336 @@
|
|
1
|
+
/**************************************
|
2
|
+
default style
|
3
|
+
**************************************/
|
4
|
+
|
5
|
+
a {
|
6
|
+
color: #006;
|
7
|
+
text-decoration: none;
|
8
|
+
}
|
9
|
+
|
10
|
+
a:visited {
|
11
|
+
color: #006;
|
12
|
+
text-decoration: none;
|
13
|
+
}
|
14
|
+
|
15
|
+
a:hover {
|
16
|
+
color: white;
|
17
|
+
background-color: black;
|
18
|
+
}
|
19
|
+
|
20
|
+
body {
|
21
|
+
background-color: black;
|
22
|
+
/*
|
23
|
+
background-image: url(back.jpg);
|
24
|
+
background-repeat: no-repeat;
|
25
|
+
*/
|
26
|
+
|
27
|
+
/* padding-bottom: 300px;
|
28
|
+
background-image: url(menu.jpg);
|
29
|
+
background-position: left bottom;
|
30
|
+
background-repeat: no-repeat;*/
|
31
|
+
}
|
32
|
+
|
33
|
+
hr {
|
34
|
+
width: 100%;
|
35
|
+
border: 1px solid black;
|
36
|
+
}
|
37
|
+
|
38
|
+
table.table {
|
39
|
+
padding:0px;
|
40
|
+
border:0px;
|
41
|
+
margin-left:20px;
|
42
|
+
text-align:left;
|
43
|
+
color:inherit;
|
44
|
+
background-color:#000;
|
45
|
+
}
|
46
|
+
|
47
|
+
table.table th, td {
|
48
|
+
padding:5px;
|
49
|
+
margin:1px;
|
50
|
+
color:inherit;
|
51
|
+
}
|
52
|
+
|
53
|
+
table.table th {
|
54
|
+
background-color:#ccc;
|
55
|
+
}
|
56
|
+
|
57
|
+
table.table td {
|
58
|
+
background-color:white;
|
59
|
+
}
|
60
|
+
|
61
|
+
pre {
|
62
|
+
background-color: #eee;
|
63
|
+
margin-left: 20px;
|
64
|
+
padding: 10px;
|
65
|
+
border-left: 5px solid gray;
|
66
|
+
}
|
67
|
+
|
68
|
+
dt {
|
69
|
+
padding-left: 3px;
|
70
|
+
border-left: 1px solid black;
|
71
|
+
border-top: 1px solid black;
|
72
|
+
}
|
73
|
+
|
74
|
+
/**************************************
|
75
|
+
style for layout main
|
76
|
+
**************************************/
|
77
|
+
|
78
|
+
div.user {
|
79
|
+
font-size: 80%;
|
80
|
+
color: white;
|
81
|
+
position: absolute;
|
82
|
+
top: 0px;
|
83
|
+
width: 100%;
|
84
|
+
text-align: right;
|
85
|
+
padding-right: 10px;
|
86
|
+
padding-top: 0px;
|
87
|
+
margin-top: 0px;
|
88
|
+
}
|
89
|
+
|
90
|
+
div.header {
|
91
|
+
height: 160px;
|
92
|
+
background-image: url(back1.jpg);
|
93
|
+
background-repeat: no-repeat;
|
94
|
+
background-color: white;
|
95
|
+
}
|
96
|
+
|
97
|
+
div.header h1 {
|
98
|
+
margin: 20px;
|
99
|
+
margin-bottom: 30px;
|
100
|
+
padding: 10px;
|
101
|
+
text-align: center;
|
102
|
+
font-weight: bold;
|
103
|
+
color: black;
|
104
|
+
}
|
105
|
+
|
106
|
+
div.menu {
|
107
|
+
text-align: right;
|
108
|
+
border: 1px solid white;
|
109
|
+
padding: 3px;
|
110
|
+
font-size: 80%;
|
111
|
+
color: white;
|
112
|
+
}
|
113
|
+
div.menu a {
|
114
|
+
color: white;
|
115
|
+
}
|
116
|
+
|
117
|
+
div.menu a:visited {
|
118
|
+
color: white;
|
119
|
+
}
|
120
|
+
div.menu a:hover {
|
121
|
+
color: yellow;
|
122
|
+
}
|
123
|
+
|
124
|
+
div.sidebar {
|
125
|
+
font-size: 80%;
|
126
|
+
position: absolute;
|
127
|
+
top: 15px;
|
128
|
+
left: 0px;
|
129
|
+
width: 20%;
|
130
|
+
padding: 5px;
|
131
|
+
overflow-x: hidden;
|
132
|
+
/* background-color: black;*/
|
133
|
+
}
|
134
|
+
|
135
|
+
div.sidebar div.title {
|
136
|
+
text-align: center;
|
137
|
+
vertical-align: center;
|
138
|
+
font: bold 250% serif;
|
139
|
+
color: white;
|
140
|
+
padding: 10px;
|
141
|
+
padding-top: 15px;
|
142
|
+
margin: 20px;
|
143
|
+
margin-bottom: 30px;
|
144
|
+
background-image: url(title.jpg);
|
145
|
+
background-repeat: no-repeat;
|
146
|
+
width: 115px;
|
147
|
+
height: 115px;
|
148
|
+
}
|
149
|
+
|
150
|
+
div.sidebar div.user {
|
151
|
+
color: white;
|
152
|
+
}
|
153
|
+
div.footer {
|
154
|
+
text-align: right;
|
155
|
+
padding: 3px;
|
156
|
+
width: 100%;
|
157
|
+
background-color: black;
|
158
|
+
background-image: url(foot.jpg);
|
159
|
+
background-repeat: no-repeat;
|
160
|
+
color: white;
|
161
|
+
margin-top: 5px;
|
162
|
+
/* margin-bottom: 10px;*/
|
163
|
+
padding-right: 10px;
|
164
|
+
border-bottom: 5px solid white;
|
165
|
+
}
|
166
|
+
|
167
|
+
div.main_with_sidebar {
|
168
|
+
position: absolute;
|
169
|
+
top: 15px;
|
170
|
+
left: 20%;
|
171
|
+
width: 80%;
|
172
|
+
margin-left: 0px;
|
173
|
+
}
|
174
|
+
|
175
|
+
div.main_without_sidebar {
|
176
|
+
position: absolute;
|
177
|
+
top: 15px;
|
178
|
+
left: 0px
|
179
|
+
width: 100%;
|
180
|
+
margin-left: 0px;
|
181
|
+
}
|
182
|
+
|
183
|
+
div.body {
|
184
|
+
background-image: url(back2.jpg);
|
185
|
+
background-repeat: repeat-y;
|
186
|
+
background-color: white;
|
187
|
+
}
|
188
|
+
|
189
|
+
div.body div.content {
|
190
|
+
padding-left: 20px;
|
191
|
+
padding-right: 10px;
|
192
|
+
}
|
193
|
+
|
194
|
+
div.body div.content h1 {
|
195
|
+
background-color: black;
|
196
|
+
/*background-image: url(h1.jpg);
|
197
|
+
background-position: right top;
|
198
|
+
background-repeat: no-repeat;*/
|
199
|
+
background-image: url(h1.gif);
|
200
|
+
background-repeat: repeat-x;
|
201
|
+
font-size: 150%;
|
202
|
+
padding-left: 10px;
|
203
|
+
padding-top: 5px;
|
204
|
+
padding-bottom: 5px;
|
205
|
+
border: 1px solid black;
|
206
|
+
border-top: 2px solid black;
|
207
|
+
}
|
208
|
+
|
209
|
+
div.body div.content h2 {
|
210
|
+
font-size: 120%;
|
211
|
+
padding-left: 10px;
|
212
|
+
border-top: 3px solid black;
|
213
|
+
border-bottom: 3px solid black;
|
214
|
+
}
|
215
|
+
|
216
|
+
div.body div.content h3 {
|
217
|
+
padding-left: 10px;
|
218
|
+
border-top: 3px dotted black;
|
219
|
+
border-bottom: 3px dotted black;
|
220
|
+
}
|
221
|
+
|
222
|
+
div.body div.content h4, h5 {
|
223
|
+
padding-left: 10px;
|
224
|
+
border-top: 1px solid black;
|
225
|
+
border-bottom: 1px solid black;
|
226
|
+
}
|
227
|
+
|
228
|
+
/**************************************
|
229
|
+
style for layout sidebar
|
230
|
+
**************************************/
|
231
|
+
div.sidebar div.barbody {
|
232
|
+
/* background-color: black;*/
|
233
|
+
color: white;
|
234
|
+
padding-bottom: 300px;
|
235
|
+
/* background-image: url(menu.jpg);
|
236
|
+
background-position: left bottom;
|
237
|
+
background-repeat: no-repeat;
|
238
|
+
border: 5px double white;*/
|
239
|
+
}
|
240
|
+
|
241
|
+
div.sidebar div.barbody a {
|
242
|
+
color: white;
|
243
|
+
}
|
244
|
+
|
245
|
+
div.sidebar div.barbody a:visited {
|
246
|
+
color: white;
|
247
|
+
}
|
248
|
+
|
249
|
+
div.sidebar div.barbody a:hover {
|
250
|
+
color: black;
|
251
|
+
background-color: white;
|
252
|
+
}
|
253
|
+
|
254
|
+
|
255
|
+
/**************************************
|
256
|
+
style for <%= file_name %>/show
|
257
|
+
**************************************/
|
258
|
+
div.freezed {
|
259
|
+
text-align: right;
|
260
|
+
font-weight: bold;
|
261
|
+
}
|
262
|
+
|
263
|
+
span.freezed {
|
264
|
+
color: white;
|
265
|
+
background-color: red;
|
266
|
+
border: 5px double white;
|
267
|
+
}
|
268
|
+
|
269
|
+
div.attachment {
|
270
|
+
font-size: 80%;
|
271
|
+
border: 1px solid black;
|
272
|
+
padding: 2px;
|
273
|
+
margin-top: 5px;
|
274
|
+
margin-bottom: 5px;
|
275
|
+
}
|
276
|
+
|
277
|
+
div.history {
|
278
|
+
font-size: 80%;
|
279
|
+
border: 1px solid gray;
|
280
|
+
padding: 2px;
|
281
|
+
margin-top: 5px;
|
282
|
+
margin-bottom: 5px;
|
283
|
+
background-color: #eee;
|
284
|
+
}
|
285
|
+
|
286
|
+
div.history a, div.attachment a {
|
287
|
+
margin-left: 10px;
|
288
|
+
}
|
289
|
+
|
290
|
+
div.updated_at {
|
291
|
+
font-size: 80%;
|
292
|
+
}
|
293
|
+
|
294
|
+
/**************************************
|
295
|
+
style for <%= file_name %>/new
|
296
|
+
**************************************/
|
297
|
+
div.new {
|
298
|
+
padding: 20px;
|
299
|
+
margin: 10px;
|
300
|
+
border: 1px solid gray;
|
301
|
+
background-color: #efe;
|
302
|
+
}
|
303
|
+
|
304
|
+
/**************************************
|
305
|
+
style for <%= file_name %>/edit
|
306
|
+
**************************************/
|
307
|
+
div.attach, div.edit {
|
308
|
+
padding: 20px;
|
309
|
+
margin: 10px;
|
310
|
+
border: 1px solid gray;
|
311
|
+
background-color: #fee;
|
312
|
+
}
|
313
|
+
|
314
|
+
/**************************************
|
315
|
+
style for diff
|
316
|
+
**************************************/
|
317
|
+
span.diff_added {
|
318
|
+
color: blue;
|
319
|
+
}
|
320
|
+
|
321
|
+
span.diff_deleted {
|
322
|
+
color: red;
|
323
|
+
text-decoration: line-through;
|
324
|
+
}
|
325
|
+
|
326
|
+
span.diff_modified {
|
327
|
+
color: green;
|
328
|
+
}
|
329
|
+
|
330
|
+
span.diff_modified span.diff_old {
|
331
|
+
text-decoration: line-through;
|
332
|
+
}
|
333
|
+
|
334
|
+
span.diff_same {
|
335
|
+
color: gray;
|
336
|
+
}
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,181 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11
|
3
|
+
specification_version: 1
|
4
|
+
name: my_wiki_generator
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.0.1
|
7
|
+
date: 2006-05-07 00:00:00 +09:00
|
8
|
+
summary: "gem\x82\xF0RubyForge\x82\xC9\x93o\x98^\x82\xB5\x82\xC4\x82\xDD\x82\xE9"
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: andyjpn+spam@gmail.com
|
12
|
+
homepage: http://techno.hippy.jp/rorwiki/
|
13
|
+
rubyforge_project:
|
14
|
+
description:
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: false
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
authors:
|
29
|
+
- ANDO Yasushi
|
30
|
+
files:
|
31
|
+
- my_wiki/grep.txt
|
32
|
+
- my_wiki/my_wiki_generator.rb
|
33
|
+
- my_wiki/templates
|
34
|
+
- my_wiki/templates/app
|
35
|
+
- my_wiki/templates/components
|
36
|
+
- my_wiki/templates/config
|
37
|
+
- my_wiki/templates/db
|
38
|
+
- my_wiki/templates/lib
|
39
|
+
- my_wiki/templates/POST_GENERATION_REMINDER
|
40
|
+
- my_wiki/templates/public
|
41
|
+
- my_wiki/templates/app/controllers
|
42
|
+
- my_wiki/templates/app/helpers
|
43
|
+
- my_wiki/templates/app/models
|
44
|
+
- my_wiki/templates/app/views
|
45
|
+
- my_wiki/templates/app/controllers/application.rb
|
46
|
+
- my_wiki/templates/app/controllers/content_history_controller.rb
|
47
|
+
- my_wiki/templates/app/controllers/login_controller.rb
|
48
|
+
- my_wiki/templates/app/controllers/my_wiki_admin_controller.rb
|
49
|
+
- my_wiki/templates/app/controllers/my_wiki_controller.rb
|
50
|
+
- my_wiki/templates/app/controllers/page_admin_controller.rb
|
51
|
+
- my_wiki/templates/app/controllers/user_admin_controller.rb
|
52
|
+
- my_wiki/templates/app/helpers/application_helper.rb
|
53
|
+
- my_wiki/templates/app/helpers/content_history_helper.rb
|
54
|
+
- my_wiki/templates/app/helpers/login_helper.rb
|
55
|
+
- my_wiki/templates/app/helpers/my_wiki_admin_helper.rb
|
56
|
+
- my_wiki/templates/app/helpers/my_wiki_helper.rb
|
57
|
+
- my_wiki/templates/app/helpers/page_admin_helper.rb
|
58
|
+
- my_wiki/templates/app/helpers/user_admin_helper.rb
|
59
|
+
- my_wiki/templates/app/models/attachment.rb
|
60
|
+
- my_wiki/templates/app/models/content.rb
|
61
|
+
- my_wiki/templates/app/models/content_history.rb
|
62
|
+
- my_wiki/templates/app/models/content_sweeper.rb
|
63
|
+
- my_wiki/templates/app/models/my_wiki_mailer.rb
|
64
|
+
- my_wiki/templates/app/models/role.rb
|
65
|
+
- my_wiki/templates/app/models/setting.rb
|
66
|
+
- my_wiki/templates/app/models/user.rb
|
67
|
+
- my_wiki/templates/app/views/content_history
|
68
|
+
- my_wiki/templates/app/views/layouts
|
69
|
+
- my_wiki/templates/app/views/login
|
70
|
+
- my_wiki/templates/app/views/my_wiki
|
71
|
+
- my_wiki/templates/app/views/my_wiki_admin
|
72
|
+
- my_wiki/templates/app/views/my_wiki_mailer
|
73
|
+
- my_wiki/templates/app/views/page_admin
|
74
|
+
- my_wiki/templates/app/views/user_admin
|
75
|
+
- my_wiki/templates/app/views/content_history/edit.rhtml
|
76
|
+
- my_wiki/templates/app/views/content_history/list.rhtml
|
77
|
+
- my_wiki/templates/app/views/content_history/new.rhtml
|
78
|
+
- my_wiki/templates/app/views/content_history/show.rhtml
|
79
|
+
- my_wiki/templates/app/views/content_history/_form.rhtml
|
80
|
+
- my_wiki/templates/app/views/layouts/my_wiki.rhtml
|
81
|
+
- my_wiki/templates/app/views/login/edit.rhtml
|
82
|
+
- my_wiki/templates/app/views/login/login.rhtml
|
83
|
+
- my_wiki/templates/app/views/login/logout.rhtml
|
84
|
+
- my_wiki/templates/app/views/login/signup.rhtml
|
85
|
+
- my_wiki/templates/app/views/login/welcome.rhtml
|
86
|
+
- my_wiki/templates/app/views/my_wiki/css.rhtml
|
87
|
+
- my_wiki/templates/app/views/my_wiki/diff.rhtml
|
88
|
+
- my_wiki/templates/app/views/my_wiki/edit.rhtml
|
89
|
+
- my_wiki/templates/app/views/my_wiki/fileinfo.rhtml
|
90
|
+
- my_wiki/templates/app/views/my_wiki/list.rhtml
|
91
|
+
- my_wiki/templates/app/views/my_wiki/mails.rhtml
|
92
|
+
- my_wiki/templates/app/views/my_wiki/new.rhtml
|
93
|
+
- my_wiki/templates/app/views/my_wiki/recent.rhtml
|
94
|
+
- my_wiki/templates/app/views/my_wiki/search.rhtml
|
95
|
+
- my_wiki/templates/app/views/my_wiki/search_result.rhtml
|
96
|
+
- my_wiki/templates/app/views/my_wiki/show.rhtml
|
97
|
+
- my_wiki/templates/app/views/my_wiki/_form.rhtml
|
98
|
+
- my_wiki/templates/app/views/my_wiki_admin/index.rhtml
|
99
|
+
- my_wiki/templates/app/views/my_wiki_admin/setting.rhtml
|
100
|
+
- my_wiki/templates/app/views/my_wiki_mailer/inform.rhtml
|
101
|
+
- my_wiki/templates/app/views/page_admin/edit.rhtml
|
102
|
+
- my_wiki/templates/app/views/page_admin/list.rhtml
|
103
|
+
- my_wiki/templates/app/views/page_admin/new.rhtml
|
104
|
+
- my_wiki/templates/app/views/page_admin/show.rhtml
|
105
|
+
- my_wiki/templates/app/views/page_admin/_form.rhtml
|
106
|
+
- my_wiki/templates/app/views/user_admin/change_password.rhtml
|
107
|
+
- my_wiki/templates/app/views/user_admin/list.rhtml
|
108
|
+
- my_wiki/templates/app/views/user_admin/signup.rhtml
|
109
|
+
- my_wiki/templates/app/views/user_admin/_form.rhtml
|
110
|
+
- my_wiki/templates/components/admin
|
111
|
+
- my_wiki/templates/components/list
|
112
|
+
- my_wiki/templates/components/sidebar
|
113
|
+
- my_wiki/templates/components/admin/menu
|
114
|
+
- my_wiki/templates/components/admin/menu_controller.rb
|
115
|
+
- my_wiki/templates/components/admin/menu/menu.rhtml
|
116
|
+
- my_wiki/templates/components/list/list
|
117
|
+
- my_wiki/templates/components/list/list_controller.rb
|
118
|
+
- my_wiki/templates/components/list/list/list.rhtml
|
119
|
+
- my_wiki/templates/components/sidebar/sidebar
|
120
|
+
- my_wiki/templates/components/sidebar/sidebar_controller.rb
|
121
|
+
- my_wiki/templates/components/sidebar/sidebar/show.rhtml
|
122
|
+
- my_wiki/templates/config/routes.rb
|
123
|
+
- my_wiki/templates/db/migrate
|
124
|
+
- my_wiki/templates/db/migrate/001_my_wiki_migration.rb
|
125
|
+
- my_wiki/templates/lib/diff
|
126
|
+
- my_wiki/templates/lib/login_system.rb
|
127
|
+
- my_wiki/templates/lib/markup
|
128
|
+
- my_wiki/templates/lib/my_wiki_plugin.rb
|
129
|
+
- my_wiki/templates/lib/my_wiki_plugins
|
130
|
+
- my_wiki/templates/lib/diff/lcs
|
131
|
+
- my_wiki/templates/lib/diff/lcs.rb
|
132
|
+
- my_wiki/templates/lib/diff/lcs/array.rb
|
133
|
+
- my_wiki/templates/lib/diff/lcs/block.rb
|
134
|
+
- my_wiki/templates/lib/diff/lcs/callbacks.rb
|
135
|
+
- my_wiki/templates/lib/diff/lcs/change.rb
|
136
|
+
- my_wiki/templates/lib/diff/lcs/hunk.rb
|
137
|
+
- my_wiki/templates/lib/diff/lcs/ldiff.rb
|
138
|
+
- my_wiki/templates/lib/diff/lcs/string.rb
|
139
|
+
- my_wiki/templates/lib/markup/simple_markup
|
140
|
+
- my_wiki/templates/lib/markup/simple_markup.rb
|
141
|
+
- my_wiki/templates/lib/markup/simple_markup/fragments.rb
|
142
|
+
- my_wiki/templates/lib/markup/simple_markup/inline.rb
|
143
|
+
- my_wiki/templates/lib/markup/simple_markup/lines.rb
|
144
|
+
- my_wiki/templates/lib/markup/simple_markup/preprocess.rb
|
145
|
+
- my_wiki/templates/lib/markup/simple_markup/to_flow.rb
|
146
|
+
- my_wiki/templates/lib/markup/simple_markup/to_html.rb
|
147
|
+
- my_wiki/templates/lib/markup/simple_markup/to_latex.rb
|
148
|
+
- my_wiki/templates/lib/my_wiki_plugins/christel.rb
|
149
|
+
- my_wiki/templates/lib/my_wiki_plugins/join.rb
|
150
|
+
- my_wiki/templates/lib/my_wiki_plugins/link_to_attach.rb
|
151
|
+
- my_wiki/templates/lib/my_wiki_plugins/recent.rb
|
152
|
+
- my_wiki/templates/public/attached
|
153
|
+
- my_wiki/templates/public/javascripts
|
154
|
+
- my_wiki/templates/public/stylesheets
|
155
|
+
- my_wiki/templates/public/javascripts/my_wiki.js
|
156
|
+
- my_wiki/templates/public/stylesheets/my_wiki
|
157
|
+
- my_wiki/templates/public/stylesheets/my_wiki/back.jpg
|
158
|
+
- my_wiki/templates/public/stylesheets/my_wiki/back1.jpg
|
159
|
+
- my_wiki/templates/public/stylesheets/my_wiki/back2.jpg
|
160
|
+
- my_wiki/templates/public/stylesheets/my_wiki/foot.jpg
|
161
|
+
- my_wiki/templates/public/stylesheets/my_wiki/h1.gif
|
162
|
+
- my_wiki/templates/public/stylesheets/my_wiki/h1.jpg
|
163
|
+
- my_wiki/templates/public/stylesheets/my_wiki/menu.jpg
|
164
|
+
- my_wiki/templates/public/stylesheets/my_wiki/menu2.jpg
|
165
|
+
- my_wiki/templates/public/stylesheets/my_wiki/menu_c.jpg
|
166
|
+
- my_wiki/templates/public/stylesheets/my_wiki/my_wiki.css
|
167
|
+
- my_wiki/templates/public/stylesheets/my_wiki/title.jpg
|
168
|
+
test_files: []
|
169
|
+
|
170
|
+
rdoc_options: []
|
171
|
+
|
172
|
+
extra_rdoc_files: []
|
173
|
+
|
174
|
+
executables: []
|
175
|
+
|
176
|
+
extensions: []
|
177
|
+
|
178
|
+
requirements: []
|
179
|
+
|
180
|
+
dependencies: []
|
181
|
+
|