web/manage.py
author grandjoncl
Thu, 11 Oct 2012 16:39:05 +0200
changeset 842 ca38abd140b3
parent 660 d9f2a953bea5
permissions -rw-r--r--
Corrections of the code for the embed popup. Functions are now in the embed_popup.js With chrome the player used to play the video even when it wasn't supposed to be displayed and kept playing when we hid the player. When we changed between div and iframe the player started even when it was suppose to be hidden. It's now solved.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
660
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
#!/usr/bin/env python
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
import os
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
import sys
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
if __name__ == "__main__":
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ldtplatform.settings")
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
    from django.core.management import execute_from_command_line
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
d9f2a953bea5 move manage.py
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
    execute_from_command_line(sys.argv)