summaryrefslogtreecommitdiff
path: root/examples/grouping.drv
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-17 22:12:14 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-17 22:12:14 +0000
commit28b9d139c05c6edd6ebc25f466792b8e806d0fa6 (patch)
tree163559263f51a67069281ee38f8028aa68407b55 /examples/grouping.drv
parent6e8b116d7f9487b7ffec4be46bbbffd3dd13b863 (diff)
downloadcups-28b9d139c05c6edd6ebc25f466792b8e806d0fa6.tar.gz
Merge changes from CUPS 1.4svn-r8067 (tentative CUPS 1.4b1)
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@1021 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'examples/grouping.drv')
-rw-r--r--examples/grouping.drv36
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/grouping.drv b/examples/grouping.drv
new file mode 100644
index 000000000..da66d74fc
--- /dev/null
+++ b/examples/grouping.drv
@@ -0,0 +1,36 @@
+// Include standard font and media definitions
+#include <font.defs>
+#include <media.defs>
+
+// List the fonts that are supported, in this case all standard
+// fonts...
+Font *
+
+// Manufacturer and version
+Manufacturer "Foo"
+Version 1.0
+
+// Each filter provided by the driver...
+Filter application/vnd.cups-raster 100 rastertofoo
+
+// Supported page sizes
+*MediaSize Letter
+MediaSize A4
+
+{
+ // Supported resolutions
+ *Resolution k 8 0 0 0 "600dpi/600 DPI"
+
+ // Specify the model name and filename...
+ ModelName "FooJet 2000"
+ PCFileName "foojet2k.ppd"
+}
+
+{
+ // Supported resolutions
+ *Resolution k 8 0 0 0 "1200dpi/1200 DPI"
+
+ // Specify the model name and filename...
+ ModelName "FooJet 2001"
+ PCFileName "foojt2k1.ppd"
+}