[27005] in Source-Commits
/svn/athena r25886 - in trunk/debathena/debathena/console: . debian
daemon@ATHENA.MIT.EDU (Jonathan D Reed)
Wed Apr 3 12:51:27 2013
Date: Wed, 3 Apr 2013 12:51:21 -0400
From: Jonathan D Reed <jdreed@MIT.EDU>
Message-Id: <201304031651.r33GpLiB030798@drugstore.mit.edu>
To: source-commits@MIT.EDU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: jdreed
Date: 2013-04-03 12:51:21 -0400 (Wed, 03 Apr 2013)
New Revision: 25886
Modified:
trunk/debathena/debathena/console/debathena-console
trunk/debathena/debathena/console/debian/changelog
trunk/debathena/debathena/console/debian/control.in
Log:
In console:
* Do not depend on the no-longer-existent python-gnome2-desktop package
* Make the window and font smaller
Modified: trunk/debathena/debathena/console/debathena-console
===================================================================
--- trunk/debathena/debathena/console/debathena-console 2013-04-03 16:48:53 UTC (rev 25885)
+++ trunk/debathena/debathena/console/debathena-console 2013-04-03 16:51:21 UTC (rev 25886)
@@ -75,7 +75,7 @@
self.set_title(NAME)
- self.set_default_size(640, 320)
+ self.set_default_size(480, 240)
self.set_border_width(0)
vbox = gtk.VBox(False, 0)
@@ -184,8 +184,8 @@
import pango
# See http://www.pygtk.org/docs/pygtk/class-gtktexttag.html
- default_args = {'family': 'monospace',
- 'size_points': 12}
+ default_args = {'family': 'courier',
+ 'size_points': 8}
text_buffer.create_tag("stdout", **default_args)
text_buffer.create_tag("stderr", foreground="red", **default_args)
Modified: trunk/debathena/debathena/console/debian/changelog
===================================================================
--- trunk/debathena/debathena/console/debian/changelog 2013-04-03 16:48:53 UTC (rev 25885)
+++ trunk/debathena/debathena/console/debian/changelog 2013-04-03 16:51:21 UTC (rev 25886)
@@ -1,8 +1,10 @@
debathena-console (1.3) UNRELEASED; urgency=low
* Bump debian/compat to 6
+ * Do not depend on the no-longer-existent python-gnome2-desktop package
+ * Make the window and font smaller
- -- Jonathan Reed <jdreed@mit.edu> Sun, 01 Jul 2012 12:21:42 -0400
+ -- Jonathan Reed <jdreed@mit.edu> Wed, 03 Apr 2013 12:50:49 -0400
debathena-console (1.2) unstable; urgency=low
Modified: trunk/debathena/debathena/console/debian/control.in
===================================================================
--- trunk/debathena/debathena/console/debian/control.in 2013-04-03 16:48:53 UTC (rev 25885)
+++ trunk/debathena/debathena/console/debian/control.in 2013-04-03 16:51:21 UTC (rev 25886)
@@ -8,7 +8,7 @@
Package: debathena-console
Architecture: all
Depends: ${misc:Depends}, dbus, python,
- python-gtk2, python-gconf, python-dbus, python-gnome2-desktop,
+ python-gtk2, python-gconf, python-dbus
Description: Displays incremental input in a popup window
Python implementation of a console viewing program that allows
users to see important messages during their login session.