webmcp
view framework/env/encode/file_path.lua @ 3:795b764629ca
Version 1.0.3
Important bugfix related to internal forwards (Bug was introduced by the restriction of views with underscore prefix in Version 1.0.2)
Important bugfix related to internal forwards (Bug was introduced by the restriction of views with underscore prefix in Version 1.0.2)
author | jbe |
---|---|
date | Thu Dec 10 12:00:00 2009 +0100 (2009-12-10) |
parents | 9fdfb27f8e67 |
children | 3d43a5cf17c1 |
line source
1 --[[--
2 path = -- string containing a (file) path
3 encode.encode_file_path(
4 base_path,
5 element1, -- next part of the path
6 element2, -- next part of the path
7 ...
8 )
10 This function does the same as encode.concat_file_path, except that all arguments but the first are encoded using the encode.file_path_element function.
12 --]]--
14 function encode.file_path(base, ...) -- base argument is not encoded
15 local raw_elements = {...}
16 local encoded_elements = {}
17 for i = 1, #raw_elements do
18 encoded_elements[i] = encode.file_path_element(raw_elements[i])
19 end
20 return encode.concat_file_path(base, unpack(encoded_elements))
21 end