Skip to content

Commit 26ab182

Browse files
committed
add link to LICENSE in source code
1 parent 029dee8 commit 26ab182

10 files changed

Lines changed: 40 additions & 8 deletions

Functions/jsonAv.fmfn

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
* DEPENDENCIES:
1212
* z_jsonEncodeSupport
1313
*
14+
* LICENSE:
15+
* See the LICENSE.md file for license rights and limitations (MIT):
16+
* https://raw.githubusercontent.com/dansmith65/FileMaker-JSON-Functions/master/LICENSE.md
17+
*
1418
* HISTORY:
1519
* CREATED on 2015-MAR-31 by Daniel Smith dansmith65@gmail.com
1620
*

Functions/jsonGet.fmfn

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
*
1717
* NOTES:
1818
*
19+
* LICENSE:
20+
* See the LICENSE.md file for license rights and limitations (MIT):
21+
* https://raw.githubusercontent.com/dansmith65/FileMaker-JSON-Functions/master/LICENSE.md
22+
*
1923
* HISTORY:
2024
* CREATED on 2015-MAR-31 by Daniel Smith dansmith65@gmail.com
2125
*

Functions/jsonGetKeyList.fmfn

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
*
1515
* NOTES:
1616
*
17+
* LICENSE:
18+
* See the LICENSE.md file for license rights and limitations (MIT):
19+
* https://raw.githubusercontent.com/dansmith65/FileMaker-JSON-Functions/master/LICENSE.md
20+
*
1721
* HISTORY:
1822
* CREATED on 2015-MAR-31 by Daniel Smith dansmith65@gmail.com
1923
*

Functions/jsonModify.fmfn

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
* - if the index is higher than array size + 1, should it pad the array
3737
* with null values like javascript does?
3838
*
39+
* LICENSE:
40+
* See the LICENSE.md file for license rights and limitations (MIT):
41+
* https://raw.githubusercontent.com/dansmith65/FileMaker-JSON-Functions/master/LICENSE.md
42+
*
3943
* HISTORY:
4044
* CREATED on 2015-MAR-31 by Daniel Smith dansmith65@gmail.com
4145
*

Functions/jsonOp.fmfn

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
* DEPENDENCIES:
1313
* none
1414
*
15+
* LICENSE:
16+
* See the LICENSE.md file for license rights and limitations (MIT):
17+
* https://raw.githubusercontent.com/dansmith65/FileMaker-JSON-Functions/master/LICENSE.md
18+
*
1519
* HISTORY:
1620
* CREATED on 2015-MAR-31 by Daniel Smith dansmith65@gmail.com
1721
*

Functions/z_jsonEncodeSupport.fmfn

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
* DEPENDENCIES:
1616
* none
1717
*
18+
* LICENSE:
19+
* See the LICENSE.md file for license rights and limitations (MIT):
20+
* https://raw.githubusercontent.com/dansmith65/FileMaker-JSON-Functions/master/LICENSE.md
21+
*
1822
* HISTORY:
1923
* CREATED on 2015-APR-12 by Daniel Smith dansmith65@gmail.com
2024
*

Functions/z_jsonParseSupport1.fmfn

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
* DEPENDENCIES:
2727
* none
2828
*
29+
* LICENSE:
30+
* See the LICENSE.md file for license rights and limitations (MIT):
31+
* https://raw.githubusercontent.com/dansmith65/FileMaker-JSON-Functions/master/LICENSE.md
32+
*
2933
* HISTORY:
3034
* CREATED on 2015-APR-10 by Daniel Smith dansmith65@gmail.com
3135
*

Functions/z_jsonParseSupport2.fmfn

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,13 @@
1616
* 212 ParseArrayGetKeyList
1717
* 220 GetKeyListFromCache
1818
* 221 GetIndexListFromCache
19-
* req = requested data (if any)
20-
* private = private data, likely sent to recursive calls of a function
21-
* res = response
22-
* step = current state of a recursive function
2319
*
24-
* DEPENDENCIES:
25-
* none
20+
* LICENSE:
21+
* See the LICENSE.md file for license rights and limitations (MIT):
22+
* https://raw.githubusercontent.com/dansmith65/FileMaker-JSON-Functions/master/LICENSE.md
2623
*
2724
* HISTORY:
2825
* CREATED on 2015-APR-10 by Daniel Smith dansmith65@gmail.com
29-
*
3026
* =====================================
3127
*/
3228

Functions/z_jsonParseSupport3.fmfn

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
* DEPENDENCIES:
2323
* none
2424
*
25+
* LICENSE:
26+
* See the LICENSE.md file for license rights and limitations (MIT):
27+
* https://raw.githubusercontent.com/dansmith65/FileMaker-JSON-Functions/master/LICENSE.md
28+
*
2529
* HISTORY:
2630
* CREATED on 2015-APR-10 by Daniel Smith dansmith65@gmail.com
2731
*

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,8 @@ I'd like to thank [geist interactive](https://www.geistinteractive.com/) for spo
1818

1919
This project is currently in a very early stage of development, so you should account for the potential for major changes to be made to it. That being said; my goal is to match the functionality of the [BaseElements](http://www.goya.com.au/baseelements/plugin) backed set of custom functions with the same name available at [geistinteractive/JSONCustomFunctions](https://github.com/geistinteractive/JSONCustomFunctions).
2020

21-
These functions are drastically slower than the BaseElements backed functions. My goal is to implement caching to improve the performance of these functions, but they will never be as fast as the BaseElements backed functions.
21+
These functions are drastically slower than the BaseElements backed functions. My goal is to implement caching to improve the performance of these functions, but they will never be as fast as the BaseElements backed functions.
22+
23+
## License
24+
25+
See the [LICENSE](LICENSE.md) file for license rights and limitations (MIT).

0 commit comments

Comments
 (0)