This file contains hidden or 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
# django template tag filter to generate jpeg thumbnails | |
import os | |
import Image | |
from django.template import Library | |
register = Library() | |
def scale(max_x, size): | |
" size is a tuple: (image_x,image_y) " |
This file contains hidden or 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 colors = new Array( | |
[116,143,138], | |
[78,117,143], | |
[191,206,197], | |
[0,40,40], | |
[0,60,60], | |
[0,80,80], | |
[0,100,100], | |
[165,187,181], | |
[134,160,154], |
NewerOlder