New tags in Railo - getrailo/railo GitHub Wiki

Below you will find a list of tags that are only available in Railo and are not part of the CFML standard.

cfadmin

The tag cfadmin is used in the web and server administrator to manage and edit Railo Server settings. Further [http://wiki.getrailo.org/wiki/3-1-Tags:CFAdmin documentation] is available.

cfimap

This works exactly the same way as the cfpop tag. It has the same attributes.

The Internet Message Access Protocol or IMAP is one of two of the most prevalent Internet standard protocols for e-mail retrieval, the other being POP3. Virtually all modern e-mail clients and servers support both protocols as a means of transferring e-mail messages from a server, such as those used by Gmail, to a client, such as Mozilla Thunderbird and Microsoft Outlook.

Many implementations of webmail use IMAP to retrieve e-mail messages from a server and display them within a web browser, making the use of this protocol transparent to the user (read more on Wikipedia),

cfforward

Analog to the method getPageContext().forward() (Java-Doc PageContext). Leads the request to a different page. This tag acts like the tag cflocation except that the relocation is done directly on the server.

cffinally

The tag cffinally inside a cftry/cfcatch block will always be executed, no matter whether an error occurred or not. It is used in the following way:

<cftry>
    code that might produce an error
    <cfcatch>
        catch a certain error
    </cfcatch>
    <cffinally>
        ... code that needs to be executed always
    </cffinally>
</cftry>

It can be used in order to close a file, for example.

cfvideoplayer

The tag cfvideoplayer allows you to display a video in Flash (FLV) format. It includes the complete functionality to display the player with the necessary HTML code. Read more on the multimedia functionality.

cfvideoplayerparam

The tag cfvideoplayerparam is needed when you want to display a playlist in your Flash player. Read more on the multimedia functionality.

cfwhile

Simplification of the tag <cfloop condition="count">, analog to the CFScript while loop.

<cfset count=0>
<cfwhile count LT 10>
   <cfset count=count+1>
   <cfoutput>#count#</cfoutput>
</cfwhile>
⚠️ **GitHub.com Fallback** ⚠️