-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
122 lines (112 loc) · 11.7 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
╦ ╦╔═╗╔╗ ╔═╗╔═╗╔╗╔
║║║║╣ ╠╩╗║ ╦║╣ ║║║
╚╩╝╚═╝╚═╝╚═╝╚═╝╝╚╝ 0.0.1 [unreleased]
-------------------------------------
A collection of simple interpretators for various web stuff. They propose to help with generating code from lisp environment. This project was made straight for my learning and fatously time wasting purposes. I had to do something while I'm learning lisp. There is nothing yet to talk about but you can check my cldoc generated docs inside `docs/` directory. I don't know why people are so obsessed in uploading every deprecated/not working shit to github, but I will not stand out among them.
After all, we're all alike.
Dependencies
============
* lisp
Project Structure
=================
┌──────────────────────┐ ┌──────────────────────┐ ┌──────────────────────┐
│ web.asd │ │ doc/ │ │ suite.cl │
├──────────────────────┤ ├──────────────────────┤ ├──────────────────────┤
│ │ │ │ ┌──┤ │
│ System file needed ├──┐ │ Lot of documentation │ │ │ The source/core of │
│ for ASDF init │ │ │ generated by cldoc │ │ │ the test suite │
│ │ │ │ │ │ │ │
└──────────────────────┘ │ └──────────┬───────────┘ │ └──────────────────────┘
│ │ │
│ │ │
┌──────────────────────┐ │ ┌─────┘ │ ┌──────────────────────┐
│ LICENSE │ │ │ │ │ package.cl │
├──────────────────────┤ │ ┌─┴─┐ ┌───────┐ │ ├──────────────────────┤
│ ├──┼────┤ / ├────┤ test/ ├────┼──┤ │
│ This project won't │ │ └─┬─┘ └───────┘ │ │ Where test package │
│ get better if I │ │ │ │ │ initialization and │
│ license it │ │ │ │ │ it's exports lies │
│ │ │ │ │ │ │
└──────────────────────┘ │ │ │ └──────────────────────┘
│ │ │
│ └──────┐ │
┌──────────────────────┐ │ │ │ ┌──────────────────────┐
│ README │ │ │ │ │ tests.cl │
├──────────────────────┤ │ │ │ ├──────────────────────┤
│ │ │ │ └──┤ │
│ Project description ├──┘ │ │ The actual tests │
│ │ ┌──┴───┐ │ for this library │
└──────────────────────┘ │ lib/ │ │ │
└───┬──┘ └──────────────────────┘
│
│
┌────────────────────────────────────────┼──────────────────────────┐
│ │ │
│ │ │
│ ┌──────────────────────┐ ┌──────────┴───────────┐ ┌───────────┴──────────┐
│ │ package.cl │ │ css/ │ │ js/ │
│ ├──────────────────────┤ ├──────────────────────┤ ├──────────────────────┤
├──┤ │ ┌─┤ │ │ ├─────────┐
│ │ Where the project │ │ │ Collection of the │ │ Collection of the │ │
│ │ initialization and │ │ │ implemented css │ │ implemented js │ │
│ │ it's exports lies │ │ │ preprocessors │ │ implementations │ │
│ │ │ │ │ │ │ │ │
│ └──────────────────────┘ │ └──────────────────────┘ └──────────────────────┘ │
│ │ │
│ │ │
│ ┌──────────────────────┐ │ ┌───────────────────────┐ ┌──────────────────────┐ │
│ │ core.cl │ │ │ package.cl │ │ package.cl │ │
│ ├──────────────────────┤ │ ├───────────────────────┤ ├──────────────────────┤ │
├──┤ │ ├────┤ │ │ ├──┤
│ │ Where processor │ │ │ Where the css lib │ │ Where the js lib │ │
│ │ and it's methods │ │ │ initialization and │ │ initialization and │ │
│ │ was implemented │ │ │ it's exports lies │ │ it's exports lies │ │
│ │ │ │ │ │ │ │ │
│ └──────────────────────┘ │ └───────────────────────┘ └──────────────────────┘ │
│ │ │
│ │ │
│ ┌──────────────────────┐ │ ┌───────────────────────┐ ┌──────────────────────┐ │
│ │ macros.cl │ │ │ css.cl │ │ js.cl │ │
│ ├──────────────────────┤ │ ├───────────────────────┤ ├──────────────────────┤ │
└──┤ │ ├────┤ │ │ ├──┘
│ Collection of │ │ │ Where css processor │ │ Not yet implemented │
│ helping macros │ │ │ and it's methods │ │ │
│ and functions │ │ │ was implemented │ └──────────────────────┘
│ │ │ │ │
└──────────────────────┘ │ └───────────────────────┘
│
│
│ ┌───────────────────────┐
│ │ sass.cl │
│ ├───────────────────────┤
├────┤ │
│ │ Not yet implemented │
│ │ │
│ └───────────────────────┘
│
│
│ ┌───────────────────────┐
│ │ sass.cl │
│ ├───────────────────────┤
├────┤ │
│ │ Not yet implemented │
│ │ │
│ └───────────────────────┘
│
│
│ ┌───────────────────────┐
│ │ sass.cl │
│ ├───────────────────────┤
└────┤ │
│ Not yet implemented │
│ │
└───────────────────────┘
Todo
├────
│ ─ js processors
│ ─ css preprocessors
│ + html pretty printer
│ ─ tests
│ ─ concurrency
│ ─ docs
This is the worst readme I've ever made.