Changeset 3075
- Timestamp:
- 11/28/06 22:28:36 (18 years ago)
- Location:
- pykota/trunk
- Files:
-
- 18 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/pknotify
r2829 r3075 27 27 import sys 28 28 import socket 29 import errno 29 30 import signal 30 31 import xmlrpclib … … 78 79 The default value of N is 1, meaning the job 79 80 is denied after the first unsuccessful try. 81 82 -N | --noremote action If it's impossible to connect to the remote 83 PyKotIcon machine, do this action instead. 84 Allowed actions are 'CONTINUE' and 'CANCEL', 85 which will respectively allow the processing 86 of the print job to continue, or the job to 87 be cancelled. The default value is CANCEL. 80 88 81 89 -n | --notify Tells pknotify to send an informational message … … 121 129 examples : 122 130 123 pknotify -d client:7654 --confirm "This job costs :\n10 credits !" 124 125 Would display the cost of a print job and asks for confirmation. 131 pknotify -d client:7654 --noremote CONTINUE --confirm "This job costs 10 credits" 132 133 Would display the cost of the print job and asks for confirmation. 134 If the end user doesn't have PyKotIcon running and accepting connections 135 from the print server, PyKota will consider that the end user accepted 136 to print this job. 126 137 127 138 pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\ … … 279 290 server.quitApplication() 280 291 except (socket.error, socket.gaierror), msg : 292 print options["noremote"] 293 try : 294 errnum = msg.args[0] 295 except (AttributeError, IndexError) : 296 pass 297 else : 298 if errnum == errno.ECONNREFUSED : 299 self.printInfo(_("Are you sure that PyKotIcon is running and accepting incoming connections on %s:%s ?") % (self.destination, self.port), "error") 281 300 raise PyKotaCommandLineError, "%s : %s" % (_("Connection error"), str(msg)) 282 301 except TimeoutError, msg : … … 292 311 defaults = { \ 293 312 "timeout" : 0, 313 "noremote" : "CANCEL", 294 314 } 295 short_options = "vhd:acnqCD:t: "315 short_options = "vhd:acnqCD:t:N:" 296 316 long_options = ["help", "version", "destination=", "denyafter=", \ 297 317 "timeout=", "ask", "checkauth", "confirm", "notify", \ 298 "quit" ]318 "quit", "noremote=" ] 299 319 300 320 # Initializes the command line tool … … 316 336 options["denyafter"] = options["D"] or options["denyafter"] 317 337 options["timeout"] = options["t"] or options["timeout"] or defaults["timeout"] 338 options["noremote"] = (options["N"] or options["noremote"] or defaults["noremote"]).upper() 318 339 319 340 if options["help"] : … … 329 350 or not (options["quit"] or options["ask"] or options["confirm"] or options["notify"]) : 330 351 raise PyKotaCommandLineError, _("some options are mandatory, see help.") 352 elif options["noremote"] not in ("CANCEL", "CONTINUE") : 353 raise PyKotaCommandLineError, _("incorrect value for the --noremote command line switch, see help.") 331 354 elif (not args) and (not options["quit"]) : 332 355 raise PyKotaCommandLineError, _("some options require arguments, see help.") -
pykota/trunk/NEWS
r3073 r3075 24 24 - 1.25alpha17 (2006-11-27) : 25 25 26 - pknotify now accepts the --noremote command line option to 27 decide what has to be done when there's no PyKotIcon running 28 or accepting connections from the print server on the client host. 29 26 30 - pkprinters now only modifies CUPS' printers.conf when the 27 31 -C | --cups command line switch is used. -
pykota/trunk/po/de/pykota.po
r3073 r3075 1089 1089 " is denied after the first unsuccessful try.\n" 1090 1090 " \n" 1091 " -N | --noremote action If it's impossible to connect to the remote\n" 1092 " PyKotIcon machine, do this action instead.\n" 1093 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1094 " which will respectively allow the processing\n" 1095 " of the print job to continue, or the job to\n" 1096 " be cancelled. The default value is CANCEL.\n" 1097 " \n" 1091 1098 " -n | --notify Tells pknotify to send an informational " 1092 1099 "message\n" … … 1137 1144 "examples : \n" 1138 1145 "\n" 1139 " pknotify -d client:7654 --confirm \"This job costs :\n" 1140 "10 credits !\"\n" 1141 " \n" 1142 " Would display the cost of a print job and asks for confirmation.\n" 1146 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1147 "credits\"\n" 1148 " \n" 1149 " Would display the cost of the print job and asks for confirmation.\n" 1150 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1151 " from the print server, PyKota will consider that the end user accepted\n" 1152 " to print this job.\n" 1143 1153 " \n" 1144 1154 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/el_GR/pykota.po
r3073 r3075 1090 1090 " is denied after the first unsuccessful try.\n" 1091 1091 " \n" 1092 " -N | --noremote action If it's impossible to connect to the remote\n" 1093 " PyKotIcon machine, do this action instead.\n" 1094 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1095 " which will respectively allow the processing\n" 1096 " of the print job to continue, or the job to\n" 1097 " be cancelled. The default value is CANCEL.\n" 1098 " \n" 1092 1099 " -n | --notify Tells pknotify to send an informational " 1093 1100 "message\n" … … 1138 1145 "examples : \n" 1139 1146 "\n" 1140 " pknotify -d client:7654 --confirm \"This job costs :\n" 1141 "10 credits !\"\n" 1142 " \n" 1143 " Would display the cost of a print job and asks for confirmation.\n" 1147 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1148 "credits\"\n" 1149 " \n" 1150 " Would display the cost of the print job and asks for confirmation.\n" 1151 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1152 " from the print server, PyKota will consider that the end user accepted\n" 1153 " to print this job.\n" 1144 1154 " \n" 1145 1155 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/es/pykota.po
r3073 r3075 1106 1106 " is denied after the first unsuccessful try.\n" 1107 1107 " \n" 1108 " -N | --noremote action If it's impossible to connect to the remote\n" 1109 " PyKotIcon machine, do this action instead.\n" 1110 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1111 " which will respectively allow the processing\n" 1112 " of the print job to continue, or the job to\n" 1113 " be cancelled. The default value is CANCEL.\n" 1114 " \n" 1108 1115 " -n | --notify Tells pknotify to send an informational " 1109 1116 "message\n" … … 1154 1161 "examples : \n" 1155 1162 "\n" 1156 " pknotify -d client:7654 --confirm \"This job costs :\n" 1157 "10 credits !\"\n" 1158 " \n" 1159 " Would display the cost of a print job and asks for confirmation.\n" 1163 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1164 "credits\"\n" 1165 " \n" 1166 " Would display the cost of the print job and asks for confirmation.\n" 1167 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1168 " from the print server, PyKota will consider that the end user accepted\n" 1169 " to print this job.\n" 1160 1170 " \n" 1161 1171 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/fr/pykota.po
r3073 r3075 1616 1616 " is denied after the first unsuccessful try.\n" 1617 1617 " \n" 1618 " -N | --noremote action If it's impossible to connect to the remote\n" 1619 " PyKotIcon machine, do this action instead.\n" 1620 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1621 " which will respectively allow the processing\n" 1622 " of the print job to continue, or the job to\n" 1623 " be cancelled. The default value is CANCEL.\n" 1624 " \n" 1618 1625 " -n | --notify Tells pknotify to send an informational " 1619 1626 "message\n" … … 1664 1671 "examples : \n" 1665 1672 "\n" 1666 " pknotify -d client:7654 --confirm \"This job costs :\n" 1667 "10 credits !\"\n" 1668 " \n" 1669 " Would display the cost of a print job and asks for confirmation.\n" 1673 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1674 "credits\"\n" 1675 " \n" 1676 " Would display the cost of the print job and asks for confirmation.\n" 1677 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1678 " from the print server, PyKota will consider that the end user accepted\n" 1679 " to print this job.\n" 1670 1680 " \n" 1671 1681 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" … … 1732 1742 " tentative infructueuse.\n" 1733 1743 "\n" 1744 " -N | --noremote action S'il est impossible de se connecter �a " 1745 "machine\n" 1746 " PyKotIcon distante, fait cette action �a " 1747 "place.\n" 1748 " Les actions autoris� sont 'CONTINUE' et " 1749 "'CANCEL', \n" 1750 " qui vont respectivement autoriser le traitement " 1751 "du\n" 1752 " travail d'impression �ontinuer, ou bien le " 1753 "travail\n" 1754 " sera annul�La valeur par d�ut est CANCEL.\n" 1755 " \n" 1734 1756 " -n | --notify Indique �knotify d'envoyer un message\n" 1735 1757 " d'information �'utilisateur final.\n" … … 1785 1807 "exemples : \n" 1786 1808 "\n" 1787 " pknotify -d client:7654 --confirm \"Ce job co�\n" 1788 "10 cr�ts !\"\n" 1789 " \n" 1790 " Affichera le co� travail et demandera une confirmation.\n" 1809 " pknotify -d client:7654 --noremote CONTINUE --confirm \"Ce travail co� 1810 "10 cr�ts\"\n" 1811 " \n" 1812 " Ceci afficherait le co� travail d'impression et demanderait une " 1813 "confirmation.\n" 1814 " Si l'utilisateur final n'a pas PyKotIcon actif et acceptant les connexions " 1815 "entrantes\n" 1816 " depuis le serveur d'impression, PyKota consid�ra que l'utilisateur a " 1817 "accept�" 1818 " d'imprimer ce travail.\n" 1791 1819 " \n" 1792 1820 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/it/pykota.po
r3073 r3075 1092 1092 " is denied after the first unsuccessful try.\n" 1093 1093 " \n" 1094 " -N | --noremote action If it's impossible to connect to the remote\n" 1095 " PyKotIcon machine, do this action instead.\n" 1096 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1097 " which will respectively allow the processing\n" 1098 " of the print job to continue, or the job to\n" 1099 " be cancelled. The default value is CANCEL.\n" 1100 " \n" 1094 1101 " -n | --notify Tells pknotify to send an informational " 1095 1102 "message\n" … … 1140 1147 "examples : \n" 1141 1148 "\n" 1142 " pknotify -d client:7654 --confirm \"This job costs :\n" 1143 "10 credits !\"\n" 1144 " \n" 1145 " Would display the cost of a print job and asks for confirmation.\n" 1149 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1150 "credits\"\n" 1151 " \n" 1152 " Would display the cost of the print job and asks for confirmation.\n" 1153 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1154 " from the print server, PyKota will consider that the end user accepted\n" 1155 " to print this job.\n" 1146 1156 " \n" 1147 1157 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/nb_NO/pykota.po
r3073 r3075 1099 1099 " is denied after the first unsuccessful try.\n" 1100 1100 " \n" 1101 " -N | --noremote action If it's impossible to connect to the remote\n" 1102 " PyKotIcon machine, do this action instead.\n" 1103 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1104 " which will respectively allow the processing\n" 1105 " of the print job to continue, or the job to\n" 1106 " be cancelled. The default value is CANCEL.\n" 1107 " \n" 1101 1108 " -n | --notify Tells pknotify to send an informational " 1102 1109 "message\n" … … 1147 1154 "examples : \n" 1148 1155 "\n" 1149 " pknotify -d client:7654 --confirm \"This job costs :\n" 1150 "10 credits !\"\n" 1151 " \n" 1152 " Would display the cost of a print job and asks for confirmation.\n" 1156 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1157 "credits\"\n" 1158 " \n" 1159 " Would display the cost of the print job and asks for confirmation.\n" 1160 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1161 " from the print server, PyKota will consider that the end user accepted\n" 1162 " to print this job.\n" 1153 1163 " \n" 1154 1164 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/pl/pykota.po
r3073 r3075 1496 1496 " is denied after the first unsuccessful try.\n" 1497 1497 " \n" 1498 " -N | --noremote action If it's impossible to connect to the remote\n" 1499 " PyKotIcon machine, do this action instead.\n" 1500 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1501 " which will respectively allow the processing\n" 1502 " of the print job to continue, or the job to\n" 1503 " be cancelled. The default value is CANCEL.\n" 1504 " \n" 1498 1505 " -n | --notify Tells pknotify to send an informational " 1499 1506 "message\n" … … 1544 1551 "examples : \n" 1545 1552 "\n" 1546 " pknotify -d client:7654 --confirm \"This job costs :\n" 1547 "10 credits !\"\n" 1548 " \n" 1549 " Would display the cost of a print job and asks for confirmation.\n" 1553 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1554 "credits\"\n" 1555 " \n" 1556 " Would display the cost of the print job and asks for confirmation.\n" 1557 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1558 " from the print server, PyKota will consider that the end user accepted\n" 1559 " to print this job.\n" 1550 1560 " \n" 1551 1561 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/pt_BR/pykota.po
r3073 r3075 1087 1087 " is denied after the first unsuccessful try.\n" 1088 1088 " \n" 1089 " -N | --noremote action If it's impossible to connect to the remote\n" 1090 " PyKotIcon machine, do this action instead.\n" 1091 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1092 " which will respectively allow the processing\n" 1093 " of the print job to continue, or the job to\n" 1094 " be cancelled. The default value is CANCEL.\n" 1095 " \n" 1089 1096 " -n | --notify Tells pknotify to send an informational " 1090 1097 "message\n" … … 1135 1142 "examples : \n" 1136 1143 "\n" 1137 " pknotify -d client:7654 --confirm \"This job costs :\n" 1138 "10 credits !\"\n" 1139 " \n" 1140 " Would display the cost of a print job and asks for confirmation.\n" 1144 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1145 "credits\"\n" 1146 " \n" 1147 " Would display the cost of the print job and asks for confirmation.\n" 1148 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1149 " from the print server, PyKota will consider that the end user accepted\n" 1150 " to print this job.\n" 1141 1151 " \n" 1142 1152 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/pt/pykota.po
r3073 r3075 1090 1090 " is denied after the first unsuccessful try.\n" 1091 1091 " \n" 1092 " -N | --noremote action If it's impossible to connect to the remote\n" 1093 " PyKotIcon machine, do this action instead.\n" 1094 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1095 " which will respectively allow the processing\n" 1096 " of the print job to continue, or the job to\n" 1097 " be cancelled. The default value is CANCEL.\n" 1098 " \n" 1092 1099 " -n | --notify Tells pknotify to send an informational " 1093 1100 "message\n" … … 1138 1145 "examples : \n" 1139 1146 "\n" 1140 " pknotify -d client:7654 --confirm \"This job costs :\n" 1141 "10 credits !\"\n" 1142 " \n" 1143 " Would display the cost of a print job and asks for confirmation.\n" 1147 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1148 "credits\"\n" 1149 " \n" 1150 " Would display the cost of the print job and asks for confirmation.\n" 1151 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1152 " from the print server, PyKota will consider that the end user accepted\n" 1153 " to print this job.\n" 1144 1154 " \n" 1145 1155 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/pykota.pot
r3073 r3075 1069 1069 " is denied after the first unsuccessful try.\n" 1070 1070 " \n" 1071 " -N | --noremote action If it's impossible to connect to the remote\n" 1072 " PyKotIcon machine, do this action instead.\n" 1073 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1074 " which will respectively allow the processing\n" 1075 " of the print job to continue, or the job to\n" 1076 " be cancelled. The default value is CANCEL.\n" 1077 " \n" 1071 1078 " -n | --notify Tells pknotify to send an informational " 1072 1079 "message\n" … … 1117 1124 "examples : \n" 1118 1125 "\n" 1119 " pknotify -d client:7654 --confirm \"This job costs :\n" 1120 "10 credits !\"\n" 1121 " \n" 1122 " Would display the cost of a print job and asks for confirmation.\n" 1126 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 credits\"\n" 1127 " \n" 1128 " Would display the cost of the print job and asks for confirmation.\n" 1129 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1130 " from the print server, PyKota will consider that the end user accepted\n" 1131 " to print this job.\n" 1123 1132 " \n" 1124 1133 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/sv_SE/pykota.po
r3073 r3075 1105 1105 " is denied after the first unsuccessful try.\n" 1106 1106 " \n" 1107 " -N | --noremote action If it's impossible to connect to the remote\n" 1108 " PyKotIcon machine, do this action instead.\n" 1109 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1110 " which will respectively allow the processing\n" 1111 " of the print job to continue, or the job to\n" 1112 " be cancelled. The default value is CANCEL.\n" 1113 " \n" 1107 1114 " -n | --notify Tells pknotify to send an informational " 1108 1115 "message\n" … … 1153 1160 "examples : \n" 1154 1161 "\n" 1155 " pknotify -d client:7654 --confirm \"This job costs :\n" 1156 "10 credits !\"\n" 1157 " \n" 1158 " Would display the cost of a print job and asks for confirmation.\n" 1162 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1163 "credits\"\n" 1164 " \n" 1165 " Would display the cost of the print job and asks for confirmation.\n" 1166 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1167 " from the print server, PyKota will consider that the end user accepted\n" 1168 " to print this job.\n" 1159 1169 " \n" 1160 1170 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/th/pykota.po
r3073 r3075 1083 1083 " is denied after the first unsuccessful try.\n" 1084 1084 " \n" 1085 " -N | --noremote action If it's impossible to connect to the remote\n" 1086 " PyKotIcon machine, do this action instead.\n" 1087 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1088 " which will respectively allow the processing\n" 1089 " of the print job to continue, or the job to\n" 1090 " be cancelled. The default value is CANCEL.\n" 1091 " \n" 1085 1092 " -n | --notify Tells pknotify to send an informational " 1086 1093 "message\n" … … 1131 1138 "examples : \n" 1132 1139 "\n" 1133 " pknotify -d client:7654 --confirm \"This job costs :\n" 1134 "10 credits !\"\n" 1135 " \n" 1136 " Would display the cost of a print job and asks for confirmation.\n" 1140 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1141 "credits\"\n" 1142 " \n" 1143 " Would display the cost of the print job and asks for confirmation.\n" 1144 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1145 " from the print server, PyKota will consider that the end user accepted\n" 1146 " to print this job.\n" 1137 1147 " \n" 1138 1148 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/tr/pykota.po
r3073 r3075 1095 1095 " is denied after the first unsuccessful try.\n" 1096 1096 " \n" 1097 " -N | --noremote action If it's impossible to connect to the remote\n" 1098 " PyKotIcon machine, do this action instead.\n" 1099 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1100 " which will respectively allow the processing\n" 1101 " of the print job to continue, or the job to\n" 1102 " be cancelled. The default value is CANCEL.\n" 1103 " \n" 1097 1104 " -n | --notify Tells pknotify to send an informational " 1098 1105 "message\n" … … 1143 1150 "examples : \n" 1144 1151 "\n" 1145 " pknotify -d client:7654 --confirm \"This job costs :\n" 1146 "10 credits !\"\n" 1147 " \n" 1148 " Would display the cost of a print job and asks for confirmation.\n" 1152 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1153 "credits\"\n" 1154 " \n" 1155 " Would display the cost of the print job and asks for confirmation.\n" 1156 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1157 " from the print server, PyKota will consider that the end user accepted\n" 1158 " to print this job.\n" 1149 1159 " \n" 1150 1160 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/po/zh_TW/pykota.po
r3073 r3075 1075 1075 " is denied after the first unsuccessful try.\n" 1076 1076 " \n" 1077 " -N | --noremote action If it's impossible to connect to the remote\n" 1078 " PyKotIcon machine, do this action instead.\n" 1079 " Allowed actions are 'CONTINUE' and 'CANCEL', \n" 1080 " which will respectively allow the processing\n" 1081 " of the print job to continue, or the job to\n" 1082 " be cancelled. The default value is CANCEL.\n" 1083 " \n" 1077 1084 " -n | --notify Tells pknotify to send an informational " 1078 1085 "message\n" … … 1123 1130 "examples : \n" 1124 1131 "\n" 1125 " pknotify -d client:7654 --confirm \"This job costs :\n" 1126 "10 credits !\"\n" 1127 " \n" 1128 " Would display the cost of a print job and asks for confirmation.\n" 1132 " pknotify -d client:7654 --noremote CONTINUE --confirm \"This job costs 10 " 1133 "credits\"\n" 1134 " \n" 1135 " Would display the cost of the print job and asks for confirmation.\n" 1136 " If the end user doesn't have PyKotIcon running and accepting connections\n" 1137 " from the print server, PyKota will consider that the end user accepted\n" 1138 " to print this job.\n" 1129 1139 " \n" 1130 1140 " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" -
pykota/trunk/TODO
r3074 r3075 24 24 - Document the PYKOTA_HOME environment variable. 25 25 26 - Add a command line option to pknotify to decide what should27 happen if there's no PyKotIcon at the other end.28 29 26 - LDAP : See if setting cn=ThePrinter for user print quota entries 30 27 could be done, only in the case where userquotabase=user