Changeset 849 for trunk


Ignore:
Timestamp:
Jun 30, 2005, 11:29:22 AM (18 years ago)
Author:
Nicklas Nordborg
Message:

Added new jsp-api.jar which is needed for ant web

Location:
trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r832 r849  
    259259      classpathref="install.compile.classpath"
    260260      debug="true"
     261      deprecation="true"
    261262      >
    262263      <compilerarg value="-Xlint:unchecked" />
     
    308309      classpathref="web.compile.classpath"
    309310      debug="true"
     311      deprecation="true"
    310312      >
    311313      <compilerarg value="-Xlint:unchecked" />
     
    329331        <include name="**/*.jar"/>
    330332        <exclude name="**/jai*.jar" />
    331         <exclude name="**/servlet.jar" />
     333        <exclude name="**/servlet-api.jar" />
     334        <exclude name="**/jsp-api.jar" />
    332335      </fileset>
    333336      <fileset dir="${lib}/dist">
  • trunk/src/clients/web/net/sf/basedb/clients/web/taglib/tab/Tab.java

    r440 r849  
    182182    if (!(getParent() instanceof TabControl)) throw new JspTagException("Tag <t:tab> must be inside a <t:tabcontrol> tag");
    183183    tc = (TabControl)getParent();
    184     return EVAL_BODY_TAG;
     184    return EVAL_BODY_BUFFERED;
    185185  }
    186186
  • trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/Cell.java

    r529 r849  
    177177    table = data.getTable();
    178178    if (!isVisible()) return SKIP_BODY;
    179     return table.isColumnVisible(columnId) ? EVAL_BODY_TAG : SKIP_BODY;
     179    return table.isColumnVisible(columnId) ? EVAL_BODY_BUFFERED : SKIP_BODY;
    180180  }
    181181
Note: See TracChangeset for help on using the changeset viewer.