mathematicalcoffee
|
32fe768ea7
|
minor cleanup, mainly console.log = function () {} --> spyOn(console, 'log')
|
2013-02-22 12:45:04 +10:00 |
|
mathematicalcoffee
|
7c497b0580
|
Merge branch 'master' into tests-util
Conflicts:
test/specs/jsdoc/util/templateHelper.js
|
2013-02-22 12:37:26 +10:00 |
|
Jeff Williams
|
dfe917a35a
|
generate human-readable filenames (#339)
|
2013-02-19 07:02:08 -08:00 |
|
Jeff Williams
|
e553dad941
|
add @emits as a synonym for @fires (#324)
|
2013-02-15 21:32:57 -08:00 |
|
mathematicalcoffee
|
8e9e06b3e4
|
filled out setTutorials and toTutorial links
|
2013-02-14 17:37:34 +10:00 |
|
mathematicalcoffee
|
096f1dd9d1
|
BUGFIX (tutorial/resolver, util/templateHelper): be careful when tutorial names are reserved JS keywords (e.g. 'constructor'))
|
2013-02-14 16:48:49 +10:00 |
|
mathematicalcoffee
|
338e129edc
|
test improvements: toEquals vs toBe, instanceof Array vs Array.isArray, .indexOf(X).not.toEqual(-1) vs .contains(X)
|
2013-02-14 15:44:33 +10:00 |
|
mathematicalcoffee
|
c37e801291
|
BUGFIX: linkto and toLink should use hasOwnProp to avoid errors from linking to reserved keywords, e.g. {@link constructor} or linkto('constructor')
|
2013-02-14 15:41:57 +10:00 |
|
mathematicalcoffee
|
c6314a107a
|
Merge branch 'master' of github.com:mathematicalcoffee/jsdoc into tests-util
|
2013-02-14 15:29:33 +10:00 |
|
Jeff Williams
|
d517c47ef5
|
Merge pull request #335 from mathematicalcoffee/tests-tutorial
added tests for Tutorial class.
|
2013-02-13 08:22:59 -08:00 |
|
mathematicalcoffee
|
bf4e356ee5
|
fixed typo in test, also Array.isArray instead of instanceof Array
|
2013-02-13 12:02:33 +10:00 |
|
mathematicalcoffee
|
7765d5bb9b
|
test improvements: expect(X instanceof Array) --> Array.isArray(X), some toEqual -> toBe, .indexOf(X).not.toEqual(-1) --> .toContain(X)
|
2013-02-13 11:55:48 +10:00 |
|
mathematicalcoffee
|
dad08be08a
|
FEATURE/FIX: jsdoc/util/templateHelper.getAncestorLinks: direct parents punctuation should be part of the link text. <a href="">Parent~</a> vs <a href="">Parent</a>~
|
2013-02-12 16:51:35 +10:00 |
|
mathematicalcoffee
|
9183a90aa5
|
jsdoc/util/templateHelper: added getSignatureReturns, registerLink, resolveAuthorLinks, getAncestorLinks tests
|
2013-02-12 16:40:48 +10:00 |
|
mathematicalcoffee
|
c3f04020ef
|
templateHelper.js: longnameToUrl, getSignatureParams, getSignatureType tests added
|
2013-02-12 13:20:16 +10:00 |
|
mathematicalcoffee
|
d93e85c096
|
added tests for getAttribs and scopeToPunc
|
2013-02-11 16:57:46 +10:00 |
|
mathematicalcoffee
|
0bc2d0b78f
|
added tests for jsdoc/util/doop
|
2013-02-11 15:16:19 +10:00 |
|
mathematicalcoffee
|
5b5e4a38e5
|
Made Tutorial#addChild and Tutorial#removeChild modify the child's parent (as well as the parent's children property)
|
2013-02-04 16:56:04 +10:00 |
|
mathematicalcoffee
|
2df5df418f
|
added tests for Tutorial class.
|
2013-02-04 16:06:41 +10:00 |
|
mathematicalcoffee
|
bc35934546
|
added tests for tutorial/resolver. A bit of renaming needed to ensure all test tutorials had unique names
|
2013-02-02 16:10:40 +10:00 |
|
Jeff Williams
|
5488737ec6
|
allow users to specify class attributes for generated links (#331)
|
2013-01-30 20:41:10 -08:00 |
|
Jeff Williams
|
87cd24728f
|
allow plugins to be installed outside of the JSDoc directory (#277)
|
2013-01-27 07:56:43 -08:00 |
|
Jeff Williams
|
9e5a47f195
|
add '@callback' tag (#260)
|
2013-01-23 22:56:21 -08:00 |
|
Jeff Williams
|
964f6e97e2
|
Merge branch 'master' of https://github.com/jsdoc3/jsdoc
|
2013-01-22 20:36:39 -08:00 |
|
Jeff Williams
|
5df4fd432d
|
update the default template to generate pretty-printed source files (#208)
enabled by default. to disable pretty-printed source files, add the
property templates.default.outputSourceFiles: false to your conf.json
file.
|
2013-01-22 20:34:41 -08:00 |
|
Jeff Williams
|
3fed4ebf32
|
Merge pull request #293 from mathematicalcoffee/bugfix-gfm-hardwrap
Bugfix: github-flavoured-markdown was ignoring the hardwrap configuration.
|
2013-01-17 18:12:23 -08:00 |
|
Jeff Williams
|
b814da3e8b
|
support -v option; provide more detailed version info (#303)
|
2013-01-17 18:06:31 -08:00 |
|
mathematicalcoffee
|
ac14eda668
|
added --version switch.
|
2013-01-18 10:16:41 +10:00 |
|
Jeff Williams
|
4a57a3718c
|
escape less-than sign in signature headings (#307)
|
2013-01-17 07:20:23 -08:00 |
|
mathematicalcoffee
|
24a3c6b448
|
filled out markdown tests for getParser to test asking for specific parsers
|
2012-12-28 23:55:39 +10:00 |
|
mathematicalcoffee
|
2fd96d2bb7
|
fix: env.conf.markdown.hardwrap is now respected.
|
2012-12-28 23:55:33 +10:00 |
|
Jeff Williams
|
d73570defc
|
make fs module consistent with Node.js (#211)
|
2012-12-26 19:03:05 -08:00 |
|
Jeff Williams
|
ce8565f6e0
|
minor corrections to test
|
2012-12-25 05:01:56 -08:00 |
|
Jeff Williams
|
e4236eaa42
|
remove most globals from jsdoc.js (#287)
for clarity, also forward-declared all variables in main()
|
2012-12-25 04:55:50 -08:00 |
|
Jeff Williams
|
6c9ef48324
|
clean up VM-specific code (#210)
|
2012-12-23 17:57:38 -08:00 |
|
Jeff Williams
|
d5877c1217
|
move rhino_modules/ to lib/
|
2012-12-23 14:09:37 -08:00 |
|
Jeff Williams
|
3932bc8f5f
|
remove common/util (no longer needed)
|
2012-12-23 10:24:49 -08:00 |
|
Jeff Williams
|
a17c90dfd2
|
deprecate env.dirname in favor of __dirname (#286)
plus some minor cleanup to address JSHint warnings
|
2012-12-23 09:45:11 -08:00 |
|
Jeff Williams
|
f79728ed62
|
Merge pull request #281 from mathematicalcoffee/template-event-list-in-index
Default template: Event list in right hand sidebar
|
2012-12-21 23:11:30 -08:00 |
|
Jeff Williams
|
eb4f65eae4
|
Merge pull request #280 from mathematicalcoffee/bugfix-nested-event-longnames
Nested events don't have longname set properly if order of tags is wrong.
|
2012-12-21 22:01:38 -08:00 |
|
Jeff Williams
|
07a30a5c2d
|
on windows, when the module name isn't documented, generate an appropriate name (#279)
also removes 'file:' from the beginning of generated names in overview
tags, which seems like an appropriate change.
|
2012-12-21 21:50:48 -08:00 |
|
mathematicalcoffee
|
9b785243b8
|
added tests for getMember
|
2012-12-11 11:29:38 +10:00 |
|
mathematicalcoffee
|
de7332a4f8
|
fixed longname resolution for nested events, added tests for it
|
2012-12-11 09:53:31 +10:00 |
|
Jeff Williams
|
8feb06eccb
|
migrate the tests that were created for #258 (which was reverted)
|
2012-12-04 23:16:50 -08:00 |
|
Jeff Williams
|
8bc7f7246a
|
Revert "support a raw array of doclets in addition to TaffyDB objects (#258)"
This reverts commit aad7b4896e503b66a29f46c02cc08f84e5535f42.
Conflicts:
test/specs/jsdoc/util/templateHelper.js
|
2012-12-04 21:53:17 -08:00 |
|
Jeff Williams
|
3227854077
|
cleanup
|
2012-12-02 18:25:19 -08:00 |
|
Jeff Williams
|
fd79b328e6
|
Merge pull request #271 from mathematicalcoffee/improve-link-tag
Improve link tag, jsdoc3/jsdoc#250
|
2012-12-02 18:18:25 -08:00 |
|
Jeff Williams
|
2de416da7d
|
fix broken hrefs in output files (#264)
|
2012-12-02 08:03:54 -08:00 |
|
mathematicalcoffee
|
8e67e866fd
|
moved configuration variables from conf.tags to conf.templates
|
2012-11-27 09:33:59 +10:00 |
|
mathematicalcoffee
|
266d6c7a1f
|
implemented {@linkplain}, {@linkcode}, monospaceLinks config (all links in monospace, false by default) and cleverLinks config (if true, links to symbols are monospace)
|
2012-11-26 21:27:59 +10:00 |
|