Code review comment for lp:~jak-o/beeseek/configuration-ui

Revision history for this message
Andrea Corbellini (andrea.corbellini) wrote :

=== modified file 'beeseek/applications/peer/main.py'
--- beeseek/applications/peer/main.py 2009-03-27 12:53:24 +0000
+++ beeseek/applications/peer/main.py 2009-03-31 13:32:19 +0000
@@ -38,6 +38,23 @@
                           'Wheter to track SSL encoded pages.',
                           default=False)

+ test1 = Option(str, 'Test option 1', None, None,
+ 'This is a test option.',
+ default="bla bla bla")
+
+ class TestConfig(BaseOptionSection):
+
+ implements(IOptionSection)
+ help = 'This is a test section.'
+
+ test2 = Option(str, 'Test option 2 ', None, None,
+ 'This is a test option.',
+ default="bla bla bla")
+
+ test3 = Option(str, 'Test option 3', None, None,
+ 'This is a test option.',
+ default="bla bla bla")
+

 class ProxySession(BaseServerSession):

« Back to merge proposal