view static/css/code/autumn.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
line wrap: on
line source

.highlight &.autumn {
    .hll { background-color: #ffffcc }
    .c { color: #aaaaaa; font-style: italic } /* Comment */
    .err { color: #F00000; background-color: #F0A0A0 } /* Error */
    .k { color: #0000aa } /* Keyword */
    .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
    .cp { color: #4c8317 } /* Comment.Preproc */
    .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
    .cs { color: #0000aa; font-style: italic } /* Comment.Special */
    .gd { color: #aa0000 } /* Generic.Deleted */
    .ge { font-style: italic } /* Generic.Emph */
    .gr { color: #aa0000 } /* Generic.Error */
    .gh { color: #000080; font-weight: bold } /* Generic.Heading */
    .gi { color: #00aa00 } /* Generic.Inserted */
    .go { color: #888888 } /* Generic.Output */
    .gp { color: #555555 } /* Generic.Prompt */
    .gs { font-weight: bold } /* Generic.Strong */
    .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
    .gt { color: #aa0000 } /* Generic.Traceback */
    .kc { color: #0000aa } /* Keyword.Constant */
    .kd { color: #0000aa } /* Keyword.Declaration */
    .kn { color: #0000aa } /* Keyword.Namespace */
    .kp { color: #0000aa } /* Keyword.Pseudo */
    .kr { color: #0000aa } /* Keyword.Reserved */
    .kt { color: #00aaaa } /* Keyword.Type */
    .m { color: #009999 } /* Literal.Number */
    .s { color: #aa5500 } /* Literal.String */
    .na { color: #1e90ff } /* Name.Attribute */
    .nb { color: #00aaaa } /* Name.Builtin */
    .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
    .no { color: #aa0000 } /* Name.Constant */
    .nd { color: #888888 } /* Name.Decorator */
    .ni { color: #800000; font-weight: bold } /* Name.Entity */
    .nf { color: #00aa00 } /* Name.Function */
    .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
    .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
    .nv { color: #aa0000 } /* Name.Variable */
    .ow { color: #0000aa } /* Operator.Word */
    .w { color: #bbbbbb } /* Text.Whitespace */
    .mf { color: #009999 } /* Literal.Number.Float */
    .mh { color: #009999 } /* Literal.Number.Hex */
    .mi { color: #009999 } /* Literal.Number.Integer */
    .mo { color: #009999 } /* Literal.Number.Oct */
    .sb { color: #aa5500 } /* Literal.String.Backtick */
    .sc { color: #aa5500 } /* Literal.String.Char */
    .sd { color: #aa5500 } /* Literal.String.Doc */
    .s2 { color: #aa5500 } /* Literal.String.Double */
    .se { color: #aa5500 } /* Literal.String.Escape */
    .sh { color: #aa5500 } /* Literal.String.Heredoc */
    .si { color: #aa5500 } /* Literal.String.Interpol */
    .sx { color: #aa5500 } /* Literal.String.Other */
    .sr { color: #009999 } /* Literal.String.Regex */
    .s1 { color: #aa5500 } /* Literal.String.Single */
    .ss { color: #0000aa } /* Literal.String.Symbol */
    .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
    .vc { color: #aa0000 } /* Name.Variable.Class */
    .vg { color: #aa0000 } /* Name.Variable.Global */
    .vi { color: #aa0000 } /* Name.Variable.Instance */
    .il { color: #009999 } /* Literal.Number.Integer.Long */
}