Soks 0.0.7 → 1.0.0
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/LICENSE.txt +2 -0
- data/README.txt +3 -2
- data/TODO.txt +31 -0
- data/bin/soks-create-wiki.rb +0 -1
- data/lib/authenticators.rb +30 -4
- data/lib/helpers/counter-helpers.rb +132 -0
- data/lib/helpers/default-helpers.rb +170 -169
- data/lib/helpers/mail2wiki-helper.rb +18 -22
- data/lib/helpers/maintenance-helpers.rb +149 -0
- data/lib/helpers/rss2wiki-helper.rb +7 -8
- data/lib/soks-model.rb +82 -54
- data/lib/soks-servlet.rb +126 -108
- data/lib/soks-storage.rb +74 -11
- data/lib/soks-utils.rb +77 -3
- data/lib/soks-view.rb +169 -103
- data/lib/soks.rb +5 -23
- data/templates/default/attachment/newpage.js +4 -13
- data/templates/default/attachment/print_stylesheet.css +2 -7
- data/templates/default/caches/readme.txt +1 -0
- data/templates/default/content/Api%20for%20classes%20to%20modify%20the%20wiki.textile +2 -0
- data/templates/default/content/Author.textile +4 -1
- data/templates/default/content/Automatic%20Summaries.textile +16 -53
- data/templates/default/content/Automatic%20linking%20between%20pages.textile +3 -3
- data/templates/default/content/{bug%3A%20competing%20edits.textile → Bug%3A%20Competing%20edits.textile} +9 -0
- data/templates/default/content/Bug%3A%20Does%20not%20make%20use%20of%20if%2Dmodified%2Dsince%20r.textile +2 -0
- data/templates/default/content/Bug%3A%20E%2Dmail%20addresses%20with%20hyphens%20not%20recognised.textile +17 -0
- data/templates/default/content/Bug%3A%20Email%20adresses%20in%20page%20titles%20cause%20incorrec.textile +3 -0
- data/templates/default/content/Bug%3A%20GEM%20limits%20title%20lengths.textile +3 -1
- data/templates/default/content/Bug%3A%20Memory%20leak.textile +13 -0
- data/templates/default/content/Bug%3A%20Pages%20that%20link%20here%20may%20not%20appear%20on%20r.textile +13 -0
- data/templates/default/content/Bug%3A%20Textile%20mishandles%20paragraphs.textile +4 -0
- data/templates/default/content/Bug%3A%20Unanticipated%20Rollbacks.textile +2 -0
- data/templates/default/content/Bug%3A%20notextile%20does%20not%20prevent%20page%20inserts.textile +2 -0
- data/templates/default/content/Home%20Page.textile +3 -1
- data/templates/default/content/How%20to%20administrate%20this%20wiki.textile +23 -13
- data/templates/default/content/How%20to%20change%20the%20way%20this%20wiki%20looks.textile +3 -1
- data/templates/default/content/How%20to%20export%20a%20site%20from%20this%20wiki.textile +22 -0
- data/templates/default/content/How%20to%20get%20the%20latest%20Soks%20from%20cvs.textile +2 -0
- data/templates/default/content/How%20to%20hack%20soks.textile +2 -0
- data/templates/default/content/How%20to%20import%20a%20site%20from%20instiki.textile +2 -0
- data/templates/default/content/{How%20to%20import%20data%20to%20this%20wiki.textile → How%20to%20import%20data.textile} +3 -7
- data/templates/default/content/How%20to%20install%20Soks.textile +2 -0
- data/templates/default/content/How%20to%20password%20protect%20your%20wiki.textile +21 -11
- data/templates/default/content/How%20to%20report%20a%20bug.textile +2 -1
- data/templates/default/content/How%20to%20upgrade%20soks.textile +22 -0
- data/templates/default/content/How%20to%20use%20the%20keyboard%20shortcuts.textile +2 -2
- data/templates/default/content/How%20to%20use%20this%20wiki.textile +3 -1
- data/templates/default/content/List%20of%20changes.textile +84 -118
- data/templates/default/content/News%3A%20Version%201%2D0%2D0%20released.textile +19 -0
- data/templates/default/content/Pages%20to%20include%20in%20the%20distribution.textile +51 -0
- data/templates/default/content/Per%20Wiki%20Templates.textile +2 -0
- data/templates/default/content/Planned%20Features.textile +30 -9
- data/templates/default/content/README.textile +3 -2
- data/templates/default/content/RSS%20feed.textile +1 -1
- data/templates/default/content/Recent%20changes%20to%20this%20site.textile +283 -0
- data/templates/default/content/SOKS%20features.textile +3 -0
- data/templates/default/content/Site%20Index.textile +202 -0
- data/templates/default/content/Soks%20Licence.textile +2 -0
- data/templates/default/content/Tag%3A%20Include%20this%20page%20in%20the%20distribution.textile +6 -0
- data/templates/default/start.rb +67 -123
- data/templates/default/version.txt +1 -1
- data/templates/default/views/Page_edit.rhtml +7 -7
- data/templates/default/views/{Page_search_results.rhtml → Page_find.rhtml} +9 -3
- data/templates/default/views/Page_linksfromrss.rhtml +24 -0
- data/templates/default/views/Page_listrss.rhtml +46 -0
- data/templates/default/views/Page_meta.rhtml +1 -1
- data/templates/default/views/Page_revision.rhtml +39 -0
- data/templates/default/views/Page_revisions.rhtml +13 -5
- data/templates/default/views/Page_rss.rhtml +8 -8
- data/templates/default/views/Page_view.rhtml +3 -3
- data/templates/default/views/UploadPage_edit.rhtml +8 -8
- data/templates/default/views/frame.rhtml +8 -8
- data/templates/default/views/messages.yaml +1 -0
- data/test/html/2006Mar.html +66 -0
- data/test/html/poignant.html +36 -0
- data/test/html/poignant.textile +36 -0
- data/test/mock-objects.rb +69 -0
- data/test/stress_url_calls.rb +33 -0
- data/test/stress_urls.txt +68 -0
- data/test/test_counter-helper.rb +158 -0
- data/test/test_soks-helper-maintenance.rb +106 -0
- data/test/test_soks-helpers.rb +104 -0
- data/test/test_soks-model.rb +144 -0
- data/test/test_soks-servlet.rb +231 -0
- data/test/test_soks-storage.rb +70 -31
- data/test/test_soks-utils.rb +112 -13
- data/test/test_soks-view.rb +141 -3
- metadata +38 -27
- data/templates/default/content/A%20page%20with%20an%20umlaut%20%F6%20in%20its%20title.textile +0 -1
- data/templates/default/content/All%20News.textile +0 -26
- data/templates/default/content/Bil%20Kleb.textile +0 -1
- data/templates/default/content/Bil.textile +0 -1
- data/templates/default/content/Bill%20Wood.textile +0 -3
- data/templates/default/content/Bug%3A%20RSS%20feed%20does%20not%20validate.textile +0 -10
- data/templates/default/content/Bug%3A%20Type%20a%20title%20here.textile +0 -31
- data/templates/default/content/Instructions%20and%20Howtos.textile +0 -21
- data/templates/default/content/Latest%20News.textile +0 -26
- data/templates/default/content/New%20Recent%20Changes%20class.textile +0 -68
- data/templates/default/content/New%20page%20templates%20or%20categories%20code.textile +0 -68
- data/templates/default/content/News%3A%20Version%200%2E0%2E6%20Released.textile +0 -13
- data/templates/default/content/Recent%20Blog%20Entries.textile +0 -5
- data/templates/default/content/Recent%20Changes%20to%20This%20Site.textile +0 -286
- data/templates/default/content/Ruby.textile +0 -9
- data/templates/default/content/Skorgu.textile +0 -3
- data/templates/default/content/ctrl%2Dn.textile +0 -1
- data/templates/default/content/let%20me%20know.textile +0 -1
- data/templates/default/content/sandbox.textile +0 -20
- data/templates/default/content/tamc.textile +0 -1
- data/templates/default/content/tamc2.textile +0 -1
data/test/test_soks-view.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
require 'test/unit'
|
|
2
|
-
require '
|
|
3
|
-
require '
|
|
2
|
+
require 'fileutils'
|
|
3
|
+
require 'mock-objects'
|
|
4
|
+
require 'generator'
|
|
4
5
|
|
|
5
6
|
class TestBruteMatch < Test::Unit::TestCase
|
|
6
7
|
|
|
@@ -11,6 +12,11 @@ class TestBruteMatch < Test::Unit::TestCase
|
|
|
11
12
|
@match['one two'] = :one_two
|
|
12
13
|
@match['two three'] = :two_three
|
|
13
14
|
@match['three: four'] = :three_colon_four
|
|
15
|
+
@match['2005 Mar'] = :a_date
|
|
16
|
+
@match["l'equipe"] = :the_team
|
|
17
|
+
@match["Site Index" ] = :index
|
|
18
|
+
@match["Site Index A."] = :index_a
|
|
19
|
+
@match[".Site Index A."] = :dot_index_a
|
|
14
20
|
end
|
|
15
21
|
|
|
16
22
|
def test_basic
|
|
@@ -27,10 +33,25 @@ class TestBruteMatch < Test::Unit::TestCase
|
|
|
27
33
|
end
|
|
28
34
|
|
|
29
35
|
def test_fullwords
|
|
30
|
-
assert_equal( [['two',:two]], match('aone two
|
|
36
|
+
assert_equal( [['two',:two]], match('aone two!') )
|
|
31
37
|
assert_equal( [['two three',:two_three]], match('two three: fourormore') )
|
|
32
38
|
end
|
|
33
39
|
|
|
40
|
+
def test_number_match
|
|
41
|
+
assert_equal( [['2005 Mar',:a_date]], match('forward to 2005 Mar >') )
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def test_single_quote
|
|
45
|
+
assert_equal( [["L'EQUIPE",:the_team]], match("Oh! L'EQUIPE? C'est...") )
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def test_index
|
|
49
|
+
assert_equal( :index_a, @match['site index a.'])
|
|
50
|
+
assert_equal( [['Site Index',:index]],match("Site Index B. ball") )
|
|
51
|
+
assert_equal( [['Site Index A.',:index_a]],match("Site Index A. ball") )
|
|
52
|
+
assert_equal( [['.Site Index A.',:dot_index_a]],match(".Site Index A. ball") )
|
|
53
|
+
end
|
|
54
|
+
|
|
34
55
|
def match( text )
|
|
35
56
|
matches = []
|
|
36
57
|
@match.match( text ) { |m,p|
|
|
@@ -38,6 +59,123 @@ class TestBruteMatch < Test::Unit::TestCase
|
|
|
38
59
|
"$1"
|
|
39
60
|
}
|
|
40
61
|
matches
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
class TestView < Test::Unit::TestCase
|
|
66
|
+
include TearDownableWiki
|
|
67
|
+
|
|
68
|
+
def test_url_name_for_page_name
|
|
69
|
+
assert_equal('Testpage', @view.url_name_for_page_name('TestPage'))
|
|
70
|
+
assert_equal('APageWithPunctuation', @view.url_name_for_page_name('a, page! \'with PuNcTuation?'))
|
|
71
|
+
assert_equal('APageWithPunctuation-2', @view.url_name_for_page_name('!a, page! \'with PuNcTuation'))
|
|
72
|
+
assert_equal('APageWithPunctuation-3', @view.url_name_for_page_name('.a, page! \'with PuNcTuation'))
|
|
73
|
+
assert_equal("PunctuationOnlyInTitle", @view.url_name_for_page_name('!!!'))
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def test_page_name_for_url_name
|
|
77
|
+
assert_equal('UnknownPage', @view.page_name_for_url_name('UnknownPage'))
|
|
78
|
+
assert_equal('Unknown Page!', @view.page_name_for_url_name('Unknown Page!'))
|
|
79
|
+
@wiki.revise('Unknown Page!','hello world','urltest')
|
|
80
|
+
@wiki.revise('Unknown Page?','hello world','urltest')
|
|
81
|
+
assert_equal('Unknown Page!', @view.page_name_for_url_name('UnknownPage'))
|
|
82
|
+
assert_equal('Unknown Page?', @view.page_name_for_url_name('UnknownPage-2'))
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
def test_moved_page_name_for_url_name
|
|
86
|
+
@wiki.revise('capital page','stuff','test')
|
|
87
|
+
assert_equal('capital page', @view.page_name_for_url_name('CapitalPage'))
|
|
88
|
+
@wiki.move('capital page','Capital Page','test')
|
|
89
|
+
assert_equal('Capital Page', @view.page_name_for_url_name('CapitalPage'))
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
def test_render
|
|
93
|
+
@wiki.revise('test view','hello world','tamc2')
|
|
94
|
+
assert_equal('hello world', @wiki.page('test view').content )
|
|
95
|
+
assert_match( /<p>hello world<\/p>/, @view.render( 'test view' ) )
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
class TestErbHelper < Test::Unit::TestCase
|
|
100
|
+
include TearDownableWiki
|
|
101
|
+
|
|
102
|
+
def test_url
|
|
103
|
+
assert_equal( 'http://testsite.com/view/HomePage', @view.url( 'home page' ) )
|
|
104
|
+
assert_equal( 'http://testsite.com/edit/HomePage', @view.url( 'home page','edit' ) )
|
|
105
|
+
assert_equal( 'http://testsite.com/view/LHomePage', @view.url( "l'home page" ) )
|
|
106
|
+
assert_equal( 'http://testsite.com/view/LHomePage-2', @view.url( "l'home page?" ) )
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
class TestPagesTextile < Test::Unit::TestCase
|
|
111
|
+
include TearDownableWiki
|
|
112
|
+
|
|
113
|
+
def test_page
|
|
114
|
+
page = Page.new('test page')
|
|
115
|
+
page.revise('hello world!','test_person')
|
|
116
|
+
assert_equal('hello world!', page.textile )
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
def test_image_page
|
|
120
|
+
page = ImagePage.new('test image page')
|
|
121
|
+
page.revise('/attached/hello.jpg','test_person')
|
|
122
|
+
assert_equal('!http://testsite.com/attached/hello.jpg!:http://testsite.com/view/TestImagePage', page.textile(@view) )
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
def test_attachment_page
|
|
126
|
+
page = AttachmentPage.new('test attachment page')
|
|
127
|
+
page.revise('/attached/hello.jpg','test_person')
|
|
128
|
+
assert_equal("[[ test attachment page => http://testsite.com/attached/hello.jpg ]]\n", page.textile(@view) )
|
|
129
|
+
end
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
class TestWikiRedCloth < Test::Unit::TestCase
|
|
133
|
+
include TearDownableWiki
|
|
134
|
+
|
|
135
|
+
def setup
|
|
136
|
+
super
|
|
137
|
+
AutomaticUpdateCrossLinks.new( @wiki, @view )
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
def test_basics
|
|
141
|
+
@view.revise( 'textile basics', IO.readlines('test/html/Poignant.textile').join, '_why' )
|
|
142
|
+
wait_for_queue_to_empty
|
|
143
|
+
page = @wiki.page('textile basics')
|
|
144
|
+
desired_html = IO.readlines('test/html/Poignant.html').join.gsub( /\n+/, "\n" )
|
|
145
|
+
actual_html = @view.redcloth( page ).gsub( /\n+/, "\n" )
|
|
146
|
+
SyncEnumerator.new(desired_html,actual_html).each do |desired,actual|
|
|
147
|
+
assert_equal( desired, actual )
|
|
148
|
+
end
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
def test_apostrophe_in_title
|
|
152
|
+
@view.revise("L'equipe",'a test page','tamc2')
|
|
153
|
+
@view.revise('test apostrophe',"go L'equipe!",'tamc2')
|
|
154
|
+
wait_for_queue_to_empty
|
|
155
|
+
assert_equal("<p>go <a href='http://testsite.com/view/LEquipe' class='automatic'>L'equipe</a>!</p>",html('test apostrophe'))
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
def test_quotes_in_title
|
|
159
|
+
@view.revise('A "great page" of stuff','a test page','tamc2')
|
|
160
|
+
@view.revise('test quotes in title','A "great page" of stuff','tamc2')
|
|
161
|
+
wait_for_queue_to_empty
|
|
162
|
+
assert_equal( %q{<p><a href='http://testsite.com/view/AGreatPageOfStuff' class='automatic'>A "great page" of stuff</a></p>},html('test quotes in title'))
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
def test_wiki_links
|
|
166
|
+
@view.revise('test1','[[test => a wonderfull page?great=good ]]','tamc2')
|
|
167
|
+
@view.revise('test2','[[test => /edit/a wonderfull page?great =good ]]','tamc2')
|
|
168
|
+
@view.revise('test3','[[test => /revision/a wonderfull page?great=good?revision=1 ]]','tamc2')
|
|
169
|
+
wait_for_queue_to_empty
|
|
170
|
+
assert_equal( %q{<a href='http://testsite.com/view/AWonderfullPageGreatGood' class='missing'>test</a>},html('test1'))
|
|
171
|
+
assert_equal( %q{<a href='http://testsite.com/edit/AWonderfullPageGreatGood-2' class='missing'>test</a>},html('test2'))
|
|
172
|
+
assert_equal( %q{<a href='http://testsite.com/revision/AWonderfullPageGreatGood?revision=1' class='missing'>test</a>},html('test3'))
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
private
|
|
176
|
+
|
|
177
|
+
def html( page_name )
|
|
178
|
+
@view.redcloth(@view.page(page_name))
|
|
41
179
|
end
|
|
42
180
|
|
|
43
181
|
end
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.8.
|
|
2
|
+
rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: Soks
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.0
|
|
7
|
-
date: 2005-
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
date: 2005-07-24 00:00:00 +01:00
|
|
8
8
|
summary: Yet another wiki.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
@@ -25,6 +25,8 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
|
25
25
|
version: 0.0.0
|
|
26
26
|
version:
|
|
27
27
|
platform: ruby
|
|
28
|
+
signing_key:
|
|
29
|
+
cert_chain:
|
|
28
30
|
authors:
|
|
29
31
|
- Tom Counsell
|
|
30
32
|
files:
|
|
@@ -56,14 +58,17 @@ files:
|
|
|
56
58
|
- lib/soks-utils.rb
|
|
57
59
|
- lib/soks-view.rb
|
|
58
60
|
- lib/soks.rb
|
|
61
|
+
- lib/helpers/counter-helpers.rb
|
|
59
62
|
- lib/helpers/default-helpers.rb
|
|
60
63
|
- lib/helpers/mail2wiki-helper.rb
|
|
61
64
|
- lib/helpers/mail2wiki-test.rb
|
|
65
|
+
- lib/helpers/maintenance-helpers.rb
|
|
62
66
|
- lib/helpers/rss2wiki-helper.rb
|
|
63
67
|
- lib/helpers/wiki2html.rb
|
|
64
68
|
- templates/default
|
|
65
69
|
- templates/default/attachment
|
|
66
70
|
- templates/default/banned_titles.txt
|
|
71
|
+
- templates/default/caches
|
|
67
72
|
- templates/default/content
|
|
68
73
|
- templates/default/start.rb
|
|
69
74
|
- templates/default/version.txt
|
|
@@ -80,24 +85,21 @@ files:
|
|
|
80
85
|
- templates/default/attachment/rss.png
|
|
81
86
|
- templates/default/attachment/stylesheet.css
|
|
82
87
|
- templates/default/attachment/tiny-logo thumb.bmp
|
|
83
|
-
- templates/default/
|
|
84
|
-
- templates/default/content/All%20News.textile
|
|
88
|
+
- templates/default/caches/readme.txt
|
|
85
89
|
- templates/default/content/Api%20for%20classes%20to%20modify%20the%20wiki.textile
|
|
86
90
|
- templates/default/content/Author.textile
|
|
87
91
|
- templates/default/content/Automatic%20linking%20between%20pages.textile
|
|
88
92
|
- templates/default/content/Automatic%20Summaries.textile
|
|
89
|
-
- templates/default/content/
|
|
90
|
-
- templates/default/content/Bil.textile
|
|
91
|
-
- templates/default/content/Bill%20Wood.textile
|
|
92
|
-
- templates/default/content/bug%3A%20competing%20edits.textile
|
|
93
|
+
- templates/default/content/Bug%3A%20Competing%20edits.textile
|
|
93
94
|
- templates/default/content/Bug%3A%20Does%20not%20make%20use%20of%20if%2Dmodified%2Dsince%20r.textile
|
|
95
|
+
- templates/default/content/Bug%3A%20E%2Dmail%20addresses%20with%20hyphens%20not%20recognised.textile
|
|
96
|
+
- templates/default/content/Bug%3A%20Email%20adresses%20in%20page%20titles%20cause%20incorrec.textile
|
|
94
97
|
- templates/default/content/Bug%3A%20GEM%20limits%20title%20lengths.textile
|
|
98
|
+
- templates/default/content/Bug%3A%20Memory%20leak.textile
|
|
95
99
|
- templates/default/content/Bug%3A%20notextile%20does%20not%20prevent%20page%20inserts.textile
|
|
96
|
-
- templates/default/content/Bug%3A%
|
|
100
|
+
- templates/default/content/Bug%3A%20Pages%20that%20link%20here%20may%20not%20appear%20on%20r.textile
|
|
97
101
|
- templates/default/content/Bug%3A%20Textile%20mishandles%20paragraphs.textile
|
|
98
|
-
- templates/default/content/Bug%3A%20Type%20a%20title%20here.textile
|
|
99
102
|
- templates/default/content/Bug%3A%20Unanticipated%20Rollbacks.textile
|
|
100
|
-
- templates/default/content/ctrl%2Dn.textile
|
|
101
103
|
- templates/default/content/Home%20Page.textile
|
|
102
104
|
- templates/default/content/How%20to%20administrate%20this%20wiki.textile
|
|
103
105
|
- templates/default/content/How%20to%20change%20the%20way%20this%20wiki%20looks.textile
|
|
@@ -105,50 +107,59 @@ files:
|
|
|
105
107
|
- templates/default/content/How%20to%20get%20the%20latest%20Soks%20from%20cvs.textile
|
|
106
108
|
- templates/default/content/How%20to%20hack%20soks.textile
|
|
107
109
|
- templates/default/content/How%20to%20import%20a%20site%20from%20instiki.textile
|
|
108
|
-
- templates/default/content/How%20to%20import%20data
|
|
110
|
+
- templates/default/content/How%20to%20import%20data.textile
|
|
109
111
|
- templates/default/content/How%20to%20install%20Soks.textile
|
|
110
112
|
- templates/default/content/How%20to%20password%20protect%20your%20wiki.textile
|
|
111
113
|
- templates/default/content/How%20to%20report%20a%20bug.textile
|
|
114
|
+
- templates/default/content/How%20to%20upgrade%20soks.textile
|
|
112
115
|
- templates/default/content/How%20to%20use%20the%20keyboard%20shortcuts.textile
|
|
113
116
|
- templates/default/content/How%20to%20use%20this%20wiki.textile
|
|
114
|
-
- templates/default/content/Instructions%20and%20Howtos.textile
|
|
115
|
-
- templates/default/content/Latest%20News.textile
|
|
116
|
-
- templates/default/content/let%20me%20know.textile
|
|
117
117
|
- templates/default/content/List%20of%20changes.textile
|
|
118
|
-
- templates/default/content/
|
|
119
|
-
- templates/default/content/
|
|
120
|
-
- templates/default/content/News%3A%20Version%200%2E0%2E6%20Released.textile
|
|
118
|
+
- templates/default/content/News%3A%20Version%201%2D0%2D0%20released.textile
|
|
119
|
+
- templates/default/content/Pages%20to%20include%20in%20the%20distribution.textile
|
|
121
120
|
- templates/default/content/Per%20Wiki%20Templates.textile
|
|
122
121
|
- templates/default/content/Picture%20of%20a%20pair%20of%20soks.textile
|
|
123
122
|
- templates/default/content/Planned%20Features.textile
|
|
124
123
|
- templates/default/content/README.textile
|
|
125
|
-
- templates/default/content/Recent%
|
|
126
|
-
- templates/default/content/Recent%20Changes%20to%20This%20Site.textile
|
|
124
|
+
- templates/default/content/Recent%20changes%20to%20this%20site.textile
|
|
127
125
|
- templates/default/content/RSS%20feed.textile
|
|
128
|
-
- templates/default/content/Ruby.textile
|
|
129
|
-
- templates/default/content/sandbox.textile
|
|
130
126
|
- templates/default/content/Sidebar%20Page.textile
|
|
131
|
-
- templates/default/content/
|
|
127
|
+
- templates/default/content/Site%20Index.textile
|
|
132
128
|
- templates/default/content/SOKS%20features.textile
|
|
133
129
|
- templates/default/content/Soks%20Licence.textile
|
|
134
|
-
- templates/default/content/
|
|
135
|
-
- templates/default/content/tamc2.textile
|
|
130
|
+
- templates/default/content/Tag%3A%20Include%20this%20page%20in%20the%20distribution.textile
|
|
136
131
|
- templates/default/views/frame.rhtml
|
|
137
132
|
- templates/default/views/messages.yaml
|
|
138
133
|
- templates/default/views/Page_content.rhtml
|
|
139
134
|
- templates/default/views/Page_edit.rhtml
|
|
135
|
+
- templates/default/views/Page_find.rhtml
|
|
136
|
+
- templates/default/views/Page_linksfromrss.rhtml
|
|
137
|
+
- templates/default/views/Page_listrss.rhtml
|
|
140
138
|
- templates/default/views/Page_meta.rhtml
|
|
141
139
|
- templates/default/views/Page_print.rhtml
|
|
140
|
+
- templates/default/views/Page_revision.rhtml
|
|
142
141
|
- templates/default/views/Page_revisions.rhtml
|
|
143
142
|
- templates/default/views/Page_rss.rhtml
|
|
144
|
-
- templates/default/views/Page_search_results.rhtml
|
|
145
143
|
- templates/default/views/Page_view.rhtml
|
|
146
144
|
- templates/default/views/UploadPage_edit.rhtml
|
|
145
|
+
- test/html
|
|
146
|
+
- test/mock-objects.rb
|
|
147
|
+
- test/stress_url_calls.rb
|
|
148
|
+
- test/stress_urls.txt
|
|
149
|
+
- test/test_counter-helper.rb
|
|
150
|
+
- test/test_soks-helper-maintenance.rb
|
|
151
|
+
- test/test_soks-helpers.rb
|
|
152
|
+
- test/test_soks-model.rb
|
|
153
|
+
- test/test_soks-servlet.rb
|
|
147
154
|
- test/test_soks-storage.rb
|
|
148
155
|
- test/test_soks-utils.rb
|
|
149
156
|
- test/test_soks-view.rb
|
|
157
|
+
- test/html/2006Mar.html
|
|
158
|
+
- test/html/poignant.html
|
|
159
|
+
- test/html/poignant.textile
|
|
150
160
|
- LICENSE.txt
|
|
151
161
|
- README.txt
|
|
162
|
+
- TODO.txt
|
|
152
163
|
test_files: []
|
|
153
164
|
rdoc_options: []
|
|
154
165
|
extra_rdoc_files: []
|
data/templates/default/content/A%20page%20with%20an%20umlaut%20%F6%20in%20its%20title.textile
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Test whether this works.
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
h2. All News
|
|
2
|
-
|
|
3
|
-
p{font-size: x-small;}. All News was created automatically from pages whose title matches /^News:/i.
|
|
4
|
-
|
|
5
|
-
<automaticsummary>
|
|
6
|
-
|
|
7
|
-
<div class='subpage'>
|
|
8
|
-
[[ News: Version 0.0.6 Released ]] <br />
|
|
9
|
-
|
|
10
|
-
It gives me great pleasure to announce version 0.0.6 of Soks - Yet another ruby wiki. You can get it from http://rubyforge.org/frs/?group_id=481&release_id=1807 or, if you have gems, run @sudo gem install Soks@.
|
|
11
|
-
|
|
12
|
-
This release fixes quite a lot of bugs, provides a few more settings that can be tweaked, and the default 'look' has been toned down. See list of changes for details, and please take a note of the known bugs.
|
|
13
|
-
|
|
14
|
-
Thanks to all those that helped with bugs, suggestions and code.
|
|
15
|
-
|
|
16
|
-
Grateful for feedback at tamc@rubyforge.org
|
|
17
|
-
|
|
18
|
-
*WARNING;* This Bug: Internet Exploror 6.0 incompatibilities during page edits is really annoying for users of IE 6. Temporary fixes can be found on that page, and I will make a new release soon to fix.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
p(more). [[(more) => News: Version 0.0.6 Released]]
|
|
22
|
-
|
|
23
|
-
</div>
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
</automaticsummary>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
A steward of "FUN3D":http://fun3d.larc.nasa.gov software development at "NASA":http://www.larc.nasa.gov.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
See Bil Kleb
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Checking the RSS feed against the validator at http://feedvalidator.org/ reveals four errors:
|
|
2
|
-
|
|
3
|
-
# The appears to be encoded as "UTF-8", but your server is reporting "US-ASCII"
|
|
4
|
-
# 'utf8' codec can't decode bytes in position 1304-1307: invalid data (maybe a high-bit character?) - it is an umlaut !
|
|
5
|
-
# link must be a full and valid URL - They haven't been url encoded and still contain spaces and the like
|
|
6
|
-
# author must include an email address - Just has the authors name
|
|
7
|
-
|
|
8
|
-
--
|
|
9
|
-
|
|
10
|
-
Partially fixed in v-0-0-6 by changing the xml coding.
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
Please click in the box above and give a meaningful title, then fill out any information below that you can. It is all optional, and I'm grateful for whatever you provide.
|
|
2
|
-
|
|
3
|
-
* Your name:
|
|
4
|
-
* Soks version:
|
|
5
|
-
* Your operating system:
|
|
6
|
-
* Your version of ruby:
|
|
7
|
-
* Your browser:
|
|
8
|
-
|
|
9
|
-
And please describe the problem below:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
And if you have any suggestions for the cause or a fix, please put it below:
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
Thank you *very* much
|
|
30
|
-
|
|
31
|
-
tamc
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
h2. Instructions and Howtos
|
|
2
|
-
|
|
3
|
-
p{font-size: x-small;}. Instructions and Howtos was created automatically from pages whose title matches ==/^How to /i==.
|
|
4
|
-
|
|
5
|
-
<automaticsummary>
|
|
6
|
-
|
|
7
|
-
* [[ How to administrate this wiki ]]
|
|
8
|
-
* [[ How to change the way this wiki looks ]]
|
|
9
|
-
* [[ How to export a site from this wiki ]]
|
|
10
|
-
* [[ How to hack soks ]]
|
|
11
|
-
* [[ How to import a site from instiki ]]
|
|
12
|
-
* [[ How to install Soks ]]
|
|
13
|
-
* [[ How to use the keyboard shortcuts ]]
|
|
14
|
-
* [[ How to use this wiki ]]
|
|
15
|
-
* [[ How to report a bug ]]
|
|
16
|
-
* [[ How to get the latest Soks from cvs ]]
|
|
17
|
-
* [[ How to password protect your wiki ]]
|
|
18
|
-
* [[ How to import data to this wiki ]]
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
</automaticsummary>
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
h2. Latest News
|
|
2
|
-
|
|
3
|
-
p{font-size: x-small;}. Latest News was created automatically from pages whose title matches ==/^News:/i==.
|
|
4
|
-
|
|
5
|
-
<automaticsummary>
|
|
6
|
-
|
|
7
|
-
<div class='subpage'>
|
|
8
|
-
[[ News: Version 0.0.6 Released ]] <br />
|
|
9
|
-
|
|
10
|
-
It gives me great pleasure to announce version 0.0.6 of Soks - Yet another ruby wiki. You can get it from http://rubyforge.org/frs/?group_id=481&release_id=1807 or, if you have gems, run @sudo gem install Soks@.
|
|
11
|
-
|
|
12
|
-
This release fixes quite a lot of bugs, provides a few more settings that can be tweaked, and the default 'look' has been toned down. See list of changes for details, and please take a note of the known bugs.
|
|
13
|
-
|
|
14
|
-
Thanks to all those that helped with bugs, suggestions and code.
|
|
15
|
-
|
|
16
|
-
Grateful for feedback at tamc@rubyforge.org
|
|
17
|
-
|
|
18
|
-
*WARNING;* This Bug: Internet Exploror 6.0 incompatibilities during page edits is really annoying for users of IE 6. Temporary fixes can be found on that page, and I will make a new release soon to fix.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
p(more). [[(more) => News: Version 0.0.6 Released]]
|
|
22
|
-
|
|
23
|
-
</div>
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
</automaticsummary>
|