- Jan 19, 2012
-
-
Nick Poulden authored
-
- Jan 18, 2012
-
-
Rene Saarsoo authored
Replace ASCII duck with video in README.
-
- Jan 17, 2012
-
-
Rene Saarsoo authored
Previously this code: /** Some docs */ doSomething(1, 2, 3); would have resulted in property "doSomething" being detected. Now it detects no name, which results in warning of missing name, and that's what we want.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
This way when we switch to full JavaScript parser, the tests won't fail because of syntax errors.
-
- Jan 16, 2012
-
-
Rene Saarsoo authored
This speeds up source writing at least 2x on multi-processor system.
-
- Jan 12, 2012
-
-
Nick Poulden authored
-
Nick Poulden authored
-
- Jan 11, 2012
-
-
Nick Poulden authored
-
- Jan 04, 2012
-
- Dec 28, 2011
-
-
Rene Saarsoo authored
A strange case where IE9 behaves worse than IE7 and 8.
-
- Dec 27, 2011
-
-
Rene Saarsoo authored
Implementing this immediately discovered several bugs in ExtJS docs.
-
Rene Saarsoo authored
Previously the orphans got added multiple times to their class, resulting in bogus ordering of them.
-
- Dec 21, 2011
-
-
Rene Saarsoo authored
Previously all @cfgs beginning with uppercase letter were treated as classes, because a class definition can also contain @cfg tags. Now we only treat it as class definition when there is more than one @cfg inside one doc-comment.
-
- Dec 20, 2011
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Created Docs.ClassRegistry for doing the mapping.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
All keywords are now treated as different token types, so we don't confuse function and "function".
-
- Dec 16, 2011
-
-
Rene Saarsoo authored
For each member we now show a list of all the members that it overrides (if there are any). No more needs one wonder if the method happens to override a method in some parent class or mixin - the information is right the in the docs. This implementation mostly works. However I have to refactor it around a bit to ensure it doesn't misbehave when parallel-processing is used.
-
Rene Saarsoo authored
The error-handling code had gone out-of sync with the rest. The Index controller had been renamed, and so error handling failed. Now there is a separate Failure controller. In addition to Classes and Guides, error messages are now also shown when loading of videos or examples fails.
-
- Dec 15, 2011
-
-
Rene Saarsoo authored
-
- Dec 14, 2011
-
-
Rene Saarsoo authored
Let the parsed function literal name default to empty string, not nil.
-
- Dec 13, 2011
-
-
Rene Saarsoo authored
The 4 shared properties are now created in one single method.
-
Rene Saarsoo authored
This way the private accessors will be able to hide public accessors in parent.
-
Rene Saarsoo authored
The rendering of meta-tags is now performed inside ClassFormatter like the rendering of most other stuff. The result of rendering is stored to :html_meta field (to keep the plain :meta field for purposes of export). The performance gains of doing it all once are very small, but we should now get less duplicate error messages for bad @links, which is nice. Additionally all Exporter classes can now get rid of opts parameter, which was only needed for instanciating DocFormatter, but that's now done inside ClassFormatter.
-
Rene Saarsoo authored
Previously ClassFormatter removed all information about private members, resulting in info about private members getting lost and so @private in subclass not hiding public member in parent class. Fixed by leaving all private members intact. Additionally minor enhancement for test, so it actually tests if private member in subclass hides public member of parent. This part of the code worked fine before too, just the test was not really testing for it.
-
Nick Poulden authored
-
- Dec 09, 2011
-
-
Rene Saarsoo authored
The feature-detection of XDomainRequest didn't work out well as in IE7-mode of IE8/9 the XDomainRequest object exists, but ExtJS itself checks for IE >=8 when doing CORS request, which fails in IE7-mode - the whole thing resulting in crash.
-
- Dec 08, 2011
-
-
Rene Saarsoo authored
static and protected attributes are now looked from meta.
-
- Dec 07, 2011
-
-
Rene Saarsoo authored
Somehow the 3.2.0 version already existed in rubygems.org but was dysfunctional.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Matching aliases are now separately listed in search results, just like alternateClassNames - they also use the same icon. Each search data record now defines its own sorting order using the "sort" field. The filterMembers method in turn groups the results by full-, beginning- and middle-matches. This significantly simplifies the search algorithm - no more is there a special handling of aliases.
-
Rene Saarsoo authored
Changed search records structure around a bit: - "type" field is now either "class" or "member". - new "icon" field defines the icon to show. - "id" is defined for each record and identified the search result. For example the id of alternateClassName record is the name of the original class. - simplified the code a bit in the filterMembers method that performs the actual searching. For alternateClassNames we show the subclass icon. Should be good enough for now.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
A better style than checking for types of values. More Rubyish too.
-
Nick Poulden authored
-