Building mobile apps using WordPress

This entry was posted in All. Bookmark the permalink.

5 Responses to Building mobile apps using WordPress

  1. Matt,

    A few things to check out:

    Tengo and Cache (https://github.com/robb1e/Tengo-and-Cache): a small iOS application that uses the HTML5 cache manifest file in a HTML file to pull down static content. I built this with a view of using it to deploy HTML/CSS/Javascript applications onto iOS devices and then use the cache manifest to update relevant content. That content could easily be HTML content rendered by a WordPress application. A simpler version of that is here: https://github.com/robb1e/iWeb. Happy to show you this some time. This would allow you to build HTML content for the browser and for a device without too much extra effort.

    As for publishing into a WordPress app, Dan Catt has been emailing posts into WordPress (see some description here: http://revdancatt.com/2010/11/08/week-notes-9890-things-what-i-have-done-at-the-guardian-that-i-can-vaguely-talk-about/). So it would probably be a case of writing a script to pull content from the ContentAPI and then email to an account that WordPress is configured to read with appropriate settings for draft/publish status and away you go.

    Cheers

    Robbie

  2. John Allsopp says:

    Matt,

    have you looked at JQTouch? It’s designed specifically for more content driven apps.

    http://blog.jqtouch.com/

    It has a very simple format, and I’d suspect for what you want to do, zero JS required.
    Deployment is still the kicker, as you’d need to package it with phoneGap, which needs iOS SDK.

    PhoneGap build looks promising – but no iOS support as yet ;-(
    http://build.phonegap.com/

    Rhomobile’s Rhodes development tool comes with JQTouch now, and may allow you to avoid the need for iOS dev tools (not investigated it enough)
    http://rhomobile.com/products/rhodes/

    If you have Windows, MobiOne promises iPhone Dev on Windows using web technologies
    http://www.genuitec.com/mobile/

    But I don’t think you can get these into the AppStore

    Might just be the reason to upgrade that Mac!

    HTH

    john

  3. Tom Dyson says:

    Matt, have you seen Ars Technica’s new Reader for iPad? This is the best-looking ‘generated’ magazine app I’ve seen (it was made in PhoneGap), but it’s slow and jittery. It’d be a fun project to build a chain of tools that do what you want – author content in WordPress or push content into WP via XMLRPC, display it in an iPad-optimised theme, suck it up through a simple web service which attaches the iOS / PhoneGap / Appcelerator boilerplate and compiles the app – but like the friends you’ve already spoken to, I’m not sure why you would, when Android and iOS’s Webkit browsers already provide a platform for responsive, full-screen reading, available off-line.

    I’d like to see an expansion of the Mobility / WPTouch effort, adding support for the offline storage capabilities of Webkit browsers, allowing publishers to package up their content as sync-able, tablet- and mobile-optimised HTML.

  4. Ian Kennedy says:

    Hi Matt,

    Nokia is previewing a tool which makes it real easy to package the output from an RSS feed into an app which can published to Nokia’s Ovi Store which is bundled with all Nokia phones.

    http://oviappwizard.com

  5. Lots of great suggestions here. I’m done with the Guardian API to WordPress integration. Now the hard part…packaging for deployment. Will try out a few of these options and report back.