Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFran Rogers <fran@dumetella.net>2010-11-16 05:59:26 (GMT)
committer Fran Rogers <fran@dumetella.net>2010-11-16 05:59:26 (GMT)
commit795b12221741bec280c41d96147842979b7ad612 (patch)
treed67d781c55b505309e986a7ffd29ae1fc22c5fab
parentc46894bd139125947df820286fd0a4a6971ec785 (diff)
Remove test code
-rw-r--r--gtk-test.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/gtk-test.py b/gtk-test.py
deleted file mode 100644
index 27f1c55..0000000
--- a/gtk-test.py
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright (C) 2007, Eduardo Silva <edsiper@gmail.com>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the
-# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
-
-import os
-import gtk
-import purk
-
-class XoIRC(gtk.Window):
- def __init__(self):
- gtk.Window.__init__(self)
- self.connect('destroy', gtk.main_quit)
-
- self.set_title('XoIRC')
- self.set_size_request(800, 450)
-
- client = purk.Client()
- client.add_channel('#olpc-help')
- client.join_server('irc.freenode.net')
- client.show()
- widget = client.get_widget()
- self.add(widget)
- self.show_all()
-
-if __name__ == "__main__":
- init = XoIRC()
- gtk.main()