Skip to content

Commit

Permalink
Merge pull request #1452 from robmarzialetti/patch-17
Browse files Browse the repository at this point in the history
Fix MD formatting for table
  • Loading branch information
zspitzer authored Sep 2, 2024
2 parents f3f5e0c + e7d25e3 commit 5fe1a80
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions docs/04.guides/11.developing-with-lucee-server/05.scope/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ menuTitle: Scopes

These scopes are not necessarily available between components in the same request -- in other words elements or variables in these scopes may be "out of scope" if set in one module and referred to in another.

Scope | Description | Notes |
------------------------ | -------------------------
arguments | Holds arguments that are passed to a function or CFC method | |
attributes | Contains attributes that are passed to a custom tag | |
caller | Refers to the scope of the calling page when a custom tag or module is called | |
this | The public scope for a Component/CFC | |
thread | The scope within a thread | |
variables | The private scope for a Component/CFC | |
| Scope | Description | Notes |
| ---------- | -------------------------------------------------------------------------------- | ----- |
| arguments | Holds arguments that are passed to a function or CFC method | |
| attributes | Contains attributes that are passed to a custom tag | |
| caller | Refers to the scope of the calling page when a custom tag or module is called | |
| this | The public scope for a Component/CFC | |
| thread | The scope within a thread | |
| variables | The private scope for a Component/CFC | |

## Request scopes ##

These scopes persist through a single request, i.e. any code, in any module, can refer to these scopes during the life of the request:

Scope | Description | Notes |
------------------------ | -------------------------
form | Contains arguments that are received from HTML POST operations, i.e. usually form data | Lucee has an option to merge form and URL scopes. If this option is enabled, both scopes will contain the same items. |
cgi | Holds environment variables generated by the web server. | CGI variables will vary according to server platform in use and browser. |
request | Used to store data across an entire request. Data put into the request scope will be accessible from all templates, CFCs, custom tags, etc | |
url | | |
| Scope | Description | Notes |
| ------- | ------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------- |
| form | Contains arguments that are received from HTML POST operations, i.e. usually form data | Lucee has an option to merge form and URL scopes. If this option is enabled, both scopes will contain the same items. |
| cgi | Holds environment variables generated by the web server. | CGI variables will vary according to server platform in use and browser. | |
| request | Used to store data across an entire request. Data put into the request scope will be accessible from all templates, CFCs, custom tags, etc | |
| url | | |

## Query scopes ##

Expand All @@ -45,14 +45,14 @@ This (slow) lookup can be disabled (for better performance) in the Lucee admin o

These scopes persist between requests, i.e. a value can be set during one request then retrieved in a subsequent one:

Scope | Description | Notes |
------------------------ | -------------------------
application| Holds elements that relate to the application as a whole. | |
client | Contains elements that persist indefinitely for this particular client (browser).| |
cookie | Refers to the scope of the calling page when a custom tag or module is called | |
server | Used to store data that is accessible from any application on a particular server.| |
session | Holds data pertaining to the user's session. | |
cluster | | Deprecated |
| Scope | Description | Notes |
| ----------- | ---------------------------------------------------------------------------------- | ---------- |
| application | Holds elements that relate to the application as a whole. | |
| client | Contains elements that persist indefinitely for this particular client (browser). | |
| cookie | Refers to the scope of the calling page when a custom tag or module is called | |
| server | Used to store data that is accessible from any application on a particular server. | |
| session | Holds data pertaining to the user's session. | |
| cluster | | Deprecated |

## What scope should I use in...? ##

Expand Down

0 comments on commit 5fe1a80

Please sign in to comment.