_modules.js 855 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*=====
  2. // Supplemental summaries for those hard-to-doc places your conventional doc parser can't reach.
  3. // Where possible, these summaries should appear inline in the code.
  4. //
  5. // this is "package level documentation"
  6. dojo.cldr = {
  7. // summary: transformation of relevant pieces of the Unicode.org Common Locale Data Repository
  8. // (see http://unicode.org/cldr) to JSON from the original XML with associated utility classes
  9. };
  10. dojo.data = {
  11. // summary: A uniform data access layer
  12. };
  13. dojo.dnd = {
  14. // summary: Drag and Drop resources
  15. };
  16. dojo.io = {
  17. // summary: Additional I/O transports (Ajax)
  18. };
  19. dojo.rpc = {
  20. // summary: Dojo remote-procedure-call resources
  21. };
  22. // "variables"
  23. dojo.baseUrl = {
  24. // summary: The root relative path to dojo.js (as a string)
  25. // example:
  26. // if(typeof dojo != "undefined"){ console.log(dojo.baseUrl); }
  27. };
  28. =====*/