This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_content_type(): | |
return 'application/octet-stream' | |
def parse_xml(key,xml): | |
""" Simple XML parser """ | |
key = key.lower() | |
for tag in xml.split("<"): | |
tokens = tag.split() | |
if tokens and tokens[0].lower().startswith(key): | |
return tag.split(">")[1].strip() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local tconcat = table.concat | |
local tinsert = table.insert | |
local srep = string.rep | |
function print_table(root) | |
local cache = { [root] = "." } | |
local function _dump(t,space,name) | |
local temp = {} | |
for k,v in pairs(t) do | |
local key = tostring(k) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void split(const string& str, const string& delim, vector<string>* pParts) | |
{ | |
size_t start, end = 0; | |
while (end < str.size()) { | |
start = end; | |
while (start < str.size() && (delim.find(str[start]) != string::npos)) | |
{ | |
start++; // skip initial whitespace | |
} |
NewerOlder