Recently, pastebin.com has been having performance issues and I’ve been struggling to find an alternative that does syntax highlighting in enough languages to satisfy my needs. I tend to sit in #turbogears a lot and help people new to TurboGears when I can and a pastebin is invaluable in that situation.
From this need, Stickum was born. It’s a very simple TurboGears application that accepts pastes and… well, pastes them, and it does syntax highlighting for a variety of languages so it’s not just for Pythonistas.
Michael Greene | 21-Oct-06 at 12:18 am | Permalink
Any chance at getting the source?
Stickum - A TurboGears based Pastebin at Blue Sky On Mars | 21-Oct-06 at 3:08 am | Permalink
[...] Lee McFadden announces Stickum - A TurboGears based Pastebin. There’s nothing quite like the joy of simple but useful apps. [...]
Evan | 23-Oct-06 at 3:05 am | Permalink
Yes, the source code would be very interesting :)
Splee | 23-Oct-06 at 2:02 pm | Permalink
I didn’t really think about releasing the code, but then I never intended not to release the code… I just didn’t really think about it.
I’ve set up a google project for the free SVN hosting and you can now get the current version from http://code.google.com/p/stickum
Tim | 23-Oct-06 at 4:04 pm | Permalink
Hi, is it possible that the SVN tree is missing util.py? I’m getting an error when running:
Traceback (most recent call last):
File “./start-stickum.py”, line 26, in ?
from stickum.controllers import Root
File “/home/tgerla/stickum/stickum/controllers.py”, line 11, in ?
from stickum import json, model
File “/home/tgerla/stickum/stickum/model.py”, line 8, in ?
from stickum.util import Parser
ImportError: No module named util
Thanks!
Splee | 23-Oct-06 at 5:00 pm | Permalink
Yes, it was missing. I’d renamed the project from ’simplepb’ to ’stickum’ and i figured the most reliable way of doing that was to create a new project and copy across the templates, model and controllers. It seems I forgot util.py.
If you update your svn checkout you should get the file. :)