Changeset 434 for ether_ndacc


Ignore:
Timestamp:
03/22/12 19:00:34 (12 years ago)
Author:
rboipsl
Message:

infobulles

Location:
ether_ndacc/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • ether_ndacc/trunk/common/Common.iml

    r432 r434  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<module type="JAVA_MODULE" version="4"> 
    3   <component name="NewModuleRootManager" inherit-compiler-output="true"> 
     3  <component name="NewModuleRootManager" inherit-compiler-output="false"> 
     4    <output url="file://$MODULE_DIR$/../web/WEB-INF/classes" /> 
     5    <output-test url="file://$MODULE_DIR$/../out/test/Common" /> 
    46    <exclude-output /> 
    57    <content url="file://$MODULE_DIR$"> 
  • ether_ndacc/trunk/persistence/Persistence.iml

    r432 r434  
    99    </facet> 
    1010  </component> 
    11   <component name="NewModuleRootManager" inherit-compiler-output="true"> 
     11  <component name="NewModuleRootManager" inherit-compiler-output="false"> 
     12    <output url="file://$MODULE_DIR$/../web/WEB-INF/classes" /> 
     13    <output-test url="file://$MODULE_DIR$/../out/test/Persistence" /> 
    1214    <exclude-output /> 
    1315    <content url="file://$MODULE_DIR$"> 
  • ether_ndacc/trunk/service/Service.iml

    r432 r434  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<module type="JAVA_MODULE" version="4"> 
    3   <component name="NewModuleRootManager" inherit-compiler-output="true"> 
     3  <component name="NewModuleRootManager" inherit-compiler-output="false"> 
     4    <output url="file://$MODULE_DIR$/../web/WEB-INF/classes" /> 
     5    <output-test url="file://$MODULE_DIR$/../out/test/Service" /> 
    46    <exclude-output /> 
    57    <content url="file://$MODULE_DIR$"> 
  • ether_ndacc/trunk/web/Web.iml

    r432 r434  
    2525    </facet> 
    2626  </component> 
    27   <component name="NewModuleRootManager" inherit-compiler-output="true"> 
     27  <component name="NewModuleRootManager" inherit-compiler-output="false"> 
     28    <output url="file://$MODULE_DIR$/WEB-INF/classes" /> 
     29    <output-test url="file://$MODULE_DIR$/../out/test/Web" /> 
    2830    <exclude-output /> 
    2931    <content url="file://$MODULE_DIR$"> 
  • ether_ndacc/trunk/web/src/com/ether/Controller.java

    r432 r434  
    1212import javax.servlet.http.HttpServletRequest; 
    1313import javax.servlet.http.HttpServletResponse; 
     14import java.util.ArrayList; 
    1415import java.util.Date; 
    1516import java.util.HashMap; 
     
    283284                dateinf=year+month+"01"; 
    284285                final List<String> plotsList = _plotService.getPlotsByDateByInstrumentByStationByType( instrument, dateinf, "yyyyMMdd", station, type ); 
    285                 String[] labelDates = new String[plotsList.size()]; 
    286  
    287                 for (int i=0 ; i<plotsList.size() ; i++) { 
    288                      labelDates[0]=plotsList.get( 0 ).substring(0,6); 
     286                String[] labelPlots = new String[plotsList.size()]; 
     287 
     288                for (Integer i=0 ; i<plotsList.size() ; i++) { 
     289                        //temp= 
     290                        labelPlots[i]=plotsList.get( i ).substring(5,9)+"/"+plotsList.get( i ).substring(9,11)+"/"+plotsList.get( i ).substring(11,13); 
    289291                } 
    290292 
     
    297299                model.put( "listeDates", listeDates ); 
    298300                model.put( "firstDate", dateinf ); 
     301                model.put( "labelPlots", labelPlots ); 
    299302 
    300303                model.put( "month", month ); 
  • ether_ndacc/trunk/web/visus_ecc_realtime.jsp

    r405 r434  
    7373                </c:when> 
    7474                </c:choose> 
    75          
    76                 <td align=center valign=top><a href="#" onclick="OuvrirFeuilleDynPL ('${rep}/${plot}');"><img border=2 width=100 height=120 src="${rep}/${plot}"></img></a></td> 
    77          
     75 
     76                <td align=center valign=top><a href="#" onclick="OuvrirFeuilleDynPL ('${rep}/${plot}');"><img border=2 width=100 height=120 src="${rep}/${plot}"></img></a> 
     77        <br>${labelPlots[status.index]} 
     78        </td> 
     79 
    7880                <c:choose> 
    7981                <c:when test="${(status.index+1) % 5 == 0}"></tr> 
Note: See TracChangeset for help on using the changeset viewer.