summaryrefslogtreecommitdiff
path: root/wikipedia/views
Commit message (Collapse)AuthorAge
* Added back button to categories pageRory MacQueen2013-09-26
| | | | | | | | | Designers wanted a back button the categories page to make it easier for users to navigate back to the home page. This button is an asset button from our SDK. [endlessm/eos-sdk#270]
* Removed unnecessary frame on category pageRory MacQueen2013-09-26
|
* 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]
* Removed HTML related codeRory MacQueen2013-08-30
| | | | [endlessm/eos-sdk#279]
* Can add articles to the main category.Nick Isaacs2013-08-21
| | | | | | | | If there are articles for an app's main category, then it becomes clickable and acts like any other category. If there are no articles for a category, it isn't cilckable and has no hover animations. We no longer use the Title Label View since the main category is now a category button like any other. [endlessm/eos-sdk#259]
* 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]
* Fixed URL encoding and correct API callRory MacQueen2013-08-08
| | | | [endlessm/eos-sdk#253]
* 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]
* Custom image:// URI on WikipediaViewPhilip Chimento2013-08-08
| | | | | | | | WikipediaView will now interpret all image:// URIs as files in the Wikipedia images directory (whose root is set with the 'application-base-path' property on the WikipediaApplication.) [endlessm/eos-sdk#253]
* Fixed the pixbuf sizing on the category imagesMatt Watson2013-08-07
| | | | | | | Before it was just for the big title image. Moved the function to utils so we didn't have the same code in two places. Also removed some clutter stuff from utils as there was no reason for that [endlessm/eos-sdk#247]
* Merge pull request #240 from endlessm/issues/238rmacqueen2013-08-07
|\ | | | | cur execution path is now application base path
| * cur execution path is now application base pathRory MacQueen2013-08-07
| | | | | | | | [endlessm/eos-sdk#238]
* | Add i18n capability to Wikipedia app generatorPhilip Chimento2013-08-07
|/ | | | | | | | Translated "HOME" button to Portuguese [endlessm/eos-wikipedia-brazil#22] [endlessm/eos-sdk#brazil22]
* Adjust margins to deal with broken Benton Sans fontPhilip Chimento2013-08-07
| | | | | | | | | The larger the font size, the bigger the correction needs to be. The title label cannot go any lower than it is, so the category labels' correction is actually zero, in order to keep the whole thing aligned. (The category labels' correction ought to be 10.) [endlessm/eos-sdk#236]
* Merge pull request #235 from endlessm/issues/234P. F. Chimento2013-08-07
|\ | | | | #234 Fixed the sizing of pixbufs in the wikipedia first page
| * Fixed the sizing of pixbufs in the wikipedia first pageMatt Watson2013-08-07
| | | | | | | | | | | | | | They are now always sized to cover the allocation they need too. Right now we are double loading the image, once to get its size, which we should change in the future [endlessm/eos-sdk#234]
* | Hide context menuRory MacQueen2013-08-07
|/
* Translated back buttonRory MacQueen2013-08-07
|
* Changed node js URL so that it will work on NUCRory MacQueen2013-08-07
| | | | [endlessm/eos-sdk#232]
* Merge pull request #231 from endlessm/issues/230mattdangerw2013-08-07
|\ | | | | Modified view pages to load by url
| * 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]
* | Set Benton Sans on title fontPhilip Chimento2013-08-06
|/ | | | | | | The proper Benton Sans was not showing up. The title label didn't have the proper CSS class. [endlessm/eos-sdk#228]
* Fix for loading temp files that are HTMLRory MacQueen2013-08-06
|
* Merge pull request #221 from endlessm/issues/220P. F. Chimento2013-08-06
|\ | | | | #220 Dealt with relative paths in wikipedia view
| * Restructured wikipedia webview to build HTML in memoryRory MacQueen2013-08-06
| | | | | | | | | | | | | | | | | | It was becoming too complicated trying to modify the index file on disk to account for relative paths. I restructured the code so that the HTML is now built dynamically, in memory, and then saved to a temp file, from which it is loaded into webkit. This way we can write all the paths based on the current directory [endlessm/eos-sdk#220]
| * Dealt with relative paths in wikipedia viewRory MacQueen2013-08-05
| | | | | | | | | | Had to change the way webview loaded the uri so that it can load relative paths [endlessm/eos-sdk#220]
* | Fix missing importsPhilip Chimento2013-08-05
|/ | | | | | | This bug was masked because the Brazil app was unnecessarily importing Gtk and Gdk when it started up. [endlessm/eos-sdk#222]
* Last modifications to remove Brazil-specific contentPhilip Chimento2013-08-02
| | | | [endlessm/eos-sdk#206]
* Fix for property errorRory MacQueen2013-08-02
| | | | [endlessm/eos-sdk#206]
* 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]