Annotation of capa/capa51/CapaTools/printsections.tcl, revision 1.3
1.1 albertel 1: #!/usr/local/bin/tclsh7.6
1.2 albertel 2: # automated printing system
3: # Copyright (C) 1992-2000 Michigan State University
4: #
5: # The CAPA system is free software; you can redistribute it and/or
1.3 ! albertel 6: # modify it under the terms of the GNU General Public License as
1.2 albertel 7: # published by the Free Software Foundation; either version 2 of the
8: # License, or (at your option) any later version.
9: #
10: # The CAPA system is distributed in the hope that it will be useful,
11: # but WITHOUT ANY WARRANTY; without even the implied warranty of
12: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1.3 ! albertel 13: # General Public License for more details.
1.2 albertel 14: #
1.3 ! albertel 15: # You should have received a copy of the GNU General Public
1.2 albertel 16: # License along with the CAPA system; see the file COPYING. If not,
17: # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18: # Boston, MA 02111-1307, USA.
19: #
20: # As a special exception, you have permission to link this program
21: # with the TtH/TtM library and distribute executables, as long as you
22: # follow the requirements of the GNU GPL in regard to all of the
23: # software in the executable aside from TtH/TtM.
24:
1.1 albertel 25:
26: puts "Automated printing Version 1.1"
27:
28: proc quit { } {
29: global dir
30: cd $dir
31: exit
32: }
33:
34: proc parseCapaConfig { } {
35: global onesided twosided
36:
37: set filename [file join [pwd] capa.config]
38: set error [ catch { set fileId [open $filename "r"] } ]
39: if { $error } {
40: return
41: }
42:
43: while { 1 } {
44: gets $fileId aline
45: if { [eof $fileId ] } { break }
46: switch -glob -- "$aline" {
47: "lprOneSided_command *= *"
48: { set onesided [lindex $aline end] }
49: "lprTwoSided_command *= *"
50: { set twosided [lindex $aline end] }
51: }
52: }
53: if { [string first \$PS_file $onesided] == -1 } {
54: set onesided "$onesided \$PS_file"
55: }
56:
57: if { [string first \$PS_file $twosided] == -1 } {
58: set twosided "$twosided \$PS_file"
59: }
60: }
61:
62: proc parsesection { sec set } {
63: if { [ catch { exec echo [pwd] | qzparse -sec $sec \
64: -set $set >&@ file1 } ] } {
65: puts "Error occured while parsing set: $set section: $sec"
66: quit
67: }
68: }
69:
70: proc latexsection { sec set } {
71: if { [ catch { cd TeX } ] } {
72: puts "Unable to find [pwd]/TeX"
73: quit
74: }
75:
76: if { [ catch { exec latex section$sec-set$set < /dev/null >&@ file1 } ] } {
77: puts "Error occured while latexing set: $set section: $sec"
78: quit
79: }
80: cd ..
81: }
82:
83: proc dvisection { sec set } {
84: if { [ catch { cd TeX } ] } {
85: puts "Unable to find [pwd]/TeX"
86: quit
87: }
88:
89: if { [ catch { exec dvips -o section$sec-set$set.ps \
90: section$sec-set$set.dvi < /dev/null >&@ file1 } ] } {
91: puts "Error occured while creating dvi, set: $set section: $sec"
92: quit
93: }
94: cd ..
95: }
96:
97: proc printonesided { sec set Printer_selected } {
98: global onesided
99: if { [ catch { cd TeX } ] } {
100: puts "Unable to find [pwd]/TeX"
101: quit
102: }
103: set PS_file section$sec-set$set.ps
104: if { [ catch { eval "exec $onesided < /dev/null >&@ file1" } ] } {
105: puts "Error occured while printing set: $set section: $sec"
106: quit
107: }
108: cd ..
109: }
110:
111: proc printtwosided { sec set Printer_selected } {
112: if { [ catch { cd TeX } ] } {
113: puts "Unable to find [pwd]/TeX"
114: quit
115: }
116: set PS_file section$sec-set$set.ps
117: if { [ catch { eval "exec $twosided < /dev/null >&@file1" } ] } {
118: puts "Error occured while printing set: $set section: $sec"
119: quit
120: }
121: cd ..
122: }
123:
124: proc cleanup { sec set { some 0 } } {
125: set ext "dvi log aux ps tex"
126: if { $some } { set ext "dvi log aux" }
127: foreach ext { tex dvi ps log aux } {
128: exec rm -f TeX/section$sec-set$set.$ext
129: }
130: }
131:
132: if { $argc == 6 } {
133: set pathname [lindex $argv 0]
134: set startsection [lindex $argv 1]
135: set endsection [lindex $argv 2]
136: set setnumber [lindex $argv 3]
137: set sided [lindex $argv 4]
138: set printqueue [lindex $argv 5]
139: puts "Running class $pathname for sections $startsection:$endsection for set $setnumber on printer $printqueue, printing $sided side(s)"
140: } else {
141: if { $argc != 0 } {
142: puts "Usage is $argv0 pathname startsection endsection setnumber #sides printqueue"
143: puts " Specifying 0 sides will leave the postscript files behind and not print"
144: }
145: while { 1 } {
146: puts "Enter the ABSOLUTE pathname of the class:"
147: gets file0 pathname
148: puts "Enter start section:"
149: gets file0 startsection
150: puts "Enter end section:"
151: gets file0 endsection
152: puts "Enter set:"
153: gets file0 setnumber
154: puts "One sided or two sided: (1 or 2)"
155: gets file0 sided
156: if { $sided != 0 } {
157: puts "Enter the name of the printer:"
158: gets file0 printqueue
159: puts "Run class $pathname for sections $startsection:$endsection for set $setnumber on printer $printqueue, printing $sided side(s)? (y or n)"
160: } else {
161: puts "Run class $pathname for sections $startsection:$endsection for set $setnumber with no printing? (y or n)"
162: }
163: if { "y" == [string range [string trimleft [gets file0] ] 0 0 ] } {
164: break
165: }
166: }
167: }
168: set dir [pwd]
169:
170: if { [ catch { cd $pathname } ] } {
171: puts "Invalid class $pathname"
172: quit
173: }
174:
175: set onesided "lpr -P\$Printer_selected"
176: set twosided "lpspr -K2 \$PS_file | lpr -P\$Printer_selected"
177: parseCapaConfig
178:
179: if { $endsection == 0 } {
180: set endsection $startsection
181: }
182:
183:
184: for { set i $startsection } { $i <= $endsection } { incr i } {
185: parsesection $i $setnumber
186: latexsection $i $setnumber
187: dvisection $i $setnumber
188: if { $sided == 1 } {
189: printonesided $i $setnumber $printqueue
190: } elseif { $sided == 2 } {
191: printonesided $i $setnumber $printqueue
192: }
193: if { $sided != 0 } { cleanup $i $setnumber
194: } else { cleanup $i $setnumber 1
195: }
196: }
197:
198:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>