eldur / jwbf

Java Wiki Bot Framework is a library to maintain Wikis like Wikipedia based on MediaWiki.
http://jwbf.sourceforge.net/
Apache License 2.0
78 stars 33 forks source link

Features #5

Closed ghost closed 11 years ago

ghost commented 11 years ago

I would like to known if your tool integrates some scripting language and some parser for the MediaWiki wikitext.

Thanks for your attention.

eldur commented 11 years ago

What do you mean with scripting language?

jwbf is a java api wrapper for MediaWiki http api. You can: read content of an article, create new articles, list categories, upload files, ...

Sorry, there is no parser for mediawiki markup

ghost commented 11 years ago

What do you mean with scripting language?

For example, be able to use jwbf API through a JavaScript source ( using rhino ). Thats much more practical than every time compile and run some Java code.

eldur commented 11 years ago

Some IDEs supports autocompile e.g. eclipse, or what about other buildtools like sbt, where you can type

sbt ~run

and each time you change a resource, it triggers an automatic rerun of your program.

What do you think about a nativ javascript solution based on nodejs like nodemw?

ghost commented 11 years ago

Thanks, I'll take a look on those projects that you mentioned.