Changeset 1780
- Timestamp:
- 08/12/08 12:56:18 (5 months ago)
- Files:
-
- cherokee/trunk/admin/ModuleMysql.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/admin/ModuleMysql.py
r1419 r1780 4 4 NOTE_HOST = 'MySQL server IP address.' 5 5 NOTE_PORT = 'Server port to connect to.' 6 NOTE_UNIX = 'Full path a Unix socket to communite with the data base.'6 NOTE_UNIX = 'Full path of Unix socket to communicate with the data base.' 7 7 NOTE_USER = 'User name for connecting to the database.' 8 8 NOTE_PASSWD = 'Password for connecting to the database.' … … 49 49 pre = '%s!%s' % (self._prefix, key) 50 50 self.Validate_NotEmpty (post, pre, '%s can not be empty'%(msg)) 51 51 52 52 # Apply TLS 53 53 self.ApplyChangesPrefix (self._prefix, ['use_md5_passwd'], post)