Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/malept/mad-mobileweb
MadPub.org: Mobile Web Interface
https://github.com/malept/mad-mobileweb
Last synced: 4 days ago
JSON representation
MadPub.org: Mobile Web Interface
- Host: GitHub
- URL: https://github.com/malept/mad-mobileweb
- Owner: malept
- License: apache-2.0
- Created: 2011-02-20T22:32:11.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-02-20T23:59:35.000Z (over 13 years ago)
- Last Synced: 2024-10-24T16:08:34.740Z (14 days ago)
- Language: JavaScript
- Homepage: http://wiki.rhok.org/MadPub.org
- Size: 328 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
================================
MadPub.org: Mobile Web Interface
================================This project contains a mobile web user interface frontend for the `MadPub.org`_
project.Goals
-----* Use a Python framework to handle creating the forms and sending the data to
the server.
* Use `jQuery Mobile`_ to provide the interface.
* Make the application available to be used offline, then being able to send
the data when Internet connectivity is established.HOWTO run the application
-------------------------Here's how to install using `virtualenvwrapper`_, because it simplifies things::
$ pip install virtualenvwrapper
$ mkvirtualenv madpub_django
(madpub_django) $ cdvirtualenv
(madpub_django) $ git clone git://github.com/malept/mad-django.git
(madpub_django) $ cd mad-django
(madpub_django) $ pip install -r requirements.txt
(madpub_django) $ python setup.py install
(madpub_django) $ python madpub/bin/manage.py runserverIf you want to work on the application, replace ``python setup.py install`` with
``python setup.py develop``.TODO
----* Actually send the data to the server, using `httplib2`_.
* Use `evercookie`_ to store data locally.
* Add `HTML5 offline web application`_ support... _MadPub.org: http://wiki.rhok.org/MadPub.org
.. _jQuery Mobile: http://jquerymobile.com/
.. _virtualenvwrapper: http://www.doughellmann.com/projects/virtualenvwrapper/
.. _httplib2: http://httplib2.googlecode.com/
.. _evercookie: http://samy.pl/evercookie/
.. _HTML5 offline web application: http://diveintohtml5.org/offline.html