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
<cffunction name="hmacEncode" returntype="string" output="false"> | |
<cfargument name="sku" required="true" /> | |
<cfargument name="name" required="true" /> | |
<cfargument name="value" required="true" /> | |
<cfset var stringToHash = arguments.sku & arguments.name & arguments.value /> | |
<cfset var apiKey = "YOUR_API_KEY_HERE" /> | |
<cfset var hashedString = hmac( stringToHash, apiKey, "HMACSHA256" ) /> | |
<cfreturn lcase( hashedString ) /> |
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
<!--- | |
ColdFusion RC4 Component | |
Written by Steve Hicks ([email protected]) | |
http://www.aquafusionmedia.com | |
Version 1.0 - Released: April 24, 2012 | |
Version 1.1 - Modified by Seb Duggan ([email protected]) | |
Added arguments to allow input and output not to be Hex values |
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
<displayobjects location="global"> | |
<displayobject | |
name="Statistics" | |
component="includes.displayObjects" | |
displaymethod="dspStatistics" | |
persist="false"> | |
<route | |
pattern="batting" | |
action="statistics:main.batting" /> | |
<route |
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
<displayobjects location="global"> | |
<displayobject | |
name="Statistics" | |
component="includes.displayObjects" | |
displaymethod="dspStatistics" | |
persist="false" /> | |
</displayobjects> |
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
RewriteEngine On | |
# If it's a real path, just serve it | |
RewriteCond %{REQUEST_FILENAME} -f [OR] | |
RewriteCond %{REQUEST_FILENAME} -d | |
RewriteRule . - [L] | |
######################### | |
##### MySite |
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
@font-face { | |
font-family: 'VegurRegular'; | |
src: url('Vegur-R_0500.eot'); | |
src: local('Vegur'), | |
local('Vegur-Regular'), | |
url('Vegur-R_0500.woff') format('woff'), | |
url('Vegur-R_0500.ttf') format('truetype'), | |
url('Vegur-R_0500.svg#Vegur-Regular') format('svg'); | |
} |