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
local auraWhiteList = { | |
["Power Word: Fortitude"] = true, | |
["Prayer of Fortitude"] = true, | |
["Shadow Protection"] = true, | |
["Prayer of Shadow Protection"] = true, | |
["Heroic Presence"] = nil, | |
["Gift of the Naaru"] = true, | |
["Gift of the Wild"] = true, | |
["Mark of the Wild"] = true, | |
["Well Fed"] = true, |
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
--[[ | |
oUF Saul: 30100.05 | |
Credits: P3lim for his layout and coding | |
I grants anyone the right to use this work for any purpose, | |
without any conditions, unless such conditions are required by law. | |
--]] |
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
do | |
local HOUR = 60*60 | |
local zones = { | |
{ "EDT", HOUR * 13.5 }, | |
{ "CDT", HOUR * 14.5}, | |
{ "MDT", HOUR * 15.5}, | |
{ "PDT", HOUR * 16.5}, | |
{ "PST", HOUR * 17.5}, | |
{ "AKDT", HOUR * 18.5}, | |
{ "HAST", HOUR * 19.5}, |
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 | |
# | |
# | |
# | |
# | |
# | |
import os, stat, gtk | |
class BatchPrintConfirmationWindow: |
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 | |
TIMESTAMP=`date +%Y%m%d-%H%M%S` | |
INSTALLATION_TEMP=/tmp/minecraft | |
MINECRAFT_BIN=~/.minecraft/bin | |
MINECRAFT_BACKUPS=$MINECRAFT_BIN/../backups | |
# make our temporary directory | |
echo "Creating temporary directory" | |
mkdir $INSTALLATION_TEMP -p |
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
import os | |
HEREPATH = os.path.realpath( | |
os.path.dirname( | |
os.path.abspath(__file__) | |
) | |
) |
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
import os | |
import sys | |
import ConfigParser | |
gettext = lambda s: s | |
DEBUG=True | |
HEREPATH=os.path.realpath( os.path.dirname(__file__) ) | |
PROJECT_ROOT = os.path.realpath( | |
os.path.dirname(HEREPATH) | |
) |
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
# -*- coding: utf-8 -*- | |
#!/usr/bin/env python | |
# | |
""" | |
# Simple Website Settings | |
There a few settings that require the config/settings.cfg file to contain | |
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
import os | |
import re | |
from django.template.loader import get_template | |
from django.template.loaders.app_directories import app_template_dirs | |
from django.core.exceptions import ImproperlyConfigured | |
from django.utils.importlib import import_module | |
from cms.models import Placeholder, Page |
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
{% block page-messages %} | |
{% if settings.MAINTENANCE_MODE %} | |
Maintennance Mode is enabled. The site is not viewable by everyone | |
{% endif %} | |
{% for message in messages %} | |
× <#>{{ Message }} | |
{% endfor %} | |
{% endblock page-messages %} |
OlderNewer