summaryrefslogtreecommitdiff
path: root/wikipedia/WikipediaWebView.js
Commit message (Collapse)AuthorAge
* Remove unused code that is causing segfaultRory MacQueen2014-04-23
| | | | | | | | We no longer user the custom URI scheme to load images so I removed the code that does that since it is now causing segfaults. [https://github.com/endlessm/eos-sdk/issues/944]
* Don't try to open browser-*:// URI schemes locallyPhilip Chimento2014-02-05
| | | | | | | | | Previously, browser-http:// URIs would open as http:// URIs in the system browser, but the in-app webview would also try to display them (and fail). This makes sure that the in-app webview ignores the URI after passing it on to the system browser. [endlessm/eos-wikipedia-offline#304]
* Domain specific apps no longer must specify linksWill2013-11-15
| | | | | | | | Refactored the process of settings which articles should be linked such that, if no linked articles JSON is specified, the view will behave as if hide_links were set to true [endlessm/eos-sdk#402]
* 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]
* Intercept requests to /wiki/[title]Rory MacQueen2013-11-04
| | | | | | | | Previously we were not interecepting requests to /wiki/[title] in wikipedia webview, which meant that when we refresh to online, all links would not work. [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]
* Merge pull request #384 from endlessm/issues/383rmacqueen2013-11-01
|\ | | | | Issues/383
| * 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]
| * Show 'browser-' URIs in system browserPhilip Chimento2013-10-31
| | | | | | | | | | | | | | | | If the URI scheme starts with 'browser-', then show the corresponding URI without 'browser-' in the system default browser. e.g. shows browser-http://google.com as http://google.com in the system browser. [endlessm/eos-sdk#383]
* | Query nodejs with versioned APIPhilip Chimento2013-10-30
|/ | | | | | Make requests to 127.0.0.1:3000/v1 instead of 127.0.0.1:3000. [endlessm/eos-wikipedia-offline#145]
* Merge pull request #379 from endlessm/issues/377P. F. Chimento2013-10-30
|\ | | | | #377 WikiWebView now takes personality and app_name
| * 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]
* | WikiWebView now has search results methodRory MacQueen2013-10-29
|/ | | | | | To load a list of articles matching search query [endlessm/eos-sdk#373]
* 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]
* Wikiwebview now uses new API callsRory MacQueen2013-08-19
| | | | [endlessm/eos-sdk#267]
* Merge pull request #266 from endlessm/issues/264P. F. Chimento2013-08-19
|\ | | | | #264 Added ability to follow links in wiki webview
| * Added ability to follow links in wiki webviewRory MacQueen2013-08-19
| | | | | | | | [endlessm/eos-sdk#264]
* | Added error handling for broken imagesRory MacQueen2013-08-19
|/ | | | [endlessm/eos-sdk#263]
* 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]