Install this directory.

1) run : python manage.py syncdb

2) copy: IMTESTDB to IMTEST.synced

3) run: python initdata.py

4) run: python manage.py dumpdata > out.json

5) copy: IMTESTDB to IMTEST.inited

6) copy/replace: IMTESTDB.synced to IMTEST

7) run: python manage.py loaddata out.json

In failure mode, the loaddata command will fail:
    Installing json fixture 'out' from absolute path.
Problem installing fixture 'out.json': Traceback (most recent call last):
  File "D:\django\Python25\Lib\site-packages\django\core\management\commands\loaddata.py", line 112, in handle
    obj.save()
  File "D:\django\Python25\Lib\site-packages\django\core\serializers\base.py", line 171, in save
    setattr(self.object, accessor_name, object_list)
  File "D:\django\Python25\Lib\site-packages\django\db\models\fields\related.py", line 560, in __set__
    raise AttributeError, "Cannot set values on a ManyToManyField which specifies an intermediary model.  Use %s's Manager instead." % through
AttributeError: Cannot set values on a ManyToManyField which specifies an intermediary model.  Use Entry's Manager instead.

For success, IMTESTDB should be equivalent to IMTEST.initd

END OF README
