CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 02 Sep 2025 16:42:58 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100329095423
location: https://web.archive.org/web/20100329095423/https://github.com/montylounge/django-basic-apps
server-timing: captures_list;dur=0.968605, exclusion.robots;dur=0.030357, exclusion.robots.policy;dur=0.013117, esindex;dur=0.015475, cdx.remote;dur=45.806013, LoadShardBlock;dur=449.143808, PetaboxLoader3.datanode;dur=155.234728, PetaboxLoader3.resolve;dur=215.446584
x-app-server: wwwb-app219
x-ts: 302
x-tr: 542
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app219; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Tue, 02 Sep 2025 16:43:00 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 29 Mar 2010 09:54:23 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "90f517e172038cb7e73aae1ea187ddb4"
x-archive-orig-x-runtime: 242ms
x-archive-orig-content-length: 24045
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 29 Mar 2010 09:54:23 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 18 Sep 2009 01:30:19 GMT", ; rel="prev memento"; datetime="Fri, 19 Feb 2010 02:49:44 GMT", ; rel="memento"; datetime="Mon, 29 Mar 2010 09:54:23 GMT", ; rel="next memento"; datetime="Fri, 16 Nov 2012 04:29:44 GMT", ; rel="last memento"; datetime="Thu, 10 Sep 2020 20:00:23 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_15_20100329074517_crawl101-c/51_15_20100329095258_crawl101.arc.gz
server-timing: captures_list;dur=0.702415, exclusion.robots;dur=0.026770, exclusion.robots.policy;dur=0.012763, esindex;dur=0.013586, cdx.remote;dur=67.296248, LoadShardBlock;dur=910.026107, PetaboxLoader3.datanode;dur=139.722195, PetaboxLoader3.resolve;dur=896.271657, load_resource;dur=257.848565
x-app-server: wwwb-app219
x-ts: 200
x-tr: 1325
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
montylounge's django-basic-apps at master - GitHub
montylounge / django-basic-apps forked from lincolnloop/django-basic-apps
- Source
- Commits
- Network (24)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Sun Jun 21 18:51:52 -0700 2009 | added initial .gitignore [howiworkdaily] |
![]() |
AUTHORS | Tue Mar 24 15:54:50 -0700 2009 | Adding authors and license files. [nathanborror] |
![]() |
LICENSE | Thu May 21 07:33:57 -0700 2009 | Accidently had the wrong name in the license fi... [nathanborror] |
![]() |
README.rst | Mon Jan 18 18:54:00 -0800 2010 | added acdha commits for migrating legacy blog s... [montylounge] |
![]() |
basic/ | Thu Feb 04 19:52:20 -0800 2010 | adding the signal would be nice [montylounge] |
![]() |
setup.py | Wed Apr 22 20:55:42 -0700 2009 | adds rudimentary setup.py and moves apps inside... [lincolnloop] |
README.rst
An example of the markup is:
<inline type="media.photo" id="1" />
In your template you would say:
Django Basic Apps
Simple apps for Django projects.
To install any of the apps listed simply create a folder on your PYTHONPATH named 'basic' and place the apps you wish to use in that folder. Then added basic.<app_name> to your project's settings.py file. (replace <app_name> with the apps you wish to use, naturally).
Below are a list of per app dependancies:
Dependancies
- Basic Inlines are required to use the Blog app
- Django Comments (https://www.djangoproject.com/documentation/add_ons/#comments) are required for the blog app
- Django-Markup (https://github.com/bartTC/django-markup/tree/master) for the blog app
- Django-Sugar (https://github.com/montylounge/django-sugar/tree/master) for the blog app
- Django Tagging (https://code.google.com/p/django-tagging)
- Markdown (https://www.djangoproject.com/documentation/add_ons/#markup)
- BeautifulSoup (https://www.crummy.com/software/BeautifulSoup/) is required to use the blog and, subsequently, the inlines app.
- Django-Tinymce (https://code.google.com/p/django-tinymce/) for TinyMCE support.
- Django-Twitter (https://github.com/skevy/django-twitter/) for Twitter support.
- Django-Bitly (https://bitbucket.org/discovery/django-bitly/) for Bitly support.
Inlines
Inlines is a template filter that can be used in conjunction with inline markup to insert content objects into other pieces of content. An example would be inserting a photo into a blog post body.
The type attribute is app_name.model_name and the id is the object id. Pretty simple.
{% load inlines %}
{{ post.body|render_inlines }}