├── .gitignore ├── CONTRIBUTORS.txt ├── INSTALL.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.txt ├── docs ├── index.txt ├── installation.txt ├── readme.txt └── usage.txt ├── oembed ├── __init__.py ├── admin.py ├── core.py ├── fixtures │ └── initial_data.json ├── models.py ├── templates │ └── oembed │ │ ├── link.html │ │ ├── photo.html │ │ ├── rich.html │ │ └── video.html ├── templatetags │ ├── __init__.py │ └── oembed_tags.py ├── tests.py └── views.py ├── setup.py └── tests ├── runtests.py └── settings.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- 1 | Eric Florenzano 2 | Idan Gazit -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/README.txt -------------------------------------------------------------------------------- /docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/docs/index.txt -------------------------------------------------------------------------------- /docs/installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/docs/installation.txt -------------------------------------------------------------------------------- /docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/docs/readme.txt -------------------------------------------------------------------------------- /docs/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/docs/usage.txt -------------------------------------------------------------------------------- /oembed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oembed/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/admin.py -------------------------------------------------------------------------------- /oembed/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/core.py -------------------------------------------------------------------------------- /oembed/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/fixtures/initial_data.json -------------------------------------------------------------------------------- /oembed/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/models.py -------------------------------------------------------------------------------- /oembed/templates/oembed/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/templates/oembed/link.html -------------------------------------------------------------------------------- /oembed/templates/oembed/photo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/templates/oembed/photo.html -------------------------------------------------------------------------------- /oembed/templates/oembed/rich.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/templates/oembed/rich.html -------------------------------------------------------------------------------- /oembed/templates/oembed/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/templates/oembed/video.html -------------------------------------------------------------------------------- /oembed/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oembed/templatetags/oembed_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/templatetags/oembed_tags.py -------------------------------------------------------------------------------- /oembed/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/oembed/tests.py -------------------------------------------------------------------------------- /oembed/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/setup.py -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/tests/runtests.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericflo/django-oembed/HEAD/tests/settings.py --------------------------------------------------------------------------------