knguyen     2005/05/02 17:53:05 CEST

  Modified files:
    core/src/java/org/jahia/data/events JahiaEventListener.java 
                                        JahiaEventListenerInterface.java 
  Log:
  - missing templateUpdated event
  
  Revision  Changes    Path
  1.5       +1 -1      
jahia/core/src/java/org/jahia/data/events/JahiaEventListener.java
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/core/src/java/org/jahia/data/events/JahiaEventListener.java.diff?r1=1.4&r2=1.5&f=h
  1.5       +14 -7     
jahia/core/src/java/org/jahia/data/events/JahiaEventListenerInterface.java
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/core/src/java/org/jahia/data/events/JahiaEventListenerInterface.java.diff?r1=1.4&r2=1.5&f=h
  
  
  
  Index: JahiaEventListener.java
  ===================================================================
  RCS file: 
/home/cvs/repository/jahia/core/src/java/org/jahia/data/events/JahiaEventListener.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- JahiaEventListener.java   22 Feb 2005 17:11:27 -0000      1.4
  +++ JahiaEventListener.java   2 May 2005 15:53:05 -0000       1.5
  @@ -81,5 +81,5 @@
       public void contentObjectUpdated (JahiaEvent theEvent) { return; }
       
       public void fileManagerAclChanged (JahiaEvent theEvent) { return; }
  -
  +    
   } // end JahiaEventListener
  
  
  
  Index: JahiaEventListenerInterface.java
  ===================================================================
  RCS file: 
/home/cvs/repository/jahia/core/src/java/org/jahia/data/events/JahiaEventListenerInterface.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- JahiaEventListenerInterface.java  22 Feb 2005 17:11:27 -0000      1.4
  +++ JahiaEventListenerInterface.java  2 May 2005 15:53:05 -0000       1.5
  @@ -124,12 +124,19 @@
        */
       public void contentObjectUpdated (JahiaEvent theEvent);
   
  -       /**
  -        * Event fired when ACLs on a Slide resource are modified.
  -        *
  -        * @param theEvent contains the modified DAVFileAccess object with 
the 
  -        * new ACLs set.
  -        */
  -       public void fileManagerAclChanged(JahiaEvent theEvent);
  +    /**
  +     * Event fired when ACLs on a Slide resource are modified.
  +     *
  +     * @param theEvent contains the modified DAVFileAccess object with the
  +     * new ACLs set.
  +     */
  +    public void fileManagerAclChanged(JahiaEvent theEvent);
  +
  +    /**
  +     * Event fired when a template is updated
  +     * @param theEvent contains the currently edited template
  +     * @throws JahiaException
  +     */
  +    public void templateUpdated(JahiaEvent theEvent);
   
   } // end JahiaEventListenerInterface
  

Reply via email to