Skip to content
/ mwdoc Public
forked from jcfr/mwdoc

Tool that allows to easily version mediawiki pages

Notifications You must be signed in to change notification settings

mgrauer/mwdoc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Mwdoc

Overview

Think of mwdoc as a tool that allows to easily version mediawiki pages.

For example, pages like:

Documentation/0.2/mypage
Template:Documentation/0.2/mytemplate

... could be automatically created from:

Documentation/0.1/mypage
Template:Documentation/0.1/mytemplate

Usage

  • Create pages:
import mwdoc
doc = mwdoc.Documentation('somewhere.org', '/wiki/')
doc.login('john', 'password')
doc.createPage('0.1', 'mypage', 'This is content of my page', 'Documentation')
doc.createPage('0.1', 'mytemplate', 'This is content of my template', 'Template:Documentation')
  • Version pages from 0.1 to 0.2:
import mwdoc
doc = mwdoc.Documentation('somewhere.org', '/wiki/')
doc.login('john', 'password')
doc.versionPages('0.1', '0.2', ['Documentation', 'Template:Documentation'])
  • List pages:
import mwdoc
doc = mwdoc.Documentation('somewhere.org', '/wiki/')
doc.login('john', 'password')
pages = doc.listPages('Documentation')
for page in pages: print page
templatepages = doc.listPages('Template:Documentation')
for page in templatepages: print page
  • Delete pages:
import mwdoc
doc = mwdoc.Documentation('somewhere.org', '/wiki/')
doc.login('john', 'password')
pages = doc.listPages('Documentation')
for page in pages: 
  page.delete()

Prerequisites

sudo easy_install http://pypi.python.org/packages/2.6/m/mwclient/mwclient-0.6.5-py2.6.egg

Installation

wget https://raw.github.com/jcfr/mwdoc/master/mwdoc.py

Test

  1. Download mwdoc_test.py (wget https://raw.github.com/jcfr/mwdoc/master/mwdoc_test.py)
  2. Place it along side with mwdoc.py
  3. Edit host, path, username and password in mwdoc_test.py
  4. Run mwdoc.py ($ python mwdoc.py)

Contributing

Once you've made your great commits:

  1. Fork mwdoc
  2. Create a topic branch - git checkout -b my_branch
  3. Push to your branch - git push origin my_branch
  4. Create an Issue with a link to your branch
  5. That's it!

Meta

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Tool that allows to easily version mediawiki pages

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published