source: Dev/trunk/src/client/qed-client/stddeps.js @ 477

Last change on this file since 477 was 468, checked in by hendrikvanantwerpen, 12 years ago

Improved authentication

  • Authentication cannot be cancelled, removing a lot of weird race conditions.
  • We offer a request provider that has automatic retry in case of authentication failures.
  • Reduced dependency on LoginDialog? by having it act independent based on events. Other modules can just depend on 'session'.
File size: 1.1 KB
Line 
1define([
2    // dijit & rft widgets used declaratively in templates
3    'dijit/Dialog',
4    'dijit/DropDownMenu',
5    'dijit/InlineEditBox',
6    'dijit/MenuBar',
7    'dijit/MenuBarItem',
8    'dijit/PopupMenuBarItem',
9    'dijit/TitlePane',
10    'dijit/layout/AccordionContainer',
11    'dijit/layout/BorderContainer',
12    'dijit/layout/ContentPane',
13    'dijit/layout/TabContainer',
14    'dijit/form/Button',
15    'dijit/form/ComboBox',
16    'dijit/form/DateTextBox',
17    'dijit/form/Form',
18    'dijit/form/NumberSpinner',
19    'dijit/form/Select',
20    'dijit/form/SimpleTextarea',
21    'dijit/form/Textarea',
22    'dijit/form/TextBox',
23    'dijit/form/TimeTextBox',
24
25    'dojox/grid/DataGrid',
26
27    './app/Notifications',
28
29    './model/widgets/AccountListView',
30    './model/widgets/SurveyRenderWidget',
31    './model/widgets/SurveyRunWidget',
32    './model/widgets/SurveySummary',
33    './model/widgets/SurveyWidget',
34
35    './ui/LoginDialogWrapper',
36    './ui/MainMenu',
37    './ui/MenuBarLink',
38    './ui/MenuLink',
39    './ui/SessionMenu',
40
41    './widgets/LineWithActionsWidget',
42    './widgets/ObjectBox',
43    './widgets/Selector',
44    './widgets/TitleGroup'
45],function(){});
Note: See TracBrowser for help on using the repository browser.