From 98e193d557622126b11b6b20674dba8592087f33 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Wed, 11 May 2016 05:58:08 -0700 Subject: [PATCH 1/9] gh-pages: import v1.0 API LDocs. * index.html, ldoc.css: New files. Signed-off-by: Gary V. Vaughan --- index.html | 1060 ++++++++++++++++++++++++++++++++++++++++++++++++++++ ldoc.css | 304 +++++++++++++++ 2 files changed, 1364 insertions(+) create mode 100644 index.html create mode 100644 ldoc.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..938df56 --- /dev/null +++ b/index.html @@ -0,0 +1,1060 @@ + + + + + std.normalize 1.0 Reference + + + + +
+ +
+ +
+
+
+ + +
+ + + + + + +
+ +

Module std.normalize

+

Normalize API differences between supported Lua implementations.

+

Respecting the values set in the std.debug_init module and the + _G._DEBUG variable, inject deterministic identically behaving + cross-implementation low-level functions into the callers environment.

+ +

Writing Lua libraries that target several Lua implementations can be a + frustrating exercise in working around lots of small differences in APIs + and semantics they share (or rename, or omit). normalize provides the + means to simply access deterministic implementations of those APIs that + have the the same semantics across all supported host Lua + implementations. Each function is as thin and fast an implementation as + is possible within that host Lua environment, evaluating to the Lua C + implmentation with no overhead where host semantics allow.

+ +

The core of this module is to transparently set the environment up with + a single API (as opposed to requiring caching functions from a module + table into module locals):

+ + +
+local _ENV = require "std.normalize" {
+  "package",
+  "std.prototype",
+  strict = "std.strict",
+}
+
+ +

It is not yet complete, and in contrast to the kepler project + lua-compat libraries, neither does it attempt to provide you with as + nearly compatible an API as is possible relative to some specific Lua + implementation - rather it provides a variation of the "lowest common + denominator" that can be implemented relatively efficiently in the + supported Lua implementations, all in pure Lua.

+ +

At the moment, only the functionality used by stdlib is implemented.

+ + +

Functions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
argerror (name, i[, extramsg[, level=1]])Raise a bad argument error.
getfenv (fn)Get a function or functor environment.
getmetamethod (x, n)Return named metamethod, if callable, otherwise nil.
ipairs (t)Iterate over elements of a sequence, until the first nil value.
len (x)Deterministic, functional version of core Lua # operator.
load (ld, source)Load a string or a function, just like Lua 5.2+.
math.tointeger (x)Convert to an integer and return if possible, otherwise nil.
math.type (x)Return "integer", "float" or nil according to argument type.
opairs (t)Ordered pairs iterator, respecting __pairs metamethod.
os.exit (status)Exit the program.
pack (...)Return a list of given arguments, with field n set to the length.
package.searchpath (name, path[, sep="."[, rep=`package.dirsep`]])Searches for a named file in a given path.
pairs (t)Like Lua pairs iterator, but respect __pairs even in Lua 5.1.
rawlen (x)Length of a string or table object without using any metamethod.
setfenv (fn, env)Set a function or functor environment.
str (x)Return a compact stringified representation of argument.
unpack (t[, i=1[, j=len(t)]])Either table.unpack in newer-, or unpack in older Lua implementations.
xpcall (f, errh, ...)Support arguments to a protected function call, even on Lua 5.1.
+

Tables

+ + + + + +
packagePackage module constants for package.config substrings.
+

Metamethods

+ + + + + + + + + +
__call (env[, level=1])Normalize caller's lexical environment.
__index (name)Lazy loading of normalize modules.
+ +
+
+ + +

Functions

+ +
+
+ + argerror (name, i[, extramsg[, level=1]]) +
+
+ Raise a bad argument error. + Equivalent to luaL_argerror in the Lua C API. This function does not + return. The level argument behaves just like the core error + function. + + +

Parameters:

