From 612fb96d020c4ea8c336845578ebe4ede27c5f56 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 14 Oct 2013 18:33:41 -0300 Subject: [PATCH] using a single column for name and version --HG-- branch : plugins-index-adjustments --- doc/en/plugins_index/plugins_index.py | 6 +- doc/en/plugins_index/plugins_index.txt | 108 ++++++++++----------- doc/en/plugins_index/test_plugins_index.py | 12 +-- 3 files changed, 62 insertions(+), 64 deletions(-) diff --git a/doc/en/plugins_index/plugins_index.py b/doc/en/plugins_index/plugins_index.py index 96726cdc0..48ddae93a 100644 --- a/doc/en/plugins_index/plugins_index.py +++ b/doc/en/plugins_index/plugins_index.py @@ -55,17 +55,15 @@ def obtain_plugins_table(plugins, client): :param plugins: list of (name, version) :param client: xmlrpclib.ServerProxy - ''' rows = [] ColumnData = namedtuple('ColumnData', 'text link') - headers = ['Name', 'Version', 'Author', 'Summary'] + headers = ['Name', 'Author', 'Summary'] for package_name, version in plugins: release_data = client.release_data(package_name, version) row = ( - ColumnData(package_name, release_data['package_url']), - ColumnData(version, release_data['release_url']), + ColumnData(package_name + '-' + version, release_data['release_url']), ColumnData(release_data['author'], release_data['author_email']), ColumnData(release_data['summary'], None), ) diff --git a/doc/en/plugins_index/plugins_index.txt b/doc/en/plugins_index/plugins_index.txt index a73044839..07c6c8ae5 100644 --- a/doc/en/plugins_index/plugins_index.txt +++ b/doc/en/plugins_index/plugins_index.txt @@ -3,59 +3,59 @@ List of Third-Party Plugins =========================== -================================================================================== ============================================================================ ==================================================================================== ============================================================================================================================================= - Name Version Author Summary -================================================================================== ============================================================================ ==================================================================================== ============================================================================================================================================= - `pytest-bdd `_ `0.6.1 `_ `Oleg Pidsadnyi `_ BDD for pytest - `pytest-bdd-splinter `_ `0.5.2 `_ `Oleg Pidsadnyi `_ Splinter subplugin for Pytest BDD plugin - `pytest-bench `_ `0.1.0 `_ `Concordus Applications `_ Benchmark utility that plugs into pytest. - `pytest-blockage `_ `0.1 `_ `UNKNOWN `_ Disable network requests during a test run. - `pytest-browsermob-proxy `_ `0.1 `_ `Dave Hunt `_ BrowserMob proxy plugin for py.test. - `pytest-bugzilla `_ `0.2 `_ `Noufal Ibrahim `_ py.test bugzilla integration plugin - `pytest-cache `_ `1.0 `_ `Holger Krekel `_ pytest plugin with mechanisms for caching across test runs - `pytest-capturelog `_ `0.7 `_ `Meme Dough `_ py.test plugin to capture log messages - `pytest-codecheckers `_ `0.2 `_ `Ronny Pfannschmidt `_ pytest plugin to add source code sanity checks (pep8 and friends) - `pytest-contextfixture `_ `0.1.1 `_ `Andreas Pelme `_ Define pytest fixtures as context managers. - `pytest-couchdbkit `_ `0.5.1 `_ `RonnyPfannschmidt `_ py.test extension for per-test couchdb databases using couchdbkit - `pytest-cov `_ `1.6 `_ `Meme Dough `_ py.test plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing - `pytest-dbfixtures `_ `0.3.8.3 `_ `Clearcode - The A Room `_ dbfixtures plugin for py.test. - `pytest-django `_ `2.3.1 `_ `Andreas Pelme `_ A Django plugin for py.test. - `pytest-django-lite `_ `0.1.0 `_ `David Cramer `_ The bare minimum to integrate py.test with Django. - `pytest-figleaf `_ `1.0 `_ `holger krekel `_ py.test figleaf coverage plugin - `pytest-flakes `_ `0.2 `_ `Florian Schulze, Holger Krekel and Ronny Pfannschmidt `_ pytest plugin to check source code with pyflakes - `pytest-greendots `_ `0.2 `_ `UNKNOWN `_ Green progress dots - `pytest-growl `_ `0.1 `_ `Anthony Long `_ Growl notifications for pytest results. - `pytest-incremental `_ `0.3.0 `_ `Eduardo Naufel Schettino `_ an incremental test runner (pytest plugin) - `pytest-instafail `_ `0.1.0 `_ `Janne Vanhala `_ py.test plugin to show failures instantly - `pytest-ipdb `_ `0.1-prerelease `_ `Matthew de Verteuil `_ A py.test plug-in to enable drop to ipdb debugger on test failure. - `pytest-konira `_ `0.2 `_ `Alfredo Deza `_ Run Konira DSL tests with py.test - `pytest-localserver `_ `0.3 `_ `Sebastian Rahlf `_ py.test plugin to test server connections locally. - `pytest-marker-bugzilla `_ `0.06 `_ `Eric Sammons `_ py.test bugzilla integration plugin, using markers - `pytest-markfiltration `_ `0.8 `_ `adam goucher `_ UNKNOWN - `pytest-marks `_ `0.4 `_ `adam goucher `_ UNKNOWN - `pytest-monkeyplus `_ `1.1.0 `_ `Virgil Dupras `_ pytest's monkeypatch subclass with extra functionalities - `pytest-mozwebqa `_ `1.1.1 `_ `Dave Hunt `_ Mozilla WebQA plugin for py.test. - `pytest-oerp `_ `0.2.0 `_ `Leonardo Santagada `_ pytest plugin to test OpenERP modules - `pytest-osxnotify `_ `0.1.4 `_ `Daniel Bader `_ OS X notifications for py.test results. - `pytest-paste-config `_ `0.1 `_ `UNKNOWN `_ Allow setting the path to a paste config file - `pytest-pep8 `_ `1.0.5 `_ `Holger Krekel and Ronny Pfannschmidt `_ pytest plugin to check PEP8 requirements - `pytest-poo `_ `0.2 `_ `Andreas Pelme `_ Visualize your crappy tests - `pytest-pydev `_ `0.1 `_ `Sebastian Rahlf `_ py.test plugin to connect to a remote debug server with PyDev or PyCharm. - `pytest-qt `_ `1.0.2 `_ `Bruno Oliveira `_ pytest plugin that adds fixtures for testing Qt (PyQt and PySide) applications. - `pytest-quickcheck `_ `0.7 `_ `Tetsuya Morimoto `_ pytest plugin to generate random data inspired by QuickCheck - `pytest-rage `_ `0.1 `_ `Leonardo Santagada `_ pytest plugin to implement PEP712 - `pytest-random `_ `0.02 `_ `Leah Klearman `_ py.test plugin to randomize tests - `pytest-rerunfailures `_ `0.03 `_ `Leah Klearman `_ py.test plugin to re-run tests to eliminate flakey failures - `pytest-runfailed `_ `0.3 `_ `Dimitri Merejkowsky `_ implement a --failed option for pytest - `pytest-runner `_ `2.0 `_ `Jason R. Coombs `_ UNKNOWN - `pytest-sugar `_ `0.2.2 `_ `Teemu, Janne Vanhala `_ py.test plugin that adds instafail, ETA and neat graphics - `pytest-timeout `_ `0.3 `_ `Floris Bruynooghe `_ pytest plugin to abort tests after a timeout - `pytest-twisted `_ `1.4 `_ `Ralf Schmitt `_ A twisted plugin for py.test. - `pytest-xdist `_ `1.9 `_ `holger krekel and contributors `_ py.test xdist plugin for distributed testing and loop-on-failing modes - `pytest-xprocess `_ `0.8 `_ `Holger Krekel `_ pytest plugin to manage external processes across test runs - `pytest-yamlwsgi `_ `0.6 `_ `Ali Afshar `_ Run tests against wsgi apps defined in yaml - `pytest-zap `_ `0.1 `_ `Dave Hunt `_ OWASP ZAP plugin for py.test. +========================================================================================== ==================================================================================== ============================================================================================================================================= + Name Author Summary +========================================================================================== ==================================================================================== ============================================================================================================================================= + `pytest-bdd-0.6.1 `_ `Oleg Pidsadnyi `_ BDD for pytest + `pytest-bdd-splinter-0.5.2 `_ `Oleg Pidsadnyi `_ Splinter subplugin for Pytest BDD plugin + `pytest-bench-0.1.0 `_ `Concordus Applications `_ Benchmark utility that plugs into pytest. + `pytest-blockage-0.1 `_ `UNKNOWN `_ Disable network requests during a test run. + `pytest-browsermob-proxy-0.1 `_ `Dave Hunt `_ BrowserMob proxy plugin for py.test. + `pytest-bugzilla-0.2 `_ `Noufal Ibrahim `_ py.test bugzilla integration plugin + `pytest-cache-1.0 `_ `Holger Krekel `_ pytest plugin with mechanisms for caching across test runs + `pytest-capturelog-0.7 `_ `Meme Dough `_ py.test plugin to capture log messages + `pytest-codecheckers-0.2 `_ `Ronny Pfannschmidt `_ pytest plugin to add source code sanity checks (pep8 and friends) + `pytest-contextfixture-0.1.1 `_ `Andreas Pelme `_ Define pytest fixtures as context managers. + `pytest-couchdbkit-0.5.1 `_ `RonnyPfannschmidt `_ py.test extension for per-test couchdb databases using couchdbkit + `pytest-cov-1.6 `_ `Meme Dough `_ py.test plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing + `pytest-dbfixtures-0.3.8.3 `_ `Clearcode - The A Room `_ dbfixtures plugin for py.test. + `pytest-django-2.3.1 `_ `Andreas Pelme `_ A Django plugin for py.test. + `pytest-django-lite-0.1.0 `_ `David Cramer `_ The bare minimum to integrate py.test with Django. + `pytest-figleaf-1.0 `_ `holger krekel `_ py.test figleaf coverage plugin + `pytest-flakes-0.2 `_ `Florian Schulze, Holger Krekel and Ronny Pfannschmidt `_ pytest plugin to check source code with pyflakes + `pytest-greendots-0.2 `_ `UNKNOWN `_ Green progress dots + `pytest-growl-0.1 `_ `Anthony Long `_ Growl notifications for pytest results. + `pytest-incremental-0.3.0 `_ `Eduardo Naufel Schettino `_ an incremental test runner (pytest plugin) + `pytest-instafail-0.1.0 `_ `Janne Vanhala `_ py.test plugin to show failures instantly + `pytest-ipdb-0.1-prerelease `_ `Matthew de Verteuil `_ A py.test plug-in to enable drop to ipdb debugger on test failure. + `pytest-konira-0.2 `_ `Alfredo Deza `_ Run Konira DSL tests with py.test + `pytest-localserver-0.3 `_ `Sebastian Rahlf `_ py.test plugin to test server connections locally. + `pytest-marker-bugzilla-0.06 `_ `Eric Sammons `_ py.test bugzilla integration plugin, using markers + `pytest-markfiltration-0.8 `_ `adam goucher `_ UNKNOWN + `pytest-marks-0.4 `_ `adam goucher `_ UNKNOWN + `pytest-monkeyplus-1.1.0 `_ `Virgil Dupras `_ pytest's monkeypatch subclass with extra functionalities + `pytest-mozwebqa-1.1.1 `_ `Dave Hunt `_ Mozilla WebQA plugin for py.test. + `pytest-oerp-0.2.0 `_ `Leonardo Santagada `_ pytest plugin to test OpenERP modules + `pytest-osxnotify-0.1.4 `_ `Daniel Bader `_ OS X notifications for py.test results. + `pytest-paste-config-0.1 `_ `UNKNOWN `_ Allow setting the path to a paste config file + `pytest-pep8-1.0.5 `_ `Holger Krekel and Ronny Pfannschmidt `_ pytest plugin to check PEP8 requirements + `pytest-poo-0.2 `_ `Andreas Pelme `_ Visualize your crappy tests + `pytest-pydev-0.1 `_ `Sebastian Rahlf `_ py.test plugin to connect to a remote debug server with PyDev or PyCharm. + `pytest-qt-1.0.2 `_ `Bruno Oliveira `_ pytest plugin that adds fixtures for testing Qt (PyQt and PySide) applications. + `pytest-quickcheck-0.7 `_ `Tetsuya Morimoto `_ pytest plugin to generate random data inspired by QuickCheck + `pytest-rage-0.1 `_ `Leonardo Santagada `_ pytest plugin to implement PEP712 + `pytest-random-0.02 `_ `Leah Klearman `_ py.test plugin to randomize tests + `pytest-rerunfailures-0.03 `_ `Leah Klearman `_ py.test plugin to re-run tests to eliminate flakey failures + `pytest-runfailed-0.3 `_ `Dimitri Merejkowsky `_ implement a --failed option for pytest + `pytest-runner-2.0 `_ `Jason R. Coombs `_ UNKNOWN + `pytest-sugar-0.2.2 `_ `Teemu, Janne Vanhala `_ py.test plugin that adds instafail, ETA and neat graphics + `pytest-timeout-0.3 `_ `Floris Bruynooghe `_ pytest plugin to abort tests after a timeout + `pytest-twisted-1.4 `_ `Ralf Schmitt `_ A twisted plugin for py.test. + `pytest-xdist-1.9 `_ `holger krekel and contributors `_ py.test xdist plugin for distributed testing and loop-on-failing modes + `pytest-xprocess-0.8 `_ `Holger Krekel `_ pytest plugin to manage external processes across test runs + `pytest-yamlwsgi-0.6 `_ `Ali Afshar `_ Run tests against wsgi apps defined in yaml + `pytest-zap-0.1 `_ `Dave Hunt `_ OWASP ZAP plugin for py.test. -================================================================================== ============================================================================ ==================================================================================== ============================================================================================================================================= +========================================================================================== ==================================================================================== ============================================================================================================================================= -*(Updated on 2013-10-11)* +*(Updated on 2013-10-14)* diff --git a/doc/en/plugins_index/test_plugins_index.py b/doc/en/plugins_index/test_plugins_index.py index 4183a9e13..a5836e27f 100644 --- a/doc/en/plugins_index/test_plugins_index.py +++ b/doc/en/plugins_index/test_plugins_index.py @@ -76,13 +76,13 @@ expected_output = '''\ List of Third-Party Plugins =========================== -==================================== ============================= ============================= =================== - Name Version Author Summary -==================================== ============================= ============================= =================== - `pytest-plugin1 `_ `1.0 `_ `someone `_ some plugin - `pytest-plugin2 `_ `1.2 `_ `other `_ some other plugin +============================================ ============================= =================== + Name Author Summary +============================================ ============================= =================== + `pytest-plugin1-1.0 `_ `someone `_ some plugin + `pytest-plugin2-1.2 `_ `other `_ some other plugin -==================================== ============================= ============================= =================== +============================================ ============================= =================== *(Updated on 2013-10-20)* '''