summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base/luasrc/xml.lua
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-base/luasrc/xml.lua')
-rw-r--r--modules/luci-base/luasrc/xml.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/modules/luci-base/luasrc/xml.lua b/modules/luci-base/luasrc/xml.lua
deleted file mode 100644
index 30b37210bd..0000000000
--- a/modules/luci-base/luasrc/xml.lua
+++ /dev/null
@@ -1,26 +0,0 @@
--- Copyright 2008 Steven Barth <steven@midlink.org>
--- Licensed to the public under the Apache License 2.0.
-
-local tparser = require "luci.template.parser"
-local string = require "string"
-
-local tostring = tostring
-
-module "luci.xml"
-
---
--- String and data manipulation routines
---
-
-function pcdata(value)
- return value and tparser.pcdata(tostring(value))
-end
-
-function striptags(value)
- return value and tparser.striptags(tostring(value))
-end
-
-
--- also register functions above in the central string class for convenience
-string.pcdata = pcdata
-string.striptags = striptags