Example blogger entry


  package test;
  
  import java.util.List;

  /**
   * MyPage comment
   */
  public class MyPage extends Page {
    
       public MyPage() {
          System.out.println("This is a test to see how syntax highlighting will display in blog.");

       }
 
       public void onInit() {
           Form form = new Form("form");
           addControl(form);
       }
    
       public static String deploy() {
           return "<script>alert('hello');</script>";
       }
  } 
        
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
#LoadModule asis_module modules/mod_asis.so
#LoadModule auth_basic_module modules/mod_auth_basic.so
        
<IfModule proxy_module>
    LoadModule proxy_module modules/mod_proxy.so
</IfModule>
<IfModule !proxy_ajp_module>
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
</IfModule>
        
<html>
    <body onload="alert('hello');">
        <p/>Hello world!
        #parse ($path)
        $include
    </body>
</html>