_modules.js 1.0 KB

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