Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Commit

Permalink
Renamed project to BotFly instead of flyBox
Browse files Browse the repository at this point in the history
  • Loading branch information
NextStepGuru committed Jan 28, 2012
1 parent 771d057 commit 5198071
Show file tree
Hide file tree
Showing 2,026 changed files with 313,307 additions and 236 deletions.
6 changes: 0 additions & 6 deletions build.properties

This file was deleted.

230 changes: 0 additions & 230 deletions build.xml

This file was deleted.

12 changes: 12 additions & 0 deletions loc.logfly.us/.project
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>loc.logfly.us</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
<nature>com.adobe.ide.coldfusion.projectNature</nature>
</natures>
</projectDescription>
42 changes: 42 additions & 0 deletions loc.logfly.us/Application.cfc
@@ -0,0 +1,42 @@
component extends="coldbox.system.Coldbox" output="false"{
setting enablecfoutputonly="yes";
this.name = hash(getCurrentTemplatePath());
this.sessionManagement = true;
this.sessionTimeout = createTimeSpan(0,0,30,0);
this.setClientCookies = true;

COLDBOX_APP_ROOT_PATH = getDirectoryFromPath(getCurrentTemplatePath());
COLDBOX_APP_MAPPING = "";
COLDBOX_CONFIG_FILE = "";
COLDBOX_APP_KEY = "";

this.ormEnabled = true;
this.datasource = "botfly";
this.ormSettings = {
flushAtRequestEnd = false,
automanageSession = false,
autogenmap = true,
eventHandling = true,
logSQL = true,
secondaryCacheEnabled = true,
useDBForMapping = false,
savemapping = false,
skipCFCWithError = true,
cacheprovider = "ehCache",
dbcreate = "none",
eventHandler = "botfly.model.EventHandler",
cfclocation = "model"
};


public boolean function onRequestStart(required string targetPage){

if(findNoCase('index.cfm', listLast(arguments.targetPage, '/'))){
reloadChecks();
processColdBoxRequest();
}

return true;
}

}
23 changes: 23 additions & 0 deletions loc.logfly.us/assets/css/frameless.css
@@ -0,0 +1,23 @@
/* CSS crunched with Crunch - http://crunchapp.net/ */
body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,th,td,article,aside,figure,footer,header,hgroup,menu,nav,section{margin:0;padding:0;border:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,audio,canvas,video{display:block;}
html{height:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
body{min-height:100%;font-size:100%;}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
sup{top:-0.5em;}
sub{bottom:-0.25em;}
pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word;}
b,strong{font-weight:bold;}
abbr[title]{border-bottom:1px dotted;}
table{border-collapse:collapse;border-spacing:0;}
a img,img{-ms-interpolation-mode:bicubic;border:0;}
input,textarea,button,select{margin:0;font-size:100%;line-height:normal;vertical-align:baseline;}
button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;}
input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
textarea{overflow:auto;}
::selection{background:red;color:white;}
::-moz-selection{background:red;color:white;}
img::selection{background:transparent;}
img::-moz-selection{background:transparent;}
body{-webkit-tap-highlight-color:rgba(255, 0, 0, 0.62);}
@media screen and (max-width:1px){body{font-size:0.875em;}}@media screen and (max-width:1px){body{font-size:1.125em;}}

0 comments on commit 5198071

Please sign in to comment.