Skip to content

Instantly share code, notes, and snippets.

View chrisjones-brack3t's full-sized avatar

Chris Jones chrisjones-brack3t

View GitHub Profile
@chrisjones-brack3t
chrisjones-brack3t / SublimeLinter.sublime-settings
Created July 24, 2012 00:10
Sublime Text 2 Linter settings
/*
SublimeLinter default settings
*/
{
/*
Sets the mode in which SublimeLinter runs:
true - Linting occurs in the background as you type (the default).
false - Linting only occurs when you initiate it.
"load-save" - Linting occurs only when a file is loaded and saved.
assert = require 'assert'
request = require 'request'
app = require '../../app'
describe "authentication", ->
describe "GET /login", ->
body = null
before (done) ->
options =
<HTML>
<HEAD>
<TITLE>Trouble</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
<BODY BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 link="#000000" alink="#000000" vlink="#666666">
<% If Request.QueryString("Action") = "" Then %>
<%
If Session.Contents("Browse") <> "Yes" Then
Response.Redirect("index.asp")
## common/models.py
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes import generic
class CommonFile(models.Model):
""" Model for common files. """
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')
order = PositionField(unique_for_field='object_id')