Skip to content

Commit 103ba91

Browse files
committed
update redmine.rubychan.de links to odd-eyed-code.org
1 parent cd6b93a commit 103ba91

File tree

3 files changed

+43
-43
lines changed

3 files changed

+43
-43
lines changed

Changes-pre-1.0.textile

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,27 @@ h3. Rake tasks
1515
h3. @Scanners::Scanner@
1616

1717
* *NEW* method @#scan_rest@ replaces @scan_until(/\z/)@, which is broken in JRuby 1.6 --1.9 mode.
18-
See "#297":http://redmine.rubychan.de/issues/297.
18+
See "#297":http://odd-eyed-code.org/issues/297.
1919

2020
h3. @Scanners::CSS@
2121

2222
* *FIXED* LOC counting (should be 0).
23-
See "#296":http://redmine.rubychan.de/issues/296.
23+
See "#296":http://odd-eyed-code.org/issues/296.
2424

2525
h3. @Scanners::Ruby@
2626

2727
* *FIXED* the @IDENT@ pattern not to use character properties, which are broken in JRuby 1.6 --1.9 mode.
28-
See "#297":http://redmine.rubychan.de/issues/297, thanks to banister for reporting!
28+
See "#297":http://odd-eyed-code.org/issues/297, thanks to banister for reporting!
2929

3030
h3. @Scanners::SQL@
3131

3232
* *ADDED* more keywords: @between@, @databases@, @distinct@, @fields@, @full@, @having@, @is@, @prompt@, @tables@.
33-
See "#221":http://redmine.rubychan.de/issues/221, thanks to Etienne Massip again.
33+
See "#221":http://odd-eyed-code.org/issues/221, thanks to Etienne Massip again.
3434

3535
h3. @FileType@
3636

3737
* *NEW* regonizes ColdFusion file type extensions @.cfm@ and @.cfc@ as XML.
38-
See "#298":http://redmine.rubychan.de/issues/298, thanks to Emidio Stani.
38+
See "#298":http://odd-eyed-code.org/issues/298, thanks to Emidio Stani.
3939

4040

4141
h2. Changes in 0.9.7 "Etienne" [2011-01-14]
@@ -49,7 +49,7 @@ h3. Tests
4949
h3. @Scanners::JavaScript@
5050

5151
* *FIXED* @KEY_CHECK_PATTERN@ regexp
52-
See "#264":http://redmine.rubychan.de/issues/264, thanks to Etienne Massip!
52+
See "#264":http://odd-eyed-code.org/issues/264, thanks to Etienne Massip!
5353

5454

5555
h2. Changes in 0.9.6 "WoNáDo" [2010-11-25]
@@ -68,11 +68,11 @@ h3. @Scanners::Ruby@
6868

6969
h2. Changes in 0.9.5 "Germany.rb" [2010-09-28]
7070

