Code Search for Developers
 
 
  

section2sect.sh from SME Web Application Framework at Krugle


Show section2sect.sh syntax highlighted

#!/bin/bash
### convert <section> elements to <sectX> elements

if [ "$1" = "" ]
then
  echo "Usage: $0 file.xml > output.xml"
  echo "Converts <section> elements to <sectX> elements."
  echo "The resulting xml is displayed in the standard output,"
  echo "so it should be redirected to a file."
  exit 1;
fi
file_xml=$1

xslt=$(dirname $0)/../../xsl_transform/implode
xsltproc $xslt/section2sect.xsl $file_xml




See more files for this project here

SME Web Application Framework

smewebapp intends to simplify the construction of web applications for informatization of the work of SME-s (small and medium enterprises), institutions, organizations etc.

Project homepage: http://sourceforge.net/projects/smewebapp
Programming language(s): JavaScript,PHP,Shell Script,XML
License: other

  implode.sh
  post_process.php
  pre_process.php
  section2sect.sh