system-config-users-vl.spec 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. Summary: A graphical interface for administering users and groups
  2. Summary(ja): ユーザ�グループを管��る���グラフィカルインタフェース
  3. Name: system-config-users
  4. Version: 1.2.87
  5. Release: 1%{?_dist_release}
  6. URL: http://fedora.redhat.com/projects/config-tools/
  7. License: GPL
  8. ExclusiveOS: Linux
  9. Group: Applications/System
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildArch: noarch
  12. Source: %{name}-%{version}.tar.bz2
  13. BuildRequires: desktop-file-utils
  14. BuildRequires: gettext
  15. BuildRequires: intltool
  16. BuildRequires: python
  17. Requires: libuser
  18. Requires: python
  19. Requires: pygtk2
  20. Requires: pygtk2-libglade
  21. Requires: usermode-gtk
  22. Requires: xdg-utils
  23. Requires: rpm-python
  24. Requires: /usr/bin/pgrep
  25. Requires: rhpl
  26. Requires: hicolor-icon-theme
  27. %description
  28. system-config-users is a graphical utility for administrating
  29. users and groups. It depends on the libuser library.
  30. %prep
  31. %setup -q
  32. sed -i -e 's|/usr/bin/python2|/usr/bin/python|g' \
  33. src/system-config-users src/*.py
  34. %build
  35. make
  36. %install
  37. make DESTDIR=$RPM_BUILD_ROOT install
  38. desktop-file-install --vendor system --delete-original \
  39. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  40. $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
  41. %find_lang %name
  42. find $RPM_BUILD_ROOT%{_datadir} -name "*.mo" | xargs ./utf8ify-mo
  43. %clean
  44. rm -rf $RPM_BUILD_ROOT
  45. %post
  46. touch --no-create %{_datadir}/icons/hicolor
  47. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  48. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  49. fi
  50. %postun
  51. touch --no-create %{_datadir}/icons/hicolor
  52. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  53. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  54. fi
  55. %files -f %{name}.lang
  56. %defattr(-,root,root)
  57. %doc COPYING
  58. %doc doc/*
  59. /usr/bin/system-config-users
  60. %dir /usr/share/system-config-users
  61. /usr/share/system-config-users/*
  62. %{_mandir}/man8/system-config-users*
  63. %attr(0644,root,root) %{_datadir}/applications/%{name}.desktop
  64. %attr(0644,root,root) %{_datadir}/icons/hicolor/48x48/apps/system-config-users.png
  65. %attr(0644,root,root) %config /etc/security/console.apps/system-config-users
  66. %attr(0644,root,root) %config /etc/pam.d/system-config-users
  67. %attr(0644,root,root) %config (noreplace) /etc/sysconfig/system-config-users
  68. %changelog
  69. * Sat Jun 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.87-1
  70. - new upstream release
  71. - add R: xdg-utils instead of htmlview
  72. * Wed Oct 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.51-1
  73. - initial build for Vine Linux
  74. * Fri Feb 22 2008 Nils Philippsen <nphilipp@redhat.com> - 1.2.51-4
  75. - fix workaround for libuser < 0.56 (#427504)
  76. * Mon Dec 03 2007 Nils Philippsen <nphilipp@redhat.com> - 1.2.51-3
  77. - workaround bug with purely numerical user/group names in libuser < 0.56
  78. * Thu Nov 15 2007 Nils Philippsen <nphilipp@redhat.com> - 1.2.51-2
  79. - fix warnings about numerical user- and groupnames (#250213)
  80. * Thu Dec 21 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.51
  81. - pick up updated translations (#216396)
  82. * Wed Dec 13 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.50
  83. - pick up updated translations (#216396)
  84. * Fri Nov 24 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.49
  85. - pick up updated translations (#216396)
  86. * Sat Oct 14 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.48
  87. - pick up updated translations
  88. * Sat Oct 14 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.47
  89. - pick up updated translations (#210731)
  90. * Mon Jul 24 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.46
  91. - ask user when hitting duplicate group name or gid (#199836)
  92. * Mon Jul 17 2006 Nils Philippsen <nphilipp@redhat.com>
  93. - clarify comments, add new variables in /etc/sysconfig/system-config-users
  94. - use new method to choose GID when creating groups as well
  95. - actually set new user's GID
  96. - remove debugging statements
  97. * Thu Jul 13 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.45
  98. - revamp uid/gid number selection to honor preferences and avoid primary
  99. group/created group discrepancies (#198152)
  100. - use disttag if available
  101. * Mon Jun 12 2006 Nils Philippsen <nphilipp@redhat.com>
  102. - detect inconsistencies between /etc/group and /etc/gshadow at startup
  103. (#174716)
  104. * Wed Jun 07 2006 Nils Philippsen <nphilipp@redhat.com>
  105. - change some label texts
  106. - fix indentation
  107. * Tue May 16 2006 Nils Philippsen <nphilipp@redhat.com>
  108. - fix localization markings (#191846, patch by Roozbeh Pournader)
  109. * Fri May 05 2006 Nils Philippsen <nphilipp@redhat.com>
  110. - pull out preferences handling into Preferences class
  111. - implement preferences dialog
  112. * Wed Apr 05 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.44
  113. - rephrase some error messages to ease translation (#154204)
  114. * Mon Mar 27 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.43
  115. - pick up translation updates
  116. * Fri Mar 03 2006 Nils Philippsen <nphilipp@redhat.com> - 1.2.42
  117. - require hicolor-icon-theme (#182882, #182883)
  118. * Fri Oct 14 2005 Nils Philippsen <nphilipp@redhat.com>
  119. - don't use pam_stack (#170649)
  120. * Tue Oct 04 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.41
  121. - fix variable names to prevent hangs when adding a group (#169730)
  122. * Fri Sep 30 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.40
  123. - initialize shadow variables only if shadow passwords are used
  124. (#168524, #168529, patch by Josef Whiter)
  125. * Fri Sep 23 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.39
  126. - require rhpl (#168921)
  127. * Fri Jun 10 2005 Nils Philippsen <nphilipp@redhat.com>
  128. - allow punctation in user names (#141273)
  129. * Mon May 09 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.38
  130. - pick up updated translations
  131. * Fri May 06 2005 Nils Philippsen <nphilipp@redhat.com>
  132. - make desktop file rebuild consistently
  133. * Fri May 06 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.37
  134. - make About menu entry translate (#156793)
  135. * Fri May 06 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.36
  136. - use DESTDIR consistently
  137. * Wed May 04 2005 Nils Philippsen <nphilipp@redhat.com>
  138. - make desktop file translatable (#156793)
  139. * Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 1.2.35-2
  140. - silence %%post
  141. * Thu Apr 07 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.35-1
  142. - correct setting shadow values if password doesn't expire
  143. * Mon Apr 04 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.34-1
  144. - don't crash when displaying non-shadow accounts (#152960)
  145. * Mon Apr 04 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.33-1
  146. - don't use GNOME stock stuff for About menu entry (#153227)
  147. * Fri Apr 01 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.32-1
  148. - don't require gnome (#152960)
  149. - revive about dialog
  150. * Fri Apr 01 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.31-1
  151. - fix deprecation warnings (#153054) with (modified) patch by Colin Charles
  152. * Wed Mar 30 2005 Nils Philippsen <nphilipp@redhat.com> - 1.2.30-1
  153. - use os.lstat() to test ownership of files to be deleted
  154. - update the GTK+ theme icon cache on (un)install
  155. * Fri Dec 03 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.29-1
  156. - use variable max length for user/group names (prepare fix for #141273)
  157. * Wed Nov 10 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.28-1
  158. - check for running processes of a user about to be deleted (#132902)
  159. * Mon Nov 08 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.27-1
  160. - some sanity testing to avoid deleting system directories when deleting a user
  161. (#138093)
  162. - eventually delete mail spool (#102637) and temporary files (#126756)
  163. * Fri Nov 05 2004 Nils Philippsen <nphilipp@redhat.com>
  164. - set password and confirm password entries (in)sensitive based on whether
  165. account is locked or not (#131180)
  166. * Tue Nov 02 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.26-1
  167. - use libuser defaults for password aging (#130379, original patch by Dave
  168. Lehman)
  169. * Wed Oct 13 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.25-1
  170. - when renaming users, ensure that groups forget about the old user name
  171. (#135280)
  172. * Mon Oct 11 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.24-1
  173. - use user/group names for indexing, avoid unnecessary user/group lookups
  174. (#135223, original patch by Miloslav Trmac)
  175. - remove some debugging statements
  176. - updated translations
  177. * Fri Oct 08 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.23-1
  178. - try to fix 32bit uids/gids (#134803)
  179. - fix gtk.main*() related DeprecationWarnings
  180. - byte-compile python files in "make install"
  181. - updated translations
  182. * Mon Oct 04 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.22-1
  183. - updated translations
  184. * Sun Sep 26 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.21-1
  185. - updated translations
  186. * Fri Sep 24 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.20-1
  187. - allow UTF-8 in user's full name (#133137)
  188. - require new libuser version so that fix for #80624 doesn't throw exception
  189. (#133479)
  190. - admit complicity
  191. * Wed Sep 15 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.19-1
  192. - try to use gid as specified in /etc/libuser.conf, only if that fails use next
  193. free (#80624)
  194. * Mon Sep 13 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.18-1
  195. - use F1 instead of Ctrl+H as accelerator for Help/Contents (#132163)
  196. - use "mkdir -p" to fix make install glitch
  197. - use absolute paths in *.glade to fix pygtk/pyglade subtleties
  198. * Sun Sep 05 2004 Nils Philippsen <nphilipp@redhat.com> - 1.2.15-1
  199. - add manpage (Chris Spencer, #115316)
  200. - add Slovenian translation to desktop file (Roman Maurer, #131835)
  201. * Mon Jun 21 2004 Brent Fox <bfox@redhat.com> - 1.2.14-1
  202. - fix password expiration bug (bug #125234)
  203. * Wed Apr 21 2004 Brent Fox <bfox@redhat.com> 1.2.13-1
  204. - allow columns to be resized (bug #121174)
  205. * Tue Apr 20 2004 Brent Fox <bfox@redhat.com> 1.2.12-5
  206. - call self.ready() if no is clicked (bug #121364)
  207. * Mon Apr 19 2004 Brent Fox <bfox@redhat.com> 1.2.12-4
  208. - apply patch from bug #72058 to localize pw last changed time
  209. * Mon Apr 19 2004 Brent Fox <bfox@redhat.com> 1.2.12-3
  210. - hide SELinux widgets for now (bug #119941)
  211. * Mon Apr 19 2004 Brent Fox <bfox@redhat.com> 1.2.12-2
  212. - remove *pyc files on ininstall
  213. * Thu Apr 15 2004 Brent Fox <bfox@redhat.com> 1.2.12-1
  214. - fix bug #120669
  215. * Tue Apr 13 2004 Brent Fox <bfox@redhat.com> 1.2.11-6
  216. - remove print statements in mainWindow.py
  217. * Mon Apr 12 2004 Brent Fox <bfox@redhat.com> 1.2.11-5
  218. - fix icon path (bug #120186)
  219. * Wed Apr 7 2004 Brent Fox <bfox@redhat.com> 1.2.11-4
  220. - disable SELinux widgets if it isn't running or isn't enabled (bug #120193)
  221. * Tue Apr 6 2004 Brent Fox <bfox@redhat.com> 1.2.11-3
  222. - remove Requires on policy-sources and setools (bug #120193)
  223. * Mon Apr 5 2004 Brent Fox <bfox@redhat.com> 1.2.11-2
  224. - rebuild for SELinux
  225. - add Requires on policy-sources
  226. * Wed Mar 31 2004 Brent Fox <bfox@redhat.com> 1.2.11-1
  227. - first stab at SELinux bits
  228. * Wed Mar 24 2004 Brent Fox <bfox@redhat.com> 1.2.10-1
  229. - reset user home dir check button (bug #119068)
  230. * Tue Feb 3 2004 Brent Fox <bfox@redhat.com> 1.2.9-1
  231. - remove comparison to gtk.TRUE (bug #114266)
  232. * Mon Jan 12 2004 Brent Fox <bfox@redhat.com> 1.2.8-1
  233. - rename redhat-config-users.png to system-config-users.png (bug #113311)
  234. * Mon Dec 1 2003 Brent Fox <bfox@redhat.com> 1.2.7-1
  235. - preserve existing group selection in userProperties.py (bug #111199)
  236. - handle munged config file (bug #108400)
  237. * Mon Nov 24 2003 Brent Fox <bfox@redhat.com> 1.2.6-1
  238. - remove Red Hat reference in the window title
  239. * Wed Nov 19 2003 Brent Fox <bfox@redhat.com> 1.2.5-1
  240. - rename from redhat-config-users
  241. - add Obsoletes for redhat-config-users
  242. - make changes for Python2.3
  243. * Mon Oct 27 2003 Brent Fox <bfox@redhat.com> 1.2.4-1
  244. - call self.ready() if the user clicks cancel in the existing group dialog (bug #107991)
  245. * Mon Oct 20 2003 Brent Fox <bfox@redhat.com> 1.2.3-1
  246. - use htmlview to find default browser (bug #107604)
  247. * Mon Oct 6 2003 Brent Fox <bfox@redhat.com> 1.2.2-1
  248. - don't allow the root's username to be changed (bug #105632)
  249. * Tue Sep 23 2003 Brent Fox <bfox@redhat.com> 1.2.1-1
  250. - rebuild with latest docs
  251. * Tue Sep 16 2003 Brent Fox <bfox@redhat.com> 1.1.17-4
  252. - bump release
  253. * Tue Sep 16 2003 Brent Fox <bfox@redhat.com> 1.1.17-3
  254. - turn off SELinux
  255. * Tue Sep 16 2003 Brent Fox <bfox@redhat.com> 1.1.17-2
  256. - bump release
  257. * Tue Sep 16 2003 Brent Fox <bfox@redhat.com> 1.1.17-1
  258. - if shadow passwords are not enabled, do not show certain widgets (bug #104536)
  259. - don't modify password expiration data by accident (bug #88190)
  260. * Thu Sep 4 2003 Dan Walsh <dwalsh@redhat.com> 1.1.16-3
  261. - Turn off SELinux
  262. * Thu Sep 4 2003 Dan Walsh <dwalsh@redhat.com> 1.1.16-2.sel
  263. - add SELinux support
  264. * Thu Aug 14 2003 Brent Fox <bfox@redhat.com> 1.1.16-1
  265. - clarify error dialog message (bug #101607)
  266. - allow underscores and dashes in usernames and groupnames (bug #99115)
  267. * Thu Aug 14 2003 Brent Fox <bfox@redhat.com> 1.1.15-1
  268. - tag on every build
  269. * Wed Aug 13 2003 Brent Fox <bfox@redhat.com> 1.1.14-2
  270. - bump relnum and rebuild
  271. * Wed Aug 13 2003 Brent Fox <bfox@redhat.com> 1.1.14-1
  272. - use UTC instead of GMT (bug #102251)
  273. * Wed Aug 13 2003 Brent Fox <bfox@redhat.com> 1.1.13-1
  274. - add BuildRequires on gettext
  275. * Wed Jul 23 2003 Brent Fox <bfox@redhat.com> 1.1.12-2
  276. - bump relnum and rebuild
  277. * Wed Jul 23 2003 Brent Fox <bfox@redhat.com> 1.1.12-1
  278. - use GMT time on password last changed (bug #89759)
  279. * Wed Jul 23 2003 Brent Fox <bfox@redhat.com> 1.1.11-2
  280. - bump relnum and rebuild
  281. * Wed Jul 23 2003 Brent Fox <bfox@redhat.com> 1.1.11-1
  282. - don't create new user with an existing uid (bug #90911)
  283. - use the messageDialog module in groupWindow.py
  284. - don't create group with an existing gid (bug #90911)
  285. * Fri Jul 11 2003 Brent Fox <bfox@redhat.com> 1.1.10-2
  286. - bump relnum and rebuild
  287. * Fri Jul 11 2003 Brent Fox <bfox@redhat.com> 1.1.10-1
  288. - display an error if no X server is running (bug #97148)
  289. * Mon Jun 2 2003 Brent Fox <bfox@redhat.com> 1.1.9-1
  290. - popup a confirmation dialog when deleting groups
  291. - popup a confirmation dialog when deleting users
  292. * Tue May 27 2003 Brent Fox <bfox@redhat.com> 1.1.8-1
  293. - don't require a full user name (bug #91718)
  294. * Fri May 23 2003 Brent Fox <bfox@redhat.com> 1.1.7-1
  295. - don't allow colons in username or homedir names (bug #90481)
  296. - check for zero length in usernames, groupnames, gecos, and homedirs
  297. * Thu May 22 2003 Brent Fox <bfox@redhat.com> 1.1.6-1
  298. - change label in glade file (bug #86323)
  299. * Mon May 19 2003 Brent Fox <bfox@redhat.com> 1.1.5-9
  300. - create a 'users' group if a new user is getting added to a non-existing users group (bug #89895)
  301. * Thu Apr 3 2003 Brent Fox <bfox@redhat.com> 1.1.5-8
  302. - don't automatically delete system groups (bug #78620)
  303. * Wed Feb 26 2003 Jeremy Katz <katzj@redhat.com> 1.1.5-7
  304. - use rm for rmrf instead (#85175)
  305. * Mon Feb 17 2003 Brent Fox <bfox@redhat.com> 1.1.5-6
  306. - update desktop file (bug #84360)
  307. * Thu Feb 13 2003 Brent Fox <bfox@redhat.com> 1.1.5-5
  308. - make double-click launch properties box (#84231)
  309. * Tue Feb 11 2003 Brent Fox <bfox@redhat.com> 1.1.5-4
  310. - call self.rmrf
  311. * Mon Feb 10 2003 Brent Fox <bfox@redhat.com> 1.1.5-3
  312. - rebuild to pull in fix for bug #83341
  313. * Fri Feb 7 2003 Brent Fox <bfox@redhat.com> 1.1.5-2
  314. - fix bug #83341 for real this time
  315. * Wed Feb 5 2003 Brent Fox <bfox@redhat.com> 1.1.5-1
  316. - don't allow root account to be locked
  317. - make default values for SHADOW* on user creation so we can do password aging properly later
  318. * Tue Feb 4 2003 Brent Fox <bfox@redhat.com> 1.1.4-2
  319. - fix bug with deleting user homeDir (bug #83341)
  320. * Thu Jan 30 2003 Brent Fox <bfox@redhat.com> 1.1.4-1
  321. - bump and build
  322. * Fri Jan 24 2003 Brent Fox <bfox@redhat.com> 1.1.3-4
  323. - better error checking for user names and group names (bug #82607)
  324. * Thu Jan 16 2003 Brent Fox <bfox@redhat.com> 1.1.3-3
  325. - force ascii input (bug #74058)
  326. - make sure that groupWindow calls self.ready() after showing dialogs
  327. - remove sentence hacks in asciiCheck.py (bug #82015)
  328. - fix typo in about box (bug #82016)
  329. - do not create homedir if they user doesn't want to
  330. - only offer to delete homedirs if they actually exist (bug #78619)
  331. - if the user is the only member of their group, delete the group automatically (bug #78620)
  332. * Wed Jan 15 2003 Brent Fox <bfox@redhat.com> 1.1.3-1
  333. - don't try to delete the group if the groupEnt is None (bug #68950)
  334. * Tue Jan 14 2003 Tammy Fox <tfox@redhat.com> 1.1.2-2
  335. - update help with new screenshots and tweak content
  336. * Wed Jan 8 2003 Brent Fox <bfox@redhat.com> 1.1.2-1
  337. - ask if they want to delete the home directory
  338. * Tue Jan 7 2003 Brent Fox <bfox@redhat.com> 1.1.1-9
  339. - handle window delete-events correctly
  340. - call ready() after dialog is destroyed (bug #80625)
  341. - if a deleted user is the only user in his primary group, offer to delete the group too (bug #78620)
  342. * Mon Dec 23 2002 Brent Fox <bfox@redhat.com> 1.1.1-6
  343. - replace some message dialogs with calls to show_message_dialog
  344. * Tue Dec 17 2002 Brent Fox <bfox@redhat.com> 1.1.1-5
  345. - Do a lot of input checking on the userWindow.py and userProperties.py (bug #79246)
  346. * Tue Nov 12 2002 Brent Fox <bfox@redhat.com> 1.1.1-4
  347. - Rebuild with latest translations
  348. * Thu Oct 10 2002 Brent Fox <bfox@redhat.com> 1.1.1-3
  349. - Make the upper limit on UIDs and GIDs (pow(2, 32)). Fixes bug 75605
  350. * Mon Sep 16 2002 Brent Fox <bfox@redhat.com>
  351. - groupWindow.py, groupProperties.py, userProperties.py...desensitize when performing actions
  352. * Fri Sep 13 2002 Brent Fox <bfox@redhat.com>
  353. - Make the window insensitive when adding a user to prevent double clicks
  354. * Tue Sep 10 2002 Brent Fox <bfox@redhat.com>
  355. - Applied patch for Norwegian translation to desktop file
  356. * Tue Sep 03 2002 Brent Fox <bfox@redhat.com> 1.1.1-2
  357. - Pull in latest translations
  358. * Thu Aug 29 2002 Brent Fox <bfox@redhat.com> 1.1.1-1
  359. - Pull in latest translations
  360. * Thu Aug 22 2002 Dan Walsh <dwalsh@redhat.com> 1.1-16
  361. - Fix traceback bug, caused by unitialized variable
  362. - Fix traceback bug, caused by primary gid missing from /etc/group
  363. * Tue Aug 20 2002 Brent Fox <bfox@redhat.com> 1.1-15
  364. - Convert desktop file to UTF8
  365. - Pull in new translations into desktop file
  366. * Mon Aug 19 2002 Brent Fox <bfox@redhat.com> 1.1-14
  367. - Apply patch from twaugh to fix bug 68778
  368. - Change widths on account expriation widgets
  369. * Thu Aug 15 2002 Brent Fox <bfox@redhat.com> 1.1-13
  370. - enlarge window startup size for verbose langs
  371. * Wed Aug 14 2002 Brent Fox <bfox@redhat.com> 1.1-12
  372. - rebuild to pull in latest translations
  373. * Mon Aug 12 2002 Tammy Fox <tfox@redhat.com> 1.1-11
  374. - replace System with SystemSetup in desktop file categories
  375. * Wed Aug 07 2002 Tammy Fox <tfox@redhat.com>
  376. - UI tweaks
  377. * Tue Aug 06 2002 Brent Fox <bfox@redhat.com> 1.1-10
  378. - Increase default window size
  379. * Tue Aug 06 2002 Brent Fox <bfox@redhat.com> 1.1-9
  380. - fix bug 70783
  381. * Fri Aug 02 2002 Brent Fox <bfox@redhat.com> 1.1-8
  382. - Use new pam timestamp rules
  383. * Wed Jul 24 2002 Brent Fox <bfox@redhat.com> 1.1-7
  384. - Use new icons from garrett
  385. * Wed Jul 24 2002 Brent Fox <bfox@redhat.com> 1.1-6
  386. - Fix glade path typo
  387. * Wed Jul 24 2002 Tammy Fox <tfox@redhat.com> 1.1-4
  388. - Fix desktop file (bug #69488)
  389. * Thu Jul 18 2002 Karsten Hopp <karsten@redhat.de> 1.1-3
  390. - prepare for new pygtk2
  391. * Sat Jul 13 2002 Brent Fox <bfox@redhat.com> 1.1-2
  392. - Fixed bug #68639
  393. - Make properties and delete widgets desensitized when necessary
  394. * Fri Jul 12 2002 Tammy Fox <tfox@redhat.com>
  395. - Updated docs
  396. - Moved desktop file to /usr/share/applications only
  397. * Thu Jul 11 2002 Brent Fox <bfox@redhat.com> 1.1-1
  398. - Add a "Search Filter" label
  399. * Fri Jun 14 2002 Brent Fox <bfox@redhat.com> 1.0.2-3
  400. - Typo bug on my part
  401. * Thu Jun 13 2002 Brent Fox <bfox@redhat.com> 1.0.2-1
  402. - Use spiffy new toolbar icons
  403. * Thu May 2 2002 Brent Fox <bfox@redhat.com> 1.0.1-7
  404. - Update translations
  405. * Mon Apr 22 2002 Brent Fox <bfox@redhat.com> 1.0.1-6
  406. - Bring in the latest translations and rebuild in the latest dist
  407. * Thu Apr 18 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.1-5
  408. - Convert .mo files to UTF-8 at install-time, fixing #63815 correctly (probably)
  409. * Thu Apr 18 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.1-4
  410. - Don't bail on LookupErrors when recoding strings, just punt (#63815)
  411. * Tue Apr 16 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.1-3
  412. - Don't bail on IOErrors when saving preferences to /etc/sysconfig
  413. * Tue Apr 16 2002 Brent Fox <bfox@redhat.com> 1.0.1-2
  414. - Add set_transient_for calls to bring dialogs to the front in KDE (#61590)
  415. * Tue Apr 16 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.1-1
  416. - Handle cases where translations are encoded in non-UTF8 encodings (#63334)
  417. * Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.0-14
  418. - Update translations
  419. * Tue Apr 09 2002 Brent Fox <bfox@redhat.com>
  420. - Added workaround for bug 62919
  421. * Fri Apr 05 2002 Brent Fox <bfox@redhat.com>
  422. - Added changes to use a new icon
  423. * Thu Mar 28 2002 Brent Fox <bfox@redhat.com>
  424. - Finished port to Python2.2/Gtk2
  425. * Wed Feb 27 2002 Brent Fox <bfox@redhat.com>
  426. - Added sortable columns
  427. * Fri Jan 25 2002 Nalin Dahyabhai <nalin@redhat.com> 0.9.2-7
  428. - rebuild for completeness
  429. * Wed Aug 29 2001 Brent Fox <bfox@redhat.com>
  430. - Fixed desktop file problem
  431. - Nakai added Japanese support to the desktop file
  432. * Thu Aug 9 2001 Tammy Fox <tfox@redhat.com>
  433. - added documentation
  434. * Thu Aug 9 2001 Nalin Dahyabhai <nalin@redhat.com>
  435. - Attempt to minimize enumerations where possible
  436. - Always use defined constants for attribute names
  437. * Thu Aug 9 2001 Brent Fox <bfox@redhat.com>
  438. - fixes for password aging
  439. * Wed Aug 8 2001 Nalin Dahyabhai <nalin@redhat.com>
  440. - byte-compile python modules in %%install and include them in the package
  441. * Wed Jul 26 2001 Yukihiro Nakai <ynakai@redhat.com>
  442. - Add Japanese translation
  443. * Wed Jul 26 2001 Yukihiro Nakai <ynakai@redhat.com>
  444. - Directory restructure for i18n
  445. * Tue Jul 10 2001 Brent Fox <bfox@redhat.com>
  446. - some glade fixups and packaging work
  447. * Mon Jul 09 2001 Tammy Fox <tfox@redhat.com>
  448. - added usermode files to spec file
  449. * Tue Jul 05 2001 Brent Fox <bfox@redhat.com>
  450. - initial packaging
  451. * Wed Jun 13 2001 Brent Fox <bfox@redhat.com>
  452. - mainWindow.glade: Changed GUI per jrb's recommendations
  453. - mainWindow.py: added interfacing with libuser backend
  454. * Wed Jun 6 2001 Jonathan Blandford <jrb@redhat.com>
  455. - mainWindow.glade: Cleaned up glade file a bunch.
  456. - mainWindow.py: modified to deal with updated glade.