This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Extend WYMeditor | |
WYMeditor.editor.prototype.inlineStyler = function(options) { | |
if(jQuery.browser.msie == true){ | |
//No support | |
}else if (jQuery.browser.opera == true){ | |
//No support | |
}else if (jQuery.browser.safari == true && jQuery.browser.version < 1.9){ | |
//No support | |
}else{ | |
var inlineStyler = new InlineStyler(options, this); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Automatically saves a policy every REFRESH milliseconds through AJAX, | |
but only when the .autosave form has changed. To use, add the class autosave | |
to your form. | |
Note: REFRESH must always be bigger than SAVE_TIMEOUT, otherwise a broken | |
save will cause deadlock for pending. | |
**/ | |
function processJson(data) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** https://gist.github.com/1181282 **/ | |
ul.task_list { | |
height: 1024px; | |
} | |
ul.task_list li { | |
height: auto; | |
max-height: 20em; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def my_signal_handler(sender, instance, raw, **kwargs): | |
if raw: | |
# This is a fixture-style load. Don't run the handler | |
return | |
print "totally handling a signal" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo cp -r /home/hudson/.ssh /root/; | |
sudo chown -R root:root /root/.ssh; | |
sudo service mysql stop; | |
sudo cp -pRL /var/lib/mysql /dev/shm/mysql; | |
sudo echo "[mysqld] | |
datadir = /dev/shm/mysql | |
" > /tmp/ramdisk.cnf; | |
sudo mv /tmp/ramdisk.cnf /etc/mysql/conf.d/ramdisk.cnf; | |
sudo echo " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from nose.tools import assert_equal | |
addition_cases = [ | |
( | |
'2 + 2', | |
2, | |
2, | |
4 | |
), | |
( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def bundle_ami(): | |
require('dev_aws_userid') | |
require('dev_aws_access_key_id') | |
require('dev_aws_secret_access_key') | |
require('ami_bucket') | |
require('config_folder') | |
require('hudson_slave_ami_name') | |
env.ami_name = env.hudson_slave_ami_name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
""" | |
Update a set of virtualenvs based on a given set of pip requirements files | |
whenever those files change. Keeps track of requirements file changes by md5 | |
hashing the files and storing that hash in the virtualenv. That means that | |
only updates to the files themselves will trigger updating (changes to a | |
repository won't be caught). | |
Optionally also supports uploading/downloading a full bundle of all requirements | |
to/from Amazon S3 based on the requirements hash in order to ensure that |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var spellcheck_type = 'google'; | |
var correction_list = null; | |
// No constants for Node.* IE | |
var ELEMENT_NODE = 1; | |
var TEXT_NODE = 3; | |
WYMeditor.editor.prototype.spellcheck = function() { | |
if (!$.browser.msie) { return }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($){ | |
$.Attachments = { | |
defaults: { | |
editLoader: '<div class="contentLoading formloader"><img src="/site_media/images/loading.gif" alt="Loading data, please wait...">', | |
editLoaderS: 'div.formloader', | |
listLoader: '<div class="contentLoading listloader"><img src="/site_media/images/loading.gif" alt="Loading data, please wait...">', |