Mercurial > p > roundup > code
comparison roundup/admin.py @ 1090:9b910e8d987d
removed Log
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Sep 2002 00:19:55 +0000 |
| parents | 04a6b3bfbf23 |
| children | fa7df238e2d4 |
comparison
equal
deleted
inserted
replaced
| 1089:43ab730ee194 | 1090:9b910e8d987d |
|---|---|
| 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 18 # | 18 # |
| 19 # $Id: admin.py,v 1.24 2002-09-09 23:55:18 richard Exp $ | 19 # $Id: admin.py,v 1.25 2002-09-10 00:18:20 richard Exp $ |
| 20 | 20 |
| 21 import sys, os, getpass, getopt, re, UserDict, shlex, shutil | 21 import sys, os, getpass, getopt, re, UserDict, shlex, shutil |
| 22 try: | 22 try: |
| 23 import csv | 23 import csv |
| 24 except ImportError: | 24 except ImportError: |
| 1142 | 1142 |
| 1143 if __name__ == '__main__': | 1143 if __name__ == '__main__': |
| 1144 tool = AdminTool() | 1144 tool = AdminTool() |
| 1145 sys.exit(tool.main()) | 1145 sys.exit(tool.main()) |
| 1146 | 1146 |
| 1147 # | |
| 1148 # $Log: not supported by cvs2svn $ | |
| 1149 # Revision 1.23 2002/08/19 02:53:27 richard | |
| 1150 # full database export and import is done | |
| 1151 # | |
| 1152 # Revision 1.22 2002/08/16 04:26:42 richard | |
| 1153 # moving towards full database export | |
| 1154 # | |
| 1155 # Revision 1.21 2002/08/01 01:07:37 richard | |
| 1156 # include info about new user roles | |
| 1157 # | |
| 1158 # Revision 1.20 2002/08/01 00:56:22 richard | |
| 1159 # Added the web access and email access permissions, so people can restrict | |
| 1160 # access to users who register through the email interface (for example). | |
| 1161 # Also added "security" command to the roundup-admin interface to display the | |
| 1162 # Role/Permission config for an instance. | |
| 1163 # | |
| 1164 # Revision 1.19 2002/07/25 07:14:05 richard | |
| 1165 # Bugger it. Here's the current shape of the new security implementation. | |
| 1166 # Still to do: | |
| 1167 # . call the security funcs from cgi and mailgw | |
| 1168 # . change shipped templates to include correct initialisation and remove | |
| 1169 # the old config vars | |
| 1170 # ... that seems like a lot. The bulk of the work has been done though. Honest :) | |
| 1171 # | |
| 1172 # Revision 1.18 2002/07/18 11:17:30 gmcm | |
| 1173 # Add Number and Boolean types to hyperdb. | |
| 1174 # Add conversion cases to web, mail & admin interfaces. | |
| 1175 # Add storage/serialization cases to back_anydbm & back_metakit. | |
| 1176 # | |
| 1177 # Revision 1.17 2002/07/14 06:05:50 richard | |
| 1178 # . fixed the date module so that Date(". - 2d") works | |
| 1179 # | |
| 1180 # Revision 1.16 2002/07/09 04:19:09 richard | |
| 1181 # Added reindex command to roundup-admin. | |
| 1182 # Fixed reindex on first access. | |
| 1183 # Also fixed reindexing of entries that change. | |
| 1184 # | |
| 1185 # Revision 1.15 2002/06/17 23:14:44 richard | |
| 1186 # . #569415 ] {version} | |
| 1187 # | |
| 1188 # Revision 1.14 2002/06/11 06:41:50 richard | |
| 1189 # Removed prompt for admin email in initialisation. | |
| 1190 # | |
| 1191 # Revision 1.13 2002/05/30 23:58:14 richard | |
| 1192 # oops | |
| 1193 # | |
| 1194 # Revision 1.12 2002/05/26 09:04:42 richard | |
| 1195 # out by one in the init args | |
| 1196 # | |
| 1197 # Revision 1.11 2002/05/23 01:14:20 richard | |
| 1198 # . split instance initialisation into two steps, allowing config changes | |
| 1199 # before the database is initialised. | |
| 1200 # | |
| 1201 # Revision 1.10 2002/04/27 10:07:23 richard | |
| 1202 # minor fix to error message | |
| 1203 # | |
| 1204 # Revision 1.9 2002/03/12 22:51:47 richard | |
| 1205 # . #527416 ] roundup-admin uses undefined value | |
| 1206 # . #527503 ] unfriendly init blowup when parent dir | |
| 1207 # (also handles UsageError correctly now in init) | |
| 1208 # | |
| 1209 # Revision 1.8 2002/02/27 03:28:21 richard | |
| 1210 # Ran it through pychecker, made fixes | |
| 1211 # | |
| 1212 # Revision 1.7 2002/02/20 05:04:32 richard | |
| 1213 # Wasn't handling the cvs parser feeding properly. | |
| 1214 # | |
| 1215 # Revision 1.6 2002/01/23 07:27:19 grubert | |
| 1216 # . allow abbreviation of "help" in admin tool too. | |
| 1217 # | |
| 1218 # Revision 1.5 2002/01/21 16:33:19 rochecompaan | |
| 1219 # You can now use the roundup-admin tool to pack the database | |
| 1220 # | |
| 1221 # Revision 1.4 2002/01/14 06:51:09 richard | |
| 1222 # . #503164 ] create and passwords | |
| 1223 # | |
| 1224 # Revision 1.3 2002/01/08 05:26:32 rochecompaan | |
| 1225 # Missing "self" in props_from_args | |
| 1226 # | |
| 1227 # Revision 1.2 2002/01/07 10:41:44 richard | |
| 1228 # #500140 ] AdminTool.get_class() returns nothing | |
| 1229 # | |
| 1230 # Revision 1.1 2002/01/05 02:11:22 richard | |
| 1231 # I18N'ed roundup admin - and split the code off into a module so it can be used | |
| 1232 # elsewhere. | |
| 1233 # Big issue with this is the doc strings - that's the help. We're probably going to | |
| 1234 # have to switch to not use docstrings, which will suck a little :( | |
| 1235 # | |
| 1236 # | |
| 1237 # | |
| 1238 # vim: set filetype=python ts=4 sw=4 et si | 1147 # vim: set filetype=python ts=4 sw=4 et si |
