Ignore:
Timestamp:
02/20/12 16:27:19 (13 years ago)
Author:
hendrikvanantwerpen
Message:
  • [Client] Moved pages in subtree of rft/, allowing controllers next to them.
  • [Client] Created questions page, gives overview and allows adding.
  • [Client] Page controllers inherit from _Page, because the previous mechanism w

asn't working.

  • [Client] Added new user registration.
  • [Server] Changed user passwords to passwordHash/passwordSalt combination.
  • [Server] Added simple object marshalling and unmarshalling to preserve types.
  • [Server] Added ResearchToolObjectInterface? with static create() method. Implemented for all model classes.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/branches/rest-dojo-ui/client/rft/run.js

    r263 r274  
    11require([
    22    'dijit/form/Form',
     3    'dijit/form/TextBox',
     4    'dijit/form/Button',
     5    'dijit/form/Textarea',
    36    'dojo/store/JsonRest',
    47    'dojo/data/ObjectStore',
     
    69    'dijit/layout/ContentPane',
    710    'dijit/layout/TabContainer',
     11    'dijit/layout/AccordionContainer',
    812    'dijit/MenuBar',
    913    'dijit/MenuBarItem',
     14    'dijit/PopupMenuBarItem',
     15    'dijit/DropDownMenu',
    1016    'rft/ui/MenuBarLink',
     17    'rft/ui/MenuLink',
     18    'rft/ui/QuestionWidget',
     19    'rft/pages/questions' // could this be done dynamically?
    1120]);
    1221
    1322require(['dojo/_base/window','dojo/parser', 'rft/ui/LoginDialog',
    1423    'dojo/dom', 'dojo/_base/connect', 'rft/auth', 'rft/content',
    15     'dojo/domReady!', ],
     24    'dojo/domReady!' ],
    1625    function(win,parser,LoginDialog,dom,connect,auth,content) {
    1726        parser.parse();
     
    2736        });
    2837
    29         connect.connect(dom.byId('userinfo'),'click',function(){
     38        connect.connect(dom.byId('loginMenu'),'click',function(){
    3039            login.show();
    3140        });
     41
    3242    });
Note: See TracChangeset for help on using the changeset viewer.