diff options
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/checkuno.pl | 19 | ||||
-rw-r--r-- | helpers/create_ilst.pl | 33 | ||||
-rw-r--r-- | helpers/createmakefile.pl | 145 | ||||
-rw-r--r-- | helpers/linkmakefile.template | 36 | ||||
-rw-r--r-- | helpers/makefile.template | 37 | ||||
-rw-r--r-- | helpers/xmlhelp.dtd | 17 |
6 files changed, 155 insertions, 132 deletions
diff --git a/helpers/checkuno.pl b/helpers/checkuno.pl index 68a6768a2b..6ea731fa6c 100644 --- a/helpers/checkuno.pl +++ b/helpers/checkuno.pl @@ -1,4 +1,21 @@ #!/usr/bin/perl +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you 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 . +# $uno_hid = "/handbuch/WORKBENCH/helpcontent2/helpers/uno_hid.lst"; $uno_cmd = "/handbuch/WORKBENCH/helpcontent2/helpers/unocmds.txt"; @@ -8,7 +25,7 @@ if (open HID, $uno_hid) { while (<HID>) { chomp; ($shid,$nhid,$uno) = split ","; - $hid{lc($uno)} = $shid; + $hid{lc($uno)} = $shid; } close HID; } else { diff --git a/helpers/create_ilst.pl b/helpers/create_ilst.pl index e1e0ce9053..b49a075cc0 100644 --- a/helpers/create_ilst.pl +++ b/helpers/create_ilst.pl @@ -1,32 +1,23 @@ : eval 'exec perl -wS $0 ${1+"$@"}' if 0; -#************************************************************************* # -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. +# This file is part of the LibreOffice project. # -# OpenOffice.org - a multi-platform office productivity suite +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# This file is part of OpenOffice.org. +# This file incorporates work covered by the following license notice: # -# OpenOffice.org is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License version 3 -# only, as published by the Free Software Foundation. +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you 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 . # -# OpenOffice.org is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License version 3 for more details -# (a copy is included in the LICENSE file that accompanied this code). -# -# You should have received a copy of the GNU Lesser General Public License -# version 3 along with OpenOffice.org. If not, see -# <http://www.openoffice.org/license.html> -# for a copy of the LGPLv3 License. -# -#************************************************************************* # creates the ilst control file for the # help specific images diff --git a/helpers/createmakefile.pl b/helpers/createmakefile.pl index 3511eca164..e6bf34b228 100644 --- a/helpers/createmakefile.pl +++ b/helpers/createmakefile.pl @@ -1,17 +1,34 @@ #!/usr/bin/perl +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you 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 . +# use File::Find; use File::Basename; -# creates the help2 makefile for a given +# creates the help2 makefile for a given # directory including all help xhp files # in that and the subordinate directories -# Only help files with the following +# Only help files with the following # # status values are included: # PUBLISH DEPRECATED # -# The following status values are +# The following status values are # disregarded: # DRAFT FINAL STALLED @@ -58,9 +75,9 @@ print "Link Directory : $linkdir\n"; print "Recursive : ". ($recursive ? "yes" : "no") . "\n"; print "All files : ". ($all ? "yes" : "no") . "\n"; -if ($recursive) { - find(sub{push @dirs, $File::Find::name if (-d and ($File::Find::name!~/\/CVS/));},$startdir); -} else { +if ($recursive) { + find(sub{push @dirs, $File::Find::name if (-d and ($File::Find::name!~/\/CVS/));},$startdir); +} else { push @dirs, $startdir; } @@ -72,11 +89,11 @@ for $d(@dirs) { @files = grep {/xhp$/} readdir DIR; undef @files2; closedir DIR; - + ($helpdir = $d) =~ s/.*\/$helpdirprefix/source\//gis; - - ($package = $helpdir) =~ s/^source\///gi; - + + ($package = $helpdir) =~ s/^source\///gi; + ($target = $package) =~ s/\//_/g; $target =~ s/_$//; ($module = $package) =~ s/^\/*text\/([^\/]+)\/*.*$/$1/; @@ -101,21 +118,21 @@ for $d(@dirs) { push @files2, ' '.$n.'.xhp '; } } - + printf "%s: %4d files, %4d included in makefile -> ",$d,scalar @files,scalar @files2; - + if (scalar @files2 > 0) { # don't write makefiles where there are no files to make ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); - + $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/' x ((split "/", $helpdir) -1); $prj = $prj . ".."; - + $xhpfiles = join "\\\n", sort @files2; ($makefile = $tmpl) =~ s/%([^%]*)%/$$1/gise; - + if (open(MK, ">$d/makefile.mk")) { print MK $makefile; close MK; @@ -142,47 +159,47 @@ for $d(@dirs) { #---------------------------------- # sbasic $module = "sbasic"; - + $linkaddedfiles = <<"LAF"; -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ -add $module.tree \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAF - + $linkaddeddeps = <<"LAD"; \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAD - + $linklinkfiles = ''; for (@sbasic) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } for (@shared) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } - + $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; - + ($linkmakefile = $linktmpl) =~ s/%([^%]*)%/$$1/gise; &writelinkmakefile($module,$linkmakefile); - + #------------------------------------- # scalc $module = "scalc"; - + $linkaddedfiles = <<"LAF"; -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ -add $module.tree \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAF - + $linkaddeddeps = <<"LAD"; \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAD - + $linklinkfiles = ''; for (@scalc) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } for (@shared) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } @@ -191,26 +208,26 @@ LAD $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; - + ($linkmakefile = $linktmpl) =~ s/%([^%]*)%/$$1/gise; &writelinkmakefile($module,$linkmakefile); -#-------------------------------- +#-------------------------------- # schart $module = "schart"; - + $linkaddedfiles = <<"LAF"; -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ -add $module.tree \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAF - + $linkaddeddeps = <<"LAD"; \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAD - + $linklinkfiles = ''; for (@shared) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } @@ -220,24 +237,24 @@ LAD $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; - + ($linkmakefile = $linktmpl) =~ s/%([^%]*)%/$$1/gise; &writelinkmakefile($module,$linkmakefile); #------------------------------ # sdraw $module = "sdraw"; - + $linkaddedfiles = <<"LAF"; -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAF - + $linkaddeddeps = <<"LAD"; \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAD - + $linklinkfiles = ''; for (@sdraw) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } for (@simpress) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } @@ -247,15 +264,15 @@ LAD $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; - + ($linkmakefile = $linktmpl) =~ s/%([^%]*)%/$$1/gise; &writelinkmakefile($module,$linkmakefile); - + #------------------------------------- # shared - + $module = "shared"; - + $linkaddedfiles = <<"LAF"; -add $module.tree \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip \\ @@ -266,7 +283,7 @@ LAD -add highcontrastblack.css \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/highcontrastblack.css \\ -add err.html \$(COMMONMISC)\$/LANGUAGE\$/text\$/shared\$/05\$/err_html.xhp LAF - + $linkaddeddeps = <<"LAD"; \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip \\ @@ -277,89 +294,89 @@ LAF \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/highcontrastblack.css \\ \$(COMMONMISC)\$/LANGUAGE\$/text\$/shared\$/05\$/err_html.xhp LAD - + $linklinkfiles = ''; $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; - + ($linkmakefile = $linktmpl) =~ s/%([^%]*)%/$$1/gise; &writelinkmakefile($module,$linkmakefile); #------------------------------- # simpress $module = "simpress"; - + $linkaddedfiles = <<"LAF"; -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ -add $module.tree \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAF - + $linkaddeddeps = <<"LAD"; \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAD - + $linklinkfiles = ''; for (@sdraw) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } for (@simpress) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } for (@shared) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } for (@schart) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } - + $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; - + ($linkmakefile = $linktmpl) =~ s/%([^%]*)%/$$1/gise; &writelinkmakefile($module,$linkmakefile); #------------------------------------- # smath $module = "smath"; - + $linkaddedfiles = <<"LAF"; -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ -add $module.tree \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAF - + $linkaddeddeps = <<"LAD"; \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAD - + $linklinkfiles = ''; for (@smath) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } for (@shared) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } - + $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; - + ($linkmakefile = $linktmpl) =~ s/%([^%]*)%/$$1/gise; &writelinkmakefile($module,$linkmakefile); #------------------------------- # swriter $module = "swriter"; - + $linkaddedfiles = <<"LAF"; -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ -add $module.tree \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAF - + $linkaddeddeps = <<"LAD"; \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAD - + $linklinkfiles = ''; for (@swriter) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } for (@shared) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } @@ -367,38 +384,38 @@ LAD $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; - + ($linkmakefile = $linktmpl) =~ s/%([^%]*)%/$$1/gise; &writelinkmakefile($module,$linkmakefile); #------------------------------- # sdatabase $module = "sdatabase"; - + $linkaddedfiles = <<"LAF"; -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAF - + $linkaddeddeps = <<"LAD"; \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip LAD - + $linklinkfiles = ''; for (@shared) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; - + ($linkmakefile = $linktmpl) =~ s/%([^%]*)%/$$1/gise; - + # remove zip1 targets $linkmakefile =~ s,\n(ZIP1LIST=.*)\n,\nZIP1LIST=\$(LANGDIR)\$/text\$/shared\$/explorer\$/database\$/main.xhp\n,gi; &writelinkmakefile($module,$linkmakefile); - - - + + + print "sbasic: $#sbasic\n"; print "scalc : $#scalc\n"; print "schart: $#schart\n"; @@ -413,7 +430,7 @@ sub terminate { $err = shift; print "$err\n\n"; $msg = <<"MSG"; -createmakefile.pl -dir=[directory name] -linkdir=[directory name] [-recursive] [-all] +createmakefile.pl -dir=[directory name] -linkdir=[directory name] [-recursive] [-all] -dir Directory to start -linkdir Directory to write the link makefiles -recursive Write makefiles recursively @@ -427,7 +444,7 @@ sub writelinkmakefile { $module = shift; $content = shift; if (open(MK, ">$linkdir/$module/makefile.mk")) { - print MK $content; + print MK $content; close MK; } else { &terminate("Cannot write makefile to ${linkdir}/$module\n"); diff --git a/helpers/linkmakefile.template b/helpers/linkmakefile.template index e39d37fe3b..c9226de7e2 100644 --- a/helpers/linkmakefile.template +++ b/helpers/linkmakefile.template @@ -1,32 +1,22 @@ -#************************************************************************* # -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. +# This file is part of the LibreOffice project. # -# OpenOffice.org - a multi-platform office productivity suite +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# This file is part of OpenOffice.org. +# This file incorporates work covered by the following license notice: # -# OpenOffice.org is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License version 3 -# only, as published by the Free Software Foundation. +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you 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 . # -# OpenOffice.org is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License version 3 for more details -# (a copy is included in the LICENSE file that accompanied this code). -# -# You should have received a copy of the GNU Lesser General Public License -# version 3 along with OpenOffice.org. If not, see -# <http://www.openoffice.org/license.html> -# for a copy of the LGPLv3 License. -# -#************************************************************************* - -# edit to match directory level +# edit to match directory level PRJ = %prj% # same for all makefiles in "helpcontent2" PRJNAME = helpcontent2 diff --git a/helpers/makefile.template b/helpers/makefile.template index 72c19c4f03..946e8fb0d8 100644 --- a/helpers/makefile.template +++ b/helpers/makefile.template @@ -1,31 +1,22 @@ -#************************************************************************* # -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. +# This file is part of the LibreOffice project. # -# OpenOffice.org - a multi-platform office productivity suite +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# This file is part of OpenOffice.org. +# This file incorporates work covered by the following license notice: # -# OpenOffice.org is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License version 3 -# only, as published by the Free Software Foundation. +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you 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 . # -# OpenOffice.org is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License version 3 for more details -# (a copy is included in the LICENSE file that accompanied this code). -# -# You should have received a copy of the GNU Lesser General Public License -# version 3 along with OpenOffice.org. If not, see -# <http://www.openoffice.org/license.html> -# for a copy of the LGPLv3 License. -# -#************************************************************************* -# edit to match directory level +# edit to match directory level PRJ = %prj% # same for all makefiles in "helpcontent2" PRJNAME = helpcontent2 @@ -45,7 +36,7 @@ MODULE = %module% # this list matches the *.xhp files to process XHPFILES = \ %xhpfiles% - + # --- Targets ------------------------------------------------------ .INCLUDE : target.mk diff --git a/helpers/xmlhelp.dtd b/helpers/xmlhelp.dtd index 96dcefac6d..86a17cdb13 100644 --- a/helpers/xmlhelp.dtd +++ b/helpers/xmlhelp.dtd @@ -1,3 +1,20 @@ +<!-- + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you 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 . +--> <!-- Version 03-Feb-2006 added optional localize attribute to images |