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
INFO_PLIST="$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH" | |
# Copy from this key to the DisplayName key so we don't have to | |
# worry about re-reading from the same plist later. | |
SOURCE_NAME_KEY="CFBundleName" | |
DISPLAY_NAME_KEY="CFBundleDisplayName" | |
DISPLAY_NAME=`defaults read $INFO_PLIST $SOURCE_NAME_KEY` | |
if [ "$CONFIGURATION" = "Debug" ] | |
then | |
DEBUG_DISPLAY_NAME="$DISPLAY_NAME ☢" | |
else |
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
import os.path | |
import json | |
import logging | |
from django.conf import settings | |
from django.contrib.staticfiles.storage import CachedFilesMixin | |
from storages.backends.s3boto import S3BotoStorage | |
INDEX_FILENAME = os.path.join(os.path.dirname(__file__), 'static-index.json') |
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
<style> | |
#mask-demo { | |
background: #d0d0d0; | |
height: 100px; | |
width: 500px; | |
padding: 10px; | |
position: relative; | |
overflow: hidden; | |
} | |
.fade-right .mask { |
NewerOlder