summaryrefslogtreecommitdiff
path: root/wikipedia
Commit message (Collapse)AuthorAge
...
| * 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]
* | 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]
* Removed import of SideBarButtonMatt Watson2013-10-28
| | | | | | The widget has been removed but an import remained [endlessm/eos-sdk#348]
* Article lists scroll to top on page transitionMatt Watson2013-10-28
| | | | | | | | | Moved all the transition code to the view, because it made making the scroll up calls we need easier. Also think thats the right place for the scroll logic to live. Took some nice code from :tomato:'s spike to use signals on back button presses in the view. [endlessm/eos-sdk#348]
* wiki: Add documentation for all new and changed APIPhilip Chimento2013-10-23
| | | | | | | For good code hygiene, let's make sure we document all new and changed APIs. [endlessm/eos-sdk#367]
* wiki: Functionality unchanged with new JSON formatPhilip Chimento2013-10-23
| | | | | | | | | Reorganizes the various models, presenters, and views, so that the wiki apps work unchanged with the new JSON export format. Also refactors so that there is less linkage between models, presenters, and views, so further updates will hopefully be less extensive. [endlessm/eos-sdk#367]
* wiki: Use this._model and this._viewPhilip Chimento2013-10-23
| | | | | | | Minor refactoring, because this._domain_wiki_model and this._domain_wiki_view are a lot of unnecessary typing. [endlessm/eos-sdk#367]
* Merge pull request #365 from endlessm/issues/361mattdangerw2013-10-22
|\ | | | | wikipedia: Use Lato fonts
| * wikipedia: Use Lato fontsPhilip Chimento2013-10-18
| | | | | | | | | | | | | | | | | | Fonts are changed according to the conversion table. It turns out that what we thought was the "Benton Sans correction" does not only apply to Benton Sans - I think it is due to GTK's lack of baseline alignment, something that has been rectified in GTK 3.10. [endlessm/eos-sdk#361]
* | 'eos-application-manifest' tool with subcommandsPhilip Chimento2013-10-18
|/ | | | | | | | This is the framework for an 'eos-application-manifest' tool with subcommands as in git. Currently the 'help' and 'version' subcommands are implemented. [endlessm/eos-sdk#152]
* Arrow on sidebar button is always there.Rory MacQueen2013-10-11
| | | | | | | | Previously, the arrow on the sidebar back button for the article page would only appear on hover. Now it appears always, as per design request. [endlessm/eos-sdk#352]
* 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]
* Styled top bar back buttonRory MacQueen2013-10-01
| | | | | | | | | | Previously, the back button on the top window bar was not styled correctly according to designs. This commit changes the BackButton widget to now suclass Endless Asset Button and have the right styling. [endlessm/eos-sdk#301]
* Gave category page back button a nameRory MacQueen2013-10-01
| | | | | | | | | Previously this asset button did not have a name and we were just styling it by styling the Gjs AssetButton. However, this will not work when we want to add other asset buttons with different styling, so giving it its own name [endlessm/eos-sdk#301]
* 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]
* Renamed TextButton to ListTextButton so that we can have other textbuttonsRory MacQueen2013-09-26
|
* Reorganized widget layout for the category pageRory MacQueen2013-09-26
| | | | | | | | | | | We were encountering a bizarre bug where the textview would enlarge when you click the button on the category page. It seems to be due to the set_size_request call on the textview or containing widget. To correct, I took out that set_size_request call and instead subclassed the textview to override the get_preferred_width function. The button image is a placeholder till we get the right asset from design.
* Removed unnecessary frame on category pageRory MacQueen2013-09-26
|
* Merge pull request #292 from endlessm/issues/289mattdangerw2013-09-12
|\ | | | | Install WebHelper into GJS modules directory
| * Install WebHelper into GJS modules directoryPhilip Chimento2013-09-12
| | | | | | | | | | | | | | | | WebHelper is now importable using const WebHelper = imports.webhelper; [endlessm/eos-sdk#289]
* | 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]
* Word-wrap overly long category titlePhilip Chimento2013-08-29
| | | | | | | Turn word-wrapping on in the GtkLabel. Set the arrow button's valign to be END, and add a Benton Sans correction to the arrow button. [endlessm/eos-sdk#255]
* 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]
* 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]
* 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]
* 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]
* Add scrollbar to category descriptionPhilip Chimento2013-08-07
| | | | | | | And set its styles (no specs available)! Add right margin to the text view so that the scrollbar is not right up against the text. [endlessm/eos-sdk#249]
* Merge pull request #251 from endlessm/issues/247P. F. Chimento2013-08-07
|\ | | | | Fixed the pixbuf sizing on the category images #247
| * 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]
* | Align category title to the leftPhilip Chimento2013-08-07
|/ | | | [endlessm/eos-sdk#248]
* 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]
* | Widen ArticleListPhilip Chimento2013-08-07
| | | | | | | | | | | | | | In order to ellipsize as few labels as possible. [endlessm/eos-wikipedia-brazil#22] [endlessm/eos-sdk#brazil22]
* | 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]