+
    +
  • name + string + function to callout in error message +
  • +
  • i + int + argument number +
  • +
  • extramsg + string + additional text to append to message inside + parentheses + (optional) +
  • +
  • level + int + call stack level to blame for the error + (default 1) +
  • +
+ + + + +

Usage:

+
    +
    +   local function slurp (file)
    +     local h, err = input_handle (file)
    +     if h == nil then argerror ("std.io.slurp", 1, err, 2) end
    +     ...
    +
+ +
+
+ + getfenv (fn) +
+
+ Get a function or functor environment.

+ +

This version of getfenv works on all supported Lua versions, and + knows how to unwrap functors (table's with a function valued + __call metamethod). + + +

Parameters:

+
    +
  • fn + function or int + stack level, C or Lua function or functor + to act on +
  • +
+ +

Returns:

+
    + + table + the execution environment of fn +
+ + + +

Usage:

+
    +
    callers_environment = getfenv (1)
    +
+ +
+
+ + getmetamethod (x, n) +
+
+ Return named metamethod, if callable, otherwise nil. + + +

Parameters:

+
    +
  • x + item to act on +
  • +
  • n + string + name of metamethod to look up +
  • +
+ +

Returns:

+
    + + function or nil + metamethod function, or nil if no + metamethod +
+ + + +

Usage:

+
    +
    normalize = getmetamethod (require "std.normalize", "__call")
    +
+ +
+
+ + ipairs (t) +
+
+ Iterate over elements of a sequence, until the first nil value.

+ +

Returns successive key-value pairs with integer keys starting at 1, + up to the last non-nil value. Unlike Lua 5.2+, any __ipairs + metamethod is ignored! Unlike Lua 5.1, any __index + metamethod is respected. + + +

Parameters:

+
    +
  • t + table + table to iterate on +
  • +
+ +

Returns:

+
    +
  1. + function + iterator function
  2. +
  3. + table + t the table being iterated over
  4. +
  5. + int + the previous iteration index
  6. +
+ + + +

Usage:

+
    +
    +   -- length of sequence
    +   args = {"first", "second", nil, "last"}
    +   --> 1=first
    +   --> 2=second
    +   for i, v in ipairs (args) do
    +     print (string.format ("%d=%s", i, v))
    +   end
    +
+ +
+
+ + len (x) +
+
+ Deterministic, functional version of core Lua # operator.

+ +

Respects __len metamethod (like Lua 5.2+), or else if there is + a __tostring metamethod return the length of the string it + returns. Otherwise, always return one less than the lowest + integer index with a nil value in x, where the # operator + implementation might return the size of the array part of a table. + + +

Parameters:

+
    +
  • x + item to act on +
  • +
+ +

Returns:

+
    + + int + the length of x +
+ + + +

Usage:

+
    +
    +   x = {1, 2, 3, nil, 5}
    +   --> 5	3
    +   print (#x, len (x))
    +
+ +
+
+ + load (ld, source) +
+
+ Load a string or a function, just like Lua 5.2+. + + +

Parameters:

+
    +
  • ld + string or function + chunk to load +
  • +
  • source + string + name of the source of ld +
  • +
+ +

Returns:

+
    + + function + a Lua function to execute ld in global scope. +
+ + + +

Usage:

+
    +
    assert (load 'print "woo"') ()
    +
+ +
+
+ + math.tointeger (x) +
+
+ Convert to an integer and return if possible, otherwise nil. + + +

Parameters:

+
    +
  • x + object to act on +
  • +
+ +

Returns:

+
    + + integer + x converted to an integer if possible +
+

Or

+
    + + nil otherwise +
+ + + + +
+
+ + math.type (x) +
+
+ Return "integer", "float" or nil according to argument type.

+ +

To ensure the same behaviour on all host Lua implementations, + this function returns "float" for integer-equivalent floating + values, even on Lua 5.3. + + +

Parameters:

+
    +
  • x + object to act on +
  • +
+ +

Returns:

+
    + + string + "integer", if x is a whole number +
+

Or

+
    + + string + "float", for other numbers +
+

Or

+
    + + nil otherwise +
+ + + + +
+
+ + opairs (t) +
+
+ Ordered pairs iterator, respecting __pairs metamethod.

+ +

Although __pairs will be used to collect results, opairs + always returns them in the same order as str. + + +

Parameters:

+
    +
  • t + table + table to act on +
  • +
+ +

Returns:

+
    +
  1. + function + iterator function
  2. +
  3. + table + t, the table being iterated over
  4. +
  5. + the previous iteration key
  6. +
+ + + +

Usage:

+
    +
    +   --> 1        b
    +   --> 2        a
    +   --> foo      c
    +   for k, v in opairs {"b", foo = "c", "a"} do print (k, v) end
    +
+ +
+
+ + os.exit (status) +
+
+ Exit the program. + + +

Parameters:

+
    +
  • status + bool or number[opt=true] + report back to parent process +
  • +
+ + + + +

Usage:

+
    +
    exit (len (records.processed) > 0)
    +
+ +
+
+ + pack (...) +
+
+ Return a list of given arguments, with field n set to the length. + + +

Parameters:

+
    +
  • ... + tuple to act on +
  • +
+ +

Returns:

+
    + + table + packed list of ... values, with field n set to + number of tuple elements (including any explicit nil elements) +
+ + +

See also:

+ + +

Usage:

+
    +
    +   --> {1, 2, "ax", n = 3}
    +   pack (("ax1"):find "(%D+)")
    +
+ +
+
+ + package.searchpath (name, path[, sep="."[, rep=`package.dirsep`]]) +
+
+ Searches for a named file in a given path.

+ +

For each package.pathsep delimited template in the given path, + search for an readable file made by first substituting for sep + with package.dirsep, and then replacing any + package.pathmark with the result. The first such file, if any + is returned. + + +

Parameters:

+
    +
  • name + string + name of search file +
  • +
  • path + string + package.pathsep delimited list of full path templates +
  • +
  • sep + string + name component separator + (default ".") +
  • +
  • rep + string + sep replacement in template + (default `package.dirsep`) +
  • +
+ +

Returns:

+
    + + string + first template substitution that names a file + that can be opened in read mode +
+

Or

+
    +
  1. + nil
  2. +
  3. + string + error message listing all failed paths
  4. +
+ + + + +
+
+ + pairs (t) +
+
+ Like Lua pairs iterator, but respect __pairs even in Lua 5.1. + + +

Parameters:

+
    +
  • t + table + table to act on +
  • +
+ +

Returns:

+
    +
  1. + function + iterator function
  2. +
  3. + table + t, the table being iterated over
  4. +
  5. + the previous iteration key
  6. +
+ + + +

Usage:

+
    +
    for k, v in pairs {"a", b = "c", foo = 42} do process (k, v) end
    +
+ +
+
+ + rawlen (x) +
+
+ Length of a string or table object without using any metamethod. + + +

Parameters:

+ + +

Returns:

+
    + + int + raw length of x +
+ + + +

Usage:

+
    +
    +   --> 0
    +   rawlen (setmetatable ({}, {__len = function () return 42}))
    +
+ +
+
+ + setfenv (fn, env) +
+
+ Set a function or functor environment.

+ +

This version of setfenv works on all supported Lua versions, and + knows how to unwrap functors. + + +

Parameters:

+
    +
  • fn + function or int + stack level, C or Lua function or functor + to act on +
  • +
  • env + table + new execution environment for fn +
  • +
+ +

Returns:

+
    + + function + function acted upon +
+ + + +

Usage:

+
    +
    function clearenv (fn) return setfenv (fn, {}) end
    +
+ +
+
+ + str (x) +
+
+ Return a compact stringified representation of argument. + + +

Parameters:

+
    +
  • x + item to act on +
  • +
+ +

Returns:

+
    + + string + compact string representing x +
+ + + +

Usage:

+
    +
    +   -- {baz,5,foo=bar}
    +   print (str {foo="bar","baz", 5})
    +
+ +
+
+ + unpack (t[, i=1[, j=len(t)]]) +
+
+ Either table.unpack in newer-, or unpack in older Lua implementations. + + +

Parameters:

+
    +
  • t + table + table to act on +
  • +
  • i + int + first index to unpack + (default 1) +
  • +
  • j + int + last index to unpack + (default len(t)) +
  • +
+ +

Returns:

+
    + + ... values of numeric indices of t +
+ + +

See also:

+ + +

Usage:

+
    +
    return unpack (results_table)
    +
+ +
+
+ + xpcall (f, errh, ...) +
+
+ Support arguments to a protected function call, even on Lua 5.1. + + +

Parameters:

+
    +
  • f + function + protect this function call +
  • +
  • errh + function + error object handler callback if f raises + an error +
  • +
  • ... + arguments to pass to f +
  • +
+ +

Returns:

+
    + + ... all return values from f follow +
+

Or

+
    +
  1. + boolean + false when f (...) raised an error
  2. +
  3. + string + error message
  4. +
+

Or

+
    + + boolean + true when f (...) succeeded +
+ + + +

Usage:

+
    +
    +   -- Use errh to get a backtrack after curses exits abnormally
    +   xpcall (main, errh, arg, opt)
    +
+ +
+
+

Tables

+ +
+
+ + package +
+
+ Package module constants for package.config substrings. + + +

Fields:

+
    +
  • dirsep + string + directory separator in path elements +
  • +
  • execdir + string + replaced by the executable's directory in a path +
  • +
  • igmark + string + ignore everything before this when building + luaopen_ function name +
  • +
  • pathmark + string + mark substitution points in a path template +
  • +
  • pathsep + string + element separator in a path template +
  • +
+ + + + + +
+
+

Metamethods

+ +
+
+ + __call (env[, level=1]) +
+
+ +

Normalize caller's lexical environment.

+ +

Using "std.strict" when available and selected, otherwise a (Lua 5.1 + compatible) function to set the given environment.

+ +

With an empty table argument, the core (not-table) normalize + functions are loaded into the callers environment. For consistent + behaviour between supported host Lua implementations, the result + must always be assigned back to _ENV. Additional core modules + must be named to be loaded at all (i.e. no "debug" table unless it + is explicitly listed in the argument table).

+ +

Additionally, external modules are loaded using require, with . + separators in the module name translated to nested tables in the + module environment. For example "std.prototype" in the usage below + is equivalent to:

+ +
 local std = { prototype = require "std.prototype" }
+
+ +

And finally, you can assign a loaded module to a specific symbol + with key=value syntax. For example "std.strict" in the usage + below is equivalent to:

+ +
 local strict = require "std.strict"
+
+ + + +

Parameters:

+
    +
  • env + table + environment table +
  • +
  • level + int + stack level for setfenv, 1 means set + caller's environment + (default 1) +
  • +
+ +

Returns:

+
    + + table + env with this module's functions merge id. Assign + back to _ENV +
+ + + +

Usage:

+
    +
    +   local _ENV = require "std.normalize" {
    +     "string",
    +     "std.prototype",
    +     strict = "std.strict",
    +   }
    +
+ +
+
+ + __index (name) +
+
+ Lazy loading of normalize modules. + Don't load everything on initial startup, wait until first attempt + to access a submodule, and then load it on demand. + + +

Parameters:

+
    +
  • name + string + submodule name +
  • +
+ +

Returns:

+
    + + table or nil + the submodule that was loaded to satisfy the missing + name, otherwise nil if nothing was found +
+ + + +

Usage:

+
    +
    local version = require "std.normalize".version
    +
+ +
+
+ + +
+
+
+generated by LDoc 1.4.3 +Last updated 2016-05-07 20:57:55 +
+
+ + diff --git a/ldoc.css b/ldoc.css new file mode 100644 index 0000000..ce77ac8 --- /dev/null +++ b/ldoc.css @@ -0,0 +1,304 @@ +/* BEGIN RESET + +Copyright (c) 2010, Yahoo! Inc. All rights reserved. +Code licensed under the BSD License: +http://developer.yahoo.com/yui/license.html +version: 2.8.2r1 +*/ +html { + color: #000; + background: #FFF; +} +body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td { + margin: 0; + padding: 0; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +fieldset,img { + border: 0; +} +address,caption,cite,code,dfn,em,strong,th,var,optgroup { + font-style: inherit; + font-weight: inherit; +} +del,ins { + text-decoration: none; +} +li { + list-style: disc; + margin-left: 20px; +} +caption,th { + text-align: left; +} +h1,h2,h3,h4,h5,h6 { + font-size: 100%; + font-weight: bold; +} +q:before,q:after { + content: ''; +} +abbr,acronym { + border: 0; + font-variant: normal; +} +sup { + vertical-align: baseline; +} +sub { + vertical-align: baseline; +} +legend { + color: #000; +} +input,button,textarea,select,optgroup,option { + font-family: inherit; + font-size: inherit; + font-style: inherit; + font-weight: inherit; +} +input,button,textarea,select {*font-size:100%; +} +/* END RESET */ + +body { + margin-left: 1em; + margin-right: 1em; + font-family: arial, helvetica, geneva, sans-serif; + background-color: #ffffff; margin: 0px; +} + +code, tt { font-family: monospace; font-size: 1.1em; } +span.parameter { font-family:monospace; } +span.parameter:after { content:":"; } +span.types:before { content:"("; } +span.types:after { content:")"; } +.type { font-weight: bold; font-style:italic } + +body, p, td, th { font-size: .95em; line-height: 1.2em;} + +p, ul { margin: 10px 0 0 0px;} + +strong { font-weight: bold;} + +em { font-style: italic;} + +h1 { + font-size: 1.5em; + margin: 0 0 20px 0; +} +h2, h3, h4 { margin: 15px 0 10px 0; } +h2 { font-size: 1.25em; } +h3 { font-size: 1.15em; } +h4 { font-size: 1.06em; } + +a:link { font-weight: bold; color: #004080; text-decoration: none; } +a:visited { font-weight: bold; color: #006699; text-decoration: none; } +a:link:hover { text-decoration: underline; } + +hr { + color:#cccccc; + background: #00007f; + height: 1px; +} + +blockquote { margin-left: 3em; } + +ul { list-style-type: disc; } + +p.name { + font-family: "Andale Mono", monospace; + padding-top: 1em; +} + +pre { + background-color: rgb(245, 245, 245); + border: 1px solid #C0C0C0; /* silver */ + padding: 10px; + margin: 10px 0 10px 0; + overflow: auto; + font-family: "Andale Mono", monospace; +} + +pre.example { + font-size: .85em; +} + +table.index { border: 1px #00007f; } +table.index td { text-align: left; vertical-align: top; } + +#container { + margin-left: 1em; + margin-right: 1em; + background-color: #f0f0f0; +} + +#product { + text-align: center; + border-bottom: 1px solid #cccccc; + background-color: #ffffff; +} + +#product big { + font-size: 2em; +} + +#main { + background-color: #f0f0f0; + border-left: 2px solid #cccccc; +} + +#navigation { + float: left; + width: 14em; + vertical-align: top; + background-color: #f0f0f0; + overflow: visible; +} + +#navigation h2 { + background-color:#e7e7e7; + font-size:1.1em; + color:#000000; + text-align: left; + padding:0.2em; + border-top:1px solid #dddddd; + border-bottom:1px solid #dddddd; +} + +#navigation ul +{ + font-size:1em; + list-style-type: none; + margin: 1px 1px 10px 1px; +} + +#navigation li { + text-indent: -1em; + display: block; + margin: 3px 0px 0px 22px; +} + +#navigation li li a { + margin: 0px 3px 0px -1em; +} + +#content { + margin-left: 14em; + padding: 1em; + width: 700px; + border-left: 2px solid #cccccc; + border-right: 2px solid #cccccc; + background-color: #ffffff; +} + +#about { + clear: both; + padding: 5px; + border-top: 2px solid #cccccc; + background-color: #ffffff; +} + +@media print { + body { + font: 12pt "Times New Roman", "TimeNR", Times, serif; + } + a { font-weight: bold; color: #004080; text-decoration: underline; } + + #main { + background-color: #ffffff; + border-left: 0px; + } + + #container { + margin-left: 2%; + margin-right: 2%; + background-color: #ffffff; + } + + #content { + padding: 1em; + background-color: #ffffff; + } + + #navigation { + display: none; + } + pre.example { + font-family: "Andale Mono", monospace; + font-size: 10pt; + page-break-inside: avoid; + } +} + +table.module_list { + border-width: 1px; + border-style: solid; + border-color: #cccccc; + border-collapse: collapse; +} +table.module_list td { + border-width: 1px; + padding: 3px; + border-style: solid; + border-color: #cccccc; +} +table.module_list td.name { background-color: #f0f0f0; min-width: 200px; } +table.module_list td.summary { width: 100%; } + + +table.function_list { + border-width: 1px; + border-style: solid; + border-color: #cccccc; + border-collapse: collapse; +} +table.function_list td { + border-width: 1px; + padding: 3px; + border-style: solid; + border-color: #cccccc; +} +table.function_list td.name { background-color: #f0f0f0; min-width: 200px; } +table.function_list td.summary { width: 100%; } + +ul.nowrap { + overflow:auto; + white-space:nowrap; +} + +dl.table dt, dl.function dt {border-top: 1px solid #ccc; padding-top: 1em;} +dl.table dd, dl.function dd {padding-bottom: 1em; margin: 10px 0 0 20px;} +dl.table h3, dl.function h3 {font-size: .95em;} + +/* stop sublists from having initial vertical space */ +ul ul { margin-top: 0px; } +ol ul { margin-top: 0px; } +ol ol { margin-top: 0px; } +ul ol { margin-top: 0px; } + +/* make the target distinct; helps when we're navigating to a function */ +a:target + * { + background-color: #FF9; +} + + +/* styles for prettification of source */ +pre .comment { color: #558817; } +pre .constant { color: #a8660d; } +pre .escape { color: #844631; } +pre .keyword { color: #aa5050; font-weight: bold; } +pre .library { color: #0e7c6b; } +pre .marker { color: #512b1e; background: #fedc56; font-weight: bold; } +pre .string { color: #8080ff; } +pre .number { color: #f8660d; } +pre .operator { color: #2239a8; font-weight: bold; } +pre .preprocessor, pre .prepro { color: #a33243; } +pre .global { color: #800080; } +pre .user-keyword { color: #800080; } +pre .prompt { color: #558817; } +pre .url { color: #272fc2; text-decoration: underline; } + From 610ffb33e214ed3ccbaa131d5468b656a61c6361 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Sat, 28 May 2016 16:28:10 -0700 Subject: [PATCH 2/9] gh-pages: v1.0.1 LDoc updates. Signed-off-by: Gary V. Vaughan --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 938df56..233fe0a 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - std.normalize 1.0 Reference + std.normalize 1.0.1 Reference @@ -24,7 +24,7 @@
generated by LDoc 1.4.3 -Last updated 2016-05-07 20:57:55 +Last updated 2016-05-28 16:24:36
From 8a6437297cd18de0d4ae9f8cbf3b71d37dcdacc3 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Fri, 7 Jul 2017 19:31:16 -0700 Subject: [PATCH 3/9] gh-pages: v1.0.2 LDoc updates. Signed-off-by: Gary V. Vaughan --- index.html | 316 +++++++++++++++++++++++++++++------------------------ ldoc.css | 3 +- 2 files changed, 174 insertions(+), 145 deletions(-) diff --git a/index.html b/index.html index 233fe0a..e57a2e8 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - std.normalize 1.0.1 Reference + std.normalize 1.0.2 Reference @@ -24,7 +24,7 @@
-generated by LDoc 1.4.3 -Last updated 2016-05-28 16:24:36 +generated by LDoc 1.4.6 +Last updated 2017-07-07 19:19:35
diff --git a/ldoc.css b/ldoc.css index ce77ac8..52c4ad2 100644 --- a/ldoc.css +++ b/ldoc.css @@ -28,7 +28,6 @@ del,ins { text-decoration: none; } li { - list-style: disc; margin-left: 20px; } caption,th { @@ -88,7 +87,7 @@ em { font-style: italic;} h1 { font-size: 1.5em; - margin: 0 0 20px 0; + margin: 20px 0 20px 0; } h2, h3, h4 { margin: 15px 0 10px 0; } h2 { font-size: 1.25em; } From 0fa26fdc5b6c8f1169d01ab66795b12740ad61cd Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Sat, 2 Sep 2017 20:27:56 -0700 Subject: [PATCH 4/9] gh-pages: v1.0.3 LDoc updates. Signed-off-by: Gary V. Vaughan --- index.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index e57a2e8..13103ab 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - std.normalize 1.0.2 Reference + std.normalize 1.0.3 Reference @@ -24,7 +24,7 @@
generated by LDoc 1.4.6 -Last updated 2017-07-07 19:19:35 +Last updated 2017-09-02 20:23:41
From df0a1a7d188b0479733d1034a44e34bb72a731c9 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Mon, 11 Sep 2017 09:25:37 -0700 Subject: [PATCH 5/9] gh-pages: v1.0.4 LDoc updates. Signed-off-by: Gary V. Vaughan --- index.html | 350 ++++++++++++++++++++++++++--------------------------- 1 file changed, 175 insertions(+), 175 deletions(-) diff --git a/index.html b/index.html index 13103ab..167406e 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - std.normalize 1.0.3 Reference + std.normalize 1.0.4 Reference @@ -24,7 +24,7 @@
generated by LDoc 1.4.6 -Last updated 2017-09-11 09:32:14 +Last updated 2017-10-16 23:07:23
From 912c92e5c01b9fcc2ee0e12737f2ae6dd50af997 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Sun, 26 Nov 2017 14:26:14 -0800 Subject: [PATCH 7/9] gh-pages: v2.0.1 LDoc updates. Signed-off-by: Gary V. Vaughan --- index.html | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index 32b11e6..78a45bd 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - std.normalize 2.0 Reference + std.normalize 2.0.1 Reference @@ -24,7 +24,7 @@
generated by LDoc 1.4.6 -Last updated 2017-10-16 23:07:23 +Last updated 2017-11-26 14:25:26
From f2cda4282c15ff87f01d149195a964a39f099419 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Sat, 17 Mar 2018 19:00:00 -0700 Subject: [PATCH 8/9] gh-pages: v2.0.2 LDoc updates. Signed-off-by: Gary V. Vaughan --- index.html | 108 ++++++++++++++++++++++++++--------------------------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/index.html b/index.html index 78a45bd..c347d65 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - std.normalize 2.0.1 Reference + std.normalize 2.0.2 Reference @@ -24,7 +24,7 @@
generated by LDoc 1.4.6 -Last updated 2017-11-26 14:25:26 +Last updated 2018-03-17 18:44:16
From 53dd9d75faf566c80547e61a63cd77c20b0f81ab Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Wed, 15 Apr 2020 17:37:22 -0700 Subject: [PATCH 9/9] gh-pages: v2.0.3 LDoc updates. Signed-off-by: Gary V. Vaughan --- index.html | 108 ++++++++++++++++++++++++++--------------------------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/index.html b/index.html index c347d65..47564da 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - std.normalize 2.0.2 Reference + std.normalize 2.0.3 Reference @@ -24,7 +24,7 @@
generated by LDoc 1.4.6 -Last updated 2018-03-17 18:44:16 +Last updated 2020-04-15 17:22:39