You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by js...@apache.org on 2001/05/14 20:35:37 UTC

cvs commit: jakarta-taglibs/io/doc/web taglib.css

jstrachan    01/05/14 11:35:35

  Modified:    .        common.properties common.xml
               io/doc/web taglib.css
  Log:
  Added new developer build target 'dev' which builds the example build app in the examples/web/WEB-INF directory so that an Ant build is not required in between edits of a JSP - so JSP can be designed and editted with a RAD build system.
  
  Revision  Changes    Path
  1.2       +3 -1      jakarta-taglibs/common.properties
  
  Index: common.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/common.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- common.properties	2001/05/05 13:52:58	1.1
  +++ common.properties	2001/05/14 18:35:07	1.2
  @@ -15,7 +15,7 @@
   #   dist.dir                       Base directory for distribution targets
   #   taglibs.xsl                    Taglibs stylesheet
   
  -build.dir = ${basedir}/../../build/taglibs
  +build.dir = ../../build/taglibs
   dist.dir = ${basedir}/../../dist/taglibs
   taglibs.xsl = ../../../src/doc/stylesheets/taglibs.xsl
   
  @@ -61,6 +61,7 @@
   #   dist.examples                  Destination WAR for examples app
   #   dist.library                   Destination JAR for tag library
   #   dist.tld                       Destination TLD file for tag library
  +#   dev.examples                   Developer examples app
   
   build.doc = ${build.dir}/${taglib.name}-doc
   build.examples = ${build.dir}/${taglib.name}-examples
  @@ -72,6 +73,7 @@
   source.tld = ${conf.src}/${taglib.name}.tld
   examples.tld = ${build.examples}/WEB-INF/${taglib.name}.tld
   library.tld = ${build.library}/META-INF/taglib.tld
  +dev.examples = ${examples.src}
   
   #
   # DEFAULT PRE & POST ACTIONS - ALLOWS SUBPROJECTS TO OVERRIDE
  
  
  
  1.5       +11 -0     jakarta-taglibs/common.xml
  
  Index: common.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/common.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- common.xml	2001/05/10 19:10:41	1.4
  +++ common.xml	2001/05/14 18:35:13	1.5
  @@ -149,6 +149,16 @@
     </target>
     
     <!-- =================================================================== -->
  +  <!-- Assemble the developer examples application                         -->
  +  <!-- =================================================================== -->
  +  <target name="dev" depends="examples">
  +    <mkdir dir="${dev.examples}/WEB-INF"/>
  +    <copy toDir="${dev.examples}/WEB-INF">
  +      <fileset dir="${build.examples}/WEB_INF"/>
  +    </copy>
  +  </target>
  +  
  +  <!-- =================================================================== -->
     <!-- Compile the examples application                                    -->
     <!-- =================================================================== -->
     <target name="compile-examples" depends="prepare" if="examples.src.present">
  @@ -211,6 +221,7 @@
       <antcall target="${clean.pre}"/>
       <delete dir="${build.doc}"/>
       <delete dir="${build.examples}"/>
  +    <delete dir="${dev.examples}/WEB-INF"/>
       <delete dir="${build.library}"/>
       <delete dir="${dist.dir}/${taglib.name}"/>
       <antcall target="${clean.post}"/>
  
  
  
  1.3       +13 -13    jakarta-taglibs/io/doc/web/taglib.css
  
  Index: taglib.css
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/io/doc/web/taglib.css,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- taglib.css	2001/05/05 13:54:09	1.2
  +++ taglib.css	2001/05/14 18:35:28	1.3
  @@ -1,13 +1,13 @@
  -body { background-color: #ffffff; }
  -h1   { text-align: center; }
  -code  { font: medium sans-serif; color: #990099; background-color: #ffffbb; }
  -.middle  { text-align: center; }
  -.comment { color: #3300cc; }
  -.jsp-squig { color: #009999; }
  -.scriptlet { color: #666666; }
  -.tclass { font-weight: bold; }
  -.tbody  { font-weight: bold; }
  -.scriptvar  { font-weight: bold; }
  -.restrictions  { font-weight: bold; }
  -.attributes  { font-weight: bold; }
  -.example  { font-weight: bold; }
  +body { background-color: #ffffff; }
  +h1   { text-align: center; }
  +code  { font: medium sans-serif; color: #990099; }
  +.middle  { text-align: center; }
  +.comment { color: #3300cc; }
  +.jsp-squig { color: #009999; }
  +.scriptlet { color: #666666; }
  +.tclass { font-weight: bold; }
  +.tbody  { font-weight: bold; }
  +.scriptvar  { font-weight: bold; }
  +.restrictions  { font-weight: bold; }
  +.attributes  { font-weight: bold; }
  +.example  { font-weight: bold; }