changeset 231:d99047cd90f9

added .hgignore
author Goffi <goffi@goffi.org>
date Thu, 10 May 2012 23:08:08 +0200
parents 57d1d78190d0
children 923281d4c5bc
files .hgignore idavoll.tac
diffstat 2 files changed, 15 insertions(+), 37 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Thu May 10 23:08:08 2012 +0200
@@ -0,0 +1,15 @@
+syntax: glob
+*.pyc
+*.pyv
+*.swp
+*.swo
+tags
+twistd.log
+twistd.pid
+bridge_constructor/generated
+_trial_temp/
+sat.egg-info
+*.un~
+dist
+MANIFEST
+build
--- a/idavoll.tac	Thu May 10 23:07:42 2012 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,37 +0,0 @@
-#!/usr/bin/python
-#-!- coding: utf-8 -!-
-# Copyright (c) 2003-2008 Ralph Meijer
-# See LICENSE for details.
-
-"""
-Example TAC for SàT Pubsub.
-"""
-
-from twisted.application import service
-from twisted.words.protocols.jabber.jid import JID
-
-from idavoll import tap
-
-application = service.Application("sat_pubsub")
-
-config = {
-    'jid': JID('sat-pubsub.necton3.int'),
-    'secret': 'pass',
-    'rhost': '127.0.0.1',
-    'rport': 5347,
-    'backend': 'pgsql',
-    'dbuser': 'user',
-    'dbpass': 'pass',
-    'dbname': "pubsub",
-    'dbhost': "localhost",
-    'dbport': None,
-    'verbose': True,
-    'hide-nodes': False,
-}
-
-idavollService = tap.makeService(config)
-idavollService.setServiceParent(application)
-
-# Set the maximum delay until trying to reconnect.
-componentService = idavollService.getServiceNamed('component')
-componentService.factory.maxdelay = 300