Changeset 43
- Timestamp:
- 09/24/07 13:23:22 (1 year ago)
- Files:
-
- photobooth/photobooth.cfg (modified) (2 diffs)
- photobooth/photobooth.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
photobooth/photobooth.cfg
r41 r43 8 8 enabled = True 9 9 #device = /dev/tty.USA19H1d1P1.1 10 device = /dev/tty.usbserial-A3Q608W511 #device = /dev/tty.usbserial-A3Q609ZN10 #device = /dev/tty.usbserial-A3Q608W5 11 device = /dev/tty.usbserial-A3Q609ZN 12 12 13 13 [SonMicroMifareSensorProtocol] … … 17 17 18 18 [JSONService] 19 username = XXX20 password = XXX19 username = andy@mediamatic.nl 20 password = picnic 21 21 base_url = http://picnicnetwork.org/services/rest 22 22 photobooth/photobooth.py
r41 r43 72 72 def clearBucket(self): 73 73 print "clearing bucket" 74 self.bucket = [{"id": "1417", "name": "Andy Smit"}] 74 self.bucket = [] 75 #self.bucket = [{"id": "1417", "name": "Andy Smit"}] 75 76 76 77 def makeContacts(self): … … 90 91 #d.addCallback(_addContacts) 91 92 return d 92 return defer.succeed(dict(tags=self.bucket))93 93 94 94 def _tagsToPeople(self):
