hooks.lua revision cb1e20df951447249fd1344ae04a790219a16be5
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesrequire 'string'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesrequire 'apache2'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesfunction translate_name(r)
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes if r.uri == "/translate-name" then
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes r.uri = "/find_me.txt"
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes return apache2.DECLINED
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes end
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes return apache2.DECLINED
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesend
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesfunction translate_name2(r)
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes if r.uri == "/translate-name2" then
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes r.uri = "/find_me.txt"
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes return apache2.DECLINED
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes end
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes return apache2.DECLINED
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesend
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesfunction fixups_test(r)
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes -- r:err("KABAZ")
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes if r.uri == "/test_fixupstest" then
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes -- r:err("KABIZ")
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes r.status = 201
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes return apache2.OK
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes end
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes -- r:err("ZIBAK")
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes return apache2.DECLINED
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesend