home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 June / maximum-cd-2009-06.iso / DiscContents / OOo_3.0.1_Win32Intel_install_wJRE_en-US.exe / openofficeorg1.cab / script.mod < prev    next >
Encoding:
Text File  |  2008-04-10  |  2.3 KB  |  64 lines

  1. <!--
  2.  
  3.   DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4.   
  5.   Copyright 2008 by Sun Microsystems, Inc.
  6.  
  7.   OpenOffice.org - a multi-platform office productivity suite
  8.  
  9.   $RCSfile: script.mod,v $
  10.  
  11.   $Revision: 1.11 $
  12.  
  13.   This file is part of OpenOffice.org.
  14.  
  15.   OpenOffice.org is free software: you can redistribute it and/or modify
  16.   it under the terms of the GNU Lesser General Public License version 3
  17.   only, as published by the Free Software Foundation.
  18.  
  19.   OpenOffice.org is distributed in the hope that it will be useful,
  20.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.   GNU Lesser General Public License version 3 for more details
  23.   (a copy is included in the LICENSE file that accompanied this code).
  24.  
  25.   You should have received a copy of the GNU Lesser General Public License
  26.   version 3 along with OpenOffice.org.  If not, see
  27.   <http://www.openoffice.org/license.html>
  28.   for a copy of the LGPLv3 License.
  29.  
  30. -->
  31.  
  32. <!ELEMENT script:libraries (script:library-embedded | script:library-linked)*>
  33. <!ATTLIST script:libraries xmlns:script CDATA #FIXED "http://openoffice.org/2000/script">
  34. <!ATTLIST script:libraries xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink">
  35.  
  36. <!ENTITY % boolean "(true|false)">
  37.  
  38. <!ELEMENT script:library-embedded (script:module*)>
  39. <!ATTLIST script:library-embedded script:name %string; #REQUIRED>
  40. <!ATTLIST script:library-embedded script:readonly %boolean; #IMPLIED>
  41.  
  42. <!ELEMENT script:library-linked EMPTY>
  43. <!ATTLIST script:library-linked script:name %string; #REQUIRED>
  44. <!ATTLIST script:library-linked xlink:href %string; #REQUIRED>
  45. <!ATTLIST script:library-linked xlink:type (simple) #FIXED "simple">
  46. <!ATTLIST script:library-linked script:readonly %boolean; #IMPLIED>
  47.  
  48. <!ELEMENT script:module (script:source-code)>
  49. <!ATTLIST script:module script:name %string; #REQUIRED>
  50.  
  51. <!ELEMENT script:source-code (#PCDATA)>
  52.  
  53.  
  54. <!ENTITY % script-language "script:language %string; #REQUIRED">
  55. <!ENTITY % event-name "script:event-name %string; #REQUIRED">
  56. <!ENTITY % location "script:location (document|application) #REQUIRED">
  57. <!ENTITY % macro-name "script:macro-name %string; #REQUIRED">
  58.  
  59. <!ELEMENT script:event (#PCDATA)>
  60. <!ATTLIST script:event %script-language;
  61.                        %event-name;
  62.                        %location;
  63.                        %macro-name;>
  64.