Ignore:
Timestamp:
12/20/13 10:03:18 (10 years ago)
Author:
keeloo
Message:

Finished the upgrade. The web application still needs to be tested.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/to-wicket-1.6/vlo_web_app/src/main/java/eu/clarin/cmdi/vlo/VloPageParameters.java

    r4201 r4208  
    2121        // needs to be here because of the other constructor
    2222        super ();
     23        // add the theme parameter
     24        // ...
    2325    }
    2426   
     
    3335        // needs to be implemented
    3436       
     37        // present the page parameters in the old style
     38       
    3539        param = null;
    3640       
     
    3943
    4044    /**
     45     * Take in  old style parameters.
     46     *
     47     *
     48     * not being used at the moment; use code in the previous method
    4149     *
    4250     * @param param
     
    6169
    6270    /**
    63      * Add this, VLO page parameters, to the parameters that are already
    64      * associated with the session
    6571     *
     72     * @param PersistentParameters parameters concerning theme and other
     73     * non query related parameters. These parameters are to kept in the URL
     74     * during the session.
    6675     */
    67     public void addToSession() {        
     76    public void merge(PageParameters parameters) {   
    6877       
    6978        // get a themed session from the current thread
     
    7180        themedSession = (VloSession)Session.get();
    7281       
    73         // store the parameters in the session object
    74         themedSession.addVloSessionPageParameters (this);
     82        // get the parameters associated with the session
     83        PageParameters persistentParameters;
     84        persistentParameters = themedSession.getVloSessionPageParameters();
     85       
     86        // merge the parameters with the persistent ones and return the result
     87       
     88        // ...
     89       
    7590    }
    7691}
Note: See TracChangeset for help on using the changeset viewer.