Skip to content

Commit e03cabe

Browse files
committed
doc: mv STYLEGUIDE to root and minor additions (style)
[ci skip]
1 parent c27336e commit e03cabe

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed
File renamed without changes.

src/doc/database.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## General
44

5-
* The [mito](https://quickref.common-lisp.net/mito.html) (source: [mito](https://github.com/fukamachi/mito)) Common Lisp ORM is used.
5+
* The [Mito](https://github.com/fukamachi/mito) ([Quickref API](https://quickref.common-lisp.net/mito.html)) Common Lisp ORM is used.
66

77
## Code overview
88

@@ -13,4 +13,3 @@
1313
* defines procedures: `connect`, `ensure-tables-exist`, `bootstrap-base-roles`, `initialize-database`, `migrate-all`
1414

1515
* `authentication.lisp`, `models/{models,contacts,baskets}.lisp`: define the tables via `defclass` and mito's `mito:dao-table-mixin` metaclass. (NOTE: `mito:deftable` could be used to make definitions slightly shorter.)
16-

src/doc/permissions.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ See also:
1818
* `authentication.lisp`: defines the `user`, `role`, `user-role`,
1919
`role-copy` classes, and associated actions, in package
2020
`bookshops.models`):
21-
21+
2222
* `create-user`, `create-superuser`, `create-role`, `login` (just
2323
returns the user object if password is correct), `get-user`,
2424
`search-user` (find user by name or mail), `is-superuser`,
@@ -39,4 +39,3 @@ See also:
3939
* defines `render-template*` macro: used in `web/web.lisp` and `web/authentication.lisp`
4040

4141
* `../tests/test-authentication.lisp`: tests, obviously, are more needed?
42-

src/doc/web.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Web stack
22

3-
* [hunchentoot](https://github.com/edicl/hunchentoot) for web serving.
4-
* [easy-routes](https://github.com/mmontone/easy-routes) sits on top of hunchentoot.
5-
* [djula](https://quickref.common-lisp.net/djula.html), a Common Lisp port of the Python Django templating engine, is used for rendering.
3+
* [Hunchentoot](https://github.com/edicl/hunchentoot) for web serving.
4+
* [Easy-routes](https://github.com/mmontone/easy-routes) sits on top of hunchentoot.
5+
* [Djula](https://quickref.common-lisp.net/djula.html), a Common Lisp port of the Python Django templating engine, is used for rendering.
66

77
Also see [web/doc/README](../web/doc/README.md) about the currently implemented functionality.
88

src/web/doc/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ With "FEL à la demande" we can search by ISBN, and not do a free search.
2222
We can't get the cover nor the summary either, but we have additional information:
2323

2424
- the availability
25+
- the VAT
26+
- the CLIL theme
27+
- the provider(s) (by its code)
28+
- and more
2529

2630

2731
# Seeing one's stock

0 commit comments

Comments
 (0)