Index: trunk/wikiation/wikiation_exttest/logintest.py |
— | — | @@ -12,7 +12,7 @@ |
13 | 13 | l=logindata.LoginData( |
14 | 14 | name='6Basic', |
15 | 15 | protocol='http', |
16 | | - server='6.wikiation.nl', |
| 16 | + server='localhost', |
17 | 17 | scriptpath='/revisions/REL1_13_2', |
18 | 18 | version='1.13.2', |
19 | 19 | lang='en', |
Index: trunk/wikiation/wikiation_exttest/settings.py.example |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | # Distributed under the terms of the MIT license |
6 | 6 | |
7 | 7 | |
8 | | -#Settings file for wikiation_webtest |
| 8 | +#Settings file for exttest |
9 | 9 | import os |
10 | 10 | |
11 | 11 | # path to pywikipedia |
— | — | @@ -14,9 +14,8 @@ |
15 | 15 | from logindata import LoginData |
16 | 16 | |
17 | 17 | # How many tests per page should be permitted? |
18 | | -# (wikiation wants to hardlimit this to 1 only) |
19 | 18 | # (0 = infinite) |
20 | | -tests_per_page=1 |
| 19 | +tests_per_page=0 |
21 | 20 | |
22 | 21 | #What is the default category name? |
23 | 22 | category_name="Automated tests" |
— | — | @@ -36,7 +35,7 @@ |
37 | 36 | source_login=LoginData( |
38 | 37 | name='test_source', |
39 | 38 | protocol='http', |
40 | | - server='6.wikiation.nl', |
| 39 | + server='localhost', |
41 | 40 | scriptpath='/revisions/REL1_13_2', |
42 | 41 | lang='en', |
43 | 42 | encoding='utf-8', |
— | — | @@ -48,7 +47,7 @@ |
49 | 48 | target_login=LoginData( |
50 | 49 | name='test_target', |
51 | 50 | protocol='http', |
52 | | - server='6.wikiation.nl', |
| 51 | + server='localhost', |
53 | 52 | scriptpath='/revisions/exttest_target', |
54 | 53 | lang='en', |
55 | 54 | encoding='utf-8', |
Index: trunk/wikiation/wikiation_exttest/LICENSE |
— | — | @@ -1,4 +1,5 @@ |
2 | 2 | This software, copyright (C) 2008-2009 by Wikiation. This software is developed by Kim Bruning. |
| 3 | +Copyright (C) 2009 Kim Bruning |
3 | 4 | |
4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy |
5 | 6 | of this software and associated documentation files (the "Software"), to deal |
Index: trunk/wikiation/wikiation_exttest/base_family.py |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | def __init__(self, |
19 | 19 | name='test', |
20 | 20 | protocol='http', |
21 | | - server='6.wikiation.nl', |
| 21 | + server='localhost', |
22 | 22 | scriptpath='/revisions/REL1.13.2', |
23 | 23 | version='1.13.2', |
24 | 24 | lang='nl', |
Index: trunk/wikiation/wikiation_exttest/HELP |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | -------------------------- |
3 | | -Help for wikiation-exttest |
| 3 | +Help for exttester |
4 | 4 | |
5 | 5 | This software, copyright (C) 2008-2009 by Wikiation. |
6 | 6 | This software is developed by Kim Bruning. |
— | — | @@ -19,10 +19,10 @@ |
20 | 20 | Syntax: |
21 | 21 | |
22 | 22 | (unix) |
23 | | -./wikiation_webtest.py [options] |
| 23 | +./exttester.py [options] |
24 | 24 | |
25 | 25 | (all os) |
26 | | -python wikiation_webtest.py [options] |
| 26 | +python exttester.py [options] |
27 | 27 | |
28 | 28 | Options are all GNU long form: |
29 | 29 | |
— | — | @@ -51,7 +51,7 @@ |
52 | 52 | be replaced by a wikiformatted report on the test result. |
53 | 53 | This is helpful on-wiki for people who like to have their |
54 | 54 | tests and results on the same page. A separate element is used |
55 | | - to reduce the odds of wikiation-webtest accidentally mangeling |
| 55 | + to reduce the odds of exttester accidentally mangeling |
56 | 56 | the page. |
57 | 57 | |
58 | 58 | --test |
— | — | @@ -80,7 +80,7 @@ |
81 | 81 | the contents of the test category it may no longer be valid. |
82 | 82 | This might be a problem in your own programs. |
83 | 83 | |
84 | | - To prevent the above problems in wikiation_webtest, |
| 84 | + To prevent the above problems in exttester, |
85 | 85 | --pyfile and --xmlfile only use test information. |
86 | 86 | PageReference information, (X)HTML results, and diffs are ignored. |
87 | 87 | |
— | — | @@ -90,5 +90,5 @@ |
91 | 91 | name uses spaces or other strange characters, you may need to escape or |
92 | 92 | quote it. If you want to use unicode strings, ensure your shell and term pass |
93 | 93 | unicode correctly. |
94 | | - By default, wikiation webtest operates on the category Automated tests |
| 94 | + By default, exttester operates on the category Automated tests |
95 | 95 | (that is to say: [[Category:Automated tests]]). |
Index: trunk/wikiation/wikiation_exttest/examples/README |
— | — | @@ -1,3 +1,3 @@ |
2 | | -some of these files ahven't been upgraded to newer version of wikiation-webtest yet. |
| 2 | +some of these files ahven't been upgraded to newer version of exttester yet. |
3 | 3 | |
4 | 4 | use --dump-py and --dump-xml to generate your own example files |