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
### Symphony 2.0.x ### | |
Options +FollowSymlinks -Indexes | |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteBase / | |
### DO NOT APPLY RULES WHEN REQUESTING "favicon.ico" | |
RewriteCond %{REQUEST_FILENAME} favicon.ico [NC] |
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
### Symphony 2.0.x ### | |
Options +FollowSymlinks -Indexes | |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteBase / | |
### DO NOT APPLY RULES WHEN REQUESTING "favicon.ico" | |
RewriteCond %{REQUEST_FILENAME} favicon.ico [NC] |
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
### Symphony 2.0.x ### | |
Options +FollowSymlinks -Indexes | |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteBase / | |
### DO NOT APPLY RULES WHEN REQUESTING "favicon.ico" | |
RewriteCond %{REQUEST_FILENAME} favicon.ico [NC] |
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
#if begins with folio rewrite to false | |
RewriteRule ^folio/workspace/images/(.*) workspace/scripts/watermark.php?src=$1&resize=false | |
#else dont | |
RewriteRule ^workspace/images/(.*) workspace/scripts/watermark.php?src=$1&resize=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
<!doctype html> | |
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]--> | |
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]--> | |
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]--> | |
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> |
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
<!doctype html> | |
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]--> | |
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]--> | |
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]--> | |
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> |
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
Node : function(x,y) { | |
var t = this | |
t.el = document.createElementNS("http://www.w3.org/2000/svg", this.shape) | |
t.el.setAttribute('r', 1) | |
var changeOP = function() { | |
t.el.setAttribute('opacity','0.5') | |
} | |
var ee = window.setTimeout(changeOP,1000) | |
this.root.appendChild(t.el) | |
return this |
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
function svgWarning() { | |
// SVG test taken from Modernizr 2.0 | |
if (!!document.createElementNS && | |
!!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect) | |
return; | |
// No SVG, do something about it. | |
document.getElementById('mywarningdiv').style.display = 'block' | |
} |
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
$('.lyrics a.has_verified_annotation').each(function(i){ | |
$(this).append('<div class="verified_line_checky"></div>'); | |
}); |
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
// css style guide | |
// welcome to the rap genius style guide! | |
// here you will find good rules of thumb when writing css and sass. | |
// of course: the only rule that really matters is: | |
.do-whatever { content: "it's just CSS!" } | |
OlderNewer