Skip to main content

Allow to easily version mediawiki pages.

Project description

Mwdoc
=====

Overview
--------

Think of [mwdoc](https://pypi-hypernode.com/pypi/mwdoc) as a tool that allows to easily version mediawiki pages.

For example, pages like:

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

... can be automatically created from:

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


Installation
------------

Installing `mwdoc` will automatically install the required dependencies.

```
pip install mwdoc
```

Usage
-----

* Create pages:

``` python
import mwdoc
doc = mwdoc.Documentation('somewhere.org', '/w/')
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:

``` python
import mwdoc
doc = mwdoc.Documentation('somewhere.org', '/w/')
doc.login('john', 'password')
doc.versionPages('0.1', '0.2', ['Documentation', 'Template:Documentation'])
```


* List pages:

``` python
import mwdoc
doc = mwdoc.Documentation('somewhere.org', '/w/')
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:

``` python
import mwdoc
doc = mwdoc.Documentation('somewhere.org', '/w/')
doc.login('john', 'password')
pages = doc.listPages('Documentation')
for page in pages:
page.delete()
```

Dependencies
------------

* [mwclient][mwclient], the client to [MediaWiki API][mwapi]


Test
----

Do **NOT** run this test against a production installation. We mean it.

The test will create pages, version them and delete them afterward.

To run the test:

```
git clone git://github.com/jcfr/mwdoc && cd $_
pip install -r requirements.txt
python -m unittest test_mwdoc
```

It will then ask for:

* Hostname (e.g `localhost`)
* Path (e.g `/w/`)
* Username
* Password


Contributing
------------

Once you've made your great commits:

1. [Fork][fk] 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][is] with a link to your branch
5. That's it!


Make a new release
------------------

A core developer should use the following steps to create a release of **mwdoc**.

0. Configure `~/.pypirc` as described [here](https://packaging.python.org/distributing/#uploading-your-project-to-pypi).

1. Make sure that all tests are passing.

2. Tag the release. Requires a GPG key with signatures. For version *X.Y.Z*:

```bash
git tag -s -m "mwdoc X.Y.Z" X.Y.Z upstream/master
```

3. Create the source tarball and binary wheels:

```bash
git checkout master
git fetch upstream
git reset --hard upstream/master
rm -rf dist/
python setup.py sdist bdist_wheel
```

4. Upload the packages to the testing PyPI instance::

```bash
twine upload --sign -r pypitest dist/*
```

5. Check the [PyPI testing package page](https://testpypi.python.org/pypi/mwdoc/).

6. Upload the packages to the PyPI instance::

```bash
twine upload --sign dist/*
```

7. Check the [PyPI package page](https://pypi-hypernode.com/pypi/mwdoc/).

8. Make sure the package can be installed::

```bash
mkvirtualenv test-pip-install
pip install mwdoc
rmvirtualenv test-pip-install
```

Credits
-------

Please see the GitHub project page at https://github.com/jcfr/mwdoc/graphs/contributors

Meta
----

* PyPI: <https://pypi-hypernode.com/pypi/mwdoc>
* Code: `git clone git://github.com/jcfr/mwdoc.git`
* Home: <http://github.com/jcfr/mwdoc#readme>
* Bugs: <http://github.com/jcfr/mwdoc/issues>

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.

[fk]: http://help.github.com/forking/
[is]: http://github.com/jcfr/mwdoc/issues
[mwclient]: http://sourceforge.net/apps/mediawiki/mwclient
[mwapi]: https://www.mediawiki.org/wiki/API



Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mwdoc-0.1.0.tar.gz (21.6 kB view details)

Uploaded Source

Built Distribution

mwdoc-0.1.0-py2.py3-none-any.whl (7.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file mwdoc-0.1.0.tar.gz.

File metadata

  • Download URL: mwdoc-0.1.0.tar.gz
  • Upload date:
  • Size: 21.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for mwdoc-0.1.0.tar.gz
Algorithm Hash digest
SHA256 741495743b3468064634762363f23f1769fcb483c60131f4d1adf3e007692a10
MD5 749ee328e79dd930acf4c877e1b78ea2
BLAKE2b-256 33f39b14fc3b67c6c71fceef2236dcd3733cadc683cf83e91cd7f961a79a31d7

See more details on using hashes here.

File details

Details for the file mwdoc-0.1.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for mwdoc-0.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 20da06f7596c8453518b9940e4548e8ef4adde5f5fe7b343ad9ee0e125ecb66c
MD5 de733599a03556ddadbe87a7f4e29382
BLAKE2b-256 a35ffb8254f963f671da3dccf9952f317cc39219137cc508d3ba526fadea998d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page