| Title: |
CF Capability But Not CF.
|
| Date: |
02/01/03
16 Posts
|
| Summary: |
Here's a nudge in the right direction for anyone interested in building a compiler, CFML parser, or basic interpreter. Suggestions include "The Dragon Book," lex, YACC, and JavaCC. |
| |
| Title: |
CF Equivalent of PHPInfo()?
|
| Date: |
02/01/03
9 Posts
|
| Summary: |
Although developers can create a template to display CGI and SERVER variables, server settings for cache and whitespace management are not readily available if they don't have access to the ColdFusion Administrator. Developers would also like access to information about the service packs and hotfixes that have been applied by shared hosts. |
| |
| Title: |
CFMX on FreeBSD
|
| Date: |
02/01/03
8 Posts
|
| Summary: |
Find details for installing CFMX on FreeBSD |
| |
| Title: |
CSS Question |
| Date: |
02/01/03
9 Posts
|
| Summary: |
Need to add a border around a table row? It's not as simple as adding style="border: thin #CCCCCC" to the TR tag but, if you're willing to take the time, you can simulate a row border by applying separate styles to the left TD, middle TDs, and right TD. A complete CSS is provided. |
| |
| Title: |
Obvious CFScript ?
|
| Date: |
02/02/03
7 Posts
|
| Summary: |
You can loop over a FORM structure and access fieldnames appended with a unique identifier using this CFSCRIPT syntax:
line_total[i] = form["d_price#i#"] * form["qty#i#"]; |
|
| |
| Title: |
Strip characters?
|
| Date: |
02/02/03
6 Posts
|
| Summary: |
Need to strip all characters from a field, retaining only integers? Here's a solution that uses a regular expression:
string = rereplace(string, '[^[:digit:]]', '', 'all'); |
|
| |