PiRSquared17 / java-wikipedia-parser

Automatically exported from code.google.com/p/java-wikipedia-parser
0 stars 0 forks source link

Class missing in svn trunk #6

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I have made a checkout of the project and the class 
be.devijver.wikipedia.parser.javacc.table.JavaCCTableParser is missing.

Can you add it to the repository ?

Thanks

Original issue reported on code.google.com by JCPer...@gmail.com on 1 Dec 2008 at 9:43

GoogleCodeExporter commented 9 years ago
The parsers can be created by running javacc against the "wikipedia.jj" and
"wikipedia_table.jj" files.  Javacc can be obtained from:

  https://javacc.dev.java.net/

I have also attached the source files generated by javacc (version 4.2) to save 
some
time.

Original comment by bodhi.r...@gmail.com on 11 Dec 2008 at 8:11

Attachments:

GoogleCodeExporter commented 9 years ago
It would be nice to have some build scripts (ant, maven, whatever). Here's what 
seems
to work for me:

$ (cd ./src/java/be/devijver/wikipedia/parser/javacc/markup/ && rm -f
TokenMgrError.java ParseException.java Token.java SimpleCharStream.java && 
javacc
wikipedia.jj)
$ (cd ./src/java/be/devijver/wikipedia/parser/javacc/table/ && rm -f
TokenMgrError.java ParseException.java Token.java SimpleCharStream.java && 
javacc
wikipedia_table.jj)

Now be.devijver.wikipedia.parser.ast.Nowiki appears to be missing. I'll file a 
new
issue for that.

Original comment by michael....@gmail.com on 28 Oct 2009 at 6:43