comparison static/css/code/borland.less @ 102:f872c643b056

Updates to snippet functionality (see details) Sorry about the large commit, but it was difficult to break it up as a lot of new functionality was introduced. Most of it is specific to the snippet feature but there are some other changes as well. Commit highlights: * Added the ability to switch the syntax highlighting colour scheme when viewing a snippet. This is currently done on a per-snippet basis only, but eventually it will be possible to set a default in your profile to have all the snippets you view use that colour scheme. There are currently 8 different colour schemes, all of which were taken from the default pygments stylesheets (some were modified). * Added a "num_views" field to the Snippet model, with the field being incremented any time the snippet view is called (raw or regular view). * Created a simple "explore" view that lists the recently-posted snippets. Will implement pagination and sorting by other attributes ("popularity", for example, based on number of views) as well. * Added a post-save hook to the User model to ensure that a Profile is created for every user as soon as the User itself is created. This alleviates the need for a get_profile method that checks if the user has a profile or not and creates one if necessary. (The code is currently still there, will be cleaned up soon). * Added back the wordwrap toggling feature. Currently, if you want to enable word-wrapping, the line numbers have to be hidden in order to ensure that the lines and their numbers don't go out of sync. This will be fixed soon. * History/diff view is back * And some other minor cosmetic changes. Note: since some existing models have been changed, you'll likely need to delete the existing sqlite database before running syncdb. The alternative is to determine the necessary column changes/additions and run the SQL query yourself.
author dellsystem <ilostwaldo@gmail.com>
date Fri, 31 Aug 2012 02:53:22 -0400
parents
children 7d753658dc0e
comparison
equal deleted inserted replaced
101:a8da60d611f7 102:f872c643b056
1 .highlight &.borland {
2 .hll { background-color: #ffffcc }
3 .c { color: #008800; font-style: italic } /* Comment */
4 .err { color: #a61717; background-color: #e3d2d2 } /* Error */
5 .k { color: #000080; font-weight: bold } /* Keyword */
6 .cm { color: #008800; font-style: italic } /* Comment.Multiline */
7 .cp { color: #008080 } /* Comment.Preproc */
8 .c1 { color: #008800; font-style: italic } /* Comment.Single */
9 .cs { color: #008800; font-weight: bold } /* Comment.Special */
10 .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11 .ge { font-style: italic } /* Generic.Emph */
12 .gr { color: #aa0000 } /* Generic.Error */
13 .gh { color: #999999 } /* Generic.Heading */
14 .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
15 .go { color: #888888 } /* Generic.Output */
16 .gp { color: #555555 } /* Generic.Prompt */
17 .gs { font-weight: bold } /* Generic.Strong */
18 .gu { color: #aaaaaa } /* Generic.Subheading */
19 .gt { color: #aa0000 } /* Generic.Traceback */
20 .kc { color: #000080; font-weight: bold } /* Keyword.Constant */
21 .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */
22 .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */
23 .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */
24 .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */
25 .kt { color: #000080; font-weight: bold } /* Keyword.Type */
26 .m { color: #0000FF } /* Literal.Number */
27 .s { color: #0000FF } /* Literal.String */
28 .na { color: #FF0000 } /* Name.Attribute */
29 .nt { color: #000080; font-weight: bold } /* Name.Tag */
30 .ow { font-weight: bold } /* Operator.Word */
31 .w { color: #bbbbbb } /* Text.Whitespace */
32 .mf { color: #0000FF } /* Literal.Number.Float */
33 .mh { color: #0000FF } /* Literal.Number.Hex */
34 .mi { color: #0000FF } /* Literal.Number.Integer */
35 .mo { color: #0000FF } /* Literal.Number.Oct */
36 .sb { color: #0000FF } /* Literal.String.Backtick */
37 .sc { color: #800080 } /* Literal.String.Char */
38 .sd { color: #0000FF } /* Literal.String.Doc */
39 .s2 { color: #0000FF } /* Literal.String.Double */
40 .se { color: #0000FF } /* Literal.String.Escape */
41 .sh { color: #0000FF } /* Literal.String.Heredoc */
42 .si { color: #0000FF } /* Literal.String.Interpol */
43 .sx { color: #0000FF } /* Literal.String.Other */
44 .sr { color: #0000FF } /* Literal.String.Regex */
45 .s1 { color: #0000FF } /* Literal.String.Single */
46 .ss { color: #0000FF } /* Literal.String.Symbol */
47 .il { color: #0000FF } /* Literal.Number.Integer.Long */
48 }