active questions tagged wikipedia+mediawiki - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T19:44:53Zhttp://stackoverflow.com/feeds/tag/wikipedia+mediawikihttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1603681/truncate-mediawiki0Truncate mediawikiPierre2009-10-21T21:12:20Z2009-11-16T20:32:02Z
<p>Hi all,
I'm working with the mediawiki API ( e.g. <a href="http://en.wikipedia.org/w/api.php" rel="nofollow">http://en.wikipedia.org/w/api.php</a>) and I would like to be able to 'truncate' the mysql tables in order to reset the local installation while keeping some tables (users, ?...).
What would be the SQL queries ? </p>
<p>I would say: tuncate all the tables but ${PREFIX}_user and update ${PREFIX}_user set user_editcount=0 ?</p>
<p>Any other(safer) suggestion ?</p>
http://stackoverflow.com/questions/1021406/mediawiki-invalid-edit-token0Mediawiki: Invalid Edit TokenStefan2009-06-20T10:52:39Z2009-09-07T22:00:01Z
<p>Hello,</p>
<p>I use the API with HTTP POST to create a wiki page in a Mediawiki (1.14):</p>
<ol>
<li>I require an edit token </li>
<li>It works, I get a fresh token (example: d96d72fae5e6c43b0b9f63d82ace366)</li>
<li>I send the HTTP POST for creating a new site with my new token (sth. similar to "d96d72fae5e6c43b0b9f63d82ace366+\"</li>
<li>I get an error message <strong>"Invalid Token"</strong></li>
</ol>
<p>I don't understand why I get this message, because I send a freshly created token in my POST request.</p>
<p>Any idea?</p>
http://stackoverflow.com/questions/1318644/how-to-make-templates-after-installing-mediawiki0How to make templates after installing MediaWiki?NARKOZ2009-08-23T14:04:28Z2009-08-23T16:24:03Z
<p>Hi. I had just installed MediaWiki. What must I do to have wikipedia style templates like this: <a href="http://i.piccy.info/i4/4b/37/fe303fda0c813c0bda717d3a1e3b.png" rel="nofollow">http://i.piccy.info/i4/4b/37/fe303fda0c813c0bda717d3a1e3b.png</a> (example).
I have already installed ParserFunctions Extension on my MediaWiki CMS. I have tried to look source & copy it, but it didn't work. Thanks.</p>
<p>*<em>sorry for my English (it isn't my native language)</em></p>
http://stackoverflow.com/questions/1126760/recusive-transformations-using-xslt-xpathdocument-and-mediawiki0Recusive transformations using xslt, xpath:document() and mediawikiPierre2009-07-14T17:13:35Z2009-07-14T18:32:15Z
<p>I want to use the <a href="http://en.wikipedia.org/w/api.php" rel="nofollow">wikipedia API</a> to find the French pages including the ''<strong>Template:Infobox Scientifique</strong>'' missing in the english version. So, my idea was to process the following document with xproc:</p>
<p><a href="http://fr.wikipedia.org/w/api.php?action=query&format=xml&list=embeddedin&eititle=Template:Infobox%20Scientifique&eilimit=400" rel="nofollow">http://fr.wikipedia.org/w/api.php?action=query&format=xml&list=embeddedin&eititle=Template:Infobox%20Scientifique&eilimit=400</a></p>
<p>and the following xslt stylesheet:</p>
<pre><code><?xml version='1.0' ?>
<xsl:stylesheet
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
version='1.0'
>
<xsl:output method='text' indent="yes"/>
<xsl:template match="/">
<xsl:apply-templates select="api"/>
</xsl:template>
<xsl:template match="api">
<xsl:for-each select="query/embeddedin/ei">
<xsl:variable name="title" select="translate(@title,&apos; &apos;,&apos;_&apos;)"/>
<xsl:variable name="english-title">
<xsl:call-template name="englishTitle"><xsl:with-param name="title" select="@title"/></xsl:call-template>
</xsl:variable>
<xsl:value-of select="$english-title"/><xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template name="englishTitle">
<xsl:param name="title"/>
<xsl:variable name="uri1" select="concat(&apos;http://fr.wikipedia.org/w/api.php?action=query&amp;format=xml&amp;prop=langlinks&amp;lllimit=500&amp;titles=&apos;,translate($title,&apos; &apos;,&apos;_&apos;))"/>
<xsl:message><xsl:value-of select="$uri1"/></xsl:message>
<xsl:message>count=<xsl:value-of select="count(document($uri1,/api/query/pages/page/langlinks/ll))"/></xsl:message>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>The XSLT extract all the articles containing the Template and for each article I wanted to call wikipedia to get the links between the wikis. Here, the template <strong>englishTitle</strong> calls the xpath function <strong>document()</strong> .</p>
<p>But it always says that <code>count(ll)=1</code> whereas there are plenty nodes. (e.g. <a href="http://fr.wikipedia.org/w/api.php?action=query&format=xml&prop=langlinks&lllimit=500&titles=Carl%5FSagan" rel="nofollow">http://fr.wikipedia.org/w/api.php?action=query&format=xml&prop=langlinks&lllimit=500&titles=Carl_Sagan</a> ).</p>
<p>Can't I process the nodes returned by the <strong>document()</strong> function ?</p>
http://stackoverflow.com/questions/1094829/inserting-articles-straight-into-mediawiki-database1Inserting articles straight into MediaWiki databaseCosmin2009-07-07T20:56:45Z2009-07-10T05:08:55Z
<p>I need a way to insert new articles straight into my MediaWiki database without damaging the wiki installation. </p>
<p>I'm guessing if I knew what tables/attributes MediaWiki inserts to when creating a new article then I could fill them in myself.</p>
<p>Does anyone know a better way or have any suggestions?</p>
http://stackoverflow.com/questions/964454/how-to-use-wikipedia-api-if-it-exists-1How to use wikipedia api if it exists?chris2009-06-08T11:29:07Z2009-06-08T12:12:45Z
<p>Hi,</p>
<p>I'm trying to find out if there's a wikipedia api (I Think it is related to the mediawiki?). </p>
<p>If so, I would like to know how I would tell wikipedia to give me an article about the new york yankees for example.</p>
<p>What would the REST url be for this example?</p>
<p>All the docs on this subject seem fairly complicated.</p>
http://stackoverflow.com/questions/908813/copy-chosen-wikipedia-articles-into-own-wiki0Copy chosen Wikipedia articles into own wiki?alimango2009-05-26T03:31:11Z2009-05-26T05:04:50Z
<p>Hi, is there a way to batch copy certain wikipedia articles(about 10,000) to my own mediawiki site?</p>
<p>EDIT:
How do I do this without overwriting similarly named articles/pages?
Also I don't plan on using illegal means (crawlers etc) </p>
http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api2c# WebRequest to connect to wikipedia APINickJ2009-04-21T15:02:22Z2009-04-21T19:05:05Z
<p>Hey, </p>
<p>This may be a pathetically simple problem but I cannot seem to format the post webrequest/response to get data from the wikipedia api. I have posted my code below if anyone can help me see my problem. </p>
<pre><code>string pgTitle = txtPageTitle.Text;
Uri address = new Uri("http://en.wikipedia.org/w/api.php");
HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest;
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
string action = "query";
string query = pgTitle;
StringBuilder data = new StringBuilder();
data.Append("action=" + HttpUtility.UrlEncode(action));
data.Append("&query=" + HttpUtility.UrlEncode(query));
byte[] byteData = UTF8Encoding.UTF8.GetBytes(data.ToString());
request.ContentLength = byteData.Length;
using (Stream postStream = request.GetRequestStream())
{
postStream.Write(byteData, 0, byteData.Length);
}
using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
{
// Get the response stream
StreamReader reader = new StreamReader(response.GetResponseStream());
divWikiData.InnerText = reader.ReadToEnd();
}
</code></pre>
http://stackoverflow.com/questions/703399/someway-of-removing-internal-links-from-wikipedia-xml-files0Someway of removing internal links from Wikipedia XML files?Tris Thomas2009-03-31T22:55:30Z2009-04-04T00:35:36Z
<p>If I have downloaded Wikipedia XML dumps, is there any way of removing all of the internal links from within an XML file?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/611827/what-software-does-wikia-use-and-can-i-have-that-for-my-own-hosted-wiki-2What software does Wikia use and can I have that for my own hosted Wiki?Jeremy Rudd2009-03-04T18:24:19Z2009-03-25T08:04:28Z
<p>I want my own hosted Wiki so its fully under my control, but would like something as advanced as <a href="http://starwars.wikia.com/wiki/Main%5FPage" rel="nofollow"><strong>Wikia</strong></a> rather than the plain, feature-lacking <a href="http://en.wikipedia.org/wiki/Main%5FPage" rel="nofollow"><strong>Wikipedia</strong></a> style MediaWiki.</p>
<p>What software does Wikia use and can I have that for my own hosted Wiki? Is it just upgraded/added-on MediaWiki. </p>