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
Unable to import sentry.filters.SiteFilter | |
Traceback (most recent call last): | |
File "/srv/www/sentry/lib/python2.6/site-packages/sentry-5.0.21-py2.6.egg/sentry/filters/helpers.py", line 35, in get_filters | |
cls = getattr(module, class_name) | |
AttributeError: 'module' object has no attribute 'SiteFilter' | |
Unable to import sentry.filters.ServerNameFilter | |
Traceback (most recent call last): | |
File "/srv/www/sentry/lib/python2.6/site-packages/sentry-5.0.21-py2.6.egg/sentry/filters/helpers.py", line 35, in get_filters | |
cls = getattr(module, class_name) | |
AttributeError: 'module' object has no attribute 'ServerNameFilter' |
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
/** | |
* Rename some variables and update the database tables | |
*/ | |
function apachesolr_update_7012() { | |
module_load_include('inc', 'apachesolr', 'apachesolr.index'); | |
$env_id = apachesolr_default_environment(); | |
// Variable changed from integer to array with environment integers | |
$stored = variable_get('apachesolr_index_last', array()); | |
if (isset($stored['apachesolr'])) { |
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
#!/bin/sh | |
echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
read inputline | |
name=$inputline | |
echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
read inputline | |
url=$inputline |
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
<html><head><title></title> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script> | |
<script type="text/javascript" src="../protovis-3.2/protovis-r3.2.js"></script> | |
<script type="text/javascript"> | |
//getNet is where we get a list of Twitter usernames | |
function getNet(){ | |
url="http://search.twitter.com/search.json?q=jisc11&rpp=100&callback=?" |
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
Using git+dropbox together effectively? - Stack Overflow | |
I think that git on dropbox is great. I use it all of the time. I have multiple computers (two at home and one at work) that I use dropbox as a central bare repo. Since I don’t want to host it on a public service and I don’t have access to a server that I can always ssh to, Dropbox takes care of this by syncing (very quickly) in the background. | |
Setup is something like this: | |
~/project $ git init | |
~/project $ git add . | |
~/project $ git commit -m "first commit" | |
~/project $ cd ~/Dropbox/git |
NewerOlder