summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders/html
Commit message (Collapse)AuthorAgeFilesLines
* Remove the statement that is not always reached.Jun Aruga2018-08-271-2/+0
|
* speedup HTML encoder numbering for Ruby 1.8.7+Kornelius Kalnbach2013-06-161-1/+1
|
* cleanup TODOs, FIXMEsKornelius Kalnbach2013-06-161-1/+1
|
* cleanup HTML encoder CSS styles/classes algorithm (#135)Kornelius Kalnbach2013-06-101-7/+7
|
* fix #41 by removing special caseKornelius Kalnbach2013-03-101-17/+22
| | | | Also, clean up some code.
* remove ondblclick handler from HTML outputKornelius Kalnbach2013-03-101-1/+1
|
* Update lib/coderay/encoders/html/numbering.rbshura2012-08-281-1/+1
|
* here come the white-space nazisKornelius Kalnbach2012-04-011-1/+1
|
* Extracted code making HTML lines independent from numbering code to a ↵Etienne Massip2012-01-261-14/+2
| | | | specific option in encoder.
* simplify HTML page layout (no border)Kornelius Kalnbach2011-10-191-1/+9
|
* pretty (longer) token class names; closes #347Kornelius Kalnbach2011-08-192-3/+3
|
* Major rewrite of encoders to support IO output; fixed some minor scanner ↵Kornelius Kalnbach2011-08-192-2/+1
| | | | bugs; cleanups; dropped NitroXHTML scanner; improved tests
* cleanups: Page encoder is default for HTML, benchmark KB/s instead of tokens/smurphy2011-07-041-1/+1
|
* found a better name for this variablemurphy2011-06-111-5/+5
|
* renamed pre_* token kinds to predefined_*murphy2011-04-171-3/+3
|
* General cleanup to Encoders::HTML::Output module: Numbering is now a bit ↵murphy2010-06-291-19/+16
| | | | less obtrusive.
* General cleanup in this weird Encoders::HTML::Output module.murphy2010-06-291-52/+10
|
* Removing tests from library files. They live now in test/unit.murphy2010-06-291-5/+0
|
* More speedups for HTML encoding (numbering, CSS styles, Ruby 1.9).murphy2010-06-272-6/+6
|
* Cleanups in Encoders::HTML::Output.murphy2010-06-012-8/+2
|
* New HTML Encoder option :line_number_anchors (closes #208).murphy2010-04-022-54/+43
| | | | | Also removed the :list wrapping style, and made a lot of cleanup in the styles. See Changes.textile.
* HTML encoder is HTML 5 and CSS 3 compatible (closes #215).murphy2010-04-022-6/+3
| | | | | | | | This also means it's incompatible to previous versions of HTML and CSS. Also, the output may not show correctly on IE. I officially drop support for Internet Explorer with no regrets.
* Added documentation to encoders; more code cleanups.murphy2010-03-302-5/+5
|
* Changed a $DEBUG raise into a puts (issue #99).murphy2009-05-021-1/+1
| | | | Thanks to sunaku for reporting this.
* Updated some comments for XML and HTML encoder.murphy2009-04-201-1/+0
| | | | | | * XML encoder is actually broken! REXML fault? * Firefox can handle long HTML tables now.
* Added a :title option for the HTML Encoder. Closes #55.murphy2009-04-141-1/+10
|
* New feature: HTML encode option :highlight_lines. See documentation.murphy2009-01-221-1/+11
| | | | | | * The scanner test suite uses it and highlights the lines that differ after a failed complete test in *.actual.html.
* New: *YAML* (#53). Preparing for version 0.8.1.murphy2008-10-201-1/+1
| | | | | | | | | | | | | | * Based on the YAML scanner from Jamis Buck's Syntax lib. * Some YAML examples from Ruby gems. * Doesn't handle string yet; alpha state. More changes: * coderay_suite: new parameter "fast" makes testing faster (for development). * Changed the title of HTML page output (Page Encoder). * FileType: Added new file types. * cYcnus style: simplified some token group styles. * Cleanup in CSS and HTML Scanners.
* New: *Simple Diff Scanner* (closes #22).murphy2008-09-302-2/+6
| | | | | | | | | | | | | | * Highlights unified diffs, especially like the ones svn diff outputs. * Changes to make highlighting of whole lines were necessary. * I added two example files. More changes: * Added token classes :head, :delete, :insert, and :change along with styles. * Added two new special token types: :begin_line and :end_line. They mark token groups that explicitly span whole lines and should be highlighted as such. * The HTML encoder converts these new tokens to DIVs. May need more work. * The Debug Encoder uses square brackets for line tokens. * Some cleanups.
* Optimized CSS styles, improved coderay_suite, new HTML test.murphy2008-09-241-1/+1
| | | | | | | * CSS styles are shortened more to optimize HTML output. * Added a longer example file for the HTML Scanner. * coderay_suite prints more accurate and sensible benchmarks.
* New: *JavaScript Scanner* (closes #23).murphy2008-09-161-8/+13
| | | | | | | | | | | * It's quite good and fast, but still a beta. * I included Prototype and script.aculo.us as example code for testing. More changes: * Added two new token classes, :keyword and :key, along with CSS styles. ** Actually, we should use :keyword for most scanners that now use :reserved. * HTML Encoder: The CSS parser understands multiple selectors separated by commas.
* Lib:murphy2008-01-071-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Encoder: removed a warning - Encoders::HTML: don't shadow outer variable - Plugin: move require_plugin into class namespace - Ruby Scanner: - "alias" keyword recognition - better regexp/division distinction - recognize ~, !, !=, and !~ as method names (partly Ruby 1.9 only) - reordered states for speed Tests: - updated coderay-suite to use gem instead of require_gem - general improvements (more colors!, new parameter: new, new syntax lang.test for only and new) - fixed ruby suite - adjusted a lot of Ruby tests (alias uses methods now) - new tests: ruby/operators, ruby/regexp Samples: - fixed/updated ('bout time) Rake tasks: - updated to use new rubygems API
* Done:murphy2007-01-011-77/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | General: - Declared version 0.7.6. - Moved WordList, CaseIgnoringWordList, Plugin, PluginHost and FileType into CodeRay namespace. CodeRay should be "clean" now, except for the String#to_unix helper function. - Fixed a bit of documentation. - CodeRay binary: Prepare for streaming switch. Scanners: - Added code= alias for string=. - Added streaming? method: Is this Scanner in streaming mode? - Enhanced error info a bit. - Ruby scanner: - Highlights Regexp heredocs now. They may be added to Ruby 1.9. - Speedups with better support for Ruby 1.9. - Change in whitespace handling (faster and cleaner now.) - Speed up some operator recognition (saving two string comparisons). - Declared C and Plaintext Scanners as Streamable. Tokens: - Changed Text/Block token recognition (#is_a? ::String for Ruby 1.9 support). - New method: Tokens#text yields the code string. - text_size fixed. - Token kind shortcuts (like r for reserved) are now defined in token_classes.rb (instead of encoders/html/classes.rb). Encoders: - Debug Scanner added. - Base encoder class adds to @out when encoding (if @out is set). - A little Tokens scanner speedup. - Text encoder uses text_token. - Statistic encoder counts block tokens. - Smaller changes in XML and HTML encoders. Styles: - cYcnus style defines a debug class now. Duo: - scanner and encoder are now methods. Scanner and Encoder are created (and cached) when needed, not earlier. - Documented. Tests: - Disabled encoder and scanner list check (breaks too often). - Added identity test, which checks if tokens#text matches the input. - Added nocolor switch. Developer tools: - Benchmark uses Encoder#file_extension for output now. - Rakefile: Support for 19, 18, yarv and ruby switches for easy comparing different Ruby versions. - Statistic: Demos are no longer tests.
* Ruby scanner: #{...} delimiters are now :inline_delimiter to solve CSS problem.murphy2006-10-181-0/+1
| | | | | | New token: :inline_delimiter Scanner tests suite revamped: colorization, split up into methods.
* Ruby scanner: deleted regexp highlighting (didn't work anyway)murphy2006-09-281-2/+5
| | | | | HTML highlighter: unknown token classes now yield a CSS class with that name instead of :error A new Ruby test
* rake test now runs in debug mode.murphy2006-07-114-455/+455
| | | | All .rb files converted to UNIX format (where did the \r come from?)
* Big re-indenting - no more tabs!murphy2006-07-104-397/+397
|
* Re-indented everything. Sorry to break the blame chain.murphy2006-04-163-5/+9
|
* All scanners revisited not to produce errors unless in DEBUG mode. [thx@Daniel]murphy2006-04-161-3/+11
| | | | | | | Fixed numerization for input not ending with \n. Added test cases in C scanner tests. Added WoNáDo as contributer for last Ruby scanner fix. Updated TODO.
* styles/_map.rb added. :cycnus is now default style. html/css.rb adjusted.murphy2006-04-151-4/+1
| | | | | | | | | | ROADMAP and TODO updated. Ruby scanner: Fixed a bug: Fancy strings don't allow \w delimiters. They _do_ also allow whitespace delimiters, but adding this would cause many scan errors. So I leave this bug unfixed.
* Large update: Scanners for HTML, RHTML and Nitro-XHTML added.murphy2006-04-102-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | CSS style changes/enhancments (mainly the new background color for inline code, affects all Ruby code.) Demos and tests adjusted. Plugin: new PluginHost::default method. Scanner: - New setup method - ability to re-use a scanner - ability to keep the tokens - minor changes to token caching and string flattening Encoder: Error if token content is neither String nor Symbol. HTML encoder: - more warnings for unclosed tokens - output now UTF-8 Ruby Scanner: - bug: symbols before => now do not include =; {:foo=>bar} is valid Ruby code - try to close all open tokens - constants now all with specific namespace (for speed, I hope) Styles: new :entity/en class. Test suite now gives hinted HTML output.
* HTML Encoder: inline numerization corrected.murphy2006-03-231-1/+3
| | | | | | | | New demo: demo/demo_html_list.rb. Some demos adjusted. C Scanner: error messages fixed. Rakefile: test_demos now in debug mode. test/suite.rb is using reusable Scanners now.
* CodeRay::Duo added for cool caching!murphy2006-03-212-17/+17
| | | | | | | | bench/caching.rb added t´for demonstrating this. HTML Encoder: creates unwrapped output by default (still problems with that.) Numerizing changed (doesn't try to prevent nesting errors) Speedup: "::String" is faster.
* Fixed HTML encoder.murphy2006-03-151-1/+1
| | | | | Changed HTML::CSS.load_stylesheet behaviour.
* Ruby scanner errors fixed.murphy2006-03-152-3/+3
| | | | | demo_dump and demo_encoder updated for new YAML version. Fixes in output.rb and numerization.rb
* Some fixes for cYcnus style (capital Y makes problems)murphy2005-12-051-1/+1
| | | | | Fixes in the coderay_rdoc_template.
* New Style system added - still beta.murphy2005-11-133-123/+42
| | | | | | | | Demos adjusted coderay.rb, encoders/html.rb, encoders/div.rb adjusted. encoders/html/* files rebuild.
* New helper module scheme, step 3murphy2005-11-054-1/+1
|
* New helper module scheme, step 1murphy2005-11-054-0/+524