Changeset 32899
- Timestamp:
- Dec 8, 2011, 11:34:35 AM (15 years ago)
- Location:
- trunk/ippdor/src/ipp
- Files:
-
- 5 edited
-
CamManager.py (modified) (1 diff)
-
ChipManager.py (modified) (1 diff)
-
FakeManager.py (modified) (1 diff)
-
StackManager.py (modified) (1 diff)
-
WarpManager.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippdor/src/ipp/CamManager.py
r32880 r32899 20 20 label, 21 21 exposure_name, 22 recipient, 23 host='ippdb01.ifa.hawaii.edu', 24 user='ipp', 25 passwd='ipp'): 22 recipient): 26 23 """ 27 24 Creates a connector to the gpc1 database as well as local and 28 25 nfs directories (their name is cam) 29 26 """ 30 Gpc1Manager.__init__(self, recipient=recipient , host=host, user=user, passwd=passwd)27 Gpc1Manager.__init__(self, recipient=recipient) 31 28 self.label = label 32 29 self.exposure_name = exposure_name -
trunk/ippdor/src/ipp/ChipManager.py
r32885 r32899 20 20 label, 21 21 exposure_name, 22 recipient, 23 host='ippdb01.ifa.hawaii.edu', 24 user='ipp', 25 passwd='ipp'): 22 recipient): 26 23 """ 27 24 Creates a connector to the gpc1 database as well as local and 28 25 nfs directories (their name is chip) 29 26 """ 30 Gpc1Manager.__init__(self, recipient=recipient , host=host, user=user, passwd=passwd)27 Gpc1Manager.__init__(self, recipient=recipient) 31 28 self.label = label 32 29 self.exposure_name = exposure_name -
trunk/ippdor/src/ipp/FakeManager.py
r32891 r32899 18 18 label, 19 19 exposure_name, 20 recipient, 21 host='ippdb01.ifa.hawaii.edu', 22 user='ipp', 23 passwd='ipp'): 20 recipient): 24 21 """ 25 22 Creates a connector to the gpc1 database as well as local and 26 23 nfs directories (their name is fake) 27 24 """ 28 Gpc1Manager.__init__(self, recipient=recipient , host=host, user=user, passwd=passwd)25 Gpc1Manager.__init__(self, recipient=recipient) 29 26 self.label = label 30 27 self.exposure_name = exposure_name -
trunk/ippdor/src/ipp/StackManager.py
r32891 r32899 22 22 def __init__(self, 23 23 label, 24 recipient, 25 host = 'ippdb01.ifa.hawaii.edu', 26 user = 'ipp', 27 passwd = 'ipp'): 24 recipient): 28 25 """ 29 26 Creates a connector to the gpc1 database as well as local and 30 27 nfs directories (their name is stack) 31 28 """ 32 Gpc1Manager.__init__(self, 33 recipient=recipient, 34 host=host, 35 user=user, 36 passwd=passwd) 29 Gpc1Manager.__init__(self, recipient=recipient) 37 30 self.label = label 38 31 # Retrieve exposures names (even if they are known) and their warp_id -
trunk/ippdor/src/ipp/WarpManager.py
r32891 r32899 18 18 label, 19 19 exposure_name, 20 recipient, 21 host = 'ippdb01.ifa.hawaii.edu', 22 user = 'ipp', 23 passwd = 'ipp'): 20 recipient): 24 21 """ 25 22 Creates a connector to the gpc1 database as well as local and 26 23 nfs directories (their name is warp) 27 24 """ 28 Gpc1Manager.__init__(self, recipient=recipient , host=host, user=user, passwd=passwd)25 Gpc1Manager.__init__(self, recipient=recipient) 29 26 self.label = label 30 27 self.exposure_name = exposure_name
Note:
See TracChangeset
for help on using the changeset viewer.
