diff --git a/docs/03.reference/01.functions/cacheget/_examples.md b/docs/03.reference/01.functions/cacheget/_examples.md index 30081968d..75d015333 100644 --- a/docs/03.reference/01.functions/cacheget/_examples.md +++ b/docs/03.reference/01.functions/cacheget/_examples.md @@ -1,5 +1,7 @@ -```luceescript+trycf - cachePut(id:'abc', value:'123',timeSpan:CreateTimeSpan(0,0,0,1),cacheName:'fruits'); - getcache = cacheGet(id:'abc',cacheName:'fruits'); - writeDump(getcache); -``` \ No newline at end of file +```lucee + + cachePut(id:'abc', value:'123',timeSpan:CreateTimeSpan(0,0,0,1),cacheName:'fruits'); + getcache = cacheGet(id:'abc',cacheName:'fruits'); + writeDump(getcache); + +``` diff --git a/docs/03.reference/02.tags/dump/_attributes/metainfo.md b/docs/03.reference/02.tags/dump/_attributes/metainfo.md index 52b8acf8f..b2cf1dedd 100644 --- a/docs/03.reference/02.tags/dump/_attributes/metainfo.md +++ b/docs/03.reference/02.tags/dump/_attributes/metainfo.md @@ -1 +1 @@ -Includes information about the query in the cfdump results. \ No newline at end of file +(default:true) Includes information about the query in the cfdump results. diff --git a/docs/03.reference/02.tags/file/_examples.md b/docs/03.reference/02.tags/file/_examples.md index 259872f62..e36311568 100644 --- a/docs/03.reference/02.tags/file/_examples.md +++ b/docs/03.reference/02.tags/file/_examples.md @@ -1,17 +1,21 @@ ### Tag examples +### File Upload + +```lucee + +``` + ### File Write ```lucee - ``` ### File Read ```lucee - ``` ### File Rename @@ -40,6 +44,12 @@ ### Script Examples +### File Upload + +```luceescript +fileupload(getTempDirectory(),"form.fileData"," ","makeunique"); +``` + ### File Write ```luceescript @@ -74,4 +84,4 @@ filecopy(source="#expandPath("./myNewFileName.txt")#",destination="#expandPath(" ```luceescript filedelete(source="#expandPath("./myFile.txt")#"); -``` \ No newline at end of file +``` diff --git a/docs/03.reference/02.tags/function/_attributes/returnType.md b/docs/03.reference/02.tags/function/_attributes/returnType.md index ad8d8b2c6..369649de8 100644 --- a/docs/03.reference/02.tags/function/_attributes/returnType.md +++ b/docs/03.reference/02.tags/function/_attributes/returnType.md @@ -1 +1,17 @@ -String; a type name; data type of the function return value \ No newline at end of file +String; a type name; data type of the function return value + +- any +- array +- binary +- boolean +- date +- guid +- numeric +- query +- string +- struct +- UUID +- variablename +- void +- xml +- (component name) \ No newline at end of file diff --git a/docs/03.reference/02.tags/wddx/_examples.md b/docs/03.reference/02.tags/wddx/_examples.md index 48da06280..8a430a0b8 100644 --- a/docs/03.reference/02.tags/wddx/_examples.md +++ b/docs/03.reference/02.tags/wddx/_examples.md @@ -1 +1,12 @@ -*There are currently no examples for this tag.* +To use this tag in cfscript: + +``` + + // This WDDX packet contains a struct with 4 keys: 3 strings and 1 array of numbers + strWDDX = "
1.0.05.04.03.02.01.0Test StructTo illustrate serializing to WDDX"; + + wddx action='wddx2cfml' input=strWDDX output='example'; + + dump(example); + +``` diff --git a/docs/04.guides/13.Various/39.cfadmin/page.md b/docs/04.guides/13.Various/39.cfadmin/page.md index 9d9d9fbed..26d19605a 100644 --- a/docs/04.guides/13.Various/39.cfadmin/page.md +++ b/docs/04.guides/13.Various/39.cfadmin/page.md @@ -13,9 +13,10 @@ So normally the basic three attributes for the tag are action, type an Attribute name | Description -------------- | ----------------- _ type | Application type for installable Lucee extensions -access_read | Defines the general access to the Lucee configuration read -access_write | Defines the general access to the Lucee configuration write -allowed_alter | Database connection property +access_read | Defines the general access to the Lucee configuration read +access_write | Defines the general access to the Lucee configuration write +action | Defines the action to be performed by the tag +allowed_alter | Database connection property allowed_create | Database connection property allowed_delete | Database connection property allowed_drop | Database connection property @@ -226,6 +227,7 @@ getTLDs | | getUpdate | | hasPassword | | index | | +PurgeDebugPool | Purge all the debug logs removeCFX | | removeCustomTag | | removeDatasource | Removes an datasource from the current context @@ -538,6 +540,12 @@ Below you will find all the actions sorted alphabetically embedded in examples f password="password" returnVariable="proxy"> + +