home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / usr / share / YaST2 / schema / autoyast / rnc / x11.rnc < prev   
Text File  |  2006-11-29  |  1KB  |  55 lines

  1. default namespace = "http://www.suse.com/1.0/yast2ns"
  2. namespace config = "http://www.suse.com/1.0/configns"
  3. namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
  4.  
  5. color_depth =
  6.   element color_depth { INTEGER }
  7. configure_x11 =
  8.   element configure_x11 { BOOLEAN }
  9. y2_display =
  10.   frequency
  11.   | bandwidth
  12.   | height
  13.   | max_hsync
  14.   | max_vsync
  15.   | min_hsync
  16.   | min_vsync
  17.   | width
  18. display = element display { y2_display* }
  19. display_manager = element display_manager { text }
  20. window_manager = element window_manager { text }
  21. frequency =
  22.   element frequency { INTEGER }
  23. enable_3d =
  24.   element enable_3d { BOOLEAN }
  25. max_hsync =
  26.   element max_hsync { INTEGER }
  27. max_vsync =
  28.   element max_vsync { INTEGER }
  29. height =
  30.   element height { INTEGER }
  31. width =
  32.   element width { INTEGER }
  33. bandwidth =
  34.   element bandwidth { INTEGER }
  35. min_hsync =
  36.   element min_hsync { INTEGER }
  37. min_vsync =
  38.   element min_vsync { INTEGER }
  39. monitor = element monitor { display, monitor_device, monitor_vendor }
  40. monitor_device = element monitor_device { text }
  41. monitor_vendor = element monitor_vendor { text }
  42. resolution = element resolution { text }
  43. start_x11 =
  44.   element start_x11 { BOOLEAN }
  45. y2_x11 =
  46.   color_depth
  47.   | configure_x11
  48.   | display_manager
  49.   | enable_3d
  50.   | window_manager
  51.   | monitor
  52.   | resolution
  53.   | start_x11
  54. x11 = element x11 { y2_x11* }
  55.