-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add doc to top level dojox/ files, in general telling people to load …
…the individual modules inside the package directories instead, refs #13101 !strict. git-svn-id: http://svn.dojotoolkit.org/src/dojox/trunk@29268 560b804f-0ae3-0310-86f3-f6aa0a117693
- Loading branch information
Showing
25 changed files
with
188 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
define(["./analytics/_base"], function(analytics) { | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/analytics modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
return analytics; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
define(["./collections/_base"], function(collections){ | ||
return collections; | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/collections modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ return collections; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
define(["./color/_base"], function(dxcolor){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/color modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
return dxcolor; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
//dojo.provide("dojox.drawing");dojo.require("dojox.drawing._base"); | ||
define(['./drawing/_base'],function(){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/drawing modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
define(["./dtl/_base"], function(dxdtl){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/dtl modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
return dxdtl; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
dojo.provide("dojox.flash"); | ||
dojo.require("dojox.flash._base"); | ||
define(['./flash/_base'],function(){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/flash modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
define(["./fx/_base"], function(DojoxFx){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/fx modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
return DojoxFx; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
// AMD-ID "dojox/gfx3d" | ||
define(["dojo/_base/kernel","dojox","./gfx3d/matrix","./gfx3d/_base","./gfx3d/object"], function(dojo,dojox) { | ||
dojo.getObject("gfx3d", true, dojox); | ||
dojo.getObject("gfx3d", true, dojox); | ||
|
||
return dojox.gfx3d; | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/gfx3d modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
|
||
return dojox.gfx3d; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
define(["./highlight/_base"], function(highlight){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/highlight modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
return highlight; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
define(["./html/_base"], function (html) { | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/html modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
return html; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
define(["./image/_base"], function(image){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/image modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
return image; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
dojo.provide("dojox.jsonPath"); | ||
dojo.require("dojox.jsonPath.query"); | ||
define(['./jsonPath/query'],function(){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/jsonPath modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
define(["dojo/_base/kernel"], function(dojo) { | ||
// module: | ||
// dojox/main | ||
// summary: | ||
// The dojox package main module; dojox package is somewhat unusual in that the main module currently just provides an empty object. | ||
|
||
/*===== | ||
return { | ||
// summary: | ||
// The dojox package main module; dojox package is somewhat unusual in that the main module currently just provides an empty object. | ||
// Apps should require modules from the dojox packages directly, rather than loading this module. | ||
}; | ||
=====*/ | ||
|
||
return dojo.dojox; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
// AMD-ID "dojox/math" | ||
define(["dojo", "dojox", "dojox/math/_base"], function(dojo, dojox, math) { | ||
dojo.getObject("math", true, dojox); | ||
dojo.getObject("math", true, dojox); | ||
|
||
return dojox.math; | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/math modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
|
||
return dojox.math; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
define(["./mvc/_base"], function(dxmvc){ | ||
// module: | ||
// dojox/mvc | ||
// summary: | ||
// Adds elements of MVC support to Dojo. | ||
|
||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/mvc modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
|
||
return dxmvc; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
dojo.provide("dojox.sql"); | ||
dojo.require("dojox.sql._base"); | ||
define(['./sql/_base'],function(){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/sql modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
dojo.provide("dojox.storage"); | ||
dojo.require("dojox.storage._common"); | ||
define(['./storage/_common'],function(){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/storage modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
define(["./timing/_base"], function(timing){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/timing modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
return timing; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
define(['dojox/uuid/_base'], function(uuid){ | ||
|
||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/uuid modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
return uuid; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
define(["./validate/_base"], function(validate){ | ||
|
||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/validate modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
|
||
return validate; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
dojo.provide("dojox.wire"); | ||
dojo.require("dojox.wire._base"); | ||
|
||
define(['./wire/_base'],function(){ | ||
/*===== | ||
return { | ||
// summary: | ||
// Deprecated. Should require dojox/wire modules directly rather than trying to access them through | ||
// this module. | ||
}; | ||
=====*/ | ||
}); |