summaryrefslogtreecommitdiff
path: root/pastepy.py
AgeCommit message (Collapse)AuthorFilesLines
2019-03-15Port application to flaskJon Bergli Heier1-292/+0
2019-03-12Handle NoResultFound in raw handlerJon Bergli Heier1-0/+3
2017-05-12Added fullscreen mode.Jon Bergli Heier1-1/+33
2017-03-25Added python 3 compatibility.Jon Bergli Heier1-15/+36
We're now using the six module and some helper functions to deal with str, unicode and bytes. This is tested on python 2.7 and 3.6.
2017-03-24Suffix dates with UTC to indicate they're UTC dates.Jon Bergli Heier1-2/+2
2017-03-24Use range instead of xrange.Jon Bergli Heier1-1/+1
Using xrange with small values such as 5 is pointless. Also, xrange doesn't exist in python 3.
2017-03-24Cleaned up charset lines.Jon Bergli Heier1-12/+12
Sett all charset= lines to use UTF-8 in uppercase instead of lowercase. Python however seems to prefer utf-8 in lowercase, so use that instead of utf8.
2017-03-24Use key instead of cmp when sorting lexers.Jon Bergli Heier1-1/+1
This is considered good practice these days, and also makes the code work with python 3.
2017-03-24Open static files with mode = 'rb'.Jon Bergli Heier1-1/+1
This is a more sane mode for our use, and allows the code to work in python 3, which expects bytes.
2017-03-24Use http.cookies with fallback to Cookie.Jon Bergli Heier1-3/+6
2017-03-24Replaced cheetah templates with jinja2 templates.Jon Bergli Heier1-13/+17
2017-03-18Added option to remember syntax choice.Jon Bergli Heier1-3/+7
As a side effect the default syntax name in settings.py now uses the syntax value instead of the displayed text.
2017-03-18Added markdown_extensions setting.Jon Bergli Heier1-1/+1
This allows arbitrary markdown extensions to be specified in the settings.py file.
2017-03-13Store IP address per paste.Jon Bergli Heier1-1/+1
2017-03-13Cleaned up lexer logic a bit.Jon Bergli Heier1-21/+22
Lexer logic now moved to get_formatted. This method raises UnknownSyntaxError if an unknown syntax name is provided.
2017-03-12Hide the Rendered category when empty.Jon Bergli Heier1-1/+2
2017-03-12Added support for rendering markdown.Jon Bergli Heier1-9/+28
If a syntax name starts with 'Rendered ' (lazy fix, we'll come up with something better later) the paste will now be handled by the corresponding renderer. For now we only support markdown, but this can easily be extended to support other renderers as well.
2017-03-12Cleaned up imports.Jon Bergli Heier1-1/+11
2017-03-12Fixed pre tags in HTML formatter.Jon Bergli Heier1-1/+1
The ending tag should be </pre>, not <pre>.
2017-03-12Added vim modelines.Jon Bergli Heier1-0/+2
2011-11-05Catch exceptions on non-existent pastes and return an empty 404 page.Jon Bergli Heier1-2/+6
2011-04-14Specify charset in Content-Type.Vegard Storheil Eriksen1-7/+7
2010-10-16Fixed encoding errors in raw().Jon Bergli Heier1-1/+1
2010-08-18Fixed error in unicode handling.Jon Bergli Heier1-1/+1
2010-03-20Default title to 'Untitled' in the page title.Jon Bergli Heier1-1/+1
2010-03-01Decode text to utf-8 when previewing.Jon Bergli Heier1-4/+4
2010-03-01Make sure paste text is unicode when generating cache.Jon Bergli Heier1-1/+1
2010-02-07Default syntax to 'text' when generating cache.Jon Bergli Heier1-1/+1
2010-02-02Call random.seed() when initializing.Jon Bergli Heier1-0/+2
2010-01-29Strip CR from text input.Jon Bergli Heier1-1/+1
2010-01-28Implemented dynamic highlighting of lines.Jon Bergli Heier1-2/+11
This currently only works when opening URLs with an anchor.
2010-01-27Replace manual messages with self.message.Jon Bergli Heier1-5/+3
Fixed calling start_response in self.message.
2010-01-27Replaced "Plain text" with pygments' "Text only".Jon Bergli Heier1-10/+16
This will correctly add the layout formatting including line numbers. Added Paste.message and templates.message for error messages.
2010-01-27Default fields to None, and don't allow paste text to be None.Jon Bergli Heier1-5/+5
This requires a recreation of the database.
2010-01-27Change hash generation to a 5-digit base62 string.Jon Bergli Heier1-2/+4
2010-01-26Cache formatted text.Jon Bergli Heier1-11/+22
2010-01-26Set default syntax from settings.py.Jon Bergli Heier1-0/+1
2010-01-26Optionally store nick using HTTP cookies.Jon Bergli Heier1-2/+11
2010-01-25Convert strings to unicode before adding pastes.Jon Bergli Heier1-1/+1
2010-01-25Support plain text (no syntax).Jon Bergli Heier1-7/+20
2010-01-25Initial commit.Jon Bergli Heier1-0/+137