- Mar 19, 2012
-
-
Rene Saarsoo authored
Because the font-set is only registered for sencha.com and localhost, running the docs app at any ther domain will get 403 error when attempting to load fonts from typekit.com. We should probably completely move this code to sencha-specific config files.
-
- Mar 17, 2012
-
-
Rene Saarsoo authored
-
- Mar 16, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Those files haven't existed for ages.
-
- Mar 15, 2012
-
-
Rene Saarsoo authored
Forgot to update version number printed by --version.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Because {Type=} defined an optional item, it was taken granted that just {Type} would define a required item. Not so fast - while params default to being required, configs default to being optional.
-
- Mar 14, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Makes it easier to find the close-all-tabs feature.
-
Rene Saarsoo authored
Handling the internals of tabs inside the view and leaving the handling of higher-level events to the controller.
-
Rene Saarsoo authored
It makes sense for the tabs component to adjust itself when it's resized, rather than having a controller tell it.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Monitor the clicks on menu items inside the view. This way the whole interaction with tab-menu is entirely encapsulated inside view.
-
Rene Saarsoo authored
Instead access the menu from this.overflowButton.menu.
-
Rene Saarsoo authored
Replace it with classname.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Use class name instead.
-
- Mar 13, 2012
-
-
Rene Saarsoo authored
In supporting Google Closure Compiler syntax. For the record types to even reach type parser the DocParser needed to be modified to parse the {...} type blocks by taking account the need to balance the braces.
-
Rene Saarsoo authored
It completely puzzles me why Google Closure Compiler requires varargs type name in function argument context to be wrapped inside square braces, while in normal context no square brackets are needed. But here we go...
-
Rene Saarsoo authored
And better structured tests.
-
Rene Saarsoo authored
Also now only allow optionality suffix "=" be used inside function type arguments.
-
Rene Saarsoo authored
Needed for function type parameter types.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
In supporting Google Closure compiler syntax.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
- string - number - boolean - null - undefined When "string" is used as type and String class exists, a link to String class is created. Otherwise just text "string" is shown.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
In supporting Google Closure Compiler syntax.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
To support Google Closure Compiler syntax for optional parameters. @param {Type=} name This is detected at DocParser not in TypeParser like the rest of the type definition syntax - all other way of defining optional parameters are also implemented in DocParser, so it keeps things simpler to have it all in there at one spot.
-
Rene Saarsoo authored
In supporting Google Closure Compiler syntax.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
In supporting Google Closure Compiler syntax.
-
Rene Saarsoo authored
The syntax used by Google Closure Compiler.
-
- Mar 12, 2012
-
-
Rene Saarsoo authored
Supported by Google Closure Compiler.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
It was deprecated in 3.2.1 in December 2011. Should be OK to remove now.
-
Rene Saarsoo authored
We can now have input files in any encoding as long as --encoding option specifies it correctly. When encoding differs from UTF-8, we convert the text to UTF-8 internally and always output in UTF-8 also. This option only works in Ruby 1.9. Under 1.8 it has no effect.
-
Rene Saarsoo authored
In Ruby 1.9 reading files through builtin IO class attempted to auto-detect the encoding which sometimes failed. Created JsDuck::IO to be used instead of it, which forces all files to be treated as UTF-8. It also behaves well in Ruby 1.8 - just doing nothing with the input and causing no errors.
-