shortparamstwo.xml 722 B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0"?>
  2. <config>
  3. <all hostname="all" name="thisname">
  4. <db>
  5. <host value="127.0.0.1"/>
  6. <user value="username"/>
  7. <pass value="password"/>
  8. <name value="live"/>
  9. </db>
  10. <one>
  11. <two>
  12. <three value="multi"/>
  13. </two>
  14. </one>
  15. </all>
  16. <staging extends="all" hostname="staging" debug="false">
  17. <db>
  18. <name value="dbstaging"/>
  19. </db>
  20. </staging>
  21. <other_staging extends="staging" only_in="otherStaging">
  22. <db>
  23. <pass value="anotherpwd"/>
  24. </db>
  25. </other_staging>
  26. <extendserror extends="nonexistent">
  27. </extendserror>
  28. </config>