Changeset 1796 for pykota/trunk/bin
- Timestamp:
- 10/11/04 14:49:06 (20 years ago)
- Location:
- pykota/trunk/bin
- Files:
-
- 9 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/autopykota
r1780 r1796 24 24 # 25 25 # $Log$ 26 # Revision 1.4 2004/10/11 12:49:05 jalet 27 # Renders help translatable 28 # 26 29 # Revision 1.3 2004/10/06 07:51:07 jalet 27 30 # Now autopykota uses 0.0 as the default value for initial account balance … … 42 45 43 46 from pykota import version 44 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 47 from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 45 48 46 __doc__ = """autopykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres49 __doc__ = N_("""autopykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 47 50 A tool to automate user account creation and initial balance setting. 48 51 … … 79 82 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 80 83 81 Please e-mail bugs to: %s""" % (version.__version__, version.__author__)84 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 82 85 83 86 class AutoPyKota(PyKotaTool) : -
pykota/trunk/bin/dumpykota
r1790 r1796 24 24 # 25 25 # $Log$ 26 # Revision 1.13 2004/10/11 12:49:06 jalet 27 # Renders help translatable 28 # 26 29 # Revision 1.12 2004/10/07 21:14:28 jalet 27 30 # Hopefully final fix for data encoding to and from the database … … 82 85 83 86 from pykota import version 84 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 87 from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 85 88 from pykota.config import PyKotaConfigError 86 89 from pykota.storage import PyKotaStorageError 87 90 88 __doc__ = """dumpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres91 __doc__ = N_("""dumpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 89 92 90 93 Dumps PyKota database's content. … … 154 157 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 155 158 156 Please e-mail bugs to: %s""" % (version.__version__, version.__author__)159 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 157 160 158 161 class DumPyKota(PyKotaTool) : -
pykota/trunk/bin/edpykota
r1789 r1796 24 24 # 25 25 # $Log$ 26 # Revision 1.79 2004/10/11 12:49:06 jalet 27 # Renders help translatable 28 # 26 29 # Revision 1.78 2004/10/07 14:35:40 jalet 27 30 # Now edpykota refuses to launch if the user is not a PyKota administrator. … … 280 283 281 284 from pykota import version 282 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 285 from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 283 286 from pykota.config import PyKotaConfigError 284 287 from pykota.storage import PyKotaStorageError 285 288 286 __doc__ = """edpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres289 __doc__ = N_("""edpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 287 290 A Print Quota editor for PyKota. 288 291 … … 456 459 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 457 460 458 Please e-mail bugs to: %s""" % (version.__version__, version.__author__)461 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 459 462 460 463 class EdPyKota(PyKotaTool) : -
pykota/trunk/bin/pkhint
r1740 r1796 24 24 # 25 25 # $Log$ 26 # Revision 1.18 2004/10/11 12:49:06 jalet 27 # Renders help translatable 28 # 26 29 # Revision 1.17 2004/09/23 19:29:36 jalet 27 30 # If SNMP accounting is possible, pkhint now suggests to use the internal … … 88 91 89 92 from pykota import version 90 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 93 from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 91 94 from pykota.config import PyKotaConfigError 92 95 from pykota.storage import PyKotaStorageError … … 98 101 hasSNMP = 1 99 102 100 __doc__ = """pkhint v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres103 __doc__ = N_("""pkhint v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 101 104 A tool to give hints on what accounting method is best for each printer. 102 105 … … 135 138 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 136 139 137 Please e-mail bugs to: %s""" % (version.__version__, version.__author__)140 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 138 141 139 142 SNMPTESTS = [ \ -
pykota/trunk/bin/pkprinters
r1605 r1796 24 24 # 25 25 # $Log$ 26 # Revision 1.15 2004/10/11 12:49:06 jalet 27 # Renders help translatable 28 # 26 29 # Revision 1.14 2004/07/19 22:37:13 jalet 27 30 # pykosd is now a very good tool … … 75 78 76 79 from pykota import version 77 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 78 79 __doc__ = """pkprinters v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres80 from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 81 82 __doc__ = N_("""pkprinters v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 80 83 A Printers Manager for PyKota. 81 84 … … 169 172 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 170 173 171 Please e-mail bugs to: %s""" % (version.__version__, version.__author__)174 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 172 175 173 176 class PKPrinters(PyKotaTool) : -
pykota/trunk/bin/pykosd
r1785 r1796 24 24 # 25 25 # $Log$ 26 # Revision 1.9 2004/10/11 12:49:06 jalet 27 # Renders help translatable 28 # 26 29 # Revision 1.8 2004/10/06 10:05:47 jalet 27 30 # Minor changes to allow any PyKota administrator to launch enhanced versions … … 64 67 65 68 from pykota import version 66 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 67 68 __doc__ = """pykosd v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres69 from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 70 71 __doc__ = N_("""pykosd v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 69 72 An OSD quota monitor for PyKota. 70 73 … … 117 120 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 118 121 119 Please e-mail bugs to: %s""" % (version.__version__, version.__author__)122 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 120 123 121 124 -
pykota/trunk/bin/pykotme
r1785 r1796 24 24 # 25 25 # $Log$ 26 # Revision 1.15 2004/10/11 12:49:06 jalet 27 # Renders help translatable 28 # 26 29 # Revision 1.14 2004/10/06 10:05:47 jalet 27 30 # Minor changes to allow any PyKota administrator to launch enhanced versions … … 82 85 83 86 from pykota import version 84 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 87 from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 85 88 from pykota.config import PyKotaConfigError 86 89 from pykota.storage import PyKotaStorageError 87 90 from pykota.pdlanalyzer import PDLAnalyzer, PDLAnalyzerError 88 91 89 __doc__ = """pykotme v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres92 __doc__ = N_("""pykotme v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 90 93 91 94 Gives print quotes to users. … … 128 131 would cost on each printer. 129 132 130 131 133 This program is free software; you can redistribute it and/or modify 132 134 it under the terms of the GNU General Public License as published by … … 143 145 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 144 146 145 Please e-mail bugs to: %s""" % (version.__version__, version.__author__)147 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 146 148 147 149 -
pykota/trunk/bin/repykota
r1785 r1796 24 24 # 25 25 # $Log$ 26 # Revision 1.51 2004/10/11 12:49:06 jalet 27 # Renders help translatable 28 # 26 29 # Revision 1.50 2004/10/06 10:05:47 jalet 27 30 # Minor changes to allow any PyKota administrator to launch enhanced versions … … 196 199 197 200 from pykota import version 198 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 201 from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 199 202 from pykota.config import PyKotaConfigError 200 203 from pykota.storage import PyKotaStorageError … … 202 205 from pykota import reporter 203 206 204 __doc__ = """repykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres207 __doc__ = N_("""repykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 205 208 206 209 Generates print quota reports. … … 261 264 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 262 265 263 Please e-mail bugs to: %s""" % (version.__version__, version.__author__)266 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 264 267 265 268 class RePyKota(PyKotaTool) : -
pykota/trunk/bin/warnpykota
r1785 r1796 24 24 # 25 25 # $Log$ 26 # Revision 1.31 2004/10/11 12:49:06 jalet 27 # Renders help translatable 28 # 26 29 # Revision 1.30 2004/10/06 10:05:47 jalet 27 30 # Minor changes to allow any PyKota administrator to launch enhanced versions … … 128 131 129 132 from pykota import version 130 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 133 from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 131 134 from pykota.config import PyKotaConfigError 132 135 from pykota.storage import PyKotaStorageError 133 136 134 __doc__ = """warnpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres137 __doc__ = N_("""warnpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 135 138 136 139 Sends mail to users over print quota. … … 193 196 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 194 197 195 Please e-mail bugs to: %s""" % (version.__version__, version.__author__)198 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 196 199 197 200 class WarnPyKota(PyKotaTool) :