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
<?xml version='1.0' encoding='utf-8'?> | |
<!-- The contents of this file will be loaded for each web application --> | |
<Context> | |
<!-- REWRITE VALVE --> | |
<Valve className="org.apache.catalina.valves.rewrite.RewriteValve" /> | |
<!-- // --> | |
<!-- Speed up context loading --> | |
<JarScanner scanClassPath="false" /> | |
<!-- Default set of monitored resources. If one of these changes, the --> |
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
http { | |
... | |
server { | |
listen 80; | |
server_name mysite.local www.mysite.local; | |
root C:\websites\mysite\www; | |
index index.cfm; |
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
<cfscript> | |
FORM.InputField = "<b>This</b> is some <em>string</em> text with <s>HTML</s> all up in it."; | |
example1 = reReplaceNoCase(FORM.InputField, "[^a-zA-Z\d\s:]", "", "ALL"); | |
example2 = reReplaceNoCase(FORM.InputField, "<[^>]*>", "", "ALL"); | |
writeDump("Example 1: " & example1); | |
writeOutput("<br>"); | |
writeDump("Example 2: " & example2); | |
</cfscript> |
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
component name="Watermark" | |
output="false" | |
{ | |
public any function init() { | |
variables.AlphaComposite = createObject("java", "java.awt.AlphaComposite"); | |
variables.Color = createObject("java", "java.awt.Color"); | |
variables.Font = createObject("java", "java.awt.Font"); | |
variables.jFile = createObject("java", "java.io.File"); | |
variables.AffineTransform = createObject("java", "java.awt.geom.AffineTransform"); | |
variables.ImageIO = createObject("java", "javax.imageio.ImageIO"); |
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
<cfscript> | |
// Some dummy articles yay! | |
articles = [ | |
{title: "I Am a Title Perhaps", publishDate: createDate(2015, 11, 08)}, | |
{title: "I Am a Title As Well", publishDate: createDate(2014, 08, 15)}, | |
{title: "I Am a Title I Think", publishDate: createDate(2014, 09, 25)}, | |
{title: "I Am a Title", publishDate: createDate(2013, 04, 05)}, | |
{title: "I Am a Title Too", publishDate: createDate(2013, 05, 17)}, | |
{title: "I Am a Title Also", publishDate: createDate(2013, 07, 02)} | |
]; |
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
<cfscript> | |
// Some dummy articles yay! | |
articles = [ | |
{title: "I Am a Title Perhaps", publishDate: createDate(2015, 11, 08)}, | |
{title: "I Am a Title As Well", publishDate: createDate(2014, 08, 15)}, | |
{title: "I Am a Title I Think", publishDate: createDate(2014, 09, 25)}, | |
{title: "I Am a Title", publishDate: createDate(2013, 04, 05)}, | |
{title: "I Am a Title Too", publishDate: createDate(2013, 05, 17)}, | |
{title: "I Am a Title Also", publishDate: createDate(2013, 07, 02)} | |
]; |
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
<cfscript> | |
set = { | |
one : { | |
alphabet : "a", | |
maori : "tahi", | |
roman : "i", | |
ordinal : "first" | |
}, | |
two : { |
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
CKEDITOR.replace('textareaId', { | |
"extraPlugins": "imagebrowser", | |
"imageBrowser_listUrl": "/ImageBrowser.cfc?method=list&dir=/assets/images" | |
}); |
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
[ | |
{ | |
"image": "/image1_200x150.jpg", | |
"thumb": "/image1_thumb.jpg", | |
"folder": "Small" | |
}, | |
{ | |
"image": "/image2_200x150.jpg", | |
"thumb": "/image2_thumb.jpg", | |
"folder": "Large" |
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
component name="ImageBrowser" | |
output="false" | |
{ | |
remote array function list(required string dir = "") | |
output="false" | |
returnformat="JSON" | |
{ | |
var length = 0; | |
var path = var image = var folder = ""; | |
var result = []; |