summaryrefslogtreecommitdiff
path: root/wikipedia/PrebuiltArticlesPage.js
Commit message (Collapse)AuthorAge
* Don't pass lang parameter to query anymorePhilip Chimento2013-11-04
| | | | | | Also, call the query parameter appname instead of app_name [endlessm/eos-sdk#386]
* Load articles by IdRory MacQueen2013-11-04
| | | | | | | Previously we were loading articles in domain specific apps by title. Now, we are loading by Id, which is the suffix of the url. [endlessm/eos-sdk#386]
* Query articles with the 'source' parameterPhilip Chimento2013-10-31
| | | | | | | | We need to pass the 'source' parameter to NodeJS to indicate the source database that an article comes from. This should later be replaced by indicating this information in the database name. [endlessm/eos-sdk#383]
* Query articles with title, not IDPhilip Chimento2013-10-31
| | | | | | | This is because the NodeJS server and the database don't know about the WikiHow artice 'cocinar-arroz'; it is stored as 'Cómo Cocinar Arroz'. [endlessm/eos-sdk#380]
* WikiWebView now takes personality and app_nameRory MacQueen2013-10-29
| | | | | | | | | | | | | | | Previously, we only had one database so the wiki web view did not have to pass its app name and personality to node js API. Now that each app has its own database, this needs to happen [endlessm/eos-sdk#377] [endlessm/eos-sdk#377] [endlessm/eos-sdk#377] [endlessm/eos-sdk#377]
* Domain wiki apps use language codeRory MacQueen2013-10-08
| | | | | | | | Previously, domain wiki apps were not sensitive to the language their articles were in. Now, they get that language from the JSON file name and use that to tell nodejs which language database to use [endlessm/eos-sdk#345]
* Allowed links in domain specific appsRory MacQueen2013-09-03
| | | | | | | | These are the changes to the wikipedia SDK to allow for certain showable links in the domain specific apps. The JSON file will specify which links can be clickable across all articles. [endlessm/eos-sdk#282]
* Functionality to show links we wantRory MacQueen2013-08-28
| | | | | | | We had to add a field to WikipediaWebView in order to determine whether we want to display all links or not [endlessm/eos-sdk#271]
* Added ability to follow links in wiki webviewRory MacQueen2013-08-19
| | | | [endlessm/eos-sdk#264]
* Reorganized import pathsRory MacQueen2013-08-15
| | | | | | Moved all widgets into widgets directory. Changed Endless Wikipedia file to expose wikipedia web view [endlessm/eos-sdk#260]
* Do not build Wikipedia HTML in WikipediaViewPhilip Chimento2013-08-08
| | | | | | | | In order to avoid making Soup requests which trigger the crasher, literally load the response received from the node.js server. Remove all code that builds the HTML. [endlessm/eos-sdk#253]
* Modified view pages to load by urlRory MacQueen2013-08-07
| | | | | | | Changed some of the view pages so that we are fetching a wikipedia article by its url rather than by its title [endlessm/eos-sdk#230]
* Integrate Wikipedia into SDK build systemPhilip Chimento2013-08-02
Now you should be able to import the app generator using const EndlessWikipedia = imports.wikipedia.EndlessWikipedia; [endlessm/eos-sdk#206] [endlessm/eos-sdk#206]