Home > Contents > Index >
DEBABBLE
Converts special characters such as
%20
(a space) into their representations.Syntax
<DEBABBLE VALUE="TRUE or FALSE"/>Parameters
VALUE (required)
true
orfalse
.
Description
The
DEBABBLE
tag, often used in conjunction with Sites variables, converts special characters such as%22
(quotation marks) into their representations. By default,DEBABBLE
is set totrue
; however, you can set it tofalse
to keep Sites from converting these special characters. For more information about variables, see the Sites Developer's Guide.The following table describes the character conversions:
Character Representation %22 " %20 (space) %3c < %3e > %26 & %09 n (line feed) %0d r (carriage return) %0a + (tab) %25 % (percent)
DEBABBLE
works with the following tag/argument pairs only:
ARGUMENT VALUE BEGINS WHAT CALLELEMENT PACKEDARGS ENDS WHAT INDEXOF WHAT LOGMSG STR SEARCH WHAT SETSSVAR VALUE SETVAR VALUE SQLEXP VERB STRINGLIST DELIM SUBSTITUTE WHAT WITHExample
In the following example, the first
CSVAR
displays the phrase "Hello World," the second displays "Hello%20World," and the last line setsDEBABBLE
back to its default value.<!-- debabble is automatically on (set to true) --> <SETVAR NAME="greeting" VALUE="Hello%20World"/> <CSVAR NAME="Variables.greeting"/><BR/> <DEBABBLE VALUE="false"/> <SETVAR NAME="hello" VALUE="Hello%20World"/> <CSVAR NAME="Variables.hello"/><BR/> <!--set debabble back to it's original state --> <DEBABBLE VALUE="true"/>
Home > Contents > Index > Oracle XML Tag Reference
Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.