Ignore:
Timestamp:
04/25/13 12:22:14 (11 years ago)
Author:
rboipsl
Message:

V2 ajout infobulles + textes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tapas/web/src/com/ether/ControllerEponge.java

    r423 r767  
    3838     * @throws WebException 
    3939     */ 
    40     @ControllerMethod(view = VIEW_INIT) 
     40 
     41    /*@ControllerMethod(view = VIEW_INIT_EN) 
    4142    public Map<String, Object> home() 
    42             throws WebException 
    43     { 
     43        throws WebException 
     44    { 
     45 
     46        return new HashMap<String, Object>(); 
     47    } */ 
     48 
     49     @ControllerMethod(view = VIEW_INIT_EN) 
     50    public Map<String, Object> home_en() 
     51        throws WebException 
     52    { 
     53 
     54        return new HashMap<String, Object>(); 
     55    } 
     56 
     57    @ControllerMethod(view = VIEW_INIT_FR) 
     58    public Map<String, Object> home_fr() 
     59        throws WebException 
     60    { 
     61 
     62        return new HashMap<String, Object>(); 
     63    } 
     64 
     65    @ControllerMethod(view = VIEW_MENTIONSL_EN) 
     66    public Map<String, Object> mentionsl_en() 
     67        throws WebException 
     68    { 
     69 
     70        return new HashMap<String, Object>(); 
     71    } 
     72 
     73    @ControllerMethod(view = VIEW_MENTIONSL_FR) 
     74    public Map<String, Object> mentionsl_fr() 
     75        throws WebException 
     76    { 
     77 
    4478        return new HashMap<String, Object>(); 
    4579    } 
     
    153187     * @throws WebException 
    154188     */ 
     189 
    155190    private void sendEmailToAdministratorAndUser( @NotNull final User user ) 
    156191            throws WebException 
     
    211246 
    212247    private static final String VIEW_INIT = "init"; 
     248    private static final String VIEW_INIT_FR = "init_fr"; 
     249    private static final String VIEW_INIT_EN = "init_en"; 
     250    private static final String  VIEW_MENTIONSL_FR = "mentionsl_fr"; 
     251    private static final String  VIEW_MENTIONSL_EN = "mentionsl_en"; 
    213252    private static final String VIEW_DATA_PROTOCOL_EN = "project/home_dataProtocol_en"; 
    214253    // TODO : mettre les bons fichiers de Dataprotocol 
    215     private static final String DOWNLOAD_DATA_PROTOCOL_EN = "bib.txt"; 
    216     private static final String DOWNLOAD_DATA_PROTOCOL_FR = "bib.txt"; 
     254    private static final String DOWNLOAD_DATA_PROTOCOL_EN = "data_protocol_e.txt"; 
     255    private static final String DOWNLOAD_DATA_PROTOCOL_FR = "data_protocol_f.txt"; 
    217256} 
Note: See TracChangeset for help on using the changeset viewer.