56 lines
No EOL
1.2 KiB
Python
56 lines
No EOL
1.2 KiB
Python
import string
|
|
|
|
def header():
|
|
"""return html header"""
|
|
data = """
|
|
<html><HEAD>
|
|
|
|
</HEAD><body>
|
|
"""
|
|
return data
|
|
|
|
def footer():
|
|
"""return html footer"""
|
|
data = """
|
|
</body></html>
|
|
"""
|
|
return data
|
|
|
|
# create a unique session id
|
|
def generate_session_id():
|
|
import md5, time, base64, random, string
|
|
m = md5.new()
|
|
m.update(str(time.time()))
|
|
m.update(str(random.random()))
|
|
return string.replace(base64.encodestring(m.digest())[:-3], '/', '$')
|
|
|
|
|
|
def check_for_int(data):
|
|
"""
|
|
gets a string. if string is an integer: return integer.
|
|
else return given string.
|
|
"""
|
|
#check if value is int
|
|
num = [n for n in data if n.isdigit()]
|
|
tmp = "".join(num)
|
|
if tmp == data:
|
|
ret = int(data)
|
|
else:
|
|
ret = data
|
|
return ret
|
|
|
|
def string_to_tuple(str):
|
|
"""
|
|
gets a string. If the string contains '(',')' and ',', then return
|
|
a tuple processed from the string. If the partial string is empty, then
|
|
-1 will be returned for that value.
|
|
"""
|
|
if (str[0] =='(') and (str[-1] ==')') and (string.find(str,',')):
|
|
splitlist = string.split(str[1:-1],",")
|
|
returnlist = []
|
|
for item in splitlist:
|
|
try:
|
|
returnlist.append(int(item))
|
|
except: #empty string
|
|
returnlist.append(-1)
|
|
return tuple(returnlist) |