Exemplo n.º 1
0
def getPostNoCTEscape(boardName,filename):
	c = _getPostRaw(boardName,filename)
	return functions.GBK2UnicodeEscape(functions.filterCT(c))
Exemplo n.º 2
0
def getPostNoCT(boardName,filename):
	filename = filename[:14]
	c = _getPostRaw(boardName,filename)
	return functions.filterCT(c)
Exemplo n.º 3
0
def getPostNoCT(boardName,filename):
	c = getPost(boardName,filename)
	return functions.filterCT(c)