Thread: [Jamwiki-commit] SF.net SVN: jamwiki: [2113] wiki/trunk/jamwiki-core/src/main/jflex/ jamwiki-proces
Brought to you by:
wrh2
From: <wr...@us...> - 2008-03-24 05:31:31
|
Revision: 2113 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=2113&view=rev Author: wrh2 Date: 2008-03-23 22:31:26 -0700 (Sun, 23 Mar 2008) Log Message: ----------- Parser: * Use the tag stack when parsing <script> tags. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/jflex/jamwiki-processor.jflex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2008-03-29 06:08:59
|
Revision: 2125 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=2125&view=rev Author: wrh2 Date: 2008-03-28 23:08:56 -0700 (Fri, 28 Mar 2008) Log Message: ----------- Parser: * Eliminate the jflex "TD" and "TH" table state, leaving only "TABLE" to indicate table parsing mode. This change simplifies the parser significantly by reducing the number of parser states, but like the previous commit it probably needs more testing. All unit tests are still passing with this change applied. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/jflex/jamwiki-processor.jflex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2008-03-29 16:27:25
|
Revision: 2127 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=2127&view=rev Author: wrh2 Date: 2008-03-29 09:27:23 -0700 (Sat, 29 Mar 2008) Log Message: ----------- Parser: * Use the tag stack when parsing wiki pre syntax. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/jflex/jamwiki-processor.jflex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2008-04-13 01:49:30
|
Revision: 2175 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=2175&view=rev Author: wrh2 Date: 2008-04-12 18:49:29 -0700 (Sat, 12 Apr 2008) Log Message: ----------- Parser: * Split the HTML tag matching pattern into block-level and inline elements. This is needed in order to move the paragraph parsing code into jamwiki-processor.jflex. * This change also adds support for <tbody>, <thead> and <tfoot> tags. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/jflex/jamwiki-processor.jflex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2008-04-20 16:50:28
|
Revision: 2191 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=2191&view=rev Author: wrh2 Date: 2008-04-20 09:50:23 -0700 (Sun, 20 Apr 2008) Log Message: ----------- Parser: * Add a change missed in the previous commit - forgot to save first. DOH! This also fixes some potential inconsistencies when parsing fragments that contain paragraphs. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/jflex/jamwiki-processor.jflex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2008-05-03 06:19:55
|
Revision: 2209 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=2209&view=rev Author: wrh2 Date: 2008-05-02 23:19:53 -0700 (Fri, 02 May 2008) Log Message: ----------- Parser: * Optimize the parser by combining the "inlinetagopen" and "blockleveltagopen" patterns into a single "htmltagopen" pattern. This reduces the number of generated states from 8064 to 7633. * Split up the "endparagraph" for readability - this has no functional impact. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/jflex/jamwiki-processor.jflex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2008-05-03 06:30:12
|
Revision: 2210 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=2210&view=rev Author: wrh2 Date: 2008-05-02 23:30:09 -0700 (Fri, 02 May 2008) Log Message: ----------- Parser: * Add further optimizations to jamwiki-processor.jflex, reducing the number of JFlex states from 7633 to 6983. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/jflex/jamwiki-processor.jflex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |