active questions tagged wikipedia+php - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T21:05:46Z http://stackoverflow.com/feeds/tag/wikipedia+php http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1788615/how-to-strip-all-tags-from-wikipedia-pages-or-make-page-more-readable 0 How to strip all tags from wikipedia pages or make page more readable. Priyank Bolia 2009-11-24T08:18:25Z 2009-11-24T10:54:32Z <p>I want to strip all tags, remove the [show][Hide] stuffs from wikipedia, or is there some website that makes pages in more readable format.</p> <p>Please I am aware of the Wikipedia printable version, but I don't need any tags in that, as I have some other use. So please answer the original question only, about any website or webservice or code snippets in php/C# to remove the tags from a webpages.</p> <p>Also like when I copy some list from firefox it replaces <code>&lt;li&gt;</code> with the *, is it possible to set something in firefox to return some other non readable character like some kind of <li>dot</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/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/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/853450/getting-info-from-wikipedia-how-do-i-get-html-form 0 Getting info from Wikipedia - how do I get HTML form? Ali 2009-05-12T15:42:56Z 2009-05-25T15:07:55Z <p>I'm using curl to retrieve information from wikipedia. So far I've been successful in retrieving basic text information but I really would want to retrieve it in HTML.</p> <p>Here is my code:</p> <pre><code>$s = curl_init(); $url = 'http://boss.yahooapis.com/ysearch/web/v1/site:en.wikipedia.org+'.$article_name.'?appid=myID'; curl_setopt($s,CURLOPT_URL, $url); curl_setopt($s,CURLOPT_HEADER,false); curl_setopt($s,CURLOPT_RETURNTRANSFER,1); $rs = curl_exec($s); $rs = Zend_Json::decode($rs); $rs = ($rs['ysearchresponse']['resultset_web']); $rs = array_shift($rs); $article= str_replace('http://en.wikipedia.org/wiki/', '', $rs['url']); $url = 'http://en.wikipedia.org/w/api.php?'; $url.='format=json'; $url.=sprintf('&amp;action=query&amp;titles=%s&amp;rvprop=content&amp;prop=revisions&amp;redirects=1', $article); curl_setopt($s,CURLOPT_URL, $url); curl_setopt($s,CURLOPT_HEADER,false); curl_setopt($s,CURLOPT_RETURNTRANSFER,1); $rs = curl_exec($s); //curl_close( $s ); $rs = Zend_Json::decode($rs); $rs = array_pop(array_pop(array_pop($rs))); $rs = array_shift($rs['revisions']); $articleText = $rs['*']; </code></pre> <p>However the text retrieved this way isnt well enough to be displayed :( its all in this kind of format</p> <blockquote> <p>'''Aix-les-Bains''' is a [[Communes of France|commune]] in the [[Savoie]] [[Departments of France|department]] in the [[Rhône-Alpes]] [[regions of France|region]] in southeastern [[France]].</p> <p>It lies near the [[Lac du Bourget]], {{convert|9|km|mi|abbr=on}} by rail north of [[Chambéry]].</p> <p>==History== ''Aix'' derives from [[Latin]] ''Aquae'' (literally, "waters"; ''cf'' [[Aix-la-Chapelle]] (Aachen) or [[Aix-en-Provence]]), and Aix was a bath during the [[Roman Empire]], even before it was renamed ''Aquae Gratianae'' to commemorate the [[Emperor Gratian]], who was assassinated not far away, in [[Lyon]], in [[383]]. Numerous Roman remains survive. [[Image:IMG 0109 Lake Promenade.jpg|thumb|left|Lac du Bourget Promenade]]</p> </blockquote> <p>How do I get the HTML of the wikipedia article?</p> <p><hr /></p> <p><strong>UPDATE:</strong> Thanks but I'm kinda new to this here and right now I'm trying to run an xpath query [albeit for the first time] and can't seem to get any results. I actually need to know a couple of things here.</p> <ol> <li>How do I request just a part of an article?</li> <li>How do I get the HTML of the article requested.</li> </ol> <p>I went through this <a href="http://www.slideshare.net/neilcrosby/mining-wikipedia-for-awesome-data-presentation" rel="nofollow">url</a> on data mining from wikipedia - it put an idea to make a second request to wikipedia api with the retrieved wikipedia text as parameters and that would retrieve the html - although it hasn't seemed to work so far :( - I don't want to just grab the whole article as a mess of html and dump it. Basically my application what it does is that you have some locations and cities pin pointed on the map - you click on the city marker and it would request via ajax details of the city to be shown in an adjacent div. This information I wish to get from wikipedia dynamically. I'll worry about about dealing with articles that don't exist for a particular city later on just need to make sure its working at this point.</p> <p>Does anyone know of a nice working example that does what I'm looking for i.e. read and parse through selected portions of a wikipedia article.</p> <p><hr /></p> <p>According to the url provided - it says I should post the wikitext to the wikipedia api location for it to return parsed html. The issue is that if I post the information I get no response and instead an error that I'm denied access - however if I try to include the wikitext as GET it parses with no issue. But it fails of course when I have waaaaay too much text to parse.</p> <p>Is this a problem with the wikipedia api? Because I've been hacking at it for two days now with no luck at all :(</p> http://stackoverflow.com/questions/847516/how-do-i-get-information-from-wikipedia-into-my-application 1 How do I get information from wikipedia into my application. Ali 2009-05-11T10:24:58Z 2009-05-11T14:30:40Z <p>Hi guys I wish to get information for entries I have in my database from wikipedia like for example some stadiums and country information. I'm using Zend Framework and also how would I be able to handle queries that return multiple ambiguous entries or the like.. I would like all the help I can get here...</p>