Ignore:
Timestamp:
09/17/09 10:02:37 (15 years ago)
Author:
ymipsl
Message:
  • Les attributs XML peuvent désormais être passer dynamiquement à travers l'interface du server IO.
  • ajout d'un attribut name_suffix pour les fichiers

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_SERVER/trunk/src/IOSERVER/mod_iomanager.f90

    r26 r40  
    383383     
    384384  END SUBROUTINE iom__Finalize 
    385   
     385 
     386 
     387  SUBROUTINE iom__set_attribut(id,attrib) 
     388  USE mod_attribut 
     389  USE mod_object 
     390  USE mod_field 
     391  USE mod_file 
     392  USE mod_axis 
     393  USE mod_grid 
     394  USE mod_zoom 
     395  IMPLICIT NONE 
     396    CHARACTER(LEN=*) :: id 
     397    TYPE(attribut)   :: attrib   
     398 
     399    IF (current_rank==nb_client) THEN 
     400     
     401      SELECT CASE(attrib%object) 
     402        CASE(field_object) 
     403          CALL field__set_attribut(id,attrib) 
     404        CASE(file_object) 
     405          CALL file__set_attribut(id,attrib) 
     406        CASE(axis_object) 
     407          CALL axis__set_attribut(id,attrib) 
     408        CASE(grid_object) 
     409          CALL grid__set_attribut(id,attrib) 
     410        CASE(zoom_object) 
     411          CALL zoom__set_attribut(id,attrib) 
     412      END SELECT 
     413    ENDIF 
     414     
     415  END SUBROUTINE iom__set_attribut 
     416    
    386417END MODULE iomanager  
    387418  
Note: See TracChangeset for help on using the changeset viewer.