Ticket #2773 (closed defect: fixed)
[patch][ccla] docparser parses .xd.js files
| Reported by: | guest | Owned by: | pottedmeat |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.1 |
| Component: | Documentation | Version: | 0.4 |
| Severity: | normal | Keywords: | docparser |
| Cc: | dante |
Description
Currently the API docparser parses all files ending with 'js'. If a cross-domain build has been run previously then there are .xd.js files everywhere which get parsed as well.
patch:
function getFileList() in docscripts/inc/Dojo.php (~line 53):
- if (substr($file, -2)=='js') {
+ if ((substr($file, -3)=='.js') and (substr($file, -6)!='.xd.js')) {
Change History
Note: See
TracTickets for help on using
tickets.