active questions tagged wikipedia - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T07:16:51Z http://stackoverflow.com/feeds/tag/wikipedia http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1560167/how-to-access-wikipedia 1 How to access wikipedia surajitkhamrai 2009-10-13T13:12:57Z 2009-11-09T07:04:51Z <p>Hi,</p> <p>I want to access HTML content from wikipedia .But it is showing access denied.</p> <p>How can i access Wiki. Please give some suggestion</p> http://stackoverflow.com/questions/1509965/how-to-change-the-color-of-horizontal-line-on-a-wiki-page 0 How to change the color of horizontal line on a wiki page? Rajish 2009-10-02T14:45:58Z 2009-11-04T23:47:09Z <p>In wiki you can add horizontal line just by adding "----" in the text you enter. I just couldn't find what CSS section controls it. (And no, it's not "hr")</p> http://stackoverflow.com/questions/1658264/how-does-wikipedia-avoid-duplicate-entries 0 How does Wikipedia avoid duplicate entries? Ehsan Baghaki 2009-11-01T20:47:45Z 2009-11-02T11:34:21Z <p>How can websites as big as <a href="http://en.wikipedia.org/wiki/Wikipedia" rel="nofollow">Wikipedia</a> sort duplicated entries out?</p> <p>I need to know the exact procedure from the moment that user creates the duplicate entry and so on. If you don't know it but you know a method please send it.</p> <p>----update----</p> <p>Suppose there is wikipedia.com/horse and somebody afterward creates wikipedia.com/the_horse this is a duplicate entry! It should be deleted or may be redirected to the original page.</p> http://stackoverflow.com/questions/1633296/scraping-and-parsing-a-wikipedia-page 0 Scraping and Parsing a Wikipedia Page Blaenk 2009-10-27T19:56:33Z 2009-10-28T10:54:24Z <p>Hey guys. I'm wondering if there are any existing libraries in or accessible from Objective-C that would allow me to scrape pages formatted like <a href="http://en.wikipedia.org/wiki/October%5F27" rel="nofollow">this one</a>. Specifically, all of the dates and all of the text next to each date. If not, what would be the best way to go about doing this? Regular expressions? I heard that <code>NSString</code> might already have built-in methods for this. Is this true?</p> <p>I was looking around to see if there were any alternative to scraping, such as an XML file or API. I did find an API but the only clients I see available are in other languages and they seem to just be able to post content to pages, not retrieve it.</p> <p><strong>EDIT</strong>: So I found more information regarding the API at these links:</p> <ul> <li><a href="http://en.wikipedia.org/w/api.php" rel="nofollow">MediaWiki API</a></li> <li><a href="http://www.mediawiki.org/wiki/API%3AQuery" rel="nofollow">API:Query</a></li> </ul> <p>And I was able to come up with <a href="http://en.wikipedia.org/w/api.php?action=parse&amp;page=October%5F27" rel="nofollow">this request</a> which returns some HTML encoded text (Well the format is XML, but it includes the page's text such as <code>&amp;raquo;a href=</code> etc. I'll keep looking through the docs to see if I can make this come out a bit better, if not though, are there any recommendations on parsing this?</p> <p><strong>EDIT 2</strong>: Alright so thanks to <a href="http://www.mediawiki.org/wiki/Manual%3AParameters%5Fto%5Findex.php#Raw" rel="nofollow">this doc page</a>, the simplest and cleanest way I've been able to retrieve the data is using this <a href="http://en.wikipedia.org/w/index.php?title=October%5F27&amp;action=raw&amp;section=1" rel="nofollow">constructed link</a> which returns the raw data (<em>In wiki markup</em>) of the relevant section. However, I guess I would then need to parse that, though if that really is the case, it should be a lot easier than the entire article.</p> <p>Does anyone have any recommendations on parsing wiki markup such as the following in Objective-C?</p> <pre><code>==Events== * [[710]] &amp;ndash; [[Saracen]] invasion of [[Sardinia]]. *[[1275]] &amp;ndash; Traditional founding of the city of [[Amsterdam]]. *[[1682]] &amp;ndash; [[Philadelphia]], [[Pennsylvania]] is founded. </code></pre> <p>What I want to end up having is, I guess an <code>NSDictionary</code> or similar collection that will store the date with the accompanying snippet of information. Thanks!</p> http://stackoverflow.com/questions/1603681/truncate-mediawiki 0 Truncate mediawiki Pierre 2009-10-21T21:12:20Z 2009-10-21T21:12:20Z <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/24546/why-cant-i-fetch-wikipedia-pages-with-lwpsimple 3 Why can't I fetch wikipedia pages with LWP::Simple? Jesse Beder 2008-08-23T19:54:09Z 2009-10-21T10:29:14Z <p>I'm trying to fetch Wikipedia pages using <a href="http://search.cpan.org/dist/libwww-perl" rel="nofollow">LWP::Simple</a>, but they're not coming back. This code:</p> <pre><code>#!/usr/bin/perl use strict; use LWP::Simple; print get("http://en.wikipedia.org/wiki/Stack_overflow"); </code></pre> <p>doesn't print anything. But if I use some other webpage, say <code>http://www.google.com</code>, it works fine. </p> <p>Is there some other name that I should be using to refer to Wikipedia pages? </p> <p>What could be going on here?</p> http://stackoverflow.com/questions/1586698/are-partially-updated-values-when-multithreading-still-a-concern-on-modern-cpus 1 Are partially updated values when multithreading still a concern on modern CPUs? Joseph Garvin 2009-10-19T02:21:36Z 2009-10-19T03:02:16Z <p>From <a href="http://en.wikipedia.org/wiki/Read%5Fcopy%5Fupdate" rel="nofollow">the Wikipedia article on Read-Copy-Update</a>:</p> <blockquote> <p>The reason that it is safe to run the removal phase concurrently with readers is the semantics of modern CPUs guarantee that readers will see either the old or the new version of the data structure rather than a partially updated reference.</p> </blockquote> <p>Is this true for all modern CPUs (ARM, x86, PPC, etc.)? Is it likely to change in the future? It seems awfully nice to never need to pay the cost of doing a locked load so long as you don't mind possibly getting the old value again (this probably isn't an issue for many applications -- basically for any app that could use read-copy-update).</p> http://stackoverflow.com/questions/1565347/get-first-lines-of-wikipedia-article 3 Get first lines of Wikipedia Article theomega 2009-10-14T10:03:38Z 2009-10-16T18:01:20Z <p><strong>I got a Wikipedia-Article and I want to fetch the first z lines (or the first x chars, or the first y words, doesn't matter) from the article.</strong> </p> <p>The problem: I can get either the source Wiki-Text (via API) or the parsed HTML (via direct HTTP-Request, eventually on the print-version) but how can I find the first lines displayed? Normaly the source (both html and wikitext) starts with the info-boxes and images and the first real text to display is somewhere down in the code.</p> <p>For example: <a href="http://en.wikipedia.org/w/index.php?title=Albert%5FEinstein&amp;printable=yes" rel="nofollow">Albert Einstein on Wikipedia</a> (print Version). Look in the code, the first real-text-line <em>"Albert Einstein (pronounced /ˈælbərt ˈaɪnstaɪn/; German: [ˈalbɐt ˈaɪ̯nʃtaɪ̯n]; 14 March 1879–18 April 1955) was a theoretical physicist."</em> is not on the start. The same applies to the <a href="http://en.wikipedia.org/w/index.php?title=Albert%5FEinstein&amp;action=edit" rel="nofollow">Wiki-Source</a>, it starts with the same info-box and so on.</p> <p><strong>So how would you accomplish this task? Programming language is java, but this shouldn't matter.</strong></p> <p><em>A solution which came to my mind was to use an xpath query but this query would be rather complicated to handle all the border-cases. [update]It wasn't that complicated, see my solution below![/update]</em></p> <p>Thanks!</p> http://stackoverflow.com/questions/1474982/wikipedia-bots-and-captcha 0 wikipedia bots and captcha Phil 2009-09-25T01:21:43Z 2009-10-14T22:07:51Z <p>I see there are many <a href="http://en.wikipedia.org/wiki/User%3AJarry1250/FrameworkTable" rel="nofollow">php (and other) frameworks</a> for writing wikipedia bots, but isn't captcha a problem? Or bots don't have to solve it (but that sounds like there's no point to having captcha in the first place...)? Or maybe i can make my prog stop and let me fill captcha in?</p> http://stackoverflow.com/questions/1557755/any-tool-to-display-wictionary-raw-content-as-html 0 Any tool to display Wictionary raw content as HTML ? Julien 2009-10-13T01:00:45Z 2009-10-13T01:00:45Z <p>Hello,</p> <p>I have just downloaded the last Wictionary dump from <a href="http://download.wikimedia.org/backup-index.html" rel="nofollow">their backup</a> and I would like to display the content of some articles in HTML format.</p> <p>The articles contents come the way they were written: using the wiki syntax, full of internal links, formatting symbols, abreviations and category keywords.</p> <p>Are you aware of any tool I could use to <strong>interpret this content back to HTML</strong>, maybe after a few simplifications like removing internal links and some paragraphs.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1447470/how-does-this-lexographic-order-generation-algorithm-work 1 How does this "Lexographic order generation algorithm" work? eSKay 2009-09-19T01:41:21Z 2009-10-05T07:12:40Z <p>from <a href="http://en.wikipedia.org/wiki/Permutation#Lexicographical%5Forder%5Fgeneration" rel="nofollow">Wikipedia</a>:</p> <p><strong>Lexicographical order generation</strong></p> <blockquote> <p>For every number k, with 0 ≤ k &lt; n!, the following algorithm generates the corresponding lexicographical permutation of the initial sequence sj, j = 1, ..., n:</p> <pre><code>function permutation(k, s) { var int n:= length(s); factorial:= 1; for j= 2 to n- 1 { // compute (n- 1)! factorial:= factorial* j; } for j= 1 to n- 1 { tempj:= (k/ factorial) mod (n+ 1- j); temps:= s[j+ tempj] for i= j+ tempj to j+ 1 step -1 { s[i]:= s[i- 1]; // shift the chain right } s[j]:= temps; factorial:= factorial/ (n- j); } return s; } </code></pre> </blockquote> <p>What is the <strong>logic</strong> behind this? <strong>How does it work??</strong></p> http://stackoverflow.com/questions/1467336/downloading-images-from-wikimedia-commons 0 Downloading Images from WikiMedia Commons tomvon 2009-09-23T17:00:09Z 2009-09-24T09:56:01Z <p>Is anyone aware of a way to programatically download images from WikiMedia Commons without registering for a Bot account? It seems like the only way to get approval for a Bot account is if it adds to or edits information already on Wikimedia. If you try to download any images, without a bot account, using some of the api libraries out there you get error messages instead of the images. Seems like they block anyone not coming in from a browser. It seems like WikiMedia Commons is somewhat of a walled garden despite the feel good free vibe they try to portray. "Free" content goes in but you can't get it out. Anyone else have any experience with this? Am I missing something here?</p> http://stackoverflow.com/questions/1400717/reverse-wikipedia-geotagging-lookup 8 Reverse wikipedia geotagging lookup bjarkef 2009-09-09T16:30:37Z 2009-09-09T18:59:28Z <p>Wikipedia is <a href="http://en.wikipedia.org/wiki/Geotagging" rel="nofollow">geotagging</a> a <a href="http://en.wikipedia.org/wiki/Aalborg" rel="nofollow">lot</a> <a href="http://en.wikipedia.org/wiki/British%5FIsles" rel="nofollow">of</a> <a href="http://en.wikipedia.org/wiki/Kent%27s%5FCavern" rel="nofollow">its</a> <a href="http://en.wikipedia.org/wiki/Aalborghus%5FCastle" rel="nofollow">articles</a>. (Look in the top right corner of the page.)</p> <p>Is there any API for querying all <a href="http://en.wikipedia.org/wiki/Wikipedia%3AWikiProject%5FGeographical%5Fcoordinates" rel="nofollow">geotagged pages</a> within a specified radius of a geographical position?</p> <p><strong>Update</strong></p> <p>Okay, so based on lost-theory's answer I tried this (on <a href="http://dbpedia.org/snorql/" rel="nofollow">dbpedia query explorer</a>):</p> <pre><code>PREFIX geo: &lt;http://www.w3.org/2003/01/geo/wgs84_pos#&gt; SELECT ?subject ?label ?lat ?long WHERE { ?subject geo:lat ?lat. ?subject geo:long ?long. ?subject rdfs:label ?label. FILTER(xsd:float(?lat) - 57.03185 &lt;= 0.05 &amp;&amp; 57.03185 - xsd:float(?lat) &lt;= 0.05 &amp;&amp; xsd:float(?long) - 9.94513 &lt;= 0.05 &amp;&amp; 9.94513 - xsd:float(?long) &lt;= 0.05 &amp;&amp; lang(?label) = "en" ). } LIMIT 20 </code></pre> <p>This is very close to what I want, except it returns results within a (<a href="http://en.wikipedia.org/wiki/Local%5Fproperty" rel="nofollow">local</a>) square around the point and not a circle. Also I would like if the results where sorted based on the distance from the point. (If possible.)</p> <p><strong>Update 2</strong></p> <p>I am trying to determine the euclidean distance as an approximation of the true distance, But I am having trouble on squaring a number in sparql. (<a href="http://stackoverflow.com/questions/1401401/power-in-sparql-and-other-math-functions">Question opened here</a>.) When I get something useful I will update the question, but in the meantime I will appreciate any suggestions on alternative approaches.</p> http://stackoverflow.com/questions/1021406/mediawiki-invalid-edit-token 0 Mediawiki: Invalid Edit Token Stefan 2009-06-20T10:52:39Z 2009-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/1315260/search-by-topics-and-extract-keywords-from-articles-in-wikipedia 0 Search by topics and extract keywords from articles in Wikipedia l2mt 2009-08-22T05:54:52Z 2009-08-23T22:02:27Z <p>Hi. I'm doing a project in java in which I have to process a wikipedia dump file. I'm looking for a library to extract keywords in wikipedia articles... Basically I want to read every tag page in the wikipedia xml dump and compare it with a list of topics and categories and if it is correct , to choose it and add to my results. I'm not interested in read the dump or write wikipedia results, only I want to know about any library that let me to search by topics in the titles and text of a wikipedia article... For example... If the input is "dog" i want the wikipedia articles about dog and if is possible any page under dogs categories.</p> <p>It doesn't matter if a library for general purpose and not is specified for wikipedia. I need to put the wikitext as argument and received a list of keywords, including categories... I've found some wikipedia libraries that works fine like <a href="http://wikipedia-miner.sourceforge.net/" rel="nofollow">Wikipedia-Miner</a> or the <a href="http://www.ukp.tu-darmstadt.de/software/jwpl/" rel="nofollow">Java Wikipedia Library</a> but with the first I need to have installed mysql and I want to analyze the text without saving it into a database. </p> <p>Any kind of help or suggestion is well-received. :)</p> http://stackoverflow.com/questions/1318644/how-to-make-templates-after-installing-mediawiki 0 How to make templates after installing MediaWiki? NARKOZ 2009-08-23T14:04:28Z 2009-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 &amp; 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/1256558/what-language-is-wikipedia-programmed-in 1 What language is Wikipedia programmed in? cory 2009-08-10T18:50:34Z 2009-08-10T18:52:50Z <p>What language is Wikipedia programmed in?</p> http://stackoverflow.com/questions/1126760/recusive-transformations-using-xslt-xpathdocument-and-mediawiki 0 Recusive transformations using xslt, xpath:document() and mediawiki Pierre 2009-07-14T17:13:35Z 2009-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&amp;format=xml&amp;list=embeddedin&amp;eititle=Template:Infobox%20Scientifique&amp;eilimit=400" rel="nofollow">http://fr.wikipedia.org/w/api.php?action=query&amp;format=xml&amp;list=embeddedin&amp;eititle=Template:Infobox%20Scientifique&amp;eilimit=400</a></p> <p>and the following xslt stylesheet:</p> <pre><code>&lt;?xml version='1.0' ?&gt; &lt;xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0' &gt; &lt;xsl:output method='text' indent="yes"/&gt; &lt;xsl:template match="/"&gt; &lt;xsl:apply-templates select="api"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="api"&gt; &lt;xsl:for-each select="query/embeddedin/ei"&gt; &lt;xsl:variable name="title" select="translate(@title,&amp;apos; &amp;apos;,&amp;apos;_&amp;apos;)"/&gt; &lt;xsl:variable name="english-title"&gt; &lt;xsl:call-template name="englishTitle"&gt;&lt;xsl:with-param name="title" select="@title"/&gt;&lt;/xsl:call-template&gt; &lt;/xsl:variable&gt; &lt;xsl:value-of select="$english-title"/&gt;&lt;xsl:text&gt; &lt;/xsl:text&gt; &lt;/xsl:for-each&gt; &lt;/xsl:template&gt; &lt;xsl:template name="englishTitle"&gt; &lt;xsl:param name="title"/&gt; &lt;xsl:variable name="uri1" select="concat(&amp;apos;http://fr.wikipedia.org/w/api.php?action=query&amp;amp;format=xml&amp;amp;prop=langlinks&amp;amp;lllimit=500&amp;amp;titles=&amp;apos;,translate($title,&amp;apos; &amp;apos;,&amp;apos;_&amp;apos;))"/&gt; &lt;xsl:message&gt;&lt;xsl:value-of select="$uri1"/&gt;&lt;/xsl:message&gt; &lt;xsl:message&gt;count=&lt;xsl:value-of select="count(document($uri1,/api/query/pages/page/langlinks/ll))"/&gt;&lt;/xsl:message&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </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&amp;format=xml&amp;prop=langlinks&amp;lllimit=500&amp;titles=Carl%5FSagan" rel="nofollow">http://fr.wikipedia.org/w/api.php?action=query&amp;format=xml&amp;prop=langlinks&amp;lllimit=500&amp;titles=Carl_Sagan</a> ).</p> <p>Can't I process the nodes returned by the <strong>document()</strong> function ?</p> http://stackoverflow.com/questions/1120422/is-there-an-fft-that-uses-a-logarithmic-division-of-frequency 6 Is there an FFT that uses a logarithmic division of frequency? endolith 2009-07-13T16:08:55Z 2009-07-13T16:41:28Z <p>Wikipedia's <a href="http://en.wikipedia.org/wiki/Wavelet#Comparisons%5Fwith%5FFourier%5FTransform%5F.28Continuous-Time.29" rel="nofollow">Wavelet article</a> contains this text:</p> <blockquote> <p>The discrete wavelet transform is also less computationally complex, taking O(N) time as compared to O(N log N) for the <a href="http://en.wikipedia.org/wiki/Fast%5FFourier%5Ftransform" rel="nofollow">fast Fourier transform</a>. This computational advantage is not inherent to the transform, but reflects the choice of a logarithmic division of frequency, in contrast to the equally spaced frequency divisions of the FFT.</p> </blockquote> <p>Does this imply that there's also an FFT-like algorithm that uses a logarithmic division of frequency instead of linear? Is it also O(N)? This would obviously be preferable for a lot of applications.</p> http://stackoverflow.com/questions/1094829/inserting-articles-straight-into-mediawiki-database 1 Inserting articles straight into MediaWiki database Cosmin 2009-07-07T20:56:45Z 2009-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/1026337/how-do-i-get-link-to-an-image-on-wikipedia-from-the-infobox 0 How do I get link to an image on wikipedia from the infobox? Ali 2009-06-22T09:50:09Z 2009-06-22T14:12:35Z <p>Hi guys, I'm parsing wikipedia infoboxes and I noticed that some infoboxes have image fields - these fields hold names of image files stashed on wikipedia somewhere. However they just contain the name of the file as is as opposed to the actual link. </p> <p>I checked the links of the images on real live infoboxes and the links do not seem to be from one source but the sources vary. How can I hyperlink to an image on wikipedia considering I only have the name of the image from an infobox entry.</p> http://stackoverflow.com/questions/1000680/what-do-i-do-with-this-csv-dataset-i-just-downloaded-from-dbpedia 1 What do I do with this csv dataset I just downloaded from dbpedia? Ali 2009-06-16T10:28:32Z 2009-06-16T20:23:51Z <p>I just downloaded this csv of infoboxes of wikipedia from dbpedia. However I have no idea how to use it :-S I want to import all this data into a database but am not so sure how to take it from here. I downloaded it from <a href="http://wiki.dbpedia.org/Downloads32#infoboxes" rel="nofollow">http://wiki.dbpedia.org/Downloads32#infoboxes</a></p> <p>I'm working in Php</p> <p><hr /></p> <p>Just for the record - this csv file is around 1.8 GB. I'm actually going through all this trouble for well just to get a select set of infoboxes from a select set of articles form wikipedia. I would do it manually except I need the infoboxes for over 10 000 entries which includes countries and cities. I'm just looking for an easy way to do this and frankly have been using all my options :(</p> http://stackoverflow.com/questions/1001156/wikipedia-integration-issue-need-to-finally-sort-this-out-101 0 Wikipedia integration issue - need to finally sort this out 101 Ali 2009-06-16T12:25:21Z 2009-06-16T13:44:21Z <p>Sorry guys, I've been running a mock asking questions on how to integrate wikipedia data into my application and frankly I don't think I've had any success on my end as I've been trying all the ideas and kinda giving up when I read a dead end or obstacle. I'll try to explain what exactly I am trying to do here.</p> <p>I have a simple directory of locations like cities and countries. My application is a simple php based ajax based application with a search and browse facility. People sign up and associate themselves with a city and when a user browses cities - he/ she can see people and companies in that city i.e. whoever is a part of our system that is. </p> <p>That part is kinda easily set up on its own and is working fine. The thing is that My search results would be in the format i.e. some one searches for lets say Beijing. It would return in a three tabbed interface box:</p> <ol> <li>First Tab would have an infobox containig city information for Beijing</li> <li>Seond would be a country tab holding an infobox of the country information from CHina</li> <li>Third tab would have Listings of all contacts in Beijing.</li> </ol> <p>The content for the first two tabs should come from Wikipedia.Now I'm totally lost with what would be the best way to get this done and furthermore once decide on a methodology then - how do I do it and make it such that its quite robust.</p> <p>A couple of ideas good and bad as I have been able to digest so far are:</p> <ol> <li><p>Run a curl request directly to wikipedia and parse the returning data everytime a search is made. There is no need to maintain a local copy in this case of the data on wikipedia. The other issue is that its wholly reliant on data from a remote third location and I doubt it is feasible to do a request everytime to wikipedia to retrieve basic information. Plus considering that data on wikipedia requires to be parsed at every request - thats gonna surmount to heavy server loads.. or am I speculating here.</p></li> <li><p>Take a Download of the wikipedia dump and query that. Well I've downloaded the entire database but its gonna take forever to import all the tables from the xml dump. Plus consider the fact that I just want to extract a list of countries and cities and their info boxes - alot of the information in the dump is of no use to me.</p></li> <li><p>Make my own local tables and create a cron[I'll explain why cron job here] script that would somehow parse all teh countries and cities pages on wikipedia and convert them to a format I can use in my tables. However honestly speaking I do not need all of the information in the infoboxes as is infact if I could just even get the basic markup of the infoboxes as is - that would be more than enough for me. Like:</p></li> </ol> <p>Title of Country | Infobox Raw text</p> <p>I can personally extract stuff like coordinates and other details if I want.</p> <p>I even tried downloading third party datasets from infochiumps and dbpedia but the dataset from infochimps is incomplete and didn't contain all the information I wanted to display - plus with dbpedia I have absolutely no idea what to do with the csv file I downloaded of infoboxes and am afraid that it might also not be complete.</p> <p>But that is just part of the issue here. I want a way to show the wikipedia information - I'll have all the links point to wikipedia as well as a nice info from wikipedia displayed properly all around BUT the issue is that I need a way that periodically I can update the information I have from wikipedia so atleast I don't have totally outdated data. Like well lets say a system that can check and if we have a new country or new location it can parse the information and somehow retrieve it. I'm relying on categories of countries and cities in wikipedia for this here but frankly all these ideas are on paper, partially coded and its a huge mess.</p> <p>I'm programming in PHP and MySQL and my deadline is fast approaching - given the above situation and requirements what is the best and most practical method to follow and implement. I am totally open to ideas - practical examples if anyone has done something similar - I would love to hear :D</p> http://stackoverflow.com/questions/990079/how-do-i-grab-just-the-parsed-infobox-of-a-wikipedia-article 1 How do I grab just the parsed Infobox of a wikipedia article? Ali 2009-06-13T05:57:25Z 2009-06-15T06:19:47Z <p>Hi guys, I'm still stuck on my problem of trying to parse articles from wikipedia. Actually I wish to parse the infobox section of articles from wikipedia i.e. my application has references to countries and on each country page I would like to be able to show the infobox which is on corresponding wikipedia article of that country. I'm using php here - I would greatly appreciate it if anyone has any code snippets or advice on what should I be doing here.</p> <p>Thanks again.</p> <p><hr /></p> <p>EDIT</p> <p>Well I have a db table with names of countries. And I have a script that takes a country and shows its details. I would like to grab the infobox - the blue box with all country details images etc as it is from wikipedia and show it on my page. I would like to know a really simple and easy way to do that - or have a script that just downloads the information of the infobox to a local remote system which I could access myself later on. I mean I'm open to ideas here - except that the end result I want is to see the infobox on my page - of course with a little Content by Wikipedia link at the bottom :)</p> <p><hr /></p> <p>EDIT</p> <p>I think I found what I was looking for on <a href="http://infochimps.org" rel="nofollow">http://infochimps.org</a> - they got loads of datasets in I think the YAML language. I can use this information straight up as it is but I would need a way to constantly update this information from wikipedia now and then although I believe infoboxes rarely change especially o countries unless some nation decides to change their capital city or so.</p> http://stackoverflow.com/questions/120061/fetch-a-wikipedia-article-with-python 8 Fetch a Wikipedia article with Python dkp 2008-09-23T09:37:21Z 2009-06-11T11:14:20Z <p>I try to fetch a Wikipedia article with Phython's urllib:</p> <pre><code>f = urllib.urlopen("http://en.wikipedia.org/w/index.php?title=Albert_Einstein&amp;printable=yes") s = f.read() f.close() </code></pre> <p>However instead of the html page I get the following response: Error - Wikimedia Foundation:</p> <p>Request: GET <a href="http://en.wikipedia.org/w/index.php?title=Albert_Einstein&amp;printable=yes" rel="nofollow">http://en.wikipedia.org/w/index.php?title=Albert_Einstein&amp;printable=yes</a>, from 192.35.17.11 via knsq1.knams.wikimedia.org (squid/2.6.STABLE21) to () Error: ERR_ACCESS_DENIED, errno [No Error] at Tue, 23 Sep 2008 09:09:08 GMT </p> <p>Wikipedia seems to block request which are not from a standard browser.</p> <p>Anybody know how to work around this?</p> http://stackoverflow.com/questions/964454/how-to-use-wikipedia-api-if-it-exists -1 How to use wikipedia api if it exists? chris 2009-06-08T11:29:07Z 2009-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/661584/is-there-a-parser-way-available-to-parser-wikipedia-dump-files-using-python 1 Is there a parser/way available to parser Wikipedia dump files using Python? Maddy 2009-03-19T09:44:26Z 2009-05-28T20:23:25Z <p>I have a project where in I collect all the wikipedia articles belonging to a particular category, pull out the dump from the wikipedia, and put it into our db. So I should be parsing wikipedia dump file to get the stuff done. Do we have an efficient parser to do this job. I am a python developer. So I prefer any parser in python. If not suggest me one and I will try to write a port of it in python and contribute it to the web, so other persons make use of it or atleast try it. Please suggest me one. So all I want is a python parser to parser wikipedia dump files. I started writing a manual parser which parses each node and gets the stuff done.</p> http://stackoverflow.com/questions/636351/tool-to-parse-text-for-possible-wikipedia-links 0 Tool to parse text for possible Wikipedia links. Ben S 2009-03-11T21:01:46Z 2009-05-27T09:16:33Z <p>Does a tool exist that can parse text and output that text, hyper-linked to Wikipedia entries for words of interest?</p> <p>For example, I'd like a tool that could turn something like:</p> <blockquote> <p>The most popular search algorithm on a sorted list is the binary search.</p> </blockquote> <p>Into:</p> <blockquote> <p>The most popular <a href="http://en.wikipedia.org/wiki/Search%5Falgorithm" rel="nofollow">search algorithm</a> on a <a href="http://en.wikipedia.org/wiki/Sorted%5Flist" rel="nofollow">sorted list</a> is the <a href="http://en.wikipedia.org/wiki/Binary%5Fsearch" rel="nofollow">binary search</a>.</p> </blockquote> <p>It would be wonderful if Wikipedia had an API which would do this since they would be best equipped to determine what "words of interests" are.</p> <p>In my example I simply linked all combinations which linked directly to an entry except for The and most.</p> http://stackoverflow.com/questions/908813/copy-chosen-wikipedia-articles-into-own-wiki 0 Copy chosen Wikipedia articles into own wiki? alimango 2009-05-26T03:31:11Z 2009-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/907492/import-non-english-wikipedia-xml-dump-in-mysql 0 Import non-english WIkipedia XML dump in MySQL? PieroP 2009-05-25T17:32:34Z 2009-05-25T18:18:51Z <p>Hi, I'm looking for a script that can convert the XML wikipedia DUMP in MySQL compliant SQL. I've found a ready SQL dump for the english version but no easy way to import the other languages.</p> <p>Thanks,</p> <p>Piero</p>