Back Forward More about HTML Fragment rules
 

  1. About 
  2. New 
  3. HTML 
  4. Pages & Classes 
  5. History 
  6. More... 

Comparing HTML fragments with HTML rules

You can create a "universal" part in an HTML rule by using the ultimate base class (@baseclass) as the Applies To part of the key.

However, if you use an HTML fragment instead, then at runtime the system avoids the overhead of the class inheritance algorithm. Therefore, using HTML fragments for universal parts improves runtime performance.

Comparing HTML fragments with static Web server files

If the HTML (or scripts or style sheets) text does not contain JSP tags, you can place it in a text file rule rather than a fragment rule. The system exports a text file rule to an appropriate directory the first time the file is needed. In contrast to fragment rules, text file rules are not processed again, so using this approach improves performance.

You can incorporate such static elements into your HTML forms and displays using normal HTML means, such as the following in the <HEAD> section:

<SCRIPT SRC="filename.js" TYPE="text/JavaScript>
</SCRIPT>
<LINK HREF="ruleprostylesheet.css" REL="STYLESHEET" TYPE="text/css">

Java code display

When you save an HTML fragment rule, the system converts your inputs to Java source code. As a learning or debugging aid, you can review this Java code.

C-1665Click the Show Java toolbar button (Show Java) to see the system-generated Java code that implements the rule. The window presents a read-only preview of the Java that implements this rule instance. This Java code is not identical to the Java that is executed at runtime, which includes Java code inlined from other rule instances and reflects rules in the requestor's RuleSet list.

Parent class

Through directed inheritance, the immediate parent class of the Rule-HTML-Fragment class is the Rule-Stream class.

Security

If your application RuleSets contain HTML-Fragment rules, run the Rule Security Analyzer before locking a RuleSet Version, to look for possible security issues.

Related topics include JSP tag
About the Rule Security Analyzer
Standard rules Atlas — Standard HTML Fragment rules

Up About HTML Fragment rules