├── .gitattributes ├── Makefile ├── README ├── README.md ├── docs ├── .gitignore ├── Makefile ├── README.md ├── docstrings.lisp ├── docstrings │ ├── fun-next-time.texinfo │ ├── fun-periods-add-duration.texinfo │ ├── fun-periods-add-time.texinfo │ ├── fun-periods-current-year.texinfo │ ├── fun-periods-day-of-week.texinfo │ ├── fun-periods-days-in-month.texinfo │ ├── fun-periods-duration.texinfo │ ├── fun-periods-falls-on-weekend-p.texinfo │ ├── fun-periods-find-smallest-resolution.texinfo │ ├── fun-periods-fixed-time.texinfo │ ├── fun-periods-floor-time.texinfo │ ├── fun-periods-leapp.texinfo │ ├── fun-periods-subtract-duration.texinfo │ ├── fun-periods-time-difference.texinfo │ ├── macro-do-times.texi │ ├── macro-map-times.texi │ └── macro-periods-with-timestamp-range.texinfo ├── make-tempfiles.sh ├── periods.texi └── static │ ├── dark.css │ ├── github.css │ ├── highlight-lisp.js │ ├── vestigial.css │ └── wookie.css ├── parser.lisp ├── periods-series.asd ├── periods-series.lisp ├── periods.asd ├── periods.lisp └── strptime.lisp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/.gitattributes -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | 2 | html: 3 | cd docs && make html 4 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docstrings.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings.lisp -------------------------------------------------------------------------------- /docs/docstrings/fun-next-time.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-next-time.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-add-duration.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-add-duration.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-add-time.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-add-time.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-current-year.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-current-year.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-day-of-week.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-day-of-week.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-days-in-month.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-days-in-month.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-duration.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-duration.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-falls-on-weekend-p.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-falls-on-weekend-p.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-find-smallest-resolution.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-find-smallest-resolution.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-fixed-time.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-fixed-time.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-floor-time.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-floor-time.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-leapp.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-leapp.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-subtract-duration.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-subtract-duration.texinfo -------------------------------------------------------------------------------- /docs/docstrings/fun-periods-time-difference.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/fun-periods-time-difference.texinfo -------------------------------------------------------------------------------- /docs/docstrings/macro-do-times.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/macro-do-times.texi -------------------------------------------------------------------------------- /docs/docstrings/macro-map-times.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/macro-map-times.texi -------------------------------------------------------------------------------- /docs/docstrings/macro-periods-with-timestamp-range.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/docstrings/macro-periods-with-timestamp-range.texinfo -------------------------------------------------------------------------------- /docs/make-tempfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/make-tempfiles.sh -------------------------------------------------------------------------------- /docs/periods.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/periods.texi -------------------------------------------------------------------------------- /docs/static/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/static/dark.css -------------------------------------------------------------------------------- /docs/static/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/static/github.css -------------------------------------------------------------------------------- /docs/static/highlight-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/static/highlight-lisp.js -------------------------------------------------------------------------------- /docs/static/vestigial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/static/vestigial.css -------------------------------------------------------------------------------- /docs/static/wookie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/docs/static/wookie.css -------------------------------------------------------------------------------- /parser.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/parser.lisp -------------------------------------------------------------------------------- /periods-series.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/periods-series.asd -------------------------------------------------------------------------------- /periods-series.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/periods-series.lisp -------------------------------------------------------------------------------- /periods.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/periods.asd -------------------------------------------------------------------------------- /periods.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/periods.lisp -------------------------------------------------------------------------------- /strptime.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwiegley/periods/HEAD/strptime.lisp --------------------------------------------------------------------------------