public
Description: JavaScript inline documentation parser
Homepage: http://pdoc.org
Clone URL: git://github.com/tobie/pdoc.git
pdoc / CHANGELOG
100644 96 lines (48 sloc) 3.11 kb
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
* Prefer Maruku over RDiscount. (tobie)
 
* Fix that autolinking wouldn't recognize numbers in namespaces/method names.
 
* Improve support for "methodized" methods (methods available on both the instance and the class). Introduce `generic_signature` attribute for Documentation::InstanceMethod that shows the alternative signature for the static version of the method. (savetheclocktower)
 
* Add `utilities`, `namespaces`, and `klasses` attributes to `Documentation::Section` nodes. (savetheclocktower)
 
* Add `short_description` attribute for documentation nodes. Presents only the first paragraph of a description. (savetheclocktower)
 
* Give Documentation::Doc a name for breadcrumb navigation. (savetheclocktower)
 
* Prefer RDiscount over BlueCloth. (savetheclocktower).
 
* Fix issue where `auto_link` would throw an exception for certain types of objects. (samleb)
 
* Make "?" a valid type in argument descriptions. (savetheclocktower)
 
* Implemented nested arguments in EBNF syntax. [#8 state:resolved] (samleb)
 
* Allow lowercased namespaces. [#2 state:resolved] (tobie)
 
* Remove trailing whitespaces. Outdent descriptions. [#1 state:resolved, #3 state:resolved] (tobie)
 
* Switch argument type selector from `,` to `|`. (tobie)
 
* Log info to Terminal. (tobie)
 
* Better error message formatting (nitpicking, really!). (tobie)
 
* Fix missing descriptions. (tobie)
 
* Add nice error messages. (tobie)
 
* Move Parser tests into their own folder. (tobie)
 
* Extract BlueCloth extension to its own file. Add tests. (tobie)
 
* Remove code block related rule. (tobie)
 
* Be more lenient with whitespace. (tobie)
 
* Remove PDoc::Generators::Html::DescriptionParser and extend BlueCloth instead. (tobie)
 
* Allow using the `@` prefix in argument descriptions. (tobie)
 
* add PDoc::Generators::Html::Template (tobie)
 
* Refactor PDoc::Generators::Html::Page (tobie)
 
* Refactor PDoc::Generators::Html::Helpers (tobie)
 
* Rename rakefile as Rakefile. (savetheclocktower)
 
* Add PDoc::Runner. (tobie)
 
* Make PDoc::Generators::Html::Description use BlueCloth. (tobie)
 
* Make PDoc::Generators::Html::Website#render accept an output directory as argument. (tobie)
 
* Remove usage of class_eval to enable easier documentation by rdoc. Start documenting the code. (tobie)
 
* Add Treetop compiler rake task. (tobie)
 
* Change includes and fires syntax (remove semi-colon). (sam, tobie)
 
* Run all unit tests with rake test. (tobie)
 
* Rename p_doc as pdoc. (tobie)
 
* Remove reference to Prototype from @title instance variable. (tobie)
 
* Update TextMate bundle to reflect latest syntax changes. (tobie)
 
* Modify syntax for specifying language type in description code blocks. (tobie)
 
* Update README. (tobie)
 
* Make syntax for events more consistent. (tobie)
 
* Allow notation for `n` arguments in EBNF (args...). (tobie)
 
* Add support for events (syntax subject to change) (tobie)
 
* More consistency (tobie)
 
* Finalize support for argument description (tobie)
 
* Add initial support for argument description (tobie)
 
* Add TextMate bundle (tobie)
 
* Minute syntax change (tobie)
 
* Add to public svn (tobie)