vars.rnc 524 B

123456789101112131415161718192021222324252627
  1. default namespace = "http://www.idiominc.com/opentopic/vars"
  2. vars =
  3. ## Static string variables
  4. element vars {
  5. variable*
  6. }
  7. param =
  8. ## Parameter reference
  9. element param {
  10. ## Parameter name
  11. attribute ref-name { text }
  12. }
  13. variable =
  14. # Static string variable
  15. element variable {
  16. ## Variable name
  17. attribute id { text },
  18. mixed { (variable-ref | param)* }
  19. }
  20. variable-ref =
  21. ## Variable reference
  22. element variable {
  23. ## Variable reference name
  24. attribute id { text }
  25. }
  26. start = vars