django-autolinks

Created: 2008-12-07 20:40
Updated: 2018-06-29 11:32
License: other

README.md

django-autolinks

A small app, which stores information about websites to which you links in your preious posts. This application is able to process your new post, and append an information about such links to the end of the text.

This piece of code was inspired by Will Larson's post about blogging and DRY priciple.

Installation

  • As usual, use easy_install django-autolinks or download sources and place django_autolinks somewhere in the pythonpath.

  • Next, add django_autolinks to the INSTALLED_APPS.

  • Run ./manage.py syncdb, to create table which will hold information about urls.

  • Add few lines in your models.py, to process links. It should look like this:

    def save(self): self.body = process_links(self.body) super(TextPost, self).save()

    This simple example was taken right from my another project — django-dzenlog-text.

Contribution

Feel free to clone this project at github and send me patches or any suggestions.

Cookies help us deliver our services. By using our services, you agree to our use of cookies Learn more