71-
Support for Rubinius ("#251":http://redmine.rubychan.de/issues/251), improved mutlibyte handling, Ruby 1.9 syntax, and valid HTML.
71+
Support for Rubinius ("#251":http://odd-eyed-code.org/issues/251), improved mutlibyte handling, Ruby 1.9 syntax, and valid HTML.
7272

7373
h3. @Encoders::HTML@
7474

75-
* *FIXED*: Line tokens use @span@ with @display: block@ instead of @div@, which was invalid HTML ("#255":http://redmine.rubychan.de/issues/255).
75+
* *FIXED*: Line tokens use @span@ with @display: block@ instead of @div@, which was invalid HTML ("#255":http://odd-eyed-code.org/issues/255).
7676

7777
h3. @Scanner::Scanner@
7878

@@ -94,18 +94,18 @@ h3. @Scanners::PHP@
9494

9595
h3. @Scanners::Ruby@
9696

97-
* *ADDED* support for some Ruby 1.9 syntax ("#254":http://redmine.rubychan.de/issues/254):
97+
* *ADDED* support for some Ruby 1.9 syntax ("#254":http://odd-eyed-code.org/issues/254):
9898
** the @->@ lambda shortcut
9999
** new Hash syntax using colons (@{ a: b }@)
100100
* *FIXED*: Use @UTF-8@ encoding.
101-
* *IMPROVED* unicode support on Ruby 1.8 ("#253":http://redmine.rubychan.de/issues/253).
102-
* *FIXED* recognition of non-ASCII identifiers in Ruby 1.9, JRuby, and Rubinius ("#253":http://redmine.rubychan.de/issues/253).
101+
* *IMPROVED* unicode support on Ruby 1.8 ("#253":http://odd-eyed-code.org/issues/253).
102+
* *FIXED* recognition of non-ASCII identifiers in Ruby 1.9, JRuby, and Rubinius ("#253":http://odd-eyed-code.org/issues/253).
103103
* *CHANGED* heredoc recognition to ignore delimiters starting with a digit. This is incorrect, but causes less false positives.
104104

105105
h3. @Scanners::SQL@
106106

107107
* *FIXED* scanning of comments; nice catch, Rubinius!
108-
("#252":http://redmine.rubychan.de/issues/252)
108+
("#252":http://odd-eyed-code.org/issues/252)
109109

110110

111111
h2. Changes in 0.9.4 "Ramadan" [2010-08-31]
@@ -115,28 +115,28 @@ Updated command line interface and minor scanner fixes for the Diff, HTML, and R
115115
h3. @coderay@ executable
116116

117117
* *FIXED*: Partly rewritten, simplified, fixed.
118-
("#244":http://redmine.rubychan.de/issues/244)
118+
("#244":http://odd-eyed-code.org/issues/244)
119119

120120
h3. @Scanners::Diff@
121121

122122
* *FIXED* handling of change headers with code on the same line as the @@ marker.
123-
("#247":http://redmine.rubychan.de/issues/242)
123+
("#247":http://odd-eyed-code.org/issues/242)
124124

125125
h3. @Scanners::HTML@
126126

127127
* *FIXED* a missing regexp modifier that slowed down the scanning.
128-
("#245":http://redmine.rubychan.de/issues/245)
128+
("#245":http://odd-eyed-code.org/issues/245)
129129

130130
h3. @Scanners::RHTML@
131131

132132
* *FIXED* highlighting of ERB comment blocks.
133-
("#246":http://redmine.rubychan.de/issues/246)
133+
("#246":http://odd-eyed-code.org/issues/246)
134134

135135

136136
h2. Changes in 0.9.3 "Eyjafjallajökull" [2010-04-18]
137137

138138
* *FIXED*: Documentation of Tokens.
139-
("#218":http://redmine.rubychan.de/issues/218)
139+
("#218":http://odd-eyed-code.org/issues/218)
140140

141141
h3. @coderay@ executable
142142

@@ -160,18 +160,18 @@ h2. Changes in 0.9.2 "Flameeyes" [2010-03-14]
160160
* *NEW* Basic tests and a _Rakefile_ are now included in the Gem. [Flameeyes]
161161
A @doc@ task is also included.
162162
* *FIXED* Use @$CODERAY_DEBUG@ for debugging instead of @$DEBUG@. [Trans]
163-
("#192":http://redmine.rubychan.de/issues/192)
163+
("#192":http://odd-eyed-code.org/issues/192)
164164
* *REMOVED* @Term::Ansicolor@ was bundled under _lib/_, but not used. [Flameeyes]
165-
("#205":http://redmine.rubychan.de/issues/205)
165+
("#205":http://odd-eyed-code.org/issues/205)
166166
* *WORKAROUND* for Ruby bug
167167
"#2745":http://redmine.ruby-lang.org/issues/show/2745
168168

169169
h3. @Encoders::Term@
170170

171171
* *FIXED* strings are closed correctly
172-
("#138":http://redmine.rubychan.de/issues/138)
172+
("#138":http://odd-eyed-code.org/issues/138)
173173
* *FIXED* several token kinds had no associated color
174-
("#139":http://redmine.rubychan.de/issues/139)
174+
("#139":http://odd-eyed-code.org/issues/139)
175175
* *NEW* alias @terminal@
176176

177177
*NOTE:* This encoder will be renamed to @Encoders::Terminal@ in the next release.
@@ -183,17 +183,17 @@ h3. @Scanners::Debug@
183183
h3. @Scanners::Groovy@
184184

185185
* *FIXED* token kind of closing brackets is @:operator@ instead of @nil@
186-
("#148":http://redmine.rubychan.de/issues/148)
186+
("#148":http://odd-eyed-code.org/issues/148)
187187

188188
h3. @Scanners::PHP@
189189

190190
* *FIXED* allow @\@ operator (namespace separator)
191-
("#209":http://redmine.rubychan.de/issues/209)
191+
("#209":http://odd-eyed-code.org/issues/209)
192192

193193
h3. @Scanners::YAML@
194194

195195
* *FIXED* doesn't send debug tokens when @$DEBUG@ is true [Trans]
196-
("#149":http://redmine.rubychan.de/issues/149)
196+
("#149":http://odd-eyed-code.org/issues/149)
197197

198198

199199
h2. Changes in 0.9.1 [2009-12-31]
@@ -283,7 +283,7 @@ h3. @Encoders::Text@
283283

284284
h3. @Encoders::XML@
285285

286-
* @FIXED@ ("#94":http://redmine.rubychan.de/issues/94)
286+
* @FIXED@ ("#94":http://odd-eyed-code.org/issues/94)
287287

288288
It didn't work at all.
289289

@@ -404,13 +404,13 @@ h3. @FileType@
404404

405405
h3. @CaseIgnoringWordList@
406406

407-
* *FIXED* ("#97":http://redmine.rubychan.de/issues/97)
407+
* *FIXED* ("#97":http://odd-eyed-code.org/issues/97)
408408

409409
The default value is no longer ignored.
410410

411411
h3. @ForRedCloth@
412412

413-
* *FIXED* for RedCloth versions 4.2.0+ ("#119":http://redmine.rubychan.de/issues/119)
413+
* *FIXED* for RedCloth versions 4.2.0+ ("#119":http://odd-eyed-code.org/issues/119)
414414

415415
h3. Cleanups
416416

Changes.textile

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ h3. *RENAMED*: @TokenKinds@
8787

8888
Renamed from @Tokens::ClassOfKind@ (was also @Tokens::AbbreviationForKind@ for a while).
8989
The term "token class" is no longer used in CodeRay. Instead, tokens have _kinds_.
90-
See "#122":http://redmine.rubychan.de/issues/122.
90+
See "#122":http://odd-eyed-code.org/issues/122.
9191

9292
* *CHANGED* all token CSS classes to readable names.
9393
* *ADDED* token kinds @:filename@, @:namespace@, and @:eyecatcher@.
@@ -118,9 +118,9 @@ h3. @Encoders::HTML@
118118
The HTML encoder was cleaned up and simplified.
119119

120120
* *NEW*: HTML5 and CSS 3 compatible.
121-
See "#215":http://redmine.rubychan.de/issues/215.
121+
See "#215":http://odd-eyed-code.org/issues/215.
122122
* *ADDED* support for @:line_number_anchors@.
123-
See "#208":http://redmine.rubychan.de/issues/208.
123+
See "#208":http://odd-eyed-code.org/issues/208.
124124
* *CHANGED* the default style to @:alpha@.
125125
* *CHANGED*: Use double click to toggle line numbers in table mode (as single
126126
click jumps to an anchor.)
@@ -148,7 +148,7 @@ h3. @Encoders::Text@
148148
h3. *RENAMED*: @Encoders::TokenKindFilter@ (was @Encoders::TokenClassFilter@)
149149

150150
* *NEW*: Handles token groups.
151-
See "#223":http://redmine.rubychan.de/issues/223.
151+
See "#223":http://odd-eyed-code.org/issues/223.
152152
* *RENAMED* @include_block_token?@ to @include_group?@.
153153

154154
h3. @Encoders::Statistic@
@@ -175,7 +175,7 @@ Thanks to Licenser, CodeRay now supports the Clojure language.
175175
h3. @Scanners::CSS@
176176

177177
* *NEW*: Rudimentary support for the @attr@, @counter@, and @counters@ functions.
178-
See "#224":http://redmine.rubychan.de/issues/224.
178+
See "#224":http://odd-eyed-code.org/issues/224.
179179
* *NEW*: Rudimentary support for CSS 3 colors.
180180
* *CHANGED*: Attribute selectors are highlighted as @:attribute_name@ instead of @:string@.
181181
* *CHANGED*: Comments are scanned as one token instead of three.
@@ -195,7 +195,7 @@ h3. @Scanners::Delphi@
195195
h3. @Scanners::Diff@
196196

197197
* *NEW*: Highlighting of code based on file names.
198-
See ticket "#52":http://redmine.rubychan.de/issues/52.
198+
See ticket "#52":http://odd-eyed-code.org/issues/52.
199199

200200
Use the @:highlight_code@ option to turn this feature off. It's enabled
201201
by default.
@@ -210,7 +210,7 @@ h3. @Scanners::Diff@
210210
between the lines and changes, but the quality of the results depend on
211211
the scanner.
212212
* *NEW*: Inline change highlighting, as suggested by Eric Thomas.
213-
See ticket "#227":http://redmine.rubychan.de/issues/227 for details.
213+
See ticket "#227":http://odd-eyed-code.org/issues/227 for details.
214214

215215
Use the @:inline_diff@ option to turn this feature off. It's enabled by
216216
default.
@@ -249,7 +249,7 @@ h3. @Scanners::JavaScript@
249249
h3. @Scanners::Java@
250250

251251
* *NEW*: Package names are highlighted as @:namespace@.
252-
See "#210":http://redmine.rubychan.de/issues/210.
252+
See "#210":http://odd-eyed-code.org/issues/210.
253253

254254
h3. *REMOVED*: @Scanners::NitroXHTML@
255255

@@ -264,7 +264,7 @@ h3. *RENAMED*: @Scanners::Text@ (was @Scanners::Plaintext@)
264264
h3. @Scanners::Python@
265265

266266
* *CHANGED*: Docstrings are highlighted as @:comment@.
267-
See "#190":http://redmine.rubychan.de/issues/190.
267+
See "#190":http://odd-eyed-code.org/issues/190.
268268

269269
h3. *NEW*: @Scanners::Raydebug@
270270

@@ -275,7 +275,7 @@ h3. @Scanners::Ruby@
275275

276276
* *ADDED* more predefined keywords (see http://murfy.de/ruby-constants).
277277
* *IMPROVED* support for singleton method definitions.
278-
See "#147":http://redmine.rubychan.de/issues/147.
278+
See "#147":http://odd-eyed-code.org/issues/147.
279279
* *FIXED*: Don't highlight methods with a capital letter as constants
280280
(eg. @GL.PushMatrix@).
281281
* *NEW*: Highlight buggy floats (like .5) as @:error@.
@@ -292,29 +292,29 @@ h3. @Scanners::Ruby@
292292
h3. *REMOVED* @Scanners::Scheme@
293293

294294
* It is too buggy, and nobody was using it. To be added again when it's fixed.
295-
See "#59":http://redmine.rubychan.de/issues/59.
295+
See "#59":http://odd-eyed-code.org/issues/59.
296296

297297
h3. @Scanners::SQL@
298298

299299
* *IMPROVED*: Extended list of keywords and functions (thanks to
300300
Joshua Galvez, Etienne Massip, and others).
301301

302-
See "#221":http://redmine.rubychan.de/issues/221.
302+
See "#221":http://odd-eyed-code.org/issues/221.
303303
* *FIXED*: Closes open string groups.
304304
* *FIXED*: Words after @.@ are always recognized as @:ident@.
305305

306306
h3. @Scanners::YAML@
307307

308308
* *FIXED*: Allow spaces before colon in mappings.
309309

310-
See "#231":http://redmine.rubychan.de/issues/231.
310+
See "#231":http://odd-eyed-code.org/issues/231.
311311

312312
h3. *NEW*: @Styles::Alpha@
313313

314-
A style that uses transparent HSLA colors as defined in CSS 3. See "#199":http://redmine.rubychan.de/issues/199.
314+
A style that uses transparent HSLA colors as defined in CSS 3. See "#199":http://odd-eyed-code.org/issues/199.
315315

316316
It also uses the CSS 3 property @user-select: none@ to keep the user from selecting the line numbers. This is especially
317-
nice for @:inline@ line numbers. See "#226":http://redmine.rubychan.de/issues/226.
317+
nice for @:inline@ line numbers. See "#226":http://odd-eyed-code.org/issues/226.
318318

319319
h3. @WordList@
320320

etc/grafix/pie_graph.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class 1.6K: incremental, shuffled, complete, identity, highlighting, finished
125125
trace-test 151.1K: incremental, shuffled, complete, identity, highlighting, finished in 0.41s ( 133 Ktok/s).
126126
xml 0.1K: incremental, shuffled, ticket ?, identity, highlighting, finished in 0.00s.
127127
KNOWN ISSUE: JavaScript scanner is confused by nested XML literals.
128-
No ticket yet. Visit http://redmine.rubychan.de/projects/coderay/issues/new.
128+
No ticket yet. Visit http://odd-eyed-code.org/projects/coderay/issues/new.
129129
Finished in 10.07s.
130130
.
131131
>> Testing JSON scanner <<

0 commit comments

Comments
 (0)