NewsFeaturesDownloadsDevelopmentSupportAbout Us

Package chklocale


Classes

class  mySys

Variables

tuple params = mySys( sys.argv )
tuple keysOnly = params.isArg( "--keys" )
tuple localeFile = open( sys.argv[1], 'r' )
string pattern = "\$messages\[\"(.+)\"] *= \"(.*)\n"
tuple regExp = re.compile( pattern, re.IGNORECASE|re.MULTILINE|re.DOTALL )
list result = []
tuple grp = regExp.search( line )
tuple item = grp.group(1)

Variable Documentation

tuple chklocale.grp = regExp.search( line ) [static]

Definition at line 45 of file chklocale.py.

tuple chklocale.item = grp.group(1) [static]

tuple chklocale.keysOnly = params.isArg( "--keys" ) [static]

Definition at line 30 of file chklocale.py.

tuple chklocale.localeFile = open( sys.argv[1], 'r' ) [static]

Definition at line 33 of file chklocale.py.

tuple chklocale.params = mySys( sys.argv ) [static]

string chklocale.pattern = "\$messages\[\"(.+)\"] *= \"(.*)\n" [static]

tuple chklocale.regExp = re.compile( pattern, re.IGNORECASE|re.MULTILINE|re.DOTALL ) [static]

Definition at line 38 of file chklocale.py.

list chklocale.result = [] [static]