Difference between revisions of "Mvs"
From Christoph's Personal Wiki
m (Mvs (command) moved to Mvs) |
(→See also) |
||
Line 18: | Line 18: | ||
for i in *.wiki; do iconv -f ISO-8859-1 -t UTF-8 "$i" -o "converted/$i"; done | for i in *.wiki; do iconv -f ISO-8859-1 -t UTF-8 "$i" -o "converted/$i"; done | ||
− | == See also == | + | ==See also== |
− | * [http://meta.wikimedia.org/wiki/Using_the_python_wikipediabot Using the python wikipediabot] | + | *[http://meta.wikimedia.org/wiki/Using_the_python_wikipediabot Using the python wikipediabot] |
− | * [http://search.cpan.org/~esummers/WWW-Wikipedia-1.9/ WWW::Wikipedia] — automated interface to the Wikipedia. | + | *[http://search.cpan.org/~esummers/WWW-Wikipedia-1.9/ WWW::Wikipedia] — automated interface to the Wikipedia. |
− | * [http://en.wikipedia.org/wiki/User:Yurik/Query_API Wikipedia Query API] | + | *[http://en.wikipedia.org/wiki/User:Yurik/Query_API Wikipedia Query API] |
− | * [http://meta.wikimedia.org/wiki/Xml2sql xml2sql] — converter tool for xml dump. | + | *[http://meta.wikimedia.org/wiki/Xml2sql xml2sql] — converter tool for xml dump. |
+ | *[http://wikipediafs.sourceforge.net/ WikipediaFS] — view and edit Wikipedia articles as if they were real files. | ||
== External links == | == External links == |
Revision as of 00:32, 9 May 2007
mvs is a command line Mediawiki client.
Contents
Basic usage
- login — Login to wiki:
% mvs login -d www.yoururl.com -u Bot -p "your_password" -w "/index.php"
- up/update — Fetch one or more working files:
% mvs update Foo.wiki Bar.wiki
- preview — Preview changes (does not commit anything):
% mvs preview -m "commit message" Foo.wiki
- com/commit — Commit (upload) changes:
% mvs commit -m "commit message" Foo.wiki
Notes
It is important the the files you 'commit' are in UTF-8 format. It easy to run a simple utility over all of your .wiki
files:
for i in *.wiki; do iconv -f ISO-8859-1 -t UTF-8 "$i" -o "converted/$i"; done
See also
- Using the python wikipediabot
- WWW::Wikipedia — automated interface to the Wikipedia.
- Wikipedia Query API
- xml2sql — converter tool for xml dump.
- WikipediaFS — view and edit Wikipedia articles as if they were real files.