Skip to content

Commit

Permalink
Merge pull request #1 from IntelligentCampus/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
stephen-frank authored and GitHub Enterprise committed May 17, 2018
2 parents ace7069 + 4f08ec1 commit 31d642a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.fan
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Build : BuildPod
{
podName = "csvExt"
summary = "CSV Data Import Functions"
version = Version("0.9.0")
version = Version("0.9.1")
meta = [
"ext.name": "csv",
"ext.icon24": "fan://frescoRes/img/iconMissing24.png",
Expand All @@ -26,7 +26,7 @@ class Build : BuildPod
"license.name": "Commercial",
"skyspark.docExt": "true",
]
depends = ["sys 1.0", "axon 3.0", "ioExt 3.0", "utilityExt 1.0"]
depends = ["sys 1.0", "axon 3.0", "ioExt 3.0", "utilityExt 1.1+"]
resDirs = [`locale/`,
`lib/`]
index =
Expand Down
3 changes: 1 addition & 2 deletions lib/funcs.trio
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ doc:
Coordinates ( '"coord"' data type) are processed using the `coord` function. The 'sep' option
specifies the seperator between the two arguments of 'coord'. Similarly, tag lists ( '"taglist"'
data type) are processed as dicts using Axon, with 'sep' interpreted as separating the tags in
the dict. If needed in tag values, 'sep' can be protected by enclosing in quotes or escaping
the dict. If needed in tag values, 'sep' can be protected by enclosing in quotes or escaped
with '\'; see `delimConvert` for more information.

Notes
Expand Down Expand Up @@ -1192,7 +1192,6 @@ src:

// Parsing functions
parseTags: (s) => delimConvert(s,opts->sep,",").stringToDict
parseRef2: (r) => if (r.startsWith("@")) parseRef(r[1..-1]) else parseRef(r)
parseCoord: (c) => eval("coord(" + delimConvert(c,opts->sep,",") + ")")

////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 31d642a

Please sign in to comment.