IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 32899


Ignore:
Timestamp:
Dec 8, 2011, 11:34:35 AM (15 years ago)
Author:
Serge CHASTEL
Message:

Localization

Location:
trunk/ippdor/src/ipp
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdor/src/ipp/CamManager.py

    r32880 r32899  
    2020                 label,
    2121                 exposure_name,
    22                  recipient,
    23                  host='ippdb01.ifa.hawaii.edu',
    24                  user='ipp',
    25                  passwd='ipp'):
     22                 recipient):
    2623        """
    2724        Creates a connector to the gpc1 database as well as local and
    2825        nfs directories (their name is cam)
    2926        """
    30         Gpc1Manager.__init__(self, recipient=recipient, host=host, user=user, passwd=passwd)
     27        Gpc1Manager.__init__(self, recipient=recipient)
    3128        self.label = label
    3229        self.exposure_name = exposure_name
  • trunk/ippdor/src/ipp/ChipManager.py

    r32885 r32899  
    2020                 label,
    2121                 exposure_name,
    22                  recipient,
    23                  host='ippdb01.ifa.hawaii.edu',
    24                  user='ipp',
    25                  passwd='ipp'):
     22                 recipient):
    2623        """
    2724        Creates a connector to the gpc1 database as well as local and
    2825        nfs directories (their name is chip)
    2926        """
    30         Gpc1Manager.__init__(self, recipient=recipient, host=host, user=user, passwd=passwd)
     27        Gpc1Manager.__init__(self, recipient=recipient)
    3128        self.label = label
    3229        self.exposure_name = exposure_name
  • trunk/ippdor/src/ipp/FakeManager.py

    r32891 r32899  
    1818                 label,
    1919                 exposure_name,
    20                  recipient,
    21                  host='ippdb01.ifa.hawaii.edu',
    22                  user='ipp',
    23                  passwd='ipp'):
     20                 recipient):
    2421        """
    2522        Creates a connector to the gpc1 database as well as local and
    2623        nfs directories (their name is fake)
    2724        """
    28         Gpc1Manager.__init__(self, recipient=recipient, host=host, user=user, passwd=passwd)
     25        Gpc1Manager.__init__(self, recipient=recipient)
    2926        self.label = label
    3027        self.exposure_name = exposure_name
  • trunk/ippdor/src/ipp/StackManager.py

    r32891 r32899  
    2222    def __init__(self,
    2323                 label,
    24                  recipient,
    25                  host = 'ippdb01.ifa.hawaii.edu',
    26                  user = 'ipp',
    27                  passwd = 'ipp'):
     24                 recipient):
    2825        """
    2926        Creates a connector to the gpc1 database as well as local and
    3027        nfs directories (their name is stack)
    3128        """
    32         Gpc1Manager.__init__(self,
    33                              recipient=recipient,
    34                              host=host,
    35                              user=user,
    36                              passwd=passwd)
     29        Gpc1Manager.__init__(self, recipient=recipient)
    3730        self.label = label
    3831        # Retrieve exposures names (even if they are known) and their warp_id
  • trunk/ippdor/src/ipp/WarpManager.py

    r32891 r32899  
    1818                 label,
    1919                 exposure_name,
    20                  recipient,
    21                  host = 'ippdb01.ifa.hawaii.edu',
    22                  user = 'ipp',
    23                  passwd = 'ipp'):
     20                 recipient):
    2421        """
    2522        Creates a connector to the gpc1 database as well as local and
    2623        nfs directories (their name is warp)
    2724        """
    28         Gpc1Manager.__init__(self, recipient=recipient, host=host, user=user, passwd=passwd)
     25        Gpc1Manager.__init__(self, recipient=recipient)
    2926        self.label = label
    3027        self.exposure_name = exposure_name
Note: See TracChangeset for help on using the changeset viewer.