aboutsummaryrefslogtreecommitdiff
path: root/doc (follow)
Commit message (Collapse)AuthorAge
* Use MAKEINFO variableHugo Hörnquist2022-10-24
|
* Extend catch to allow pre-unwind handlers.Hugo Hörnquist2022-10-16
|
* Clarify documentation for group-by.Hugo Hörnquist2022-10-16
|
* Add procedure relative-to.Hugo Hörnquist2022-09-18
|
* Change JS formatters interface.Hugo Hörnquist2022-07-10
| | | | | | Now the application of formatters are centralized. It also allowed me to easily suround stuff in try-catch, since I otherwise had problems with formatters failing, and nothing showing up.
* Add path-absolute?Hugo Hörnquist2022-07-07
|
* Extend javascript formatters to also take VEvent.Hugo Hörnquist2022-07-07
|
* Remove case*.Hugo Hörnquist2022-07-07
| | | | It has its uses, but like others, its extra weight.
* Remove (add|remove)-day, and month[+-].Hugo Hörnquist2022-06-23
| | | | | Procedures where overly specific, and doing it manually was almost no more work.
* Normalize base64 errors.Hugo Hörnquist2022-06-23
|
* Remove ->str and ->quoted-string.Hugo Hörnquist2022-06-23
| | | | | | ->str as an alias of ->string is removed. ->string is however left. ->quoted-string was always weird, and was only used once.
* Document filename-extension and realpath.Hugo Hörnquist2022-06-23
|
* Document base64.Hugo Hörnquist2022-06-23
|
* Change to proper javascript privates.Hugo Hörnquist2022-06-16
|
* Merge html-validator.Hugo Hörnquist2022-06-13
|\ | | | | | | | | | | | | | | Adds an HTML validator which checks the soundness of our generated document, both before and after javascript is ran (thanks to selenium). This merge also fixes the initial problems, meaning that the HTML should validate as of this commit.
| * Fix spelling of aria-labelledby.Hugo Hörnquist2022-06-12
| |
* | Remove custom let*.Hugo Hörnquist2022-06-13
| | | | | | | | | | | | While it was nice, the most important part was the multi-valued let from srfi-71 (which is implemented in srfi-71)). The minor pattern matching structures could often be replaced with car+cdr, or a propper match.
* | Document timespec and zic.Hugo Hörnquist2022-06-13
|/
* Document web stuff.Hugo Hörnquist2022-06-11
|
* Document part of srfi-41 utils.Hugo Hörnquist2022-04-06
|
* Add basic documentation of error types.Hugo Hörnquist2022-03-28
|
* Add catch*Hugo Hörnquist2022-03-28
|
* Minor texi fixups.Hugo Hörnquist2022-03-28
|
* Add texinfo doc for (datetime).Hugo Hörnquist2022-03-28
|
* Add comment about why browserify.Hugo Hörnquist2022-03-28
|
* Introduce user-additions in frontend.Hugo Hörnquist2022-03-15
| | | | Along with an initial example of their use.
* Introduce concept of VEvent formatters in frontend.Hugo Hörnquist2022-03-15
|
* Add index entry for texinfo file.Hugo Hörnquist2022-03-15
|
* Bulid and install info files from main make.Hugo Hörnquist2022-03-15
|
* Add native UUID generator.Hugo Hörnquist2022-03-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While not necessary, since we barely use UUID:s, it's still WAY faster, and nice to not depend on the system providing `uuidgen'. For comparison, number of UUID:s generated by different settups in 1 second: 65.000 :: guile native 700 :: guile shell-out 3.500.000 :: c native 100.000 :: libuuid - guile bindings 650.000 :: libuuid Tests where run with either (call-with-time-limit 1 (lambda () (let loop () (uuid) (set! count (1+ count)) (loop))) (lambda _ (display count))) or volatile unsigned long long count = 0; sigaction(SIGALARM, ...); alarm(1); for (;;) { uuid(); count++; } (let ((count 0)) (call-with-time-limit 1 (lambda () (let loop () ((@ (hnh util) uuidgen)) (set! count (1+ count)) (loop))) (lambda _ (format #t "exec count = ~:d~%" count))))
* Fix get-property reference in manual.Hugo Hörnquist2022-03-01
|
* Document (calp util config).Hugo Hörnquist2022-02-22
|
* Documentation of (hnh util ...)Hugo Hörnquist2022-02-02
|
* Rewrote path-append to be portable.Hugo Hörnquist2022-02-01
|
* Remove define-many.Hugo Hörnquist2022-02-01
| | | | | It was only used in one module, and provided litle clarity over a simple set of define statementns.
* Move stuff from calp/util to hnh/util.Hugo Hörnquist2022-01-31
| | | | | This is the first (major) step in splitting the generally useful items into its own library.
* Cleanup modules.Hugo Hörnquist2021-12-22
| | | | | | Primarly this moves all vcompenent input and output code to clearly labeled modules, instead of being spread out. At the same time it also removes a handfull of unused procedures.
* Add texinfo documentation for calp util.Hugo Hörnquist2021-12-21
|
* Documentation updates for util.Hugo Hörnquist2021-12-20
|
* Add documenttation for javascript rewrite.Hugo Hörnquist2021-12-13
|
* Rework date-time input to be cleaner + work again.Hugo Hörnquist2021-05-17
|
* Clarify javascript parseDate.Hugo Hörnquist2021-02-01
|
* Document (vcompenent control).Hugo Hörnquist2021-01-13
|
* Wrote binders.texi.Hugo Hörnquist2021-01-13
|
* Add subsection "Components".Hugo Hörnquist2021-01-13
|
* Move javascript doc down one level.Hugo Hörnquist2021-01-13
|
* Doc work.Hugo Hörnquist2021-01-13
|
* Split javascript doc into multiple files.Hugo Hörnquist2021-01-06
|
* Start on propper documentation (of js so far).Hugo Hörnquist2021-01-05
|
* Notes on input-list doc.Hugo Hörnquist2020-11-23
|