mediawiki-gateway 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +4 -0
- data/Rakefile +4 -3
- data/VERSION +1 -1
- data/doc/classes/MediaWiki.html +8 -8
- data/doc/classes/MediaWiki/Config.html +71 -71
- data/doc/classes/MediaWiki/Gateway.html +474 -262
- data/doc/created.rid +1 -1
- data/doc/files/{README_txt.html → README.html} +8 -5
- data/doc/files/{script/delete_book_rb.html → lib/media_wiki/config_rb.html} +7 -6
- data/doc/files/{media_wiki → lib/media_wiki}/gateway_rb.html +3 -4
- data/doc/files/{media_wiki → lib/media_wiki}/utils_rb.html +2 -2
- data/doc/files/script/create_page_rb.html +2 -3
- data/doc/files/{media_wiki/config_rb.html → script/delete_batch_rb.html} +5 -5
- data/doc/files/script/export_xml_rb.html +2 -2
- data/doc/files/script/get_page_rb.html +2 -2
- data/doc/files/script/import_xml_rb.html +2 -2
- data/doc/files/script/run_fake_media_wiki_rb.html +117 -0
- data/doc/files/script/upload_commons_rb.html +2 -3
- data/doc/files/script/upload_file_rb.html +2 -3
- data/doc/fr_file_index.html +6 -6
- data/doc/fr_method_index.html +13 -11
- data/doc/index.html +1 -1
- data/lib/media_wiki/gateway.rb +128 -15
- data/mediawiki-gateway.gemspec +12 -10
- data/script/create_page.rb +1 -2
- data/script/{delete_book.rb → delete_batch.rb} +1 -1
- data/script/export_xml.rb +1 -1
- data/script/get_page.rb +1 -1
- data/script/import_xml.rb +1 -1
- data/script/upload_commons.rb +1 -2
- data/script/upload_file.rb +1 -2
- data/spec/gateway_spec.rb +1 -1
- metadata +26 -14
- data/doc/files/script/undelete_page_rb.html +0 -101
- data/script/undelete_page.rb +0 -15
data/doc/created.rid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
Fri, 15 Oct 2010 22:06:45 +1100
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
7
|
<head>
|
8
|
-
<title>File: README
|
8
|
+
<title>File: README</title>
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
11
|
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
@@ -47,16 +47,16 @@
|
|
47
47
|
|
48
48
|
|
49
49
|
<div id="fileHeader">
|
50
|
-
<h1>README
|
50
|
+
<h1>README</h1>
|
51
51
|
<table class="header-table">
|
52
52
|
<tr class="top-aligned-row">
|
53
53
|
<td><strong>Path:</strong></td>
|
54
|
-
<td>README
|
54
|
+
<td>README
|
55
55
|
</td>
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Fri Oct 01 18:42:56 +1000 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -72,12 +72,15 @@
|
|
72
72
|
<h1><a href="../classes/MediaWiki/Gateway.html">MediaWiki::Gateway</a></h1>
|
73
73
|
<pre>
|
74
74
|
Ruby framework for MediaWiki API manipulation
|
75
|
-
|
75
|
+
|
76
|
+
Gem: http://rubygems.org/gems/mediawiki-gateway
|
77
|
+
RDoc: http://rubydoc.info/gems/mediawiki-gateway
|
76
78
|
</pre>
|
77
79
|
<h2>Example</h2>
|
78
80
|
<pre>
|
79
81
|
Simple page creation script:
|
80
82
|
|
83
|
+
require 'media_wiki'
|
81
84
|
mw = MediaWiki::Gateway.new('http://my-wiki.example/w/api.php')
|
82
85
|
mw.login('RubyBot', 'pa$$w0rd')
|
83
86
|
mw.create('PageTitle', 'Hello world!', 'Comment: My first page')
|
@@ -5,10 +5,10 @@
|
|
5
5
|
|
6
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
7
|
<head>
|
8
|
-
<title>File:
|
8
|
+
<title>File: config.rb</title>
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="
|
11
|
+
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
12
12
|
<script type="text/javascript">
|
13
13
|
// <![CDATA[
|
14
14
|
|
@@ -47,16 +47,16 @@
|
|
47
47
|
|
48
48
|
|
49
49
|
<div id="fileHeader">
|
50
|
-
<h1>
|
50
|
+
<h1>config.rb</h1>
|
51
51
|
<table class="header-table">
|
52
52
|
<tr class="top-aligned-row">
|
53
53
|
<td><strong>Path:</strong></td>
|
54
|
-
<td>
|
54
|
+
<td>lib/media_wiki/config.rb
|
55
55
|
</td>
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Sun Sep 12 16:38:12 +1000 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -73,7 +73,8 @@
|
|
73
73
|
<h3 class="section-bar">Required files</h3>
|
74
74
|
|
75
75
|
<div class="name-list">
|
76
|
-
|
76
|
+
optparse
|
77
|
+
yaml
|
77
78
|
</div>
|
78
79
|
</div>
|
79
80
|
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<title>File: gateway.rb</title>
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="
|
11
|
+
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
12
12
|
<script type="text/javascript">
|
13
13
|
// <![CDATA[
|
14
14
|
|
@@ -51,12 +51,12 @@
|
|
51
51
|
<table class="header-table">
|
52
52
|
<tr class="top-aligned-row">
|
53
53
|
<td><strong>Path:</strong></td>
|
54
|
-
<td>media_wiki/gateway.rb
|
54
|
+
<td>lib/media_wiki/gateway.rb
|
55
55
|
</td>
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Fri Oct 15 22:06:38 +1100 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -78,7 +78,6 @@
|
|
78
78
|
rest_client
|
79
79
|
rexml/document
|
80
80
|
uri
|
81
|
-
<a href="utils_rb.html">media_wiki/utils</a>
|
82
81
|
</div>
|
83
82
|
</div>
|
84
83
|
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<title>File: utils.rb</title>
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="
|
11
|
+
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
12
12
|
<script type="text/javascript">
|
13
13
|
// <![CDATA[
|
14
14
|
|
@@ -51,7 +51,7 @@
|
|
51
51
|
<table class="header-table">
|
52
52
|
<tr class="top-aligned-row">
|
53
53
|
<td><strong>Path:</strong></td>
|
54
|
-
<td>media_wiki/utils.rb
|
54
|
+
<td>lib/media_wiki/utils.rb
|
55
55
|
</td>
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Fri Oct 01 18:30:10 +1000 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -79,8 +79,7 @@ Sample script for fetching a page‘s current contents in Wiki markup
|
|
79
79
|
<h3 class="section-bar">Required files</h3>
|
80
80
|
|
81
81
|
<div class="name-list">
|
82
|
-
|
83
|
-
<a href="../media_wiki/config_rb.html">media_wiki/config</a>
|
82
|
+
lib/media_wiki
|
84
83
|
</div>
|
85
84
|
</div>
|
86
85
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
7
|
<head>
|
8
|
-
<title>File:
|
8
|
+
<title>File: delete_batch.rb</title>
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
11
|
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
@@ -47,16 +47,16 @@
|
|
47
47
|
|
48
48
|
|
49
49
|
<div id="fileHeader">
|
50
|
-
<h1>
|
50
|
+
<h1>delete_batch.rb</h1>
|
51
51
|
<table class="header-table">
|
52
52
|
<tr class="top-aligned-row">
|
53
53
|
<td><strong>Path:</strong></td>
|
54
|
-
<td>
|
54
|
+
<td>script/delete_batch.rb
|
55
55
|
</td>
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Fri Oct 01 18:30:41 +1000 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -73,7 +73,7 @@
|
|
73
73
|
<h3 class="section-bar">Required files</h3>
|
74
74
|
|
75
75
|
<div class="name-list">
|
76
|
-
|
76
|
+
lib/media_wiki
|
77
77
|
</div>
|
78
78
|
</div>
|
79
79
|
|
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Fri Oct 01 18:30:47 +1000 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -79,7 +79,7 @@ Export <a href="../../classes/MediaWiki.html">MediaWiki</a> pages as XML
|
|
79
79
|
<h3 class="section-bar">Required files</h3>
|
80
80
|
|
81
81
|
<div class="name-list">
|
82
|
-
|
82
|
+
lib/media_wiki
|
83
83
|
</div>
|
84
84
|
</div>
|
85
85
|
|
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Fri Oct 01 18:29:55 +1000 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -79,7 +79,7 @@ Sample script for fetching a page‘s current contents in Wiki markup
|
|
79
79
|
<h3 class="section-bar">Required files</h3>
|
80
80
|
|
81
81
|
<div class="name-list">
|
82
|
-
|
82
|
+
lib/media_wiki
|
83
83
|
</div>
|
84
84
|
</div>
|
85
85
|
|
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Fri Oct 01 18:30:57 +1000 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -79,7 +79,7 @@ Import a <a href="../../classes/MediaWiki.html">MediaWiki</a> XML dump
|
|
79
79
|
<h3 class="section-bar">Required files</h3>
|
80
80
|
|
81
81
|
<div class="name-list">
|
82
|
-
|
82
|
+
lib/media_wiki
|
83
83
|
</div>
|
84
84
|
</div>
|
85
85
|
|
@@ -0,0 +1,117 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: run_fake_media_wiki.rb</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>run_fake_media_wiki.rb</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>script/run_fake_media_wiki.rb
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Thu Sep 30 20:40:04 +1000 2010</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
<div id="description">
|
72
|
+
<p>
|
73
|
+
Helper script for running a live FakeMediaWiki instance instead of just
|
74
|
+
shamracking it.
|
75
|
+
</p>
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<div id="requires-list">
|
80
|
+
<h3 class="section-bar">Required files</h3>
|
81
|
+
|
82
|
+
<div class="name-list">
|
83
|
+
rubygems
|
84
|
+
sinatra/base
|
85
|
+
spec/fake_media_wiki/app
|
86
|
+
</div>
|
87
|
+
</div>
|
88
|
+
|
89
|
+
</div>
|
90
|
+
|
91
|
+
|
92
|
+
</div>
|
93
|
+
|
94
|
+
|
95
|
+
<!-- if includes -->
|
96
|
+
|
97
|
+
<div id="section">
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
<!-- if method_list -->
|
107
|
+
|
108
|
+
|
109
|
+
</div>
|
110
|
+
|
111
|
+
|
112
|
+
<div id="validator-badges">
|
113
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
114
|
+
</div>
|
115
|
+
|
116
|
+
</body>
|
117
|
+
</html>
|
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Fri Oct 01 18:31:07 +1000 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -73,8 +73,7 @@
|
|
73
73
|
<h3 class="section-bar">Required files</h3>
|
74
74
|
|
75
75
|
<div class="name-list">
|
76
|
-
|
77
|
-
<a href="../media_wiki/config_rb.html">media_wiki/config</a>
|
76
|
+
lib/media_wiki
|
78
77
|
</div>
|
79
78
|
</div>
|
80
79
|
|
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Fri Oct 01 18:31:14 +1000 2010</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -79,8 +79,7 @@ Sample script for fetching a page‘s current contents in Wiki markup
|
|
79
79
|
<h3 class="section-bar">Required files</h3>
|
80
80
|
|
81
81
|
<div class="name-list">
|
82
|
-
|
83
|
-
<a href="../media_wiki/config_rb.html">media_wiki/config</a>
|
82
|
+
lib/media_wiki
|
84
83
|
</div>
|
85
84
|
</div>
|
86
85
|
|
data/doc/fr_file_index.html
CHANGED
@@ -20,16 +20,16 @@
|
|
20
20
|
<div id="index">
|
21
21
|
<h1 class="section-bar">Files</h1>
|
22
22
|
<div id="index-entries">
|
23
|
-
<a href="files/
|
24
|
-
<a href="files/media_wiki/config_rb.html">media_wiki/config.rb</a><br />
|
25
|
-
<a href="files/media_wiki/gateway_rb.html">media_wiki/gateway.rb</a><br />
|
26
|
-
<a href="files/media_wiki/utils_rb.html">media_wiki/utils.rb</a><br />
|
23
|
+
<a href="files/README.html">README</a><br />
|
24
|
+
<a href="files/lib/media_wiki/config_rb.html">lib/media_wiki/config.rb</a><br />
|
25
|
+
<a href="files/lib/media_wiki/gateway_rb.html">lib/media_wiki/gateway.rb</a><br />
|
26
|
+
<a href="files/lib/media_wiki/utils_rb.html">lib/media_wiki/utils.rb</a><br />
|
27
27
|
<a href="files/script/create_page_rb.html">script/create_page.rb</a><br />
|
28
|
-
<a href="files/script/
|
28
|
+
<a href="files/script/delete_batch_rb.html">script/delete_batch.rb</a><br />
|
29
29
|
<a href="files/script/export_xml_rb.html">script/export_xml.rb</a><br />
|
30
30
|
<a href="files/script/get_page_rb.html">script/get_page.rb</a><br />
|
31
31
|
<a href="files/script/import_xml_rb.html">script/import_xml.rb</a><br />
|
32
|
-
<a href="files/script/
|
32
|
+
<a href="files/script/run_fake_media_wiki_rb.html">script/run_fake_media_wiki.rb</a><br />
|
33
33
|
<a href="files/script/upload_commons_rb.html">script/upload_commons.rb</a><br />
|
34
34
|
<a href="files/script/upload_file_rb.html">script/upload_file.rb</a><br />
|
35
35
|
</div>
|
data/doc/fr_method_index.html
CHANGED
@@ -20,25 +20,27 @@
|
|
20
20
|
<div id="index">
|
21
21
|
<h1 class="section-bar">Methods</h1>
|
22
22
|
<div id="index-entries">
|
23
|
-
<a href="classes/MediaWiki/Config.html#
|
23
|
+
<a href="classes/MediaWiki/Config.html#M000025">abort (MediaWiki::Config)</a><br />
|
24
24
|
<a href="classes/MediaWiki/Gateway.html#M000007">create (MediaWiki::Gateway)</a><br />
|
25
25
|
<a href="classes/MediaWiki/Gateway.html#M000008">delete (MediaWiki::Gateway)</a><br />
|
26
|
-
<a href="classes/MediaWiki/Gateway.html#M000014">
|
27
|
-
<a href="classes/MediaWiki/Gateway.html#M000016">
|
26
|
+
<a href="classes/MediaWiki/Gateway.html#M000014">download (MediaWiki::Gateway)</a><br />
|
27
|
+
<a href="classes/MediaWiki/Gateway.html#M000016">export (MediaWiki::Gateway)</a><br />
|
28
|
+
<a href="classes/MediaWiki/Gateway.html#M000018">extensions (MediaWiki::Gateway)</a><br />
|
28
29
|
<a href="classes/MediaWiki/Gateway.html#M000005">get (MediaWiki::Gateway)</a><br />
|
29
|
-
<a href="classes/MediaWiki/Gateway.html#
|
30
|
-
<a href="classes/MediaWiki/Gateway.html#
|
31
|
-
<a href="classes/MediaWiki/Gateway.html#
|
32
|
-
<a href="classes/MediaWiki/Gateway.html#M000013">
|
30
|
+
<a href="classes/MediaWiki/Gateway.html#M000023">get_response (MediaWiki::Gateway)</a><br />
|
31
|
+
<a href="classes/MediaWiki/Gateway.html#M000020">get_token (MediaWiki::Gateway)</a><br />
|
32
|
+
<a href="classes/MediaWiki/Gateway.html#M000021">get_undelete_token (MediaWiki::Gateway)</a><br />
|
33
|
+
<a href="classes/MediaWiki/Gateway.html#M000013">image_info (MediaWiki::Gateway)</a><br />
|
34
|
+
<a href="classes/MediaWiki/Gateway.html#M000015">import (MediaWiki::Gateway)</a><br />
|
33
35
|
<a href="classes/MediaWiki/Gateway.html#M000010">list (MediaWiki::Gateway)</a><br />
|
34
36
|
<a href="classes/MediaWiki/Gateway.html#M000004">login (MediaWiki::Gateway)</a><br />
|
35
|
-
<a href="classes/MediaWiki/Gateway.html#
|
36
|
-
<a href="classes/MediaWiki/Gateway.html#
|
37
|
+
<a href="classes/MediaWiki/Gateway.html#M000022">make_api_request (MediaWiki::Gateway)</a><br />
|
38
|
+
<a href="classes/MediaWiki/Gateway.html#M000017">namespaces_by_prefix (MediaWiki::Gateway)</a><br />
|
37
39
|
<a href="classes/MediaWiki/Gateway.html#M000003">new (MediaWiki::Gateway)</a><br />
|
38
|
-
<a href="classes/MediaWiki/Config.html#
|
40
|
+
<a href="classes/MediaWiki/Config.html#M000024">new (MediaWiki::Config)</a><br />
|
39
41
|
<a href="classes/MediaWiki/Gateway.html#M000006">render (MediaWiki::Gateway)</a><br />
|
40
42
|
<a href="classes/MediaWiki/Gateway.html#M000011">search (MediaWiki::Gateway)</a><br />
|
41
|
-
<a href="classes/MediaWiki/Gateway.html#
|
43
|
+
<a href="classes/MediaWiki/Gateway.html#M000019">semantic_query (MediaWiki::Gateway)</a><br />
|
42
44
|
<a href="classes/MediaWiki/Gateway.html#M000009">undelete (MediaWiki::Gateway)</a><br />
|
43
45
|
<a href="classes/MediaWiki/Gateway.html#M000012">upload (MediaWiki::Gateway)</a><br />
|
44
46
|
<a href="classes/MediaWiki.html#M000001">version (MediaWiki)</a><br />
|