Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
update redmine.rubychan.de links to odd-eyed-code.org
  • Loading branch information
korny committed Oct 26, 2011
1 parent cd6b93a commit 103ba91
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 43 deletions.
54 changes: 27 additions & 27 deletions Changes-pre-1.0.textile
Expand Up @@ -15,27 +15,27 @@ h3. Rake tasks
h3. @Scanners::Scanner@

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

h3. @Scanners::CSS@

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

h3. @Scanners::Ruby@

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

h3. @Scanners::SQL@

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

h3. @FileType@

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


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

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


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

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

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

h3. @Encoders::HTML@

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

h3. @Scanner::Scanner@

Expand All @@ -94,18 +94,18 @@ h3. @Scanners::PHP@

h3. @Scanners::Ruby@

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

h3. @Scanners::SQL@

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


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

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

h3. @Scanners::Diff@

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

h3. @Scanners::HTML@

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

h3. @Scanners::RHTML@

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


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

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

h3. @coderay@ executable

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

h3. @Encoders::Term@

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

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

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

h3. @Scanners::PHP@

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

h3. @Scanners::YAML@

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


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

h3. @Encoders::XML@

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

It didn't work at all.

Expand Down Expand Up @@ -404,13 +404,13 @@ h3. @FileType@

h3. @CaseIgnoringWordList@

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

The default value is no longer ignored.

h3. @ForRedCloth@

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

h3. Cleanups

Expand Down
30 changes: 15 additions & 15 deletions Changes.textile
Expand Up @@ -87,7 +87,7 @@ h3. *RENAMED*: @TokenKinds@

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

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

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

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

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

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

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

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

Use the @:inline_diff@ option to turn this feature off. It's enabled by
default.
Expand Down Expand Up @@ -249,7 +249,7 @@ h3. @Scanners::JavaScript@
h3. @Scanners::Java@

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

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

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

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

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

Expand All @@ -275,7 +275,7 @@ h3. @Scanners::Ruby@

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

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

h3. @Scanners::SQL@

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

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

h3. @Scanners::YAML@

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

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

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

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

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

h3. @WordList@

Expand Down
2 changes: 1 addition & 1 deletion etc/grafix/pie_graph.rb
Expand Up @@ -125,7 +125,7 @@ class 1.6K: incremental, shuffled, complete, identity, highlighting, finished
trace-test 151.1K: incremental, shuffled, complete, identity, highlighting, finished in 0.41s ( 133 Ktok/s).
xml 0.1K: incremental, shuffled, ticket ?, identity, highlighting, finished in 0.00s.
KNOWN ISSUE: JavaScript scanner is confused by nested XML literals.
No ticket yet. Visit http://redmine.rubychan.de/projects/coderay/issues/new.
No ticket yet. Visit http://odd-eyed-code.org/projects/coderay/issues/new.
Finished in 10.07s.
.
>> Testing JSON scanner <<
Expand Down

0 comments on commit 103ba91

Please sign in to comment.