Re: Iphone applications via django

2012-09-12 Thread Jani Tiainen
I'm developing generic mobile app, mostly to be used with iPad/Android tablets. Currently we don't build native apps due our development being in such a early phase. 12.9.2012 15:49, Sait Maraşlıoğlu kirjoitti: Sencha looks great, and saw some alternatives too, I will check them all. One

Re: Iphone applications via django

2012-09-12 Thread Sait Maraşlıoğlu
Sencha looks great, and saw some alternatives too, I will check them all. One question about it. Do you develope applications for iphone, android seperately or u create something then compile it for different enviroments? havent got round for piston but have some outputs with tastypie already,

Re: Iphone applications via django

2012-09-12 Thread Jani Tiainen
I'm using Sencha Touch to build mobile interface to Django application. (basically Django serves just REST API, UI is pure JS/HTML5 stuff). Nice thing is that there exists build process to use phonegap with sencha touch to create real native app if needed. 12.9.2012 13:15, Stephen Anto

Re: Iphone applications via django

2012-09-12 Thread Stephen Anto
Hi, Django piston is available to convert all django data into json via handler. You can use this json data to both web and mobile interface. Currently I am working on the same cheers... Thanks for visiting On Tue, Sep 11, 2012 at 2:29 PM, Sait Maraşlıoğlu

Re: Iphone applications via django

2012-09-11 Thread Mario Gudelj
Sait, Just dive into Tasty Pie. It will easily interface your models with a JSON feed. On the client side you then use this JSON feed in your JavaScript to construct your web pages or do whatever you want with it. I think this would be the best model for you. Django with Tasty Pie for the server

Re: Iphone applications via django

2012-09-11 Thread Nikolas Stevenson-Molnar
For web applications, I'd recommend using JSON instead of XML: http://en.wikipedia.org/wiki/Json It's easier to work with and Python has a json module which will convert a Python dictionary to a JSON-formatted string ready to return to the client. Most JS libraries also have functions to turn

Re: Iphone applications via django

2012-09-11 Thread Sait Maraşlıoğlu
For my skill levels, Ive started with python, then qt, pyqt,matplotlib ... and finnaly django, I m not complaining, django is just perfect. I m ok with django, I write and and I understand what I read. If I want to learn ios, answer is no, cause Ive been travelling alot lately among different

Re: Iphone applications via django

2012-09-11 Thread Kurtis Mullins
I can offer some information if you can share your "skill level" when it comes to developing iOS and/or Django Applications. 1. Do you currently know how to program iOS Applications? If so, do you have any experience writing iOS programs that can handle HTTP Requests? If the answer to either of

Re: Iphone applications via django

2012-09-11 Thread Sait Maraşlıoğlu
What do you mean by api wrapper, ur previous link a bit complicated and Im having a hard time understanding this term, can u explain in a smiple manner? On Tuesday, 11 September 2012 22:18:34 UTC+3, Cal Leeming [Simplicity Media Ltd] wrote: > > It would be a cold day in hell before I ever

Re: Iphone applications via django

2012-09-11 Thread Cal Leeming [Simplicity Media Ltd]
It would be a cold day in hell before I ever used XML for an API ;) There's a whole ton of API wrappers for Django (hell you could write your own in under 50 lines of code), but here is a pretty good one: http://django-tastypie.readthedocs.org/en/latest/index.html Tastypie is a bit complex to

Re: Iphone applications via django

2012-09-11 Thread Ray Ch
Can you tell me how do i do that? Do you have any kind of blog or tutorial which would help me out connecting the web API's with iphone. Do you suggest JSON or XML ? On Tuesday, September 11, 2012 4:09:35 PM UTC+5:30, Cal Leeming [Simplicity Media Ltd] wrote: > > You can create a server side

Re: Iphone applications via django

2012-09-11 Thread Thomas Weholt
You could use JQuery Mobile on the frontend. It's still a web app like any other, but app-like in looks and functionality, at least to a certain degree. Thomas On Tue, Sep 11, 2012 at 4:16 PM, Kelly Nicholes wrote: > If you go HTML/JS, a phonegap alternative for

Re: Iphone applications via django

2012-09-11 Thread Kelly Nicholes
If you go HTML/JS, a phonegap alternative for cross-device compatibility would be appcelerator. On Tuesday, September 11, 2012 2:59:12 AM UTC-6, Sait Maraşlıoğlu wrote: > > How do you create iphone applications via django. > Application logic will be django but what about user interface, do we

Re: Iphone applications via django

2012-09-11 Thread Cal Leeming [Simplicity Media Ltd]
You can create a server side API for the app - but the actual interface is done using the methods mentioned by Mario previously. Cal On Tue, Sep 11, 2012 at 11:09 AM, Mario Gudelj wrote: > Nope. You do objective c or html and js with something like phonegap > On Sep 11,

Re: Iphone applications via django

2012-09-11 Thread Mario Gudelj
Nope. You do objective c or html and js with something like phonegap On Sep 11, 2012 6:59 PM, "Sait Maraşlıoğlu" wrote: > How do you create iphone applications via django. > Application logic will be django but what about user interface, do we do > that with django too? > >