The Django project driving dpaste.org
Find a file
Marius Gedminas 520332e151 Trailing newline on raw responses
Without this you cannot easily share patches:

    user@machine1 $ git diff | curl -F 'content=<-' https://dpaste.de/api/
    user@machine2 $ curl https://dpaste.de/xxxx/raw/ | git apply
    fatal: corrupt patch at line 67
2013-10-22 11:01:15 +03:00
dpaste Trailing newline on raw responses 2013-10-22 11:01:15 +03:00
server More precise url handling 2013-09-27 19:28:07 +00:00
.gitignore Clean up: Drop redundant attributes, minor JS clean up, gitignore 2013-04-23 06:33:06 +02:00
.travis.yml Fixed travis settings 2013-03-29 19:27:40 +01:00
fabfile.py Setting fixes 2013-03-19 19:58:10 +01:00
manage.py More project restructuring to make the project look more like a Django 1.5 project. 2013-03-19 13:54:25 +01:00
README.md Readme: Promote dpaste.de instead of www.dpaste.de 2013-04-23 06:33:19 +02:00
requirements.txt Updated requirements. 2013-08-15 19:11:15 +02:00
setup.py Bumped up version 2013-05-31 11:48:48 +02:00

====== dpaste

dpaste is a Django based pastebin. It's intended to run separatly or installed into an existing Django project.

You can find a live example on http://dpaste.de/

Testing

$ pip install -r requirements.txt
$ pip install -e .
$ manage.py test dpaste