- Nov 25, 2011
-
-
Rene Saarsoo authored
Also convert paths to canonical format.
-
- Nov 24, 2011
-
-
Rene Saarsoo authored
-
- Nov 23, 2011
-
-
Rene Saarsoo authored
List of attributes to show in signature is now kept in Class and used by both front- and backend.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
New warning type 'no_doc' - shown when class or member has no documentation at all.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
One can now use {@link #static-foo} to link to static member #foo in case there's instance member with the same name. This wasn't previously possible.
-
Rene Saarsoo authored
Instead of adding two different sets of keys to one hash, build the hash just by member name. Look member name up from hash and filter by type if needed. Doing things in this more correct way brought up some bugs in other places. Like {@link #foo-bar} being detected as link to member foo of type bar, which happened to work. Now we only detect correct types. Similarly the @inheritdoc happened to work because string interpolation handles both symbols and strings equally well. Now it needs to be converted to symbol explicitly. All-in-all we now have more correct implementation.
-
Rene Saarsoo authored
Also turn off -link_ambiguous for Touch2.
-
Rene Saarsoo authored
Like when {@link #foo} refers to either #method-foo or #event-foo. Also add new warning type: link_ambiguous.
-
Rene Saarsoo authored
-link now only hides warnings about links to non-existant items. -link_private hides warnings about links to private members.
-
- Nov 21, 2011
-
-
Rene Saarsoo authored
-
- Nov 19, 2011
-
-
Rene Saarsoo authored
Default values make sense for properties too. Previously I thought that they don't but people are already using them, so here we go...
-
Rene Saarsoo authored
It simply makes sense to not require adding @method when it's obvious without it that it's a comment for method.
-
- Nov 18, 2011
-
-
Rene Saarsoo authored
All the attributes are now in this hash. That makes possible further refactoring of the whole attributes listing creation in method signatures.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
The required attribute is detected in a different way than other things inside attributes hash, but it fits there nicely.
-
Rene Saarsoo authored
Refactor those tags along with @protected and @template into new property 'attributes'.
-
- Nov 17, 2011
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Remove bunch of duplicated code.
-
- Nov 16, 2011
-
-
Rene Saarsoo authored
Improves performance a bit, as otherwise browser will keep animating the invisible gif on the background.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Previously only word-characters were permitted, resulting in alias being ignored.
-
Rene Saarsoo authored
In IE9 when file is opened from local filesystem the localStorage property of window exists, but is undefined.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
I guess meta-tags feature is now quite as solid as most of the other stuff, while stats is a really new thing.
-
- Nov 15, 2011
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
This should fix loading of meta-tags in Ruby 1.9 when path is relative to current dir. But we should do it anyway, as it's done with all other paths to also support Windows.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Just for completeness.
-
Rene Saarsoo authored
Previously the whole contents of ~/template or ~/template-min was copied over, which included files like README.md and build-js.html that were only needed for development. Now it's all a lot cleaner.
-
Rene Saarsoo authored
Previously the following: /** @cfg */ timeout: 30 * 1000, would have been detected having default value of 30. Now such values are just ignored.
-
Rene Saarsoo authored
Instead of generating the background images with `secha slice` just disabled them and defaulting to background color. Looks much better now. It should also work for IE, but haven't tested.
-
- Nov 14, 2011
-
-
Rene Saarsoo authored
As all exports are in JSON format, it doesn't make sense to have one export type called "json". The name "full" describes it better. Renamed JsonExporter to FullExporter accordingly.
-
Rene Saarsoo authored
The Exporter performed two different tasks, which are now better divided between two classes. JsonPExporter is now AppExporter - the purpose of it is to generate data for docs app, the actual format is decided by ClassWriter.
-
Rene Saarsoo authored
Exporters now only deal with generation the data, ClassWriter decides whether to write it into .json or .js files, or to STDOUT.
-
Rene Saarsoo authored
This is similar to json export format, with the difference that only class and method names are included to exported JSON.
-
Rene Saarsoo authored
Added two classes: - JsonExporter - exports single class to JSON format file. - JsonPExporter - exports single class to JsonP format file in compact form.
-
Rene Saarsoo authored
Additionally one can now use: --output - This will produce output to stdout. Old --json is now --export=json Old --stdout is now --export=json --output=-
-