Update of /cvsroot/phpwebapp/web_app/boxes/menu/edit/xsl/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20494/boxes/menu/edit/xsl/test
Added Files:
add_subitem.sh book_list.sh delete.sh edit_menu_items.sh
get_parent_id.sh menu_items.sh move_down.sh move_up.sh
subitems.sh update.sh
Log Message:
--- NEW FILE: add_subitem.sh ---
#!/bin/bash
id=ofseti
new_id=new_offseti
new_caption='New Offseti'
xsl_file=../add_subitem.xsl
xml_file=../../menu.xml
xsltproc --stringparam id "$id" \
--stringparam new_id "$new_id" \
--stringparam new_caption "$new_caption" \
$xsl_file $xml_file
--- NEW FILE: book_list.sh ---
#!/bin/bash
xsl_file=../book_list.xsl
xml_file=../../menu.xml
xsltproc $xsl_file $xml_file
--- NEW FILE: delete.sh ---
#!/bin/bash
id=ofseti
xsl_file=../delete.xsl
xml_file=../../menu.xml
xsltproc --stringparam id "$id" $xsl_file $xml_file
--- NEW FILE: edit_menu_items.sh ---
#!/bin/bash
xsl_file=../edit_menu_items.xsl
xml_file=../../menu.xml
xsltproc $xsl_file $xml_file
--- NEW FILE: get_parent_id.sh ---
#!/bin/bash
id=ofseti
xsl_file=../get_parent_id.xsl
xml_file=../../menu.xml
xsltproc --stringparam id "$id" $xsl_file $xml_file
--- NEW FILE: menu_items.sh ---
#!/bin/bash
xsl_file=../menu_items.xsl
xml_file=../../menu.xml
xsltproc $xsl_file $xml_file
--- NEW FILE: move_down.sh ---
#!/bin/bash
id=parapregatitja
xsl_file=../move_down.xsl
xml_file=../../menu.xml
xsltproc --stringparam id "$id" $xsl_file $xml_file
--- NEW FILE: move_up.sh ---
#!/bin/bash
id=parapregatitja
xsl_file=../move_up.xsl
xml_file=../../menu.xml
xsltproc --stringparam id "$id" $xsl_file $xml_file
--- NEW FILE: subitems.sh ---
#!/bin/bash
item_id=leter
xsl_file=../subitems.xsl
xml_file=../../menu.xml
xsltproc --stringparam id $item_id $xsl_file $xml_file
--- NEW FILE: update.sh ---
#!/bin/bash
id=ofseti
new_id=new_offseti
new_caption='New Offseti'
xsl_file=../update.xsl
xml_file=../../menu.xml
xsltproc --stringparam id "$id" \
--stringparam new_id "$new_id" \
--stringparam new_caption "$new_caption" \
$xsl_file $xml_file
|