Skip to content

Commit

Permalink
Merge branch 'fixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
richleland committed Aug 29, 2011
2 parents 5942ce1 + e03687a commit 0b57dfa
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 17 deletions.
11 changes: 4 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,14 @@ Make sure you have `virtualenvwrapper`_ installed and create a virtual environme
.. _virtualenvwrapper: http://www.doughellmann.com/docs/virtualenvwrapper/

Install the requirements::

pip install -r requirements.txt

Synchronize the database::
Synchronize the database and load the dummy data::

cd example
./manage.py syncdb

Load up some dummy data::

./manage.py loaddata dev_data.json

Synchronize the dummy data::

./manage.py feedmapper_sync
Expand All @@ -39,7 +35,8 @@ Fire up the development server::

./manage.py runserver

Check out the sync results in the admin at http://localhost:8000/admin/myapp/thing/.
Check out the feed mapping in the admin at http://localhost:8000/admin/feedmapper/mapping/1/
and the sync results in the admin at http://localhost:8000/admin/myapp/thing/.

Full documentation
******************
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion feedmapper/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def default(self, obj):

def dumps(value):
assert isinstance(value, dict)
return JSONEncoder().encode(value)
return JSONEncoder(indent=4).encode(value)


def loads(txt):
Expand Down
1 change: 0 additions & 1 deletion feedmapper/forms.py

This file was deleted.

Empty file removed feedmapper/static/placeholder.txt
Empty file.
Empty file.
Empty file.
4 changes: 0 additions & 4 deletions feedmapper/urls.py

This file was deleted.

4 changes: 0 additions & 4 deletions feedmapper/views.py

This file was deleted.

0 comments on commit 0b57dfa

Please sign in to comment.