You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by ed...@apache.org on 2004/03/04 15:57:35 UTC

cvs commit: cocoon-lenya/src/java/org/apache/lenya/cms/publication XlinkCollection.java

edith       2004/03/04 06:57:35

  Added:       src/java/org/apache/lenya/cms/publication
                        XlinkCollection.java
  Log:
  Implementation for a collection, so that xlink are inserted in the collection
  
  Revision  Changes    Path
  1.1                  cocoon-lenya/src/java/org/apache/lenya/cms/publication/XlinkCollection.java
  
  Index: XlinkCollection.java
  ===================================================================
  /*
   * Copyright  1999-2004 The Apache Software Foundation
   *
   *  Licensed under the Apache License, Version 2.0 (the "License");
   *  you may not use this file except in compliance with the License.
   *  You may obtain a copy of the License at
   *
   *      http://www.apache.org/licenses/LICENSE-2.0
   *
   *  Unless required by applicable law or agreed to in writing, software
   *  distributed under the License is distributed on an "AS IS" BASIS,
   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *  See the License for the specific language governing permissions and
   *  limitations under the License.
   *
   */
  
  package org.apache.lenya.cms.publication;
  
  import java.io.IOException;
  
  import org.apache.lenya.xml.NamespaceHelper;
  import org.apache.log4j.Category;
  import org.w3c.dom.Element;
  
  /**
   * Implementation of a Collection. In the collection are xlink inserted.
   */
  public class XlinkCollection extends CollectionImpl {
      
      private static final Category log = Category.getInstance(CollectionImpl.class);
  
      /**
       * Ctor.
       * @param publication A publication.
       * @param id The document ID.
       * @param area The area the document belongs to.
       * @throws DocumentException when something went wrong.
       */
      public XlinkCollection(Publication publication, String id, String area) throws DocumentException {
          super(publication, id, area);
      }
  
      /**
       * Ctor.
       * @param publication A publication.
       * @param id The document ID.
       * @param area The area the document belongs to.
       * @param language The language of the document.
       * @throws DocumentException when something went wrong.
       */
      public XlinkCollection(Publication publication, String id, String area, String language) throws DocumentException {
          super(publication, id, area, language);
      }
  
      /** (non-Javadoc)
  	 * @see org.apache.lenya.cms.publication.CollectionImpl#createDocumentElement(org.apache.lenya.cms.publication.Document, org.apache.lenya.xml.NamespaceHelper)
  	 **/
  	protected Element createDocumentElement(Document document, NamespaceHelper helper)
          throws DocumentException {
          Element element = super.createDocumentElement(document, helper);
          String path = null;
          try {
  			path = document.getFile().getCanonicalPath();
  		} catch (IOException e) {
              log.error("Couldn't found the file path for the document: "+document.getId()); 
  		} 
          element.setAttributeNS("http://www.w3.org/1999/xlink", "xlink:href", path);          
          element.setAttributeNS("http://www.w3.org/1999/xlink", "xlink:show", "embed");          
          return element;
      }
  
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org