This guide assumes a fresh install of Mac OSX 10.7 Lion.
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 django.conf import settings | |
from django.utils.translation import string_concat, ugettext_lazy | |
from django.utils.html import strip_tags | |
from haystack import indexes, site | |
from cms.models.managers import PageManager | |
from cms.models.pagemodel import Page | |
from cms.models.pluginmodel import CMSPlugin |
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 download_cover(url, name=None): | |
#print "========================== START" | |
#print "==== COVER URL: %s" % (url,) | |
purl = urlparse(url) | |
path = purl.path | |
if path.startswith('/'): | |
path = path[1:] | |
abspath = os.path.join(settings.MEDIA_ROOT,settings.RADIOPLAYLIST_COVERS_PREFIX,path) | |
relpath = os.path.join(settings.RADIOPLAYLIST_COVERS_PREFIX,path) | |
if not os.path.exists(os.path.dirname(abspath)): |
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 ditto -rsrc /Users/username /Volumes/OtherDisk/Users/ |
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
[buildout] | |
... | |
parts = | |
... | |
django-filer-git | |
[django-filer-git] | |
recipe=zerokspot.recipe.git | |
repository=git://github.com/stefanfoulis/django-filer.git | |
rev=c10e7e0b618b7718ae518ec33ecc8d5de6b62eaa |

OlderNewer