Advertisement
DrupalCustom

atlassian-plugin.xml

Aug 13th, 2012
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.81 KB | None | 0 0
  1.     <atlassian-plugin key="${project.groupId}.${project.artifactId}" name="${project.name}" plugins-version="2">
  2.  
  3.     <plugin-info>
  4.         <description>${project.description}</description>
  5.         <version>${project.version}</version>
  6.         <vendor name="${project.organization.name}" url="${project.organization.url}" />
  7.     </plugin-info>
  8.        
  9.     <resource type="i18n" name="i18n" location="message"  />
  10.  
  11.        
  12.     <web-item key="exportxmlFreeway" name="Export Freeway XML" section="system.space.advanced/exportsection" weight="30">
  13.         <label key="Freeway Export" />
  14.         <link>/spaces/exportspacexmlFreeway.action?key=$generalUtil.urlEncode($helper.spaceKey)</link>
  15.         <icon height="16" width="16">
  16.             <link>/images/icons/exp_16.gif</link>
  17.         </icon>
  18.         <condition class="com.atlassian.confluence.plugin.descriptor.web.conditions.SpacePermissionCondition">
  19.             <param name="permission">export</param>
  20.         </condition>
  21.     </web-item>
  22.            
  23.  
  24.     <xwork name="Action For Contents Sending" key="content-action">
  25.         <description>Selects Contents to be sent to Freeway</description>
  26.         <package name="examples" extends="default" namespace="/spaces">
  27.             <default-interceptor-ref name="validatingStack" />
  28.  
  29.             <action name="exportspacexmlFreeway" class="com.atlassian.lionbridge.FreewayContentSelectionAction" method = "doDefaultXmlFreeway" >
  30.                 <result name="input" type="velocity">/templates/example/selectContents.vm</result>
  31.                
  32.             </action>
  33.            
  34.         </package>
  35.     </xwork>
  36.    
  37.  
  38.      
  39.   <web-section key="freewaylinks" name="Edit Project Links Section" location="system.space.admin" weight="110">
  40.           <label key="editprojectlinks.link" />
  41.   </web-section>
  42.    
  43.    
  44. </atlassian-plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement