Skip to content

Commit

Permalink
Merge pull request #1462 from terrywhitney/patch-4
Browse files Browse the repository at this point in the history
Update page.md
  • Loading branch information
zspitzer authored Feb 28, 2025
2 parents ddfdc03 + 2d3fd01 commit 4802884
Showing 1 changed file with 3 additions and 22 deletions.
25 changes: 3 additions & 22 deletions docs/04.guides/04.cookbooks/01.application-context-basic/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,20 +233,20 @@ component displayname="Application" output="false" hint="Handle the application"
***************************************************************************/
////////////////////////////////////////////////////////////////
// APPLICATION NAME
// Defines the name of your application
////////////////////////////////////////////////////////////////
// this.name = "myApplication";
////////////////////////////////////////////////////////////////
// LOCALE
// Defines the desired time locale for the application
////////////////////////////////////////////////////////////////
// this.locale = "en_US";
////////////////////////////////////////////////////////////////
// TIME ZONE
// Defines the desired time zone for the application
Expand Down Expand Up @@ -441,7 +441,6 @@ component displayname="Application" output="false" hint="Handle the application"
// this.query.cachedAfter = createTimeSpan(0,0,0,0);
////////////////////////////////////////////////////////////////
// REGEX
// Defines the regular expression dialect to be used.
Expand All @@ -451,7 +450,6 @@ component displayname="Application" output="false" hint="Handle the application"
// this.regex.type = "perl";
////////////////////////////////////////////////////////////////
// IMPLICIT NOTATION
// If there is no accessible data member (property, element of the this scope)
Expand All @@ -477,6 +475,7 @@ component displayname="Application" output="false" hint="Handle the application"
// disallowDoctypeDecl: false
// };
////////////////////////////////////////////////////////////////
// MAIL SERVERS
// defines one or more mail server connections.
Expand All @@ -498,7 +497,6 @@ component displayname="Application" output="false" hint="Handle the application"
// ];
////////////////////////////////////////////////////////////////
// DATASOURCES
// Defines datasources by datasource name. These can be addressed by
Expand All @@ -521,9 +519,6 @@ component displayname="Application" output="false" hint="Handle the application"
// };
////////////////////////////////////////////////////////////////
// CACHES
////////////////////////////////////////////////////////////////
Expand All @@ -535,8 +530,6 @@ component displayname="Application" output="false" hint="Handle the application"
// };
////////////////////////////////////////////////////////////////
// MAPPINGS
////////////////////////////////////////////////////////////////
Expand All @@ -551,9 +544,6 @@ component displayname="Application" output="false" hint="Handle the application"
// };
/**
* @hint First function run when Lucee receives the first request.
*/
Expand All @@ -564,8 +554,6 @@ component displayname="Application" output="false" hint="Handle the application"
}
/**
* @hint onApplicationEnd() is triggered when the application context ends, means when the
* timeout of the application context is reached (this.applicationTimeout).
Expand All @@ -577,7 +565,6 @@ component displayname="Application" output="false" hint="Handle the application"
}
/**
* @hint onSessionStart() is triggered with every request that has no session
* defined in the current application context.
Expand Down Expand Up @@ -611,7 +598,6 @@ component displayname="Application" output="false" hint="Handle the application"
}
/**
* @hint onRequest() is triggered during a request right after onRequestStart() ends and before
* onRequestEnd() starts. Unlike other CFML engines, Lucee executes this function without looking
Expand All @@ -636,7 +622,6 @@ component displayname="Application" output="false" hint="Handle the application"
}
/**
* @hint onCFCRequest() is triggered during a request for a .cfc component, typically
* used to handle remote component calls (e.g. HTTP Webservices).
Expand All @@ -648,7 +633,6 @@ component displayname="Application" output="false" hint="Handle the application"
}
/**
* @hint onError() is triggered when an uncaught exception occurs in this application context.
*/
Expand All @@ -659,8 +643,6 @@ component displayname="Application" output="false" hint="Handle the application"
}
/**
* @hint OnAbort() is triggered when a request is ended with help of the "abort" tag.
*/
Expand Down Expand Up @@ -691,6 +673,5 @@ component displayname="Application" output="false" hint="Handle the application"
}
}
```

0 comments on commit 4802884

Please sign in to comment.