TagTeam mobile app
We'd love to use the new json API built into TagTeam to create a mobile app via jQuery mobile. You can get lists of objects via Rails built-in content negotiation features, and then it's very simple to iterate through the parsed json to create the UI. Example JSON requests:
- All hubs: http://dev7.berkmancenter.org/hubs.json
- A list of items in hub #2: http://dev7.berkmancenter.org/hubs/2/items.json
- The second page of items in hub #2: http://dev7.berkmancenter.org/hubs/2/items.json?page=2
- The input sources from hub #2: http://dev7.berkmancenter.org/hubs/2/hub_feeds.json
- The items from a particular input source: http://dev7.berkmancenter.org/hub_feeds/98/feed_items.json
- The republished feeds from hub #2: http://dev7.berkmancenter.org/hubs/2/republished_feeds.json
- The items from republished feed #1 in hub #2: http://dev7.berkmancenter.org/hubs/2/republished_feeds/1/items.json
Most of the TagTeam objects and lists emit themselves as json and XML, and many emit RSS and Atom additionally. This should make it quite easy to create ajax requests within the application to link together parts of a mobile UI. At this point we're not interested in authentication or administration, this would essentially be a read-only app.
The benefits of jQuery mobile are that we'd have an app that'd work for iOS and Android, and we could possibly distribute it directly with TagTeam. You'd automatically get a sweet mobile app when you install TagTeam in your Rails hosting environment.