You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(48) |
Dec
(31) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(22) |
Feb
(68) |
Mar
(185) |
Apr
(11) |
May
(21) |
Jun
(23) |
Jul
(46) |
Aug
(69) |
Sep
(211) |
Oct
(26) |
Nov
(51) |
Dec
(52) |
2006 |
Jan
(13) |
Feb
(13) |
Mar
(8) |
Apr
(21) |
May
(17) |
Jun
(100) |
Jul
(34) |
Aug
(23) |
Sep
(26) |
Oct
(16) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(66) |
Oct
(10) |
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
(1) |
Apr
(3) |
May
(8) |
Jun
(5) |
Jul
(31) |
Aug
(8) |
Sep
(11) |
Oct
(6) |
Nov
|
Dec
|
2012 |
Jan
(13) |
Feb
(2) |
Mar
(9) |
Apr
(6) |
May
(24) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(120) |
2013 |
Jan
(6) |
Feb
(35) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ss...@re...> - 2005-04-06 13:11:35
|
Author: sshinde Date: 2005-04-06 15:08:40 +0200 (Wed, 06 Apr 2005) New Revision: 501 Modified: ccm-core/core-6.1.0/application.xml Log: Bump release version for the DateTimeParameter.java fix Modified: ccm-core/core-6.1.0/application.xml =================================================================== --- ccm-core/core-6.1.0/application.xml 2005-04-06 12:17:37 UTC (rev 500) +++ ccm-core/core-6.1.0/application.xml 2005-04-06 13:08:40 UTC (rev 501) @@ -3,7 +3,7 @@ <ccm:application name="ccm-core" prettyName="Core" version="6.1.0" - release="15" + release="16" webapp="ROOT" buildHooks="build-hooks.xml" xmlns:ccm="http://ccm.redhat.com/ccm-project"> |
From: <ss...@re...> - 2005-04-06 12:20:41
|
Author: sshinde Date: 2005-04-06 14:17:37 +0200 (Wed, 06 Apr 2005) New Revision: 500 Modified: ccm-core/core-6.1.0/src/com/arsdigita/bebop/parameters/DateTimeParameter.java Log: Merged back revision 230 change from trunk Modified: ccm-core/core-6.1.0/src/com/arsdigita/bebop/parameters/DateTimeParameter.java =================================================================== --- ccm-core/core-6.1.0/src/com/arsdigita/bebop/parameters/DateTimeParameter.java 2005-04-06 09:25:27 UTC (rev 499) +++ ccm-core/core-6.1.0/src/com/arsdigita/bebop/parameters/DateTimeParameter.java 2005-04-06 12:17:37 UTC (rev 500) @@ -79,29 +79,38 @@ String second = Globalization.decodeParameter(request, getName()+".second"); String amOrPm = Globalization.decodeParameter(request, getName()+".amOrPm"); - if ( year == null && month == null && day == null ) { + // when submitting a non-compulsory datetime widget, we used to + // get an 'For input string: ""' error message; hence the datetime + // was compulsory anyways. + + // check correctly that *something* was entered... + //if ( year == null && month == null && day == null ) { + if ((day == null || "".equals(day)) && + (hour == null || "".equals(hour)) && + (minute == null || "".equals(minute))) { return transformSingleValue(request); } - if ( year != null ) { + // don't just check nulls (which won't happen), but also "" + if ( year != null && !"".equals(year) ) { c.set(Calendar.YEAR, Integer.parseInt(year)); } - if ( month != null ) { + if ( month != null && !"".equals(month) ) { c.set(Calendar.MONTH, Integer.parseInt(month)); } - if ( day != null ) { + if ( day != null && !"".equals(day) ) { c.set(Calendar.DATE, Integer.parseInt(day)); } - if ( hour != null ) { + if ( hour != null && !"".equals(hour) ) { c.set(Calendar.HOUR, Integer.parseInt(hour)); } - if ( minute != null ) { + if ( minute != null && !"".equals(minute) ) { c.set(Calendar.MINUTE, Integer.parseInt(minute)); } - if ( second != null ) { + if ( second != null && !"".equals(second) ) { c.set(Calendar.SECOND, Integer.parseInt(second)); } - if ( amOrPm != null ) { + if ( amOrPm != null && !"".equals(amOrPm) ) { c.set(Calendar.AM_PM, Integer.parseInt(amOrPm)); } return c.getTime(); |
From: <ss...@re...> - 2005-04-06 09:28:26
|
Author: sshinde Date: 2005-04-06 11:25:27 +0200 (Wed, 06 Apr 2005) New Revision: 499 Added: ccm-core/core-6.1.0/ Log: Creating a new maintainence and bug fix branch for core at release 6.1.0-15. This is branched at revision 7 of the svn repository. Copied: ccm-core/core-6.1.0 (from rev 7, ccm-core/trunk) |
From: <ss...@re...> - 2005-04-04 10:10:20
|
Author: sshinde Date: 2005-04-04 12:07:26 +0200 (Mon, 04 Apr 2005) New Revision: 498 Modified: ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.load ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Converter.java ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig.java Log: Fix the problems with ccm-formbuilder-pdf and make ccm load working. ccm-formbuilder-pdf.load : The table names in requires tag are not present in any othe application's provides tag. Changed to make it depend on indirect reference. Modified: ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.load =================================================================== --- ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.load 2005-03-31 09:10:05 UTC (rev 497) +++ ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.load 2005-04-04 10:07:26 UTC (rev 498) @@ -1,7 +1,10 @@ <load> <requires> + <!-- <table name="bebop_meta_object"/> <table name="bebop_object_type"/> + --> + <table name="acs_objects"/> <initializer class="com.arsdigita.cms.Initializer"/> </requires> <provides> Modified: ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Converter.java =================================================================== --- ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Converter.java 2005-03-31 09:10:05 UTC (rev 497) +++ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Converter.java 2005-04-04 10:07:26 UTC (rev 498) @@ -59,7 +59,7 @@ "com.arsdigita.formbuilder.pdf.Converter"; private TransformerFactory transformerFactory; - + public Converter() { } public void init() throws ServletException Modified: ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig.java =================================================================== --- ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig.java 2005-03-31 09:10:05 UTC (rev 497) +++ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig.java 2005-04-04 10:07:26 UTC (rev 498) @@ -21,6 +21,7 @@ import com.arsdigita.runtime.AbstractConfig; import com.arsdigita.util.parameter.Parameter; import com.arsdigita.util.parameter.StringParameter; +import org.apache.log4j.Logger; /** * A set of configuration parameters for the formbuilder PDF action. @@ -34,13 +35,20 @@ "$Id: ForumConfig.java 285 2005-02-22 00:29:02Z sskracic $" + "$Author: sskracic $" + "$DateTime: 2004/08/17 23:26:27 $"; - + private Parameter m_xslFile; + private static final Logger s_log = Logger.getLogger(PDFConfig.class); + private static final PDFConfig s_config = new PDFConfig(); static { - s_config.load(); + try { + s_config.load(); + } catch (java.lang.IllegalArgumentException ex) { + s_log.warn("Unable to load PDFConfig. This is not a problem " + + "during ccm load, but is a problem at all other times"); + } } public PDFConfig() { @@ -54,6 +62,7 @@ loadInfo(); } + public static PDFConfig retrieve() { return s_config; } |
From: <mb...@re...> - 2005-03-31 09:12:51
|
Author: mbooth Date: 2005-03-31 11:10:05 +0200 (Thu, 31 Mar 2005) New Revision: 497 Modified: releases/1.0.2/tools/tools/bin/ccm releases/1.0.2/tools/tools/configure.in Log: Fix a bug in ccm which causes load to be attempted twice when run as root. Modified: releases/1.0.2/tools/tools/bin/ccm =================================================================== --- releases/1.0.2/tools/tools/bin/ccm 2005-03-29 10:54:09 UTC (rev 496) +++ releases/1.0.2/tools/tools/bin/ccm 2005-03-31 09:10:05 UTC (rev 497) @@ -107,7 +107,7 @@ } if ($pid) { # parent waitpid($pid,0); - if ($?) { exit $? >> 8; } + exit $? >> 8; } else { # child CCM::Util::setuser('ccmadmin'); &run('ccm-run', @other_args, "com.arsdigita.packaging.MasterTool", "load", "--config", @ARGV); Modified: releases/1.0.2/tools/tools/configure.in =================================================================== --- releases/1.0.2/tools/tools/configure.in 2005-03-29 10:54:09 UTC (rev 496) +++ releases/1.0.2/tools/tools/configure.in 2005-03-31 09:10:05 UTC (rev 497) @@ -4,7 +4,7 @@ AC_INIT(ccm-tools.spec.in) VERSION=2.1.3 -RELEASE=1 +RELEASE=2 AM_INIT_AUTOMAKE(ccm-tools, $VERSION) AC_SUBST(RELEASE) |
From: <ssk...@re...> - 2005-03-29 10:56:50
|
Author: sskracic Date: 2005-03-29 12:54:09 +0200 (Tue, 29 Mar 2005) New Revision: 496 Modified: ccm-cms/trunk/application.xml ccm-cms/trunk/src/com/arsdigita/cms/ui/item/Summary.java Log: URL in summary pane is now properly encoded. Modified: ccm-cms/trunk/application.xml =================================================================== --- ccm-cms/trunk/application.xml 2005-03-29 08:58:09 UTC (rev 495) +++ ccm-cms/trunk/application.xml 2005-03-29 10:54:09 UTC (rev 496) @@ -3,7 +3,7 @@ name="ccm-cms" prettyName="Red Hat CCM Content Management System" version="6.1.2" - release="1" + release="2" webapp="ROOT"> <ccm:dependencies> <ccm:requires name="ccm-core" version="6.1.2" relation="ge"/> Modified: ccm-cms/trunk/src/com/arsdigita/cms/ui/item/Summary.java =================================================================== --- ccm-cms/trunk/src/com/arsdigita/cms/ui/item/Summary.java 2005-03-29 08:58:09 UTC (rev 495) +++ ccm-cms/trunk/src/com/arsdigita/cms/ui/item/Summary.java 2005-03-29 10:54:09 UTC (rev 496) @@ -61,6 +61,7 @@ import com.arsdigita.workflow.simple.WorkflowTemplate; import com.arsdigita.xml.Element; +import java.net.URLEncoder; import java.util.Date; import java.util.Iterator; import java.util.ArrayList; @@ -77,7 +78,7 @@ * to convert content items into XML.</p> * * @author Michael Pih (pi...@ar...) - * @version $Revision: #12 $ $DateTime: 2004/08/17 23:15:09 $ + * @version $Id$ */ public class Summary extends CMSContainer { @@ -168,7 +169,7 @@ // URL Element linkElement = new Element("cms:linkSummary",CMS.CMS_XML_NS); - linkElement.addAttribute("url","/redirect?oid=" + item.getDraftVersion().getOID() + "&context=" + ContentItem.LIVE); + linkElement.addAttribute("url","/redirect?oid=" + URLEncoder.encode(item.getDraftVersion().getOID().toString()) + "&context=" + ContentItem.LIVE); // WORKFLOW Element workflowElement = new Element("cms:workflowSummary",CMS.CMS_XML_NS); |
From: <ssk...@re...> - 2005-03-29 09:00:56
|
Author: sskracic Date: 2005-03-29 10:58:09 +0200 (Tue, 29 Mar 2005) New Revision: 495 Modified: ccm-cms-assets-notes/trunk/application.xml ccm-user-preferences/trunk/application.xml Log: Bumping the version numbers, and making the trunk compile again. Modified: ccm-cms-assets-notes/trunk/application.xml =================================================================== --- ccm-cms-assets-notes/trunk/application.xml 2005-03-29 08:54:30 UTC (rev 494) +++ ccm-cms-assets-notes/trunk/application.xml 2005-03-29 08:58:09 UTC (rev 495) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-assets-notes" prettyName="Red Hat CMS Content Asset Notes" - version="6.1.1" + version="6.1.2" release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-user-preferences/trunk/application.xml =================================================================== --- ccm-user-preferences/trunk/application.xml 2005-03-29 08:54:30 UTC (rev 494) +++ ccm-user-preferences/trunk/application.xml 2005-03-29 08:58:09 UTC (rev 495) @@ -2,12 +2,12 @@ <ccm:application name="ccm-user-preferences" prettyName="User Preferences" - version="1.0.0" - release="3" + version="1.0.1" + release="1" xmlns:ccm="http://ccm.redhat.com/ccm-project"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> </ccm:dependencies> <ccm:contacts> |
From: <ssk...@re...> - 2005-03-29 08:57:14
|
Author: sskracic Date: 2005-03-29 10:54:30 +0200 (Tue, 29 Mar 2005) New Revision: 494 Modified: users/sskracic/bin/make-build-area.sh Log: Don't attempt to create the dir if it's already there, so it can be run incrementally now. Modified: users/sskracic/bin/make-build-area.sh =================================================================== --- users/sskracic/bin/make-build-area.sh 2005-03-24 12:46:42 UTC (rev 493) +++ users/sskracic/bin/make-build-area.sh 2005-03-29 08:54:30 UTC (rev 494) @@ -7,9 +7,15 @@ DIRLIST=$(cd ~/svn ; echo ccm*) for dir in $DIRLIST do - mkdir $dir - ln -s ~/svn/$dir/trunk $dir/$dir + if [ ! -d $dir ] + then + mkdir $dir + ln -s ~/svn/$dir/trunk $dir/$dir + fi done -ln -s ~/svn/tools/trunk tools +if [ ! -d tools ] +then + ln -s ~/svn/tools/trunk tools +fi |
From: <mb...@re...> - 2005-03-24 12:49:15
|
Author: mbooth Date: 2005-03-24 13:46:42 +0100 (Thu, 24 Mar 2005) New Revision: 493 Added: users/mbooth/projects/aplaws/ccm-formbuilder-pdf/ Modified: users/mbooth/projects/aplaws/svn-switch-trunk.sh Log: Add ccm-formbuilder-pdf to build Modified: users/mbooth/projects/aplaws/svn-switch-trunk.sh =================================================================== --- users/mbooth/projects/aplaws/svn-switch-trunk.sh 2005-03-24 12:17:12 UTC (rev 492) +++ users/mbooth/projects/aplaws/svn-switch-trunk.sh 2005-03-24 12:46:42 UTC (rev 493) @@ -49,3 +49,4 @@ svn switch http://aplaws.redhat.com/svn/aplaws/ccm-simplesurvey/trunk ccm-simplesurvey/ svn switch http://aplaws.redhat.com/svn/aplaws/ccm-user-preferences/trunk/ ccm-user-preferences svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-htmlform/trunk/ ccm-cms-types-htmlform +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-formbuilder-pdf/trunk/ ccm-formbuilder-pdf |
Author: mbooth Date: 2005-03-24 13:17:12 +0100 (Thu, 24 Mar 2005) New Revision: 492 Modified: ccm-auth-http/trunk/application.xml ccm-cms-assets-fileattachment/trunk/application.xml ccm-cms-assets-notes/trunk/application.xml ccm-cms-assets-relatedlink/trunk/application.xml ccm-cms-types-address/trunk/application.xml ccm-cms-types-agenda/trunk/application.xml ccm-cms-types-article/trunk/application.xml ccm-cms-types-bookmark/trunk/application.xml ccm-cms-types-contact/trunk/application.xml ccm-cms-types-esdservice/trunk/application.xml ccm-cms-types-event/trunk/application.xml ccm-cms-types-faqitem/trunk/application.xml ccm-cms-types-filestorageitem/trunk/application.xml ccm-cms-types-formitem/trunk/application.xml ccm-cms-types-formsectionitem/trunk/application.xml ccm-cms-types-glossaryitem/trunk/application.xml ccm-cms-types-htmlform/trunk/application.xml ccm-cms-types-inlinesite/trunk/application.xml ccm-cms-types-job/trunk/application.xml ccm-cms-types-legalnotice/trunk/application.xml ccm-cms-types-minutes/trunk/application.xml ccm-cms-types-motditem/trunk/application.xml ccm-cms-types-mparticle/trunk/application.xml ccm-cms-types-newsitem/trunk/application.xml ccm-cms-types-organization/trunk/application.xml ccm-cms-types-pressrelease/trunk/application.xml ccm-cms-types-service/trunk/application.xml ccm-cms-types-siteproxy/trunk/application.xml ccm-cms/trunk/application.xml ccm-core/trunk/application.xml ccm-formbuilder-pdf/trunk/application.xml ccm-forum/trunk/application.xml ccm-ldn-aplaws/trunk/application.xml ccm-ldn-aplaws/trunk/bundles/camden/cfg/applications.cfg ccm-ldn-atoz/trunk/application.xml ccm-ldn-dublin/trunk/application.xml ccm-ldn-exporter/trunk/application.xml ccm-ldn-freeform/trunk/application.xml ccm-ldn-image-step/trunk/application.xml ccm-ldn-importer/trunk/application.xml ccm-ldn-navigation/trunk/application.xml ccm-ldn-portal/trunk/application.xml ccm-ldn-rss/trunk/application.xml ccm-ldn-search/trunk/application.xml ccm-ldn-shortcuts/trunk/application.xml ccm-ldn-subsite/trunk/application.xml ccm-ldn-terms/trunk/application.xml ccm-ldn-theme/trunk/application.xml ccm-ldn-util/trunk/application.xml ccm-ldn-xmlfeed/trunk/application.xml ccm-simplesurvey/trunk/application.xml Log: Bump all version numbers after 1.02 release. Modified: ccm-auth-http/trunk/application.xml =================================================================== --- ccm-auth-http/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-auth-http/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,10 +2,10 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-auth-http" prettyName="Auth HTTP" - version="1.4.1" - release="9"> + version="1.4.2" + release="1"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-cms/trunk/application.xml =================================================================== --- ccm-cms/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,11 +2,11 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms" prettyName="Red Hat CCM Content Management System" - version="6.1.1" - release="3" + version="6.1.2" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1" relation="ge"/> + <ccm:requires name="ccm-core" version="6.1.2" relation="ge"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/ccm" type="website"/> Modified: ccm-cms-assets-fileattachment/trunk/application.xml =================================================================== --- ccm-cms-assets-fileattachment/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-assets-fileattachment/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-assets-fileattachment" prettyName="Red Hat CMS Content Asset File Attachment" - version="6.1.0" - release="10" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-assets-notes/trunk/application.xml =================================================================== --- ccm-cms-assets-notes/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-assets-notes/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-assets-notes" prettyName="Red Hat CMS Content Asset Notes" - version="6.1.0" - release="3" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.0"/> - <ccm:requires name="ccm-cms" version="6.1.0"/> + <ccm:requires name="ccm-core" version="6.1.1"/> + <ccm:requires name="ccm-cms" version="6.1.1"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-assets-relatedlink/trunk/application.xml =================================================================== --- ccm-cms-assets-relatedlink/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-assets-relatedlink/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-assets-relatedlink" prettyName="Red Hat CMS Content Asset Related Link" - version="6.1.0" - release="10" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-address/trunk/application.xml =================================================================== --- ccm-cms-types-address/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-address/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-address" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-agenda/trunk/application.xml =================================================================== --- ccm-cms-types-agenda/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-agenda/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-agenda" prettyName="Red Hat CCM Content Types" - version="6.1.1" - release="3" + version="6.1.2" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-article/trunk/application.xml =================================================================== --- ccm-cms-types-article/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-article/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-article" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="10" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-bookmark/trunk/application.xml =================================================================== --- ccm-cms-types-bookmark/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-bookmark/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-bookmark" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-contact/trunk/application.xml =================================================================== --- ccm-cms-types-contact/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-contact/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-contact" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="6" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-esdservice/trunk/application.xml =================================================================== --- ccm-cms-types-esdservice/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-esdservice/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,13 +2,13 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-esdservice" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-cms-types-contact" version="6.1.0"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-cms-types-contact" version="6.1.1"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-event/trunk/application.xml =================================================================== --- ccm-cms-types-event/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-event/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-event" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-faqitem/trunk/application.xml =================================================================== --- ccm-cms-types-faqitem/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-faqitem/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-faqitem" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-filestorageitem/trunk/application.xml =================================================================== --- ccm-cms-types-filestorageitem/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-filestorageitem/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-filestorageitem" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="10" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-formitem/trunk/application.xml =================================================================== --- ccm-cms-types-formitem/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-formitem/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,13 +2,13 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-formitem" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="11" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-cms-types-formsectionitem" version="6.1.0"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-cms-types-formsectionitem" version="6.1.1"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-formsectionitem/trunk/application.xml =================================================================== --- ccm-cms-types-formsectionitem/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-formsectionitem/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-formsectionitem" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="11" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-glossaryitem/trunk/application.xml =================================================================== --- ccm-cms-types-glossaryitem/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-glossaryitem/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-glossaryitem" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-htmlform/trunk/application.xml =================================================================== --- ccm-cms-types-htmlform/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-htmlform/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,13 +2,13 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-htmlform" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="5" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-cms-types-article" version="6.1.0"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-cms-types-article" version="6.1.1"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-inlinesite/trunk/application.xml =================================================================== --- ccm-cms-types-inlinesite/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-inlinesite/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-inlinesite" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-job/trunk/application.xml =================================================================== --- ccm-cms-types-job/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-job/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-job" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-legalnotice/trunk/application.xml =================================================================== --- ccm-cms-types-legalnotice/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-legalnotice/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-legalnotice" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-minutes/trunk/application.xml =================================================================== --- ccm-cms-types-minutes/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-minutes/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-minutes" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-motditem/trunk/application.xml =================================================================== --- ccm-cms-types-motditem/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-motditem/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-motditem" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-mparticle/trunk/application.xml =================================================================== --- ccm-cms-types-mparticle/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-mparticle/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-mparticle" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-newsitem/trunk/application.xml =================================================================== --- ccm-cms-types-newsitem/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-newsitem/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-newsitem" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="10" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-organization/trunk/application.xml =================================================================== --- ccm-cms-types-organization/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-organization/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-organization" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-pressrelease/trunk/application.xml =================================================================== --- ccm-cms-types-pressrelease/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-pressrelease/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-pressrelease" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-service/trunk/application.xml =================================================================== --- ccm-cms-types-service/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-service/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-service" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-cms-types-siteproxy/trunk/application.xml =================================================================== --- ccm-cms-types-siteproxy/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-cms-types-siteproxy/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-cms-types-siteproxy" prettyName="Red Hat CCM Content Types" - version="6.1.0" - release="9" + version="6.1.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:directories> <ccm:directory name="pdl"/> Modified: ccm-core/trunk/application.xml =================================================================== --- ccm-core/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-core/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,8 +2,8 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-core" prettyName="Core" - version="6.1.1" - release="3" + version="6.1.2" + release="1" webapp="ROOT" buildHooks="build-hooks.xml"> <ccm:dependencies> Modified: ccm-formbuilder-pdf/trunk/application.xml =================================================================== --- ccm-formbuilder-pdf/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-formbuilder-pdf/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -7,8 +7,8 @@ xmlns:ccm="http://ccm.redhat.com/ccm-project"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:contacts> Modified: ccm-forum/trunk/application.xml =================================================================== --- ccm-forum/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-forum/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,10 +2,10 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-forum" prettyName="Forum" - version="1.4.1" - release="17"> + version="1.4.2" + release="1"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-aplaws/trunk/application.xml =================================================================== --- ccm-ldn-aplaws/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-aplaws/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,17 +2,17 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-aplaws" prettyName="APLAWS" - version="1.9.1" - release="10" + version="1.9.2" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-ldn-subsite" version="1.4.1"/> - <ccm:requires name="ccm-ldn-portal" version="1.4.2"/> - <ccm:requires name="ccm-ldn-terms" version="1.0.2"/> - <ccm:requires name="ccm-ldn-navigation" version="1.4.4"/> - <ccm:requires name="ccm-cms-types-article" version="6.1.0"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-ldn-subsite" version="1.4.2"/> + <ccm:requires name="ccm-ldn-portal" version="1.4.3"/> + <ccm:requires name="ccm-ldn-terms" version="1.0.3"/> + <ccm:requires name="ccm-ldn-navigation" version="1.4.5"/> + <ccm:requires name="ccm-cms-types-article" version="6.1.1"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-aplaws/trunk/bundles/camden/cfg/applications.cfg =================================================================== --- ccm-ldn-aplaws/trunk/bundles/camden/cfg/applications.cfg 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-aplaws/trunk/bundles/camden/cfg/applications.cfg 2005-03-24 12:17:12 UTC (rev 492) @@ -38,3 +38,4 @@ ccm-ldn-util ccm-ldn-xmlfeed +ccm-formbuilder-pdf Modified: ccm-ldn-atoz/trunk/application.xml =================================================================== --- ccm-ldn-atoz/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-atoz/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,15 +2,15 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-atoz" prettyName="A-Z" - version="1.0.2" - release="3"> + version="1.0.3" + release="1"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-ldn-util" version="1.4.1"/> - <ccm:requires name="ccm-ldn-terms" version="1.0.2"/> - <ccm:requires name="ccm-ldn-navigation" version="1.4.4"/> - <ccm:requires name="ccm-ldn-subsite" version="1.4.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-ldn-util" version="1.4.2"/> + <ccm:requires name="ccm-ldn-terms" version="1.0.3"/> + <ccm:requires name="ccm-ldn-navigation" version="1.4.5"/> + <ccm:requires name="ccm-ldn-subsite" version="1.4.2"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-dublin/trunk/application.xml =================================================================== --- ccm-ldn-dublin/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-dublin/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,14 +2,14 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-dublin" prettyName="Dublin Core" - version="1.4.1" - release="9" + version="1.4.2" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-ldn-terms" version="1.0.2"/> - <ccm:requires name="ccm-ldn-navigation" version="1.4.4"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-ldn-terms" version="1.0.3"/> + <ccm:requires name="ccm-ldn-navigation" version="1.4.5"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-exporter/trunk/application.xml =================================================================== --- ccm-ldn-exporter/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-exporter/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,19 +2,19 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-exporter" prettyName="exporter" - version="1.0.0" - release="6"> + version="1.0.1" + release="1"> <ccm:directories> <ccm:directory name="src"/> <ccm:directory name="pdl"/> <ccm:directory name="web"/> </ccm:directories> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-ldn-util" version="1.4.1"/> - <ccm:requires name="ccm-cms-types-filestorageitem" version="6.1.0"/> - <ccm:requires name="ccm-cms-types-mparticle" version="6.1.0"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-ldn-util" version="1.4.2"/> + <ccm:requires name="ccm-cms-types-filestorageitem" version="6.1.1"/> + <ccm:requires name="ccm-cms-types-mparticle" version="6.1.1"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-freeform/trunk/application.xml =================================================================== --- ccm-ldn-freeform/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-freeform/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-freeform" prettyName="Freeform" - version="1.4.1" - release="5" + version="1.4.2" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-image-step/trunk/application.xml =================================================================== --- ccm-ldn-image-step/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-image-step/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,13 +2,13 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-image-step" prettyName="Image step" - version="2.0.0" - release="10" + version="2.0.1" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-ldn-navigation" version="1.4.4"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-ldn-navigation" version="1.4.5"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-importer/trunk/application.xml =================================================================== --- ccm-ldn-importer/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-importer/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-importer" prettyName="Importer" - version="1.0.0" - release="9"> + version="1.0.1" + release="1"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-ldn-util" version="1.4.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-ldn-util" version="1.4.2"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-navigation/trunk/application.xml =================================================================== --- ccm-ldn-navigation/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-navigation/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,14 +2,14 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-navigation" prettyName="Navigation" - version="1.4.4" - release="3" + version="1.4.5" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-ldn-util" version="1.4.1"/> - <ccm:requires name="ccm-ldn-terms" version="1.0.2"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-ldn-util" version="1.4.2"/> + <ccm:requires name="ccm-ldn-terms" version="1.0.3"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-portal/trunk/application.xml =================================================================== --- ccm-ldn-portal/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-portal/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,16 +2,16 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-portal" prettyName="Portal" - version="1.4.2" - release="5" + version="1.4.3" + release="1" webapp="ROOT"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-forum" version="1.4.1"/> - <ccm:requires name="ccm-ldn-navigation" version="1.4.4"/> - <ccm:requires name="ccm-ldn-rss" version="1.4.1"/> - <ccm:requires name="ccm-ldn-util" version="1.4.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-forum" version="1.4.2"/> + <ccm:requires name="ccm-ldn-navigation" version="1.4.5"/> + <ccm:requires name="ccm-ldn-rss" version="1.4.2"/> + <ccm:requires name="ccm-ldn-util" version="1.4.2"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-rss/trunk/application.xml =================================================================== --- ccm-ldn-rss/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-rss/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,13 +2,13 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-rss" prettyName="RSS" - version="1.4.1" - release="10"> + version="1.4.2" + release="1"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-ldn-util" version="1.4.1"/> - <ccm:requires name="ccm-ldn-terms" version="1.0.2"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-ldn-util" version="1.4.2"/> + <ccm:requires name="ccm-ldn-terms" version="1.0.3"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-search/trunk/application.xml =================================================================== --- ccm-ldn-search/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-search/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,12 +2,12 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-search" prettyName="Search" - version="1.4.2" - release="3"> + version="1.4.3" + release="1"> <ccm:dependencies> - <ccm:requires name="ccm-core" version="6.1.1"/> - <ccm:requires name="ccm-cms" version="6.1.1"/> - <ccm:requires name="ccm-ldn-util" version="1.4.1"/> + <ccm:requires name="ccm-core" version="6.1.2"/> + <ccm:requires name="ccm-cms" version="6.1.2"/> + <ccm:requires name="ccm-ldn-util" version="1.4.2"/> </ccm:dependencies> <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> Modified: ccm-ldn-shortcuts/trunk/application.xml =================================================================== --- ccm-ldn-shortcuts/trunk/application.xml 2005-03-24 12:15:38 UTC (rev 491) +++ ccm-ldn-shortcuts/trunk/application.xml 2005-03-24 12:17:12 UTC (rev 492) @@ -2,10 +2,10 @@ <ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" name="ccm-ldn-shortcuts" prettyName="Shortcuts" .. |
From: <mb...@re...> - 2005-03-24 12:18:12
|
Author: mbooth Date: 2005-03-24 13:15:38 +0100 (Thu, 24 Mar 2005) New Revision: 491 Added: users/mbooth/projects/aplaws-build/camden.txt Log: Add builder order for camden bundle Added: users/mbooth/projects/aplaws-build/camden.txt =================================================================== --- users/mbooth/projects/aplaws-build/camden.txt 2005-03-24 12:13:29 UTC (rev 490) +++ users/mbooth/projects/aplaws-build/camden.txt 2005-03-24 12:15:38 UTC (rev 491) @@ -0,0 +1,36 @@ +ccm-core +ccm-cms +ccm-cms-assets-relatedlink +ccm-cms-assets-fileattachment +ccm-cms-types-agenda +ccm-cms-types-article +ccm-cms-types-event +ccm-cms-types-filestorageitem +ccm-cms-types-formsectionitem +ccm-cms-types-formitem +ccm-cms-types-htmlform +ccm-cms-types-inlinesite +ccm-cms-types-job +ccm-cms-types-legalnotice +ccm-cms-types-minutes +ccm-cms-types-mparticle +ccm-cms-types-newsitem +ccm-cms-types-pressrelease +ccm-cms-types-service +ccm-cms-types-siteproxy +ccm-forum +ccm-ldn-util +ccm-ldn-terms +ccm-ldn-rss +ccm-ldn-navigation +ccm-ldn-portal +ccm-ldn-subsite +ccm-ldn-atoz +ccm-ldn-aplaws +ccm-ldn-dublin +ccm-ldn-importer +ccm-ldn-search +ccm-ldn-shortcuts +ccm-ldn-theme +ccm-ldn-xmlfeed +ccm-formbuilder-pdf |
From: <mb...@re...> - 2005-03-24 12:15:55
|
Author: mbooth Date: 2005-03-24 13:13:29 +0100 (Thu, 24 Mar 2005) New Revision: 490 Added: users/mbooth/projects/aplaws-build/bump-version.sh Log: Add script to automatically bump all version numbers. Copied: users/mbooth/projects/aplaws-build/bump-version.sh (from rev 482, users/mbooth/projects/aplaws-build/bump-release.sh) =================================================================== --- users/mbooth/projects/aplaws-build/bump-release.sh 2005-03-20 23:28:16 UTC (rev 482) +++ users/mbooth/projects/aplaws-build/bump-version.sh 2005-03-24 12:13:29 UTC (rev 490) @@ -0,0 +1,70 @@ +#!/bin/sh + +for application in `find -maxdepth 3 -name application.xml`; do + cat <<XSL | xsltproc - $application | awk ' +/<ccm:application/ {print gensub("\" ", "\"\n ", "g")} +! /<ccm:application/ {print $0} +' > application.xml.new +<?xml version="1.0" encoding="utf-8"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:str="http://exslt.org/strings" + xmlns:ccm="http://ccm.redhat.com/ccm-project" + version="1.0"> + + <xsl:output method="xml" indent="yes"/> + + <xsl:template match="ccm:application"> + <xsl:copy> + <xsl:for-each select="attribute::*"> + <xsl:choose> + <xsl:when test="name() = 'version'"> + <xsl:attribute name="version"><xsl:call-template name="bumpversion"/></xsl:attribute> + </xsl:when> + + <xsl:when test="name() = 'release'"> + <xsl:attribute name="release">1</xsl:attribute> + </xsl:when> + + <xsl:otherwise> + <xsl:copy/> + </xsl:otherwise> + </xsl:choose> + </xsl:for-each> + + <xsl:apply-templates mode="copy"/> + </xsl:copy> + </xsl:template> + + <xsl:template match="*" mode="copy"> + <xsl:copy> + <xsl:for-each select="attribute::*"> + <xsl:copy/> + </xsl:for-each> + <xsl:apply-templates mode="copy"/> + </xsl:copy> + </xsl:template> + + <xsl:template match="ccm:requires" mode="copy"> + <xsl:copy> + <xsl:for-each select="attribute::*"> + <xsl:choose> + <xsl:when test="name()='version'"> + <xsl:attribute name="version"><xsl:call-template name="bumpversion"/></xsl:attribute> + </xsl:when> + + <xsl:otherwise> + <xsl:copy/> + </xsl:otherwise> + </xsl:choose> + </xsl:for-each> + </xsl:copy> + </xsl:template> + + <xsl:template name="bumpversion"> + <xsl:for-each select="str:tokenize(., '.')"><xsl:choose><xsl:when test="position()=last()"><xsl:value-of select=". + 1"/></xsl:when><xsl:otherwise><xsl:value-of select="."/>.</xsl:otherwise></xsl:choose></xsl:for-each> + </xsl:template> +</xsl:stylesheet> +XSL + + mv application.xml.new $application +done |
From: <mb...@re...> - 2005-03-24 09:15:17
|
Author: mbooth Date: 2005-03-24 10:12:51 +0100 (Thu, 24 Mar 2005) New Revision: 489 Added: users/mbooth/projects/aplaws-build/svn-switch-trunk.sh Removed: users/mbooth/projects/aplaws-build/svn-switch.sh Log: Update svn-switch to update to trunk and include formbuilder pdf target Copied: users/mbooth/projects/aplaws-build/svn-switch-trunk.sh (from rev 427, users/mbooth/projects/aplaws-build/svn-switch.sh) =================================================================== --- users/mbooth/projects/aplaws-build/svn-switch.sh 2005-03-18 15:11:45 UTC (rev 427) +++ users/mbooth/projects/aplaws-build/svn-switch-trunk.sh 2005-03-24 09:12:51 UTC (rev 489) @@ -0,0 +1,53 @@ +#!/bin/sh + +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-auth-http/trunk ccm-auth-http/ccm-auth-http/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms/trunk ccm-cms/ccm-cms/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-assets-fileattachment/trunk ccm-cms-assets-fileattachment/ccm-cms-assets-fileattachment/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-assets-relatedlink/trunk ccm-cms-assets-relatedlink/ccm-cms-assets-relatedlink/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-address/trunk ccm-cms-types-address/ccm-cms-types-address/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-agenda/trunk ccm-cms-types-agenda/ccm-cms-types-agenda/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-article/trunk ccm-cms-types-article/ccm-cms-types-article/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-bookmark/trunk ccm-cms-types-bookmark/ccm-cms-types-bookmark/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-contact/trunk ccm-cms-types-contact/ccm-cms-types-contact/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-esdservice/trunk ccm-cms-types-esdservice/ccm-cms-types-esdservice/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-event/trunk ccm-cms-types-event/ccm-cms-types-event/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-faqitem/trunk ccm-cms-types-faqitem/ccm-cms-types-faqitem/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-filestorageitem/trunk ccm-cms-types-filestorageitem/ccm-cms-types-filestorageitem/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-formitem/trunk ccm-cms-types-formitem/ccm-cms-types-formitem/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-formsectionitem/trunk ccm-cms-types-formsectionitem/ccm-cms-types-formsectionitem/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-glossaryitem/trunk ccm-cms-types-glossaryitem/ccm-cms-types-glossaryitem/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-inlinesite/trunk ccm-cms-types-inlinesite/ccm-cms-types-inlinesite/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-job/trunk ccm-cms-types-job/ccm-cms-types-job/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-legalnotice/trunk ccm-cms-types-legalnotice/ccm-cms-types-legalnotice/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-minutes/trunk ccm-cms-types-minutes/ccm-cms-types-minutes/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-motditem/trunk ccm-cms-types-motditem/ccm-cms-types-motditem/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-mparticle/trunk ccm-cms-types-mparticle/ccm-cms-types-mparticle/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-newsitem/trunk ccm-cms-types-newsitem/ccm-cms-types-newsitem/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-organization/trunk ccm-cms-types-organization/ccm-cms-types-organization/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-pressrelease/trunk ccm-cms-types-pressrelease/ccm-cms-types-pressrelease/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-service/trunk ccm-cms-types-service/ccm-cms-types-service/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-siteproxy/trunk ccm-cms-types-siteproxy/ccm-cms-types-siteproxy/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-core/trunk ccm-core/ccm-core/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-forum/trunk ccm-forum/ccm-forum/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-aplaws/trunk ccm-ldn-aplaws/ccm-ldn-aplaws/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-atoz/trunk ccm-ldn-atoz/ccm-ldn-atoz/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-dublin/trunk ccm-ldn-dublin/ccm-ldn-dublin/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-exporter/trunk ccm-ldn-exporter/ccm-ldn-exporter/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-freeform/trunk ccm-ldn-freeform/ccm-ldn-freeform/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-image-step/trunk ccm-ldn-image-step/ccm-ldn-image-step/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-importer/trunk ccm-ldn-importer/ccm-ldn-importer/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-navigation/trunk ccm-ldn-navigation/ccm-ldn-navigation/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-portal/trunk ccm-ldn-portal/ccm-ldn-portal/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-rss/trunk ccm-ldn-rss/ccm-ldn-rss/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-search/trunk ccm-ldn-search/ccm-ldn-search/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-shortcuts/trunk ccm-ldn-shortcuts/ccm-ldn-shortcuts/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-subsite/trunk ccm-ldn-subsite/ccm-ldn-subsite/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-terms/trunk ccm-ldn-terms/ccm-ldn-terms/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-theme/trunk ccm-ldn-theme/ccm-ldn-theme/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-util/trunk ccm-ldn-util/ccm-ldn-util/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-xmlfeed/trunk ccm-ldn-xmlfeed/ccm-ldn-xmlfeed/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-assets-notes/trunk ccm-cms-assets-notes/ccm-cms-assets-notes/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-simplesurvey/trunk ccm-simplesurvey/ccm-simplesurvey/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-cms-types-htmlform/trunk ccm-cms-types-htmlform/ccm-cms-types-htmlform/ +svn switch http://aplaws.redhat.com/svn/aplaws/ccm-formbuilder-pdf/trunk ccm-formbuilder-pdf/ccm-formbuilder-pdf/ +svn switch http://aplaws.redhat.com/svn/aplaws/tools/trunk tools/ Deleted: users/mbooth/projects/aplaws-build/svn-switch.sh |
From: <mb...@re...> - 2005-03-24 09:01:40
|
Author: mbooth Date: 2005-03-24 09:59:15 +0100 (Thu, 24 Mar 2005) New Revision: 488 Added: users/mbooth/projects/aplaws-build/ccm-formbuilder-pdf/ users/mbooth/projects/aplaws-build/ccm-formbuilder-pdf/ccm-formbuilder-pdf/ Log: Add formbuilder PDF action to build |
From: <ap...@re...> - 2005-03-24 03:09:02
|
Author: apevec Date: 2005-03-24 04:06:35 +0100 (Thu, 24 Mar 2005) New Revision: 487 Added: users/public/ users/public/beyond-bebop.pdf Log: whitepaper "Beyond Bebop: Lightweight components generating semantic XML" idea and outline by Dan editing by Alan Added: users/public/beyond-bebop.pdf =================================================================== --- users/public/beyond-bebop.pdf 2005-03-23 18:24:57 UTC (rev 486) +++ users/public/beyond-bebop.pdf 2005-03-24 03:06:35 UTC (rev 487) @@ -0,0 +1,28011 @@ +%PDF-1.4 +%+1 0 obj +<< /Length 2 0 R +>> +stream +0 w +q 0 0.1 595.3 841.9 re W* n +q 0 0 0 rg +BT +206.4 447 Td /F1 18 Tf <42> Tj +13 0 Td <65> Tj +10 0 Td <79> Tj +10 0 Td <6F> Tj +11 0 Td <6E> Tj +11 0 Td <64> Tj +11 0 Td <20> Tj +5 0 Td <42> Tj +13 0 Td <65> Tj +10 0 Td <62> Tj +11 0 Td <6F> Tj +11 0 Td <70> Tj +11 0 Td <3A> Tj +6 0 Td <20> Tj +5 0 Td <4C> Tj +11 0 Td <69> Tj +5 0 Td <67> Tj +11 0 Td <68> Tj +11 0 Td <74> Tj +5.9 0 Td <77> Tj +14.1 0 Td <65> Tj +10 0 Td <69> Tj +5 0 Td <67> Tj +11 0 Td <68> Tj +11 0 Td <74> Tj +ET +Q +q 0 0 0 rg +BT +206.4 425.6 Td /F1 18 Tf <63> Tj +10 0 Td <6F> Tj +11 0 Td <6D> Tj +16 0 Td <70> Tj +11 0 Td <6F> Tj +11 0 Td <6E> Tj +11 0 Td <65> Tj +10 0 Td <6E> Tj +11 0 Td <74> Tj +6 0 Td <73> Tj +10 0 Td <20> Tj +5 0 Td <67> Tj +11 0 Td <65> Tj +10 0 Td <6E> Tj +11 0 Td <65> Tj +10 0 Td <72> Tj +7 0 Td <61> Tj +10 0 Td <74> Tj +6 0 Td <69> Tj +5 0 Td <6E> Tj +11 0 Td <67> Tj +ET +Q +q 0 0 0 rg +BT +206.4 404.3 Td /F1 18 Tf <73> Tj +10 0 Td <65> Tj +10 0 Td <6D> Tj +16 0 Td <61> Tj +10 0 Td <6E> Tj +11 0 Td <74> Tj +6 0 Td <69> Tj +5 0 Td <63> Tj +10 0 Td <20> Tj +5 0 Td <58> Tj +12 0 Td <4D> Tj +15 0 Td <4C> Tj +ET +Q +q 0 0 0 rg +BT +206.3 360.6 Td /F2 10 Tf <42> Tj +6.7 0 Td <79> Tj +5 0 Td <20> Tj +2.8 0 Td <44> Tj +7.3 0 Td <61> Tj +5.5 0 Td <6E> Tj +5.6 0 Td <69> Tj +2.2 0 Td <65> Tj +5.6 0 Td <6C> Tj +2.4 0 Td <20> Tj +ET +Q +q 0 0 0 rg +BT +252.2 360.6 Td /F2 10 Tf <42> Tj +6.7 0 Td <65> Tj +5.5 0 Td <72> Tj +3.3 0 Td <72> Tj +3.4 0 Td <61> Tj +5.6 0 Td <6E> Tj +5.6 0 Td <67> Tj +5.6 0 Td <65> Tj +ET +Q +q 0 0 0 rg +BT +293.6 360.6 Td /F2 10 Tf <20> Tj +2.8 0 Td <61> Tj +5.6 0 Td <6E> Tj +5.5 0 Td <64> Tj +5.7 0 Td <20> Tj +2.8 0 Td <41> Tj +6.7 0 Td <6C> Tj +2.2 0 Td <61> Tj +5.6 0 Td <6E> Tj +5.7 0 Td <20> Tj +2.8 0 Td <50> Tj +6.6 0 Td <65> Tj +5.6 0 Td <76> Tj +5.1 0 Td <65> Tj +5.6 0 Td <63> Tj +ET +Q +q 0 0 0 rg +BT +206.3 330.8 Td /F2 6 Tf <20> Tj +ET +Q +q 0 0 0 rg +BT +207.9 330.8 Td /F3 10 Tf <41> Tj +7.3 0 Td <62> Tj +6.1 0 Td <73> Tj +5.5 0 Td <74> Tj +3.4 0 Td <72> Tj +3.9 0 Td <61> Tj +5.6 0 Td <63> Tj +5.6 0 Td <74> Tj +3.5 0 Td <20> Tj +ET +Q +q 0 0 0 rg +BT +206.3 315.7 Td /F2 10 Tf <42> Tj +6.7 0 Td <65> Tj +5.5 0 Td <62> Tj +5.6 0 Td <6F> Tj +5.5 0 Td <70> Tj +5.8 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <73> Tj +5.1 0 Td <20> Tj +2.8 0 Td <74> Tj +2.8 0 Td <68> Tj +5.5 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <64> Tj +5.5 0 Td <65> Tj +5.6 0 Td <66> Tj +2.8 0 Td <61> Tj +5.6 0 Td <75> Tj +5.6 0 Td <6C> Tj +2.2 0 Td <74> Tj +2.9 0 Td <20> Tj +2.8 0 Td <77> Tj +7.3 0 Td <65> Tj +5.5 0 Td <62> Tj +5.7 0 Td <20> Tj +2.8 0 Td <75> Tj +5.6 0 Td <73> Tj +5 0 Td <65> Tj +5.6 0 Td <72> Tj +3.4 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <6E> Tj +5.6 0 Td <74> Tj +2.8 0 Td <65> Tj +5.6 0 Td <72> Tj +3.4 0 Td <66> Tj +2.7 0 Td <61> Tj +5.6 0 Td <63> Tj +5.1 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <74> Tj +2.8 0 Td <6F> Tj +5.5 0 Td <6F> Tj +5.6 0 Td <6C> Tj +2.2 0 Td <6B> Tj +5 0 Td <69> Tj +2.3 0 Td <74> Tj +2.9 0 Td <20> Tj +2.8 0 Td <6C> Tj +2.2 0 Td <69> Tj +2.2 0 Td <62> Tj +5.6 0 Td <72> Tj +3.3 0 Td <61> Tj +5.7 0 Td <72> Tj +3.3 0 Td <79> Tj +ET +Q +q 0 0 0 rg +BT +206.3 300.8 Td /F2 10 Tf <75> Tj +5.6 0 Td <73> Tj +5 0 Td <65> Tj +5.5 0 Td <64> Tj +5.7 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <6E> Tj +5.6 0 Td <20> Tj +2.9 0 Td <61> Tj +5.5 0 Td <70> Tj +5.6 0 Td <70> Tj +5.6 0 Td <6C> Tj +2.2 0 Td <69> Tj +2.2 0 Td <63> Tj +5.1 0 Td <61> Tj +5.5 0 Td <74> Tj +2.9 0 Td <69> Tj +2.2 0 Td <6F> Tj +5.6 0 Td <6E> Tj +5.6 0 Td <73> Tj +5.2 0 Td <20> Tj +2.8 0 Td <62> Tj +5.6 0 Td <61> Tj +5.5 0 Td <7365> Tj +10.6 0 Td <64> Tj +5.7 0 Td <20> Tj +2.8 0 Td <6F> Tj +5.6 0 Td <6E> Tj +5.6 0 Td <20> Tj +2.8 0 Td <52> Tj +7.3 0 Td <65> Tj +5.5 0 Td <64> Tj +5.7 0 Td <20> Tj +2.8 0 Td <48> Tj +7.3 0 Td <61> Tj +5.5 0 Td <74> Tj +2.9 0 Td <20> Tj +2.8 0 Td <5765> Tj +15 0 Td <62> Tj +5.7 0 Td <20> Tj +2.8 0 Td <41> Tj +6.7 0 Td <70> Tj +5.6 0 Td <70> Tj +5.6 0 Td <6C> Tj +2.2 0 Td <69> Tj +2.2 0 Td <63> Tj +5.1 0 Td <61> Tj +5.6 0 Td <74> Tj +2.8 0 Td <69> Tj +2.2 0 Td <6F> Tj +5.6 0 Td <6E> Tj +ET +Q +q 0 0 0 rg +BT +206.3 285.9 Td /F2 10 Tf <46> Tj +6.1 0 Td <72> Tj +3.3 0 Td <61> Tj +5.6 0 Td <6D> Tj +8.4 0 Td <65> Tj +5.5 0 Td <77> Tj +7.3 0 Td <6F> Tj +5.6 0 Td <72> Tj +3.4 0 Td <6B> Tj +5 0 Td <2E> Tj +3 0 Td <20> Tj +2.8 0 Td <49> Tj +2.8 0 Td <74> Tj +2.8 0 Td <20> Tj +2.8 0 Td <77> Tj +7.2 0 Td <61> Tj +5.6 0 Td <73> Tj +5.1 0 Td <20> Tj +ET +Q +q 0 0 0 rg +BT +291.4 285.9 Td /F2 10 Tf <6D6F> Tj +13.9 0 Td <64> Tj +5.5 0 Td <65> Tj +5.6 0 Td <6C> Tj +2.2 0 Td <6C> Tj +2.3 0 Td <65> Tj +5.6 0 Td <64> Tj +ET +Q +q 0 0 0 rg +BT +332.2 285.9 Td /F2 10 Tf <20> Tj +2.8 0 Td <6F> Tj +5.6 0 Td <6E> Tj +5.6 0 Td <20> Tj +2.8 0 Td <74> Tj +2.8 0 Td <68> Tj +5.5 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <53> Tj +6.7 0 Td <5749> Tj +12.2 0 Td <4E> Tj +7.3 0 Td <47> Tj +8 0 Td <20> Tj +2.8 0 Td <67> Tj +5.5 0 Td <72> Tj +3.4 0 Td <61> Tj +5.5 0 Td <70> Tj +5.7 0 Td <68> Tj +5.6 0 Td <69> Tj +2.2 0 Td <6361> Tj +10.6 0 Td <6C> Tj +ET +Q +q 0 0 0 rg +BT +206.3 271 Td /F2 10 Tf <75> Tj +5.6 0 Td <73> Tj +5 0 Td <65> Tj +5.5 0 Td <72> Tj +3.5 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <6E> Tj +5.6 0 Td <74> Tj +2.7 0 Td <65> Tj +5.6 0 Td <72> Tj +3.3 0 Td <66> Tj +2.9 0 Td <61> Tj +5.6 0 Td <63> Tj +5 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <74> Tj +2.8 0 Td <6F> Tj +5.6 0 Td <6F> Tj +5.5 0 Td <6C> Tj +2.2 0 Td <6B> Tj +5.1 0 Td <69> Tj +2.2 0 Td <74> Tj +2.9 0 Td <20> Tj +2.8 0 Td <61> Tj +5.6 0 Td <6E> Tj +5.6 0 Td <64> Tj +5.6 0 Td <2C> Tj +2.9 0 Td <20> Tj +2.8 0 Td <64> Tj +5.5 0 Td <75> Tj +5.6 0 Td <72> Tj +3.3 0 Td <69> Tj +2.2 0 Td <6E> Tj +5.7 0 Td <67> Tj +5.7 0 Td <20> Tj +2.8 0 Td <74> Tj +2.7 0 Td <68> Tj +5.6 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <6C> Tj +2.2 0 Td <69> Tj +2.2 0 Td <66> Tj +2.8 0 Td <65> Tj +5.6 0 Td <74> Tj +2.7 0 Td <69> Tj +2.3 0 Td <6D> Tj +8.4 0 Td <65> Tj +5.6 0 Td <2C> Tj +2.9 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <74> Tj +2.9 0 Td <20> Tj +2.8 0 Td <68> Tj +5.5 0 Td <61> Tj +5.6 0 Td <73> Tj +ET +Q +q 0 0 0 rg +BT +206.3 256.1 Td /F2 10 Tf <7368> Tj +10.6 0 Td <6F> Tj +5.5 0 Td <77> Tj +7.2 0 Td <6E> Tj +5.8 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <74> Tj +2.8 0 Td <73> Tj +5.1 0 Td <20> Tj +ET +Q +q 0 0 0 rg +BT +251.1 256.1 Td /F2 10 Tf <73> Tj +5 0 Td <74> Tj +2.8 0 Td <72> Tj +3.3 0 Td <65> Tj +5.6 0 Td <6E> Tj +5.6 0 Td <67> Tj +5.5 0 Td <74> Tj +2.9 0 Td <68> Tj +5.6 0 Td <73> Tj +ET +Q +q 0 0 0 rg +BT +292.5 256.1 Td /F2 10 Tf <20> Tj +2.8 0 Td <62> Tj +5.6 0 Td <75> Tj +5.5 0 Td <74> Tj +2.9 0 Td <20> Tj +2.8 0 Td <61> Tj +5.6 0 Td <6C> Tj +2.2 0 Td <73> Tj +5 0 Td <6F> Tj +5.7 0 Td <20> Tj +2.8 0 Td <77> Tj +7.2 0 Td <65> Tj +5.6 0 Td <61> Tj +5.6 0 Td <6B6E> Tj +10.6 0 Td <65> Tj +5.6 0 Td <73> Tj +5.1 0 Td <7365> Tj +10.6 0 Td <73> Tj +5.1 0 Td <2E> Tj +2.9 0 Td <20> Tj +2.8 0 Td <49> Tj +2.7 0 Td <6E> Tj +5.7 0 Td <20> Tj +2.8 0 Td <74> Tj +2.8 0 Td <68> Tj +5.5 0 Td <69> Tj +2.2 0 Td <73> Tj +5.2 0 Td <20> Tj +2.8 0 Td <70> Tj +5.5 0 Td <61> Tj +5.6 0 Td <70> Tj +5.6 0 Td <65> Tj +5.5 0 Td <72> Tj +ET +Q +q 0 0 0 rg +BT +206.3 241.2 Td /F2 10 Tf <77> Tj +7.3 0 Td <65> Tj +5.5 0 Td <20> Tj +2.8 0 Td <77> Tj +7.3 0 Td <69> Tj +2.2 0 Td <6C> Tj +2.2 0 Td <6C> Tj +2.3 0 Td <20> Tj +2.8 0 Td <73> Tj +5 0 Td <68> Tj +5.6 0 Td <6F> Tj +5.6 0 Td <77> Tj +7.4 0 Td <20> Tj +2.8 0 Td <61> Tj +5.5 0 Td <6E> Tj +5.7 0 Td <20> Tj +2.8 0 Td <61> Tj +5.5 0 Td <70> Tj +5.6 0 Td <70> Tj +5.6 0 Td <72> Tj +3.3 0 Td <6F> Tj +5.6 0 Td <61> Tj +5.6 0 Td <63> Tj +5.1 0 Td <68> Tj +5.7 0 Td <20> Tj +2.8 0 Td <77> Tj +7.2 0 Td <68> Tj +5.6 0 Td <69> Tj +2.2 0 Td <63> Tj +5 0 Td <68> Tj +5.8 0 Td <20> Tj +2.8 0 Td <77> Tj +7.2 0 Td <6F> Tj +5.6 0 Td <75> Tj +5.5 0 Td <6C> Tj +2.3 0 Td <64> Tj +5.7 0 Td <20> Tj +2.8 0 Td <6B> Tj +5 0 Td <65> Tj +5.5 0 Td <65> Tj +5.6 0 Td <70> Tj +5.7 0 Td <20> Tj +2.8 0 Td <67> Tj +5.6 0 Td <6F> Tj +5.6 0 Td <6F> Tj +5.6 0 Td <64> Tj +ET +Q +q 0 0 0 rg +BT +206.3 226.3 Td /F2 10 Tf <70> Tj +5.6 0 Td <72> Tj +3.3 0 Td <6F> Tj +5.5 0 Td <70> Tj +5.6 0 Td <65> Tj +5.6 0 Td <72> Tj +3.3 0 Td <74> Tj +2.9 0 Td <69> Tj +2.2 0 Td <65> Tj +5.6 0 Td <73> Tj +5.2 0 Td <20> Tj +2.8 0 Td <6F> Tj +5.6 0 Td <66> Tj +2.8 0 Td <20> Tj +2.8 0 Td <42> Tj +6.6 0 Td <65> Tj +5.6 0 Td <62> Tj +5.6 0 Td <6F> Tj +5.6 0 Td <70> Tj +5.7 0 Td <20> Tj +2.8 0 Td <77> Tj +7.2 0 Td <68> Tj +5.6 0 Td <69> Tj +2.2 0 Td <6C> Tj +2.3 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <6F> Tj +5.6 0 Td <7665> Tj +10.5 0 Td <72> Tj +3.4 0 Td <63> Tj +5 0 Td <6F> Tj +5.6 0 Td <6D> Tj +8.4 0 Td <69> Tj +2.2 0 Td <6E> Tj +5.7 0 Td <67> Tj +5.7 0 Td <20> Tj +2.8 0 Td <74> Tj +2.7 0 Td <68> Tj +5.6 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <70> Tj +5.5 0 Td <6F> Tj +5.6 0 Td <69> Tj +2.2 0 Td <6E> Tj +5.6 0 Td <74> Tj +2.8 0 Td <73> Tj +5.2 0 Td <20> Tj +2.8 0 Td <77> Tj +7.2 0 Td <68> Tj +5.6 0 Td <69> Tj +2.2 0 Td <63> Tj +5 0 Td <68> Tj +ET +Q +q 0 0 0 rg +BT +206.3 211.4 Td /F2 10 Tf <77> Tj +7.3 0 Td <65> Tj +5.5 0 Td <72> Tj +3.3 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <64> Tj +5.6 0 Td <65> Tj +5.5 0 Td <6E> Tj +5.6 0 Td <74> Tj +2.8 0 Td <69> Tj +2.3 0 Td <66> Tj +2.8 0 Td <69> Tj +2.2 0 Td <65> Tj +5.6 0 Td <64> Tj +5.7 0 Td <20> Tj +2.8 0 Td <61> Tj +5.6 0 Td <73> Tj +5.1 0 Td <20> Tj +2.8 0 Td <70> Tj +5.5 0 Td <72> Tj +3.3 0 Td <6F> Tj +5.7 0 Td <62> Tj +5.5 0 Td <6C> Tj +2.2 0 Td <65> Tj +5.7 0 Td <6D> Tj +8.4 0 Td <61> Tj +5.6 0 Td <74> Tj +2.7 0 Td <69> Tj +2.3 0 Td <63> Tj +5.2 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <6E> Tj +5.6 0 Td <20> Tj +2.8 0 Td <74> Tj +2.8 0 Td <68> Tj +5.5 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <70> Tj +5.6 0 Td <61> Tj +5.6 0 Td <73> Tj +5 0 Td <74> Tj +2.9 0 Td <20> Tj +2.8 0 Td <64> Tj +5.5 0 Td <65> Tj +5.6 0 Td <76> Tj +5 0 Td <65> Tj +5.6 0 Td <6C> Tj +2.3 0 Td <6F> Tj +5.6 0 Td <70> Tj +5.6 0 Td <6D> Tj +8.4 0 Td <65> Tj +5.5 0 Td <6E> Tj +5.7 0 Td <74> Tj +2.8 0 Td <2E> Tj +ET +Q +q 0 0 0 rg +BT +206.3 196.5 Td /F2 10 Tf <50> Tj +6.7 0 Td <72> Tj +3.3 0 Td <65> Tj +5.5 0 Td <73> Tj +5.1 0 Td <65> Tj +5.6 0 Td <6E> Tj +5.5 0 Td <74> Tj +2.9 0 Td <65> Tj +5.6 0 Td <64> Tj +5.7 0 Td <20> Tj +2.8 0 Td <63> Tj +5 0 Td <6F> Tj +5.5 0 Td <6E> Tj +5.6 0 Td <63> Tj +5.1 0 Td <65> Tj +5.6 0 Td <70> Tj +5.5 0 Td <74> Tj +3 0 Td <20> Tj +2.8 0 Td <77> Tj +7.2 0 Td <69> Tj +2.2 0 Td <6C> Tj +2.3 0 Td <6C> Tj +2.3 0 Td <20> Tj +2.8 0 Td <62> Tj +5.5 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <6C> Tj +2.3 0 Td <6C> Tj +2.2 0 Td <75> Tj +5.5 0 Td <73> Tj +5.1 0 Td <74> Tj +2.7 0 Td <72> Tj +3.4 0 Td <61> Tj +5.6 0 Td <74> Tj +2.8 0 Td <65> Tj +5.6 0 Td <64> Tj +5.7 0 Td <20> Tj +2.8 0 Td <62> Tj +5.6 0 Td <79> Tj +5.1 0 Td <20> Tj +2.8 0 Td <65> Tj +5.5 0 Td <7861> Tj +10.6 0 Td <6D> Tj +8.4 0 Td <70> Tj +5.6 0 Td <6C> Tj +2.3 0 Td <65> Tj +5.6 0 Td <73> Tj +5.1 0 Td <20> Tj +2.8 0 Td <66> Tj +2.8 0 Td <72> Tj +3.3 0 Td <6F> Tj +5.6 0 Td <6D> Tj +ET +Q +q 0 0 0 rg +BT +206.3 181.6 Td /F2 10 Tf <66> Tj +2.8 0 Td <65> Tj +5.5 0 Td <77> Tj +7.3 0 Td <20> Tj +2.8 0 Td <41> Tj +6.7 0 Td <50> Tj +6.7 0 Td <4C> Tj +5.6 0 Td <41> Tj +6.7 0 Td <57> Tj +9.5 0 Td <53> Tj +6.7 0 Td <2B> Tj +6 0 Td <20> Tj +2.8 0 Td <61> Tj +5.6 0 Td <70> Tj +5.5 0 Td <70> Tj +5.6 0 Td <6C> Tj +2.3 0 Td <69> Tj +2.2 0 Td <63> Tj +5.1 0 Td <61> Tj +5.6 0 Td <74> Tj +2.7 0 Td <69> Tj +2.3 0 Td <6F> Tj +5.6 0 Td <6E> Tj +5.6 0 Td <73> Tj +5.2 0 Td <20> Tj +2.8 0 Td <77> Tj +7.2 0 Td <68> Tj +5.6 0 Td <69> Tj +2.2 0 Td <63> Tj +5 0 Td <68> Tj +5.7 0 Td <20> Tj +2.8 0 Td <61> Tj +5.6 0 Td <72> Tj +3.3 0 Td <65> Tj +5.7 0 Td <20> Tj +2.8 0 Td <61> Tj +5.5 0 Td <6C> Tj +2.3 0 Td <72> Tj +3.3 0 Td <65> Tj +5.6 0 Td <61> Tj +5.6 0 Td <64> Tj +5.6 0 Td <79> Tj +5.2 0 Td <20> Tj +2.8 0 Td <75> Tj +5.5 0 Td <73> Tj +5.1 0 Td <69> Tj +2.2 0 Td <6E> Tj +5.5 0 Td <67> Tj +5.7 0 Td <20> Tj +2.8 0 Td <69> Tj +2.2 0 Td <74> Tj +2.8 0 Td <2E> Tj +ET +Q +q 0 0 0 rg +BT +206.3 154.5 Td /F2 8 Tf <52> Tj +5.8 0 Td <65> Tj +4.3 0 Td <76> Tj +3.9 0 Td <69> Tj +1.8 0 Td <73> Tj +4 0 Td <69> Tj +1.7 0 Td <6F> Tj +4.4 0 Td <6E> Tj +4.4 0 Td <20> Tj +2.2 0 Td <30> Tj +4.4 0 Td <20> Tj +2.2 0 Td <2D20> Tj +4.9 0 Td <4D> Tj +6.6 0 Td <61> Tj +4.4 0 Td <72> Tj +2.6 0 Td <63> Tj +3.9 0 Td <6820> Tj +6.7 0 Td <32> Tj +4.4 0 Td <30> Tj +4.4 0 Td <30> Tj +4.4 0 Td <35> Tj +ET +Q +q 0 0 0 rg +BT +55.1 44.5 Td /F4 6 Tf <43> Tj +4.4 0 Td <6F> Tj +3.3 0 Td <70> Tj +3.3 0 Td <7972> Tj +5 0 Td <69> Tj +1.3 0 Td <67> Tj +3.3 0 Td <68> Tj +3.4 0 Td <74> Tj +1.7 0 Td <20> Tj +1.6 0 Td <A9> Tj +4.5 0 Td <20> Tj +1.6 0 Td <32> Tj +3.4 0 Td <30> Tj +3.3 0 Td <30> Tj +3.3 0 Td <35> Tj +3.4 0 Td <20> Tj +1.6 0 Td <20> Tj +1.7 0 Td <52> Tj +4.4 0 Td <65> Tj +3.3 0 Td <64> Tj +3.3 0 Td <20> Tj +1.7 0 Td <48> Tj +4.3 0 Td <61> Tj +3.4 0 Td <74> Tj +1.6 0 Td <2C> Tj +1.7 0 Td <20> Tj +1.7 0 Td <49> Tj +1.6 0 Td <6E> Tj +3.3 0 Td <632E> Tj +4.7 0 Td <20> Tj +1.7 0 Td <52> Tj +4.3 0 Td <65> Tj +3.3 0 Td <64> Tj +3.4 0 Td <20> Tj +1.7 0 Td <48> Tj +4.3 0 Td <61> Tj +3.3 0 Td <74> Tj +1.7 0 Td <2C> Tj +1.7 0 Td <20> Tj +1.6 0 Td <20> Tj +1.7 0 Td <52> Tj +4.3 0 Td <65> Tj +3.4 0 Td <64> Tj +3.3 0 Td <20> Tj +1.7 0 Td <48> Tj +4.3 0 Td <61> Tj +3.3 0 Td <74> Tj +1.7 0 Td <20> Tj +1.7 0 Td <4C> Tj +3.3 0 Td <69> Tj +1.3 0 Td <6E> Tj +3.4 0 Td <75> Tj +3.3 0 Td <782C> Tj +4.7 0 Td <20> Tj +1.7 0 Td <74> Tj +1.6 0 Td <68> Tj +3.4 0 Td <65> Tj +3.3 0 Td <20> Tj +1.7 0 Td <52> Tj +4.3 0 Td <65> Tj +3.3 0 Td <64> Tj +3.4 0 Td <20> Tj +1.6 0 Td <48> Tj +4.4 0 Td <61> Tj +3.3 0 Td <74> Tj +1.7 0 Td <20> Tj +1.6 0 Td <5368> Tj +7.4 0 Td <61> Tj +3.3 0 Td <64> Tj +3.3 0 Td <6F> Tj +3.3 0 Td <77> Tj +4.4 0 Td <6D61> Tj +8.3 0 Td <6E> Tj +3.4 0 Td <20> Tj +1.7 0 Td <20> Tj +1.6 0 Td <6C> Tj +1.3 0 Td <6F> Tj +3.4 0 Td <67> Tj +3.3 0 Td <6F> Tj +3.3 0 Td <2C> Tj +1.7 0 Td <20> Tj +1.7 0 Td <61> Tj +3.3 0 Td <6E> Tj +3.4 0 Td <64> Tj +3.3 0 Td <20> Tj +1.7 0 Td <74> Tj +1.6 0 Td <68> Tj +3.4 0 Td <65> Tj +3.3 0 Td <20> Tj +1.7 0 Td <70> Tj +3.3 0 Td <72> Tj +2 0 Td <6F> Tj +3.3 0 Td <64> Tj +3.3 0 Td <75> Tj +3.4 0 Td <6374> Tj +4.6 0 Td <73> Tj +3.1 0 Td <20> Tj +1.7 0 Td <6C> Tj +1.3 0 Td <69> Tj +1.3 0 Td <7374> Tj +4.7 0 Td <65> Tj +3.3 0 Td <64> Tj +3.4 0 Td <20> Tj +1.6 0 Td <61> Tj +3.3 0 Td <72> Tj +2 0 Td <65> Tj +3.4 0 Td <20> Tj +1.7 0 Td <74> Tj +1.7 0 Td <72> Tj +1.9 0 Td <61> Tj +3.4 0 Td <64> Tj +3.3 0 Td <65> Tj +3.3 0 Td <6D> Tj +5 0 Td <61> Tj +3.4 0 Td <726B7320> Tj +9.7 0 Td <6F> Tj +3.3 0 Td <72> Tj +2 0 Td <20> Tj +1.7 0 Td <72> Tj +2 0 Td <65> Tj +3.3 0 Td <67> Tj +3.3 0 Td <69> Tj +1.4 0 Td <7374> Tj +4.6 0 Td <65> Tj +3.3 0 Td <7265> Tj +5.4 0 Td <64> Tj +3.3 0 Td <20> Tj +1.7 0 Td <74> Tj +1.6 0 Td <7261> Tj +5.4 0 Td <64> Tj +3.3 0 Td <65> Tj +3.3 0 Td <6D61> Tj +8.3 0 Td <72> Tj +2 0 Td <6B73> Tj +6.1 0 Td <20> Tj +1.7 0 Td <6F> Tj +3.3 0 Td <66> Tj +1.7 0 Td <20> Tj +1.6 0 Td <52> Tj +4.3 0 Td <65> Tj +3.4 0 Td <64> Tj +3.3 0 Td <20> Tj +1.7 0 Td <48> Tj +4.4 0 Td <61> Tj +3.3 0 Td <74> Tj +1.7 0 Td <2C> Tj +ET +Q +q 0 0 0 rg +BT +55.1 37.3 Td /F4 6 Tf <49> Tj +1.7 0 Td <6E> Tj +3.3 0 Td <632E> Tj +4.7 0 Td <20> Tj +1.6 0 Td <69> Tj +1.3 0 Td <6E> Tj +3.4 0 Td <20> Tj +1.7 0 Td <74> Tj +1.6 0 Td <68> Tj +3.4 0 Td <65> Tj +3.3 0 Td <20> Tj +1.7 0 Td <55> Tj +4.3 0 Td <5320> Tj +5.7 0 Td <61> Tj +3.3 0 Td <6E> Tj +3.3 0 Td <64> Tj +3.4 0 Td <20> Tj +1.7 0 Td <6F> Tj +3.3 0 Td <74> Tj +1.7 0 Td <68> Tj +3.3 0 Td <65> Tj +3.3 0 Td <72> Tj +2 0 Td <20> Tj +1.7 0 Td <63> Tj +3 0 Td <6F> Tj +3.3 0 Td <75> Tj +3.4 0 Td <6E> Tj +3.3 0 Td <74> Tj +1.7 0 Td <72> Tj +1.9 0 Td <69> Tj +1.4 0 Td <65> Tj +3.3 0 Td <732E> Tj +ET +Q +Q q 13.5 681.5 92.6 36.7 re W* n +q 92.5 0 0 36.6 13.5 681.6 cm + /Im3 Do Q +Q q 0 512.7 490 33.4 re W* n +q 489.9 0 0 33.3 0 512.9 cm + /Im4 Do Q +Q endstream +endobj + +2 0 obj + 15776 +endobj + +4 0 obj +<< /Type /XObject + /Subtype /Image + /Width 2021 + /Height 138 + /BitsPerComponent 8 + /ColorSpace /DeviceRGB + /Filter /DCTDecode + /Length 21563 +>> +stream + + + ' .)10.)-,3:J>36F7,-@WAFLNRSR2>ZaZP`JQRO++%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz++$4&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzKy{wqU6jbb1W8lW1muo_i{?MnrDZ7h/O +i]n>:+3 +?(,u4W-8:Uh[Rg[?(,u4W-o +? + zWE`}YE`}G+xY7/ +k @ +=iFXZ$»o$W,-TBE`}SϾq3@qKnf5 +jXkZ;#? r{{WeS*m_]7]gmP5݂Eyd +z~r}M^&V+ڴRz{ZJyP3+u~K%}@u"t'p~ȢN~dz徵b`}DTUU)QE +(Fum|ǥhҢtU<Qqv`QEH:7hMv^ dY00Nu[V<κ1oz V+(MOEeTJa0j֕NGf]>T|i +7C]u!1n\ X(L1_hܤlt5ۇ-G4bXݫ01H*)*a ֩ם8rwe +\\d&>c}:v+EWH +Yiݏ& VFa?_EG(>2a3\u^2[[ՋÁ +Y64ƨ +䨩tWCETv5V8湱,J`xRT{n5r"%Aٝ;cܜTRQEDQ@,1}M舩QG cZ+͞S,+4i*k*M)B˙,̅z}jUAu'gTyE|XlY +)D^GW([Ct +VT7ôg'eQR)RzSS71SW_βD??AL7ƨ1-fo%=«)Sf?SzƛECu}$i꧵hE*JC=NݏQd9S؊㼩o8 j*7F%5fh$bXC(lXW2Q\@QE + +ݮyTW#WY 1 +((((((KKu rvãapr;}jKrr+J$F`;YwZVʲfYv,LM2v8i( v7['*Dad}^VaZ.ڥf2HXSYn{ԡ^Zn#k&OMhziZe#)>W[02iUaӥrqŝQ+Vo3Jz0zhJ)Z(i#~TY +*Ηyirk? +TQErQE + +~I鎿3@$Gn)I]X &>XǢV +T`j{( +( +( +( .. |
Author: mbooth Date: 2005-03-23 19:24:57 +0100 (Wed, 23 Mar 2005) New Revision: 486 Added: ccm-formbuilder-pdf/ ccm-formbuilder-pdf/trunk/ ccm-formbuilder-pdf/trunk/application.xml ccm-formbuilder-pdf/trunk/lib/ ccm-formbuilder-pdf/trunk/lib/avalon-framework-cvs-20020806.jar ccm-formbuilder-pdf/trunk/lib/batik.jar ccm-formbuilder-pdf/trunk/lib/fop.jar ccm-formbuilder-pdf/trunk/pdl/ ccm-formbuilder-pdf/trunk/pdl/com/ ccm-formbuilder-pdf/trunk/pdl/com/arsdigita/ ccm-formbuilder-pdf/trunk/pdl/com/arsdigita/formbuilder/ ccm-formbuilder-pdf/trunk/pdl/com/arsdigita/formbuilder/pdf/ ccm-formbuilder-pdf/trunk/pdl/com/arsdigita/formbuilder/pdf/PDFListener.pdl ccm-formbuilder-pdf/trunk/sql/ ccm-formbuilder-pdf/trunk/sql/ccm-formbuilder-pdf/ ccm-formbuilder-pdf/trunk/sql/ccm-formbuilder-pdf/oracle-se-create.sql ccm-formbuilder-pdf/trunk/sql/ccm-formbuilder-pdf/postgres-create.sql ccm-formbuilder-pdf/trunk/src/ ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.config ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.load ccm-formbuilder-pdf/trunk/src/com/ ccm-formbuilder-pdf/trunk/src/com/arsdigita/ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Converter.java ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Initializer.java ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Loader.java ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig.java ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig_parameter.properties ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFDocumentForm.java ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFListener.java ccm-formbuilder-pdf/trunk/web/ ccm-formbuilder-pdf/trunk/web/WEB-INF/ ccm-formbuilder-pdf/trunk/web/WEB-INF/web.xml ccm-formbuilder-pdf/trunk/web/xsl/ ccm-formbuilder-pdf/trunk/web/xsl/main.xsl Log: Initial import of formbuilder pdf action application. Added: ccm-formbuilder-pdf/trunk/application.xml =================================================================== --- ccm-formbuilder-pdf/trunk/application.xml 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/application.xml 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> + +<ccm:application name="ccm-formbuilder-pdf" + prettyName="PDFConverter" + version="0.5.0" + release="1" + xmlns:ccm="http://ccm.redhat.com/ccm-project"> + + <ccm:dependencies> + <ccm:requires name="ccm-core" version="6.1.1"/> + <ccm:requires name="ccm-cms" version="6.1.1"/> + </ccm:dependencies> + + <ccm:contacts> + <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> + <ccm:contact uri="mailto:rh...@re..." type="support"/> + </ccm:contacts> + + <ccm:directories> + <ccm:directory name="lib"/> + <ccm:directory name="pdl"/> + <ccm:directory name="sql"/> + <ccm:directory name="src"/> + <ccm:directory name="web"/> + </ccm:directories> + + <ccm:description> + The Red Hat Web Application Framework is a platform for writing + database-backed web applications in Java. + </ccm:description> + +</ccm:application> Added: ccm-formbuilder-pdf/trunk/lib/avalon-framework-cvs-20020806.jar =================================================================== (Binary files differ) Property changes on: ccm-formbuilder-pdf/trunk/lib/avalon-framework-cvs-20020806.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: ccm-formbuilder-pdf/trunk/lib/batik.jar =================================================================== (Binary files differ) Property changes on: ccm-formbuilder-pdf/trunk/lib/batik.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: ccm-formbuilder-pdf/trunk/lib/fop.jar =================================================================== (Binary files differ) Property changes on: ccm-formbuilder-pdf/trunk/lib/fop.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: ccm-formbuilder-pdf/trunk/pdl/com/arsdigita/formbuilder/pdf/PDFListener.pdl =================================================================== --- ccm-formbuilder-pdf/trunk/pdl/com/arsdigita/formbuilder/pdf/PDFListener.pdl 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/pdl/com/arsdigita/formbuilder/pdf/PDFListener.pdl 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,22 @@ +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License +// as published by the Free Software Foundation; either version 2.1 of +// the License, or (at your option) any later version. +// +// This library 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 for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +model com.arsdigita.formbuilder.pdf; + +import com.arsdigita.formbuilder.ProcessListener; + +object type PDFListener extends ProcessListener { + reference key (pdf_listeners.listener_id); +} Added: ccm-formbuilder-pdf/trunk/sql/ccm-formbuilder-pdf/oracle-se-create.sql =================================================================== --- ccm-formbuilder-pdf/trunk/sql/ccm-formbuilder-pdf/oracle-se-create.sql 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/sql/ccm-formbuilder-pdf/oracle-se-create.sql 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,22 @@ +-- +-- Copyright (C) 2002-2004 Red Hat Inc. All Rights Reserved. +-- +-- This library is free software; you can redistribute it and/or +-- modify it under the terms of the GNU Lesser General Public License +-- as published by the Free Software Foundation; either version 2.1 of +-- the License, or (at your option) any later version. +-- +-- This library 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 for more details. +-- +-- You should have received a copy of the GNU Lesser General Public +-- License along with this library; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-- +-- $Id: //apps/forum/dev/sql/ccm-forum/oracle-se-create.sql#2 $ +-- $DateTime: 2004/08/17 23:26:27 $ + +@@ ddl/oracle-se/create.sql +@@ ddl/oracle-se/deferred.sql Added: ccm-formbuilder-pdf/trunk/sql/ccm-formbuilder-pdf/postgres-create.sql =================================================================== --- ccm-formbuilder-pdf/trunk/sql/ccm-formbuilder-pdf/postgres-create.sql 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/sql/ccm-formbuilder-pdf/postgres-create.sql 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,25 @@ +-- +-- Copyright (C) 2002-2004 Red Hat Inc. All Rights Reserved. +-- +-- This library is free software; you can redistribute it and/or +-- modify it under the terms of the GNU Lesser General Public License +-- as published by the Free Software Foundation; either version 2.1 of +-- the License, or (at your option) any later version. +-- +-- This library 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 for more details. +-- +-- You should have received a copy of the GNU Lesser General Public +-- License along with this library; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-- +-- $Id: //apps/forum/dev/sql/ccm-forum/postgres-create.sql#2 $ +-- $DateTime: 2004/08/17 23:26:27 $ + + +begin; +\i ddl/postgres/create.sql +\i ddl/postgres/deferred.sql +end; Added: ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.config =================================================================== --- ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.config 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.config 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<registry> + <config class="com.arsdigita.formbuilder.pdf.PDFConfig" + storage="ccm-formbuilder-pdf/formbuilder-pdf.properties"/> +</registry> Added: ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.load =================================================================== --- ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.load 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/src/ccm-formbuilder-pdf.load 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,16 @@ +<load> + <requires> + <table name="bebop_meta_object"/> + <table name="bebop_object_type"/> + <initializer class="com.arsdigita.cms.Initializer"/> + </requires> + <provides> + <table name="pdf_listeners"/> + <initializer class="com.arsdigita.formbuilder.pdf.Initializer"/> + </provides> + <scripts> + <schema directory="ccm-formbuilder-pdf"/> + <data class="com.arsdigita.formbuilder.pdf.Loader"/> + </scripts> +</load> + Added: ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Converter.java =================================================================== --- ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Converter.java 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Converter.java 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,175 @@ +/* + * Copyright (C) 2004 Red Hat Inc. All Rights Reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library 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 for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +package com.arsdigita.formbuilder.pdf; + +import com.arsdigita.util.UncheckedWrapperException; + +import java.io.*; +import java.util.Iterator; +import java.util.Vector; + +import javax.servlet.ServletException; +import javax.servlet.http.*; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.transform.Transformer; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.dom.DOMSource; +import javax.xml.transform.sax.SAXResult; +import javax.xml.transform.stream.StreamSource; + +import org.apache.fop.apps.Driver; +import org.apache.log4j.Logger; +import org.w3c.dom.*; + +/** + * Creation History Start + @Author Name: CS Gupta + @Create Date: 23/11/2004 + @Class Name: Converter.java + @Purpose: This servlet class uses Apache's FOP and format xml data in PDF Format + @Company: Infoaxon Technology + @Copyright: Copyright (c) 2004 + @Version : 1.0 + * Creation History End + * + **/ + +public class Converter extends HttpServlet +{ + private static final Logger s_log = Logger.getLogger(Converter.class); + public static final String BASE_DATA_OBJECT_TYPE = + "com.arsdigita.formbuilder.pdf.Converter"; + + private TransformerFactory transformerFactory; + + public Converter() { } + + public void init() throws ServletException + { + transformerFactory = TransformerFactory.newInstance(); + } + + //Setup FOP + public void doGet(HttpServletRequest req, HttpServletResponse res) + throws ServletException, IOException + { + s_log.debug("Converter-doGet(HttpServletRequest,HttpServletResponse)-Enter"); + HttpSession session=req.getSession(); + if (s_log.isDebugEnabled()) { + s_log.debug("Using session: " + session.getId()); + } + + //Request form data from PDFListener. Form data is stored in Vector inside Vector + //This is main Vecor that contains inner Vector + Vector objOuterFormData = PDFListener.getFormData(session.getId()); + if (null == objOuterFormData) { + s_log.error("Converter called with no FormData in session"); + return; + } + + Iterator iter=objOuterFormData.iterator(); + + if (s_log.isDebugEnabled()) { + s_log.debug("Dumping FormData"); + while (iter.hasNext()) { + Vector inner = (Vector) iter.next(); + s_log.debug(inner.firstElement().toString() + ": " + + inner.lastElement().toString()); + } + + iter = objOuterFormData.iterator(); + } + + //This is inner Vector for Form Data that contains Caption and Value + Vector objInnerFormData=null; + + byte[] bytes = "<?xml version='1.0' encoding='UTF-8'?><Document/>".getBytes(); + ByteArrayInputStream objByteArrayInputStream = new ByteArrayInputStream(bytes); + + DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); + DocumentBuilder db; + Document xmldoc; + try { + db = dbf.newDocumentBuilder(); + xmldoc = db.parse(objByteArrayInputStream); + } catch (Exception ex) { + throw new UncheckedWrapperException(ex); + } + + Node grpRoot=xmldoc.getDocumentElement(); + //Iterating objOuterFormData Vector + while (iter.hasNext()) + { + objInnerFormData=new Vector(); + objInnerFormData=(Vector)iter.next(); + //This is for Caption + String strkey =(String)objInnerFormData.firstElement(); + //This is for Value + String strValue=(String)objInnerFormData.lastElement(); + + Element root = xmldoc.createElement("Section"); + + Node captionNode = xmldoc.createElement("Caption"); + Text captionText = xmldoc.createTextNode(strkey); + captionNode.appendChild(captionText); + + Node valueNode = xmldoc.createElement("Value"); + Text valueText = xmldoc.createTextNode(strValue); + valueNode.appendChild(valueText); + + root.appendChild(captionNode); + root.appendChild(valueNode); + grpRoot.appendChild(root); + } + + res.setContentType("application/pdf"); + Driver driver = new Driver(); + driver.setRenderer(1); + //Setup a buffer to obtain the content length + ByteArrayOutputStream out = new ByteArrayOutputStream(); + driver.setOutputStream(out); + + //Setup Transformer + javax.xml.transform.Source xsltSrc = + new StreamSource(new File(PDFConfig.retrieve().getXSLFile())); + + try { + Transformer transformer = + transformerFactory.newTransformer(xsltSrc); + + //Make sure the XSL transformation's result is piped through to FOP + javax.xml.transform.Result result = + new SAXResult(driver.getContentHandler()); + //Setup input and start the transformation and rendering process + transformer.transform(new DOMSource(xmldoc), result); + } catch (Exception ex) { + throw new UncheckedWrapperException(ex); + } + + //Prepare response + res.setContentLength(out.size()); + //Send content to Browser + res.getOutputStream().write(out.toByteArray()); + res.getOutputStream().flush(); + + s_log.debug("Converter-doGet(HttpServletRequest,HttpServletResponse)-Exit"); + } +} Added: ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Initializer.java =================================================================== --- ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Initializer.java 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Initializer.java 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2001-2004 Red Hat Inc. All Rights Reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library 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 for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +package com.arsdigita.formbuilder.pdf; + +import com.arsdigita.db.DbHelper; +import com.arsdigita.persistence.pdl.ManifestSource; +import com.arsdigita.persistence.pdl.NameFilter; +import com.arsdigita.runtime.RuntimeConfig; +import com.arsdigita.runtime.PDLInitializer; +import com.arsdigita.runtime.CompoundInitializer; + +/** + * Initializes the formbuilder pdf generator + * @version $Id: //ps/apps/london/atoz/dev/src/com/arsdigita/london/atoz/Initializer.java#6 $ + */ +public class Initializer extends CompoundInitializer { + public final static String versionId = + "$Id: //ps/apps/london/atoz/dev/src/com/arsdigita/london/atoz/Initializer.java#6 $" + + "$Author: mbooth $" + + "$DateTime: 2004/04/23 13:04:49 $"; + + public Initializer() { + final String url = RuntimeConfig.getConfig().getJDBCURL(); + final int database = DbHelper.getDatabaseFromURL(url); + + add(new PDLInitializer + (new ManifestSource + ("ccm-formbuilder-pdf.pdl.mf", + new NameFilter(DbHelper.getDatabaseSuffix(database), "pdl")))); + } +} Added: ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Loader.java =================================================================== --- ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Loader.java 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/Loader.java 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,54 @@ +/* + * Copyright (C) 2003-2004 Red Hat Inc. All Rights Reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library 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 for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package com.arsdigita.formbuilder.pdf; + +import com.arsdigita.formbuilder.BebopObjectType; +import com.arsdigita.formbuilder.MetaObject; +import com.arsdigita.formbuilder.PersistentProcessListener; + +import com.arsdigita.loader.PackageLoader; +import com.arsdigita.runtime.ScriptContext; + +import org.apache.log4j.Logger; + +/** + * Loader. + * + * @author Justin Ross <jr...@re...> + * @version $Id: //apps/forum/dev/src/com/arsdigita/forum/Loader.java#7 $ + */ +public class Loader extends PackageLoader { + public final static String versionId = + "$Id: //apps/forum/dev/src/com/arsdigita/forum/Loader.java#7 $" + + "$Author: dennis $" + + "$DateTime: 2004/08/17 23:26:27 $"; + + private static final Logger s_log = Logger.getLogger(Loader.class); + + public void run(final ScriptContext ctx) { + BebopObjectType type = BebopObjectType.findByClass + ("forms-cms", PersistentProcessListener.class); + + MetaObject.create(type, + "PDF Generator", + "PDF Generators", + "com.arsdigita.formbuilder.pdf.PDFListener", + "com.arsdigita.formbuilder.pdf.PDFDocumentForm"); + } +} Added: ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig.java =================================================================== --- ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig.java 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig.java 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,64 @@ +/* + * Copyright (C) 2003-2004 Red Hat Inc. All Rights Reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library 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 for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package com.arsdigita.formbuilder.pdf; + +import com.arsdigita.runtime.AbstractConfig; +import com.arsdigita.util.parameter.Parameter; +import com.arsdigita.util.parameter.StringParameter; + +/** + * A set of configuration parameters for the formbuilder PDF action. + * + * @author Matthew Booth <mb...@re...> + * @version $Id: ForumConfig.java 285 2005-02-22 00:29:02Z sskracic $ + */ + +public class PDFConfig extends AbstractConfig { + public final static String versionId = + "$Id: ForumConfig.java 285 2005-02-22 00:29:02Z sskracic $" + + "$Author: sskracic $" + + "$DateTime: 2004/08/17 23:26:27 $"; + + private Parameter m_xslFile; + + private static final PDFConfig s_config = new PDFConfig(); + + static { + s_config.load(); + } + + public PDFConfig() { + m_xslFile = new StringParameter( + "com.arsdigita.formbuilder.pdf.xsl_file", + Parameter.REQUIRED, + "webapps/ccm-formbuilder-pdf/xsl/main.xsl"); + + register(m_xslFile); + + loadInfo(); + } + + public static PDFConfig retrieve() { + return s_config; + } + + public String getXSLFile() { + return (String) get(m_xslFile); + } +} Added: ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig_parameter.properties =================================================================== --- ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig_parameter.properties 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFConfig_parameter.properties 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,5 @@ +com.arsdigita.formbuilder.pdf.xsl_file.title=Formbuilder PDF XSL Stylesheet +com.arsdigita.formbuilder.pdf.xsl_file.purpose=FOP Stylesheet for displaying PDFs from forms +com.arsdigita.formbuilder.pdf.xsl_file.format=[filename] +com.arsdigita.formbuilder.pdf.xsl_file.example=webapps/ccm-formbuilder-pdf/xsl/main.xsl + Added: ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFDocumentForm.java =================================================================== --- ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFDocumentForm.java 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFDocumentForm.java 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,99 @@ +/* + * Copyright (C) 2002-2004 Red Hat Inc. All Rights Reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library 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 for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * New Class Created For PDF Document + * + * Date Author + * 23 Nec 2004 CS Gupta + */ + +package com.arsdigita.formbuilder.pdf; + +import com.arsdigita.formbuilder.util.GlobalizationUtil ; +import com.arsdigita.formbuilder.pdf.PDFListener; + +import com.arsdigita.bebop.FormData; +import com.arsdigita.formbuilder.ui.editors.ProcessListenerForm; +import com.arsdigita.bebop.FormProcessException; +import com.arsdigita.bebop.FormSection; +import com.arsdigita.bebop.Label; +import com.arsdigita.bebop.PageState; +import com.arsdigita.bebop.event.FormSectionEvent; +import com.arsdigita.bebop.form.TextField; +import com.arsdigita.bebop.parameters.StringParameter; +import com.arsdigita.domain.DataObjectNotFoundException; +import java.math.BigDecimal; +import com.arsdigita.bebop.SingleSelectionModel; +import com.arsdigita.formbuilder.PersistentProcessListener; +import com.arsdigita.bebop.parameters.NotNullValidationListener; +import com.arsdigita.bebop.parameters.EmailParameter; +import com.arsdigita.bebop.parameters.StringInRangeValidationListener; +import com.arsdigita.bebop.ColumnPanel; + +import org.apache.log4j.Logger; + +public class PDFDocumentForm extends ProcessListenerForm { + private TextField m_to; + private TextField m_subject; + private SingleSelectionModel m_form; + public static final Logger s_log = Logger.getLogger(PDFDocumentForm.class); + + public PDFDocumentForm(String name, + SingleSelectionModel form, + SingleSelectionModel action) { + super(name, form, action); + + m_form=form; + + } + + protected void addWidgets(FormSection section) { + super.addWidgets(section); + + + } + + protected PersistentProcessListener getProcessListener() { + return new PDFListener(); + } + + protected PersistentProcessListener getProcessListener(BigDecimal id) { + return new PDFListener(id); + } + + protected void initWidgets(FormSectionEvent e, + PersistentProcessListener listener) + throws FormProcessException { + super.initWidgets(e, listener); + PDFListener l = (PDFListener)listener; + PageState state = e.getPageState(); + + } + + protected void processWidgets(FormSectionEvent e, + PersistentProcessListener listener) + throws FormProcessException { + super.processWidgets(e, listener); + PDFListener l = (PDFListener)listener; + FormData data = e.getFormData(); + + + } +} + + + Added: ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFListener.java =================================================================== --- ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFListener.java 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/src/com/arsdigita/formbuilder/pdf/PDFListener.java 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,250 @@ +/* + * Copyright (C) 2002-2004 Red Hat Inc. All Rights Reserved. + * + * The contents of this file are subject to the CCM Public + * License (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.redhat.com/licenses/ccmpl.html. + * + * Software distributed under the License is distributed on an + * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express + * or implied. See the License for the specific language + * governing rights and limitations under the License. + **/ + +package com.arsdigita.formbuilder.pdf; + +import java.io.DataInputStream; +import java.io.FileInputStream; +import java.io.IOException; +import java.math.BigDecimal; +import java.util.Vector; +import java.util.Iterator; +import java.util.StringTokenizer; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpSession; +import org.apache.log4j.Logger; + +import com.arsdigita.bebop.FormData; +import com.arsdigita.bebop.FormProcessException; +import com.arsdigita.bebop.event.FormProcessListener; +import com.arsdigita.bebop.event.FormSectionEvent; +import com.arsdigita.bebop.parameters.ParameterData; +import com.arsdigita.bebop.parameters.ParameterModel; +import com.arsdigita.caching.CacheTable; +import com.arsdigita.domain.DomainObjectFactory; +import com.arsdigita.persistence.DataAssociationCursor; +import com.arsdigita.persistence.DataObject; +import com.arsdigita.persistence.OID; +import com.arsdigita.persistence.metadata.ObjectType; +import com.arsdigita.web.RedirectSignal; +import com.arsdigita.web.Web; + +import com.arsdigita.formbuilder.PersistentComponent; +import com.arsdigita.formbuilder.PersistentProcessListener; +import com.arsdigita.formbuilder.PersistentWidget; +import com.arsdigita.formbuilder.WidgetLabel; +import com.arsdigita.formbuilder.util.Placeholders; + +/** + * Creation History Start + @Author Name: CS Gupta + @Create Date: 23/11/2004 + @Class Name: Converter.java + @Purpose: To retrive Form Data Controls's value that works as input Parameter for XSL FO. + @Company: Infoaxon Technology + @Copyright: Copyright (c) 2004 + @Version : 1.0 + * Creation History End + */ + + +public class PDFListener extends PersistentProcessListener { + private static final Logger s_log = Logger.getLogger(PDFListener.class); + public static final String BASE_DATA_OBJECT_TYPE = + "com.arsdigita.formbuilder.pdf.PDFListener"; + + private static final CacheTable s_dataCache = + new CacheTable ("pdf_formdata"); + + public PDFListener() { + this(BASE_DATA_OBJECT_TYPE); + } + + public PDFListener(String typeName) { + super(typeName); + } + + public PDFListener(DataObject obj) { + super(obj); + } + + public PDFListener(OID oid) { + super(oid); + } + + public PDFListener(BigDecimal id) { + super(id); + } + + public static PDFListener create(String name, String description,String cName) + { + PDFListener objPDFListener = new PDFListener(); + objPDFListener.setup(name, description); + return objPDFListener; + } + + protected void setup(String name, + String description) { + super.setup(name, description); + } + public boolean isContainerModified() { + + return false; + } + public FormProcessListener createProcessListener() { + return new PDFProcessListener(); + } + + static Vector getFormData(String sessionId) { + return (Vector) s_dataCache.get(sessionId); + } + + private class PDFProcessListener implements FormProcessListener { + public PDFProcessListener() { + } + + public void process(FormSectionEvent objFormSectionEvent) throws FormProcessException + { + s_log.debug("PDFListener-process(FormSectionEvent)-Enter"); + FormData data = objFormSectionEvent.getFormData(); + + //This is used to get Request Handle to set Form Data in Session + HttpServletRequest req = objFormSectionEvent.getPageState().getRequest(); + HttpSession session = req.getSession(true); + + //These is used to stores Form Data + Vector objOuterFormData = new Vector(); + + /////////////////////////////////// + // Retrieving Form Data here + /* + Iterator params = data.getParameters().iterator(); + while (params.hasNext()) { + ParameterData param = (ParameterData) params.next(); + Object value = param.getValue(); + + if (param.getName().toString().startsWith("form.")) { + StringTokenizer st = new StringTokenizer(value.toString(),"^^"); + String strValue=""; + while(st.hasMoreTokens()) + { + strValue=(String)st.nextElement(); + objVector.add(strValue); + } + } + } + */ + + DataAssociationCursor components = getForm().getComponents(); + while (components.next()) { + PersistentComponent c = (PersistentComponent) + DomainObjectFactory.newInstance(components.getDataObject()); + + if (c instanceof PersistentWidget) { + PersistentWidget w = (PersistentWidget) c; + Vector entry = new Vector(); + + WidgetLabel label = WidgetLabel.findByWidget(w); + if(null == label) + entry.add(w.getParameterName()); + else + entry.add(label.getLabel()); + + Object value = w.getValue(data); + if(null != value && value.getClass().isArray()) { + Object[] values = (Object[]) value; + + StringBuffer buf = new StringBuffer(); + for(int i = 0; i < values.length; i++) { + buf.append(values[i].toString()); + if(values.length - 1 != i) buf.append(' '); + } + + value = buf; + } + + if (null == value) + entry.add(""); + else + entry.add(value.toString()); + + objOuterFormData.add(entry); + } + } + + /* + Iterator formparam = data.getParameters().iterator(); + while (formparam.hasNext()) { + Object next = formparam.next(); + s_log.debug(next.getClass().getName()); + parameterModel = (ParameterModel) next; + pname = parameterModel.getName(); + Iterator ikeys = data.keySet().iterator(); + while (ikeys.hasNext()) { + String ikey = (String) ikeys.next(); + Object value = data.get(ikey); + if (ikey.equals("submit.x") || ikey.equals("submit.y") || + ikey.equals("submit") || ikey.equals("g11n.enc") || ikey.startsWith("form.")) { + //do nothing + } else { + if (pname.equals(ikey)) { + //This is for those Component that have mutiple value + try { + arrValue = (String[]) value; + flag = 0; + } catch (Exception ie) { + flag = 1; + } + if (flag == 0) { + value = ""; + for (int counter = 0; counter < arrValue.length; + counter++) { + value = value + " " + arrValue[counter]; + } + } + objInnerFormData=new Vector(); + objInnerFormData.add((String)objVector.get(iElement)); + objInnerFormData.add((String) value.toString()); + objOuterFormData.add(objInnerFormData); + //for Vector Object + iElement++; + } + } + } + } + */ + + // Use cache here as session can't share data between webapps + s_dataCache.put(session.getId(), objOuterFormData); + + if (s_log.isDebugEnabled()) { + s_log.debug("Saving with key: " + session.getId()); + Iterator fdIter = objOuterFormData.iterator(); + while (fdIter.hasNext()) { + Vector entry = (Vector) fdIter.next(); + s_log.debug(entry.firstElement().toString() + ": " + + entry.lastElement().toString()); + } + } + + String strURL = req.getScheme() + "://" + + Web.getConfig().getServer() + + "/ccm-formbuilder-pdf/Converter/"; + + s_log.debug("PDFListener-process(FormSectionEvent)-Redirecting"); + throw new RedirectSignal(strURL, true); + } + } +} Added: ccm-formbuilder-pdf/trunk/web/WEB-INF/web.xml =================================================================== --- ccm-formbuilder-pdf/trunk/web/WEB-INF/web.xml 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/web/WEB-INF/web.xml 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,26 @@ +<!DOCTYPE web-app + PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" + "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd"> + +<web-app> + <servlet> + <servlet-name>reg</servlet-name> + <servlet-class>com.arsdigita.web.ContextRegistrationServlet</servlet-class> + <init-param> + <param-name>uri</param-name> + <param-value>/ccm-formbuilder-pdf/</param-value> + </init-param> + <load-on-startup>1</load-on-startup> + </servlet> + + <servlet> + <servlet-name>Converter</servlet-name> + <servlet-class>com.arsdigita.formbuilder.pdf.Converter</servlet-class> + </servlet> + + <servlet-mapping> + <servlet-name>Converter</servlet-name> + <url-pattern>/Converter/</url-pattern> + </servlet-mapping> + +</web-app> Added: ccm-formbuilder-pdf/trunk/web/xsl/main.xsl =================================================================== --- ccm-formbuilder-pdf/trunk/web/xsl/main.xsl 2005-03-23 09:59:29 UTC (rev 485) +++ ccm-formbuilder-pdf/trunk/web/xsl/main.xsl 2005-03-23 18:24:57 UTC (rev 486) @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> + <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:template match="/"> + <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <fo:layout-master-set> + <fo:simple-page-master master-name="simple" page-height="29.7cm" page-width="21cm" margin-top="0cm" margin-bottom="2cm" margin-left="2.5cm" margin-right="2.5cm"> + <fo:region-body margin-top="3cm" /> + <fo:region-before extent="3cm" /> + <fo:region-after extent="1.5cm" /> + </fo:simple-page-master> + </fo:layout-master-set> + + <fo:page-sequence master-reference="simple"> + <fo:static-content flow-name="xsl-region-before"> + <fo:block color="#336699" >London Borough of Camden </fo:block> + </fo:static-content> + + <fo:static-content flow-name="xsl-region-after"> + <fo:block text-align="center" > London Borough of CAMDEN </fo:block> + + </fo:static-content> + + <fo:flow flow-name="xsl-region-body"> + <fo:block font-size="14pt" font-weight="bold" space-after="5pt" text-align="center">Content Management System</fo:block> + <fo:block align="center"> </fo:block> + <fo:block align="center"> <xsl:apply-templates/> </fo:block> + <fo:block space-before="0.1in" space-after="0.1in"> </fo:block> + + <fo:block color="#336699" font-size="10pt" text-align="left" space-after="25pt">InfoAxon provides businesses around the world with Information Technology solutions that are reliable, cost effective and continuously delight our customers. + Development services where we pass the benefits of applied software engineering principles; our bright technical team; our offshore development center based in India and strong technical project management . </fo:block> + </fo:flow> + + </fo:page-sequence> + + </fo:root> + </xsl:template> + + + <xsl:template match="Section"> .. |
From: <ssk...@re...> - 2005-03-23 10:02:08
|
Author: sskracic Date: 2005-03-23 10:59:29 +0100 (Wed, 23 Mar 2005) New Revision: 485 Modified: users/sskracic/bin/make-build-area.sh Log: Keyword expansion. Property changes on: users/sskracic/bin/make-build-area.sh ___________________________________________________________________ Name: svn:keywords + Id Author URL |
From: <ssk...@re...> - 2005-03-23 09:59:05
|
Author: sskracic Date: 2005-03-23 10:56:30 +0100 (Wed, 23 Mar 2005) New Revision: 484 Added: users/sskracic/bin/make-build-area.sh Log: Create build environment in the current directory by creating a bunch of symlinks to svn checkout which is expected at ~/svn. Added: users/sskracic/bin/make-build-area.sh =================================================================== --- users/sskracic/bin/make-build-area.sh 2005-03-21 09:53:05 UTC (rev 483) +++ users/sskracic/bin/make-build-area.sh 2005-03-23 09:56:30 UTC (rev 484) @@ -0,0 +1,15 @@ +#! /bin/sh + +# $Id$ + +set -e + +DIRLIST=$(cd ~/svn ; echo ccm*) +for dir in $DIRLIST +do + mkdir $dir + ln -s ~/svn/$dir/trunk $dir/$dir +done + +ln -s ~/svn/tools/trunk tools + Property changes on: users/sskracic/bin/make-build-area.sh ___________________________________________________________________ Name: svn:executable + * |
From: <ssk...@re...> - 2005-03-21 09:55:39
|
Author: sskracic Date: 2005-03-21 10:53:05 +0100 (Mon, 21 Mar 2005) New Revision: 483 Modified: ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/Term.java Log: Hm, it seems that merging of release branch onto the trunk nullified some of the changes done to trunk only. Modified: ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/Term.java =================================================================== --- ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/Term.java 2005-03-20 23:28:16 UTC (rev 482) +++ ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/Term.java 2005-03-21 09:53:05 UTC (rev 483) @@ -5,12 +5,12 @@ * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. - * + * * This library 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 for more details. - * + * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -34,17 +34,17 @@ /** * Instances of this class represent entries in a domain * of terms. - * - * Although terms are currently modelled using the + * + * Although terms are currently modelled using the * categorization service, it is not neccessarily going - * remain this way, hence the getModel() method is - * protected. + * remain this way, hence the getModel() method is + * protected. */ public class Term extends ACSObject { private static final Logger s_log = Logger.getLogger(Term.class); - public static final String BASE_DATA_OBJECT_TYPE = + public static final String BASE_DATA_OBJECT_TYPE = "com.arsdigita.london.terms.Term"; public static final String UNIQUE_ID = "uniqueID"; @@ -60,7 +60,7 @@ Term() { this(BASE_DATA_OBJECT_TYPE); } - + protected Term(String type) { super(type); } @@ -71,12 +71,12 @@ public void initialize() { super.initialize(); - + if (isNew()) { set(MODEL, new Category()); } } - + /** * Creates a new term within a domain. All * parameters are required except for shortcut @@ -99,29 +99,29 @@ term.setName(name); term.setInAtoZ(inAtoZ); - term.setShortcut(shortcut); + term.setShortcut(shortcut); if (s_log.isDebugEnabled()) { - s_log.debug("Created term " + term.getID() + " with unique id " + + s_log.debug("Created term " + term.getID() + " with unique id " + uniqueID + " and name " + name + " in domain " + domain); } - + return term; } - + private void setUniqueID(Integer uniqueID) { Assert.exists(uniqueID, Integer.class); set(UNIQUE_ID, uniqueID); } - + /** * Retrieves the unique identifier for this term. */ public Integer getUniqueID() { return (Integer)get(UNIQUE_ID); } - + /** * Updates the name of this term * @param name the term's new name @@ -131,7 +131,7 @@ getModel().setName(name); getModel().setURL(cleanURL(name)); } - + /** * Retrieves the name of this term * @return the name of the term @@ -139,7 +139,7 @@ public String getName() { return getModel().getName(); } - + /** * Updates the description of this term * @param description the term's new description @@ -148,7 +148,7 @@ Assert.exists(description, String.class); getModel().setDescription(description); } - + /** * Retrieves the description of this term * @return the description of the term @@ -156,7 +156,7 @@ public String getDescription() { return getModel().getDescription(); } - + /** * Update the flag indicating whether this * term is suitable for inclusion in an A-Z @@ -165,7 +165,7 @@ public void setInAtoZ(boolean inAtoZ) { set(IN_ATOZ, new Boolean(inAtoZ)); } - + /** * Determines whether the term is suitable * for inclusion in an A-Z @@ -181,7 +181,7 @@ public void setShortcut(String shortcut) { set(SHORTCUT, shortcut); } - + /** * Retrieves the URL fragment forming a shortcut * to this term @@ -189,12 +189,12 @@ public String getShortcut() { return (String)get(SHORTCUT); } - + private void setDomain(Domain domain) { Assert.exists(domain, Domain.class); setAssociation(DOMAIN, domain); } - + /** * Retrieves the domain containing this term * @return the domain containing this term @@ -203,13 +203,13 @@ return (Domain)DomainObjectFactory .newInstance((DataObject)get(DOMAIN)); } - + public Category getModel() { return (Category)DomainObjectFactory .newInstance((DataObject)get(MODEL)); } - + /** * Adds a narrower term to this term * @param term the narrower term @@ -222,28 +222,28 @@ // "narrower term is in this domain"); if (s_log.isDebugEnabled()) { - s_log.debug("Adding narrower term " + term + " to " + + s_log.debug("Adding narrower term " + term + " to " + this + " isDefault?" + isDefault); } getModel().addChild(term.getModel()); term.getModel().setEnabled(isPreferred); - + if (isDefault) { term.getModel().setDefaultParentCategory(getModel()); } } - + /** * Removes a narrower term from this term * @param term the narrower term to remove */ public void removeNarrowerTerm(Term term) { if (s_log.isDebugEnabled()) { - s_log.debug("Removing narrower term " + term + " from " + + s_log.debug("Removing narrower term " + term + " from " + this); } - + getModel().removeChild(term.getModel()); } @@ -257,8 +257,22 @@ terms.addEqualsFilter("model.parents.link.relationType", "child"); return terms; } - + + /** + * Retrieves the collection of narrower terms + * for which this term is the default parent + * @return a collection of narrower terms + * + */ + public DomainCollection getDefaultNarrowerTerms() { + DomainCollection terms = getNarrowerTerms(); + terms.addEqualsFilter("model.parents.link.isDefault", Boolean.TRUE); + return terms; + } + + + /** * Retrieves the collection of broader terms * @return a collection of broader terms */ @@ -266,9 +280,9 @@ DomainCollection terms = getDomain().getTerms(); terms.addEqualsFilter("model.related.id", getModel().getID()); terms.addEqualsFilter("model.related.link.relationType", "child"); - return terms; + return terms; } - + /** * Retrieves the default broader term * @return the default broader term @@ -284,33 +298,33 @@ throw new DataObjectNotFoundException( "No default broader term for " + getID()); } - + /** * Adds a related term to this term * @param term the related term */ public void addRelatedTerm(Term term) { if (s_log.isDebugEnabled()) { - s_log.debug("Adding related term " + term + " to " + + s_log.debug("Adding related term " + term + " to " + this); } getModel().addRelatedCategory(term.getModel()); } - + /** * Removes a related term to this term * @param term the related term */ public void removeRelatedTerm(Term term) { if (s_log.isDebugEnabled()) { - s_log.debug("Removing related term " + term + "from " + + s_log.debug("Removing related term " + term + "from " + this); } getModel().removeRelatedCategory(term.getModel()); } - + /** * Retrieves the related terms within this terms * domain @@ -322,7 +336,7 @@ terms.addEqualsFilter("model.parents.link.relationType", "related"); return terms; } - + /** * Retrieves the related terms within this terms * domain @@ -355,7 +369,7 @@ public void addObject(ACSObject obj) { getModel().addChild(obj); } - + /** * Unclassifies an object against this term * @param obj the object to unclassify |
Author: mbooth Date: 2005-03-21 00:28:16 +0100 (Mon, 21 Mar 2005) New Revision: 482 Added: tools/trunk/rpms/ccm-java/ tools/trunk/rpms/ccm-java/SOURCES/ tools/trunk/rpms/ccm-java/SOURCES/ccm-java.sh tools/trunk/rpms/ccm-java/ccm-java.spec tools/trunk/rpms/ccm-java/rollingbuild.sh Removed: tools/trunk/rpms/ccm-java/SOURCES/ tools/trunk/rpms/ccm-java/SOURCES/ccm-java.sh tools/trunk/rpms/ccm-java/ccm-java.spec tools/trunk/rpms/ccm-java/rollingbuild.sh tools/trunk/tools/lib/security/ Modified: tools/trunk/ tools/trunk/devel/configure.in tools/trunk/misc/build-all.sh tools/trunk/rpms/httpunit/httpunit.spec tools/trunk/rpms/junit/junit.spec tools/trunk/rpms/junitperf/junitperf.spec tools/trunk/rpms/servlet/servlet.spec tools/trunk/tools/ccm-tools.spec.in tools/trunk/tools/configure.in tools/trunk/tools/lib/CCM/Runtime.pm tools/trunk/tools/lib/Makefile.am Log: Merged revisions 379-481 via svnmerge from /releases/1.0.2/tools/ Property changes on: tools/trunk ___________________________________________________________________ Name: svnmerge-integrated - /releases/1.0.2/tools/:1-378 + /releases/1.0.2/tools/:1-481 Modified: tools/trunk/devel/configure.in =================================================================== --- tools/trunk/devel/configure.in 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/devel/configure.in 2005-03-20 23:28:16 UTC (rev 482) @@ -4,7 +4,7 @@ AC_INIT(ccm-devel.spec.in) VERSION=2.1.1 -RELEASE=1 +RELEASE=2 AM_INIT_AUTOMAKE(ccm-devel, $VERSION) AC_SUBST(RELEASE) Modified: tools/trunk/misc/build-all.sh =================================================================== --- tools/trunk/misc/build-all.sh 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/misc/build-all.sh 2005-03-20 23:28:16 UTC (rev 482) @@ -153,9 +153,9 @@ cat $APP/$VERSION_FROM/application.xml | awk 'BEGIN { inTag = 0; } /<ccm:application/ { inTag=1; } inTag==1 { print $0; } inTag==1 && />/ { inTag = 0; }' > application.xml.frag - APP_VERSION=`grep 'version=\"[^"]*\"' application.xml.frag | sed 's/.*version="\([^\"]*\)"/\1/'` - RELEASE=`grep 'release=\"[^"]*\"' application.xml.frag | sed 's/.*release="\([^\"]*\)"/\1/'` - APP_NAME=`grep 'name=\"[^"]*\"' application.xml.frag | sed 's/.*name="\([^\"]*\)"/\1/'` + APP_VERSION=`grep 'version=\"[^"]*\"' application.xml.frag | sed 's/.*version="\([^\"]*\)".*/\1/'` + RELEASE=`grep 'release=\"[^"]*\"' application.xml.frag | sed 's/.*release="\([^\"]*\)".*/\1/'` + APP_NAME=`grep 'name=\"[^"]*\"' application.xml.frag | sed 's/.*name="\([^\"]*\)".*/\1/'` rm application.xml.frag } @@ -198,6 +198,7 @@ Provides: /usr/bin/perl Provides: /bin/tar Provides: /usr/bin/md5sum +Provides: /usr/bin/locate Provides: /usr/bin/rpmbuild Provides: /usr/bin/unzip Provides: /usr/bin/zip @@ -235,7 +236,7 @@ export RPM_DIR=$HOMETOPDIR # Build the build tools -for i in httpunit junit junitperf servlet +for i in ccm-java httpunit junit junitperf servlet do ( set -e @@ -244,7 +245,7 @@ TOOLS_NAME=`grep 'Name:' *.spec | sed -e 's/Name://' | sed -e 's/ //g'` TOOLS_VERSION=`grep 'Version:' *.spec | sed -e 's/Version://' | sed -e 's/ //g'` TOOLS_RELEASE=`grep 'Release:' *.spec | sed -e 's/Release://' | sed -e 's/ //g'` - $RPM $RPM_ARGS -ivh --relocate /usr=$VIRTUAL_ROOT $HOMERPMDIR/$TOOLS_NAME-$TOOLS_VERSION-$TOOLS_RELEASE.noarch.rpm + $RPM $RPM_ARGS -ivh --relocate /usr=$VIRTUAL_ROOT --relocate /etc=$VIRTUAL_ROOT/etc $HOMERPMDIR/$TOOLS_NAME-$TOOLS_VERSION-$TOOLS_RELEASE.noarch.rpm ) || exit $? done @@ -409,6 +410,7 @@ cp $HOMERPMDIR/junit-3.8.1-1ccm.noarch.rpm $BUILD_HOME/dist/runtime/RPMS cp $HOMERPMDIR/junitperf-1.8-1ccm.noarch.rpm $BUILD_HOME/dist/runtime/RPMS cp $HOMERPMDIR/httpunit-1.5.4-1ccm.noarch.rpm $BUILD_HOME/dist/runtime/RPMS + cp $HOMERPMDIR/ccm-java-1.0-1.noarch.rpm $BUILD_HOME/dist/runtime/RPMS cp $HOMERPMDIR/junit-3.8.1-1ccm.noarch.rpm $BUILD_HOME/dist/runtime/RPMS cp $HOMERPMDIR/servlet-2.3-1ccm.noarch.rpm $BUILD_HOME/dist/runtime/RPMS # cp $HOMERPMDIR/servlet-2.2-1ccm.noarch.rpm $BUILD_HOME/dist/runtime/RPMS @@ -432,6 +434,7 @@ cp $HOMESRPMDIR/junit-3.8.1-1ccm.src.rpm $BUILD_HOME/dist/runtime/SRPMS cp $HOMESRPMDIR/junitperf-1.8-1ccm.src.rpm $BUILD_HOME/dist/runtime/SRPMS cp $HOMESRPMDIR/httpunit-1.5.4-1ccm.src.rpm $BUILD_HOME/dist/runtime/SRPMS + cp $HOMESRPMDIR/ccm-java-1.0-1.src.rpm $BUILD_HOME/dist/runtime/SRPMS cp $HOMESRPMDIR/junit-3.8.1-1ccm.src.rpm $BUILD_HOME/dist/runtime/SRPMS cp $HOMESRPMDIR/servlet-2.3-1ccm.src.rpm $BUILD_HOME/dist/runtime/SRPMS # cp $HOMERPMDIR/servlet-2.2-1ccm.src.rpm $BUILD_HOME/dist/runtime/RPMS Copied: tools/trunk/rpms/ccm-java (from rev 481, releases/1.0.2/tools/rpms/ccm-java) Property changes on: tools/trunk/rpms/ccm-java ___________________________________________________________________ Name: svn:ignore + BUILD RPMS SRPMS Copied: tools/trunk/rpms/ccm-java/SOURCES (from rev 481, releases/1.0.2/tools/rpms/ccm-java/SOURCES) Deleted: tools/trunk/rpms/ccm-java/SOURCES/ccm-java.sh Copied: tools/trunk/rpms/ccm-java/SOURCES/ccm-java.sh (from rev 481, releases/1.0.2/tools/rpms/ccm-java/SOURCES/ccm-java.sh) Deleted: tools/trunk/rpms/ccm-java/ccm-java.spec Copied: tools/trunk/rpms/ccm-java/ccm-java.spec (from rev 481, releases/1.0.2/tools/rpms/ccm-java/ccm-java.spec) Deleted: tools/trunk/rpms/ccm-java/rollingbuild.sh Copied: tools/trunk/rpms/ccm-java/rollingbuild.sh (from rev 481, releases/1.0.2/tools/rpms/ccm-java/rollingbuild.sh) Property changes on: tools/trunk/rpms/ccm-java/rollingbuild.sh ___________________________________________________________________ Name: svn:executable + * Modified: tools/trunk/rpms/httpunit/httpunit.spec =================================================================== --- tools/trunk/rpms/httpunit/httpunit.spec 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/rpms/httpunit/httpunit.spec 2005-03-20 23:28:16 UTC (rev 482) @@ -8,6 +8,7 @@ License: see description Source: %{name}-%{version}.jar Prefix: /usr +Prefix: /etc BuildArchitectures: noarch BuildRoot: %{_tmppath}/%{name}-root Modified: tools/trunk/rpms/junit/junit.spec =================================================================== --- tools/trunk/rpms/junit/junit.spec 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/rpms/junit/junit.spec 2005-03-20 23:28:16 UTC (rev 482) @@ -8,6 +8,7 @@ License: see description Source: %{name}-%{version}.jar Prefix: /usr +Prefix: /etc BuildArchitectures: noarch BuildRoot: %{_tmppath}/%{name}-root Modified: tools/trunk/rpms/junitperf/junitperf.spec =================================================================== --- tools/trunk/rpms/junitperf/junitperf.spec 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/rpms/junitperf/junitperf.spec 2005-03-20 23:28:16 UTC (rev 482) @@ -8,6 +8,7 @@ License: see description Source: %{name}-%{version}.jar Prefix: /usr +Prefix: /etc BuildArchitectures: noarch BuildRoot: %{_tmppath}/%{name}-root Modified: tools/trunk/rpms/servlet/servlet.spec =================================================================== --- tools/trunk/rpms/servlet/servlet.spec 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/rpms/servlet/servlet.spec 2005-03-20 23:28:16 UTC (rev 482) @@ -8,6 +8,7 @@ License: see description Source: %{name}-%{version}.jar Prefix: /usr +Prefix: /etc BuildArchitectures: noarch BuildRoot: %{_tmppath}/%{name}-root Modified: tools/trunk/tools/ccm-tools.spec.in =================================================================== --- tools/trunk/tools/ccm-tools.spec.in 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/tools/ccm-tools.spec.in 2005-03-20 23:28:16 UTC (rev 482) @@ -157,7 +157,6 @@ %dir /usr/share/%{name}/lib/CCM /usr/share/%{name}/lib/CCM/*.pm %dir /usr/share/%{name}/lib/CCM/Server -/usr/share/%{name}/lib/security %{ccmhome} %attr(0755,root,root) /usr/bin/* Modified: tools/trunk/tools/configure.in =================================================================== --- tools/trunk/tools/configure.in 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/tools/configure.in 2005-03-20 23:28:16 UTC (rev 482) @@ -3,7 +3,7 @@ AC_INIT(ccm-tools.spec.in) -VERSION=2.1.2 +VERSION=2.1.3 RELEASE=2 AM_INIT_AUTOMAKE(ccm-tools, $VERSION) @@ -26,7 +26,6 @@ etc/Makefile etc/ccm-tools/Makefile lib/Makefile - lib/security/Makefile lib/CCM/Makefile lib/CCM/Server/Makefile server/Makefile Modified: tools/trunk/tools/lib/CCM/Runtime.pm =================================================================== --- tools/trunk/tools/lib/CCM/Runtime.pm 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/tools/lib/CCM/Runtime.pm 2005-03-20 23:28:16 UTC (rev 482) @@ -204,8 +204,7 @@ $ENV{'CCM_JRE_EXT'} : "-Djava.ext.dirs=" . CCM::Util::catpath (File::Spec->catdir(&getJavaHome(), 'jre', 'lib', 'ext'), File::Spec->catdir(&getJavaHome(), 'lib', 'ext')); - foreach (File::Spec->catdir($ccm_home, 'webapps', 'WEB-INF', 'system'), - File::Spec->catdir($ccm_tools_home, 'lib', 'security')) { + foreach (File::Spec->catdir($ccm_home, 'webapps', 'WEB-INF', 'system')) { $ccm_jre_ext = CCM::Util::catpath($ccm_jre_ext, $_) if (-d $_); } my $log4j = defined $ENV{'LOG4J_PROPERTIES'} ? $ENV{'LOG4J_PROPERTIES'} : ""; Modified: tools/trunk/tools/lib/Makefile.am =================================================================== --- tools/trunk/tools/lib/Makefile.am 2005-03-20 23:26:32 UTC (rev 481) +++ tools/trunk/tools/lib/Makefile.am 2005-03-20 23:28:16 UTC (rev 482) @@ -2,6 +2,6 @@ AUTOMAKE_OPTIONS = foreign no-dependencies 1.4 -SUBDIRS = security CCM +SUBDIRS = CCM # End of files |
From: <mb...@re...> - 2005-03-20 23:28:46
|
Author: mbooth Date: 2005-03-21 00:26:32 +0100 (Mon, 21 Mar 2005) New Revision: 481 Modified: tools/trunk/ Log: Update tools branch metainfo Property changes on: tools/trunk ___________________________________________________________________ Name: svnmerge-integrated - /releases/1.0.2/tools/:1-318 + /releases/1.0.2/tools/:1-378 |
From: <mb...@re...> - 2005-03-20 23:24:59
|
Author: mbooth Date: 2005-03-21 00:22:46 +0100 (Mon, 21 Mar 2005) New Revision: 480 Modified: tools/trunk/ Log: Merge metainfo for aplaws+ 1.02 branch of tools. Property changes on: tools/trunk ___________________________________________________________________ Name: svnmerge-integrated + /releases/1.0.2/tools/:1-318 |
From: <mb...@re...> - 2005-03-20 23:15:57
|
Author: mbooth Date: 2005-03-21 00:13:43 +0100 (Mon, 21 Mar 2005) New Revision: 479 Modified: ccm-cms-types-pressrelease/trunk/ ccm-cms-types-pressrelease/trunk/application.xml Log: Merged revisions 319-431 via svnmerge from /releases/1.0.2/ccm-cms-types-pressrelease/ Property changes on: ccm-cms-types-pressrelease/trunk ___________________________________________________________________ Name: svnmerge-integrated - /releases/1.0.2/ccm-cms-types-pressrelease/:1-318 + /releases/1.0.2/ccm-cms-types-pressrelease/:1-431 Modified: ccm-cms-types-pressrelease/trunk/application.xml =================================================================== --- ccm-cms-types-pressrelease/trunk/application.xml 2005-03-20 23:13:40 UTC (rev 478) +++ ccm-cms-types-pressrelease/trunk/application.xml 2005-03-20 23:13:43 UTC (rev 479) @@ -1,28 +1,23 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> - -<ccm:application name="ccm-cms-types-pressrelease" +<?xml version="1.0"?> +<ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" + name="ccm-cms-types-pressrelease" prettyName="Red Hat CCM Content Types" version="6.1.0" - release="7" - webapp="ROOT" - xmlns:ccm="http://ccm.redhat.com/ccm-project"> - + release="9" + webapp="ROOT"> <ccm:dependencies> <ccm:requires name="ccm-core" version="6.1.1"/> <ccm:requires name="ccm-cms" version="6.1.1"/> </ccm:dependencies> - <ccm:directories> <ccm:directory name="pdl"/> <ccm:directory name="sql"/> <ccm:directory name="src"/> </ccm:directories> - <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/ccm" type="website"/> <ccm:contact uri="mailto:cc...@re..." type="support"/> </ccm:contacts> - <ccm:description> The Press Release Content Type for the Red Hat CCM CMS. </ccm:description> |
From: <mb...@re...> - 2005-03-20 23:15:53
|
Author: mbooth Date: 2005-03-21 00:13:40 +0100 (Mon, 21 Mar 2005) New Revision: 478 Modified: ccm-ldn-image-step/trunk/ ccm-ldn-image-step/trunk/application.xml Log: Merged revisions 319-431 via svnmerge from /releases/1.0.2/ccm-ldn-image-step/ Property changes on: ccm-ldn-image-step/trunk ___________________________________________________________________ Name: svnmerge-integrated - /releases/1.0.2/ccm-ldn-image-step/:1-318 + /releases/1.0.2/ccm-ldn-image-step/:1-431 Modified: ccm-ldn-image-step/trunk/application.xml =================================================================== --- ccm-ldn-image-step/trunk/application.xml 2005-03-20 23:13:32 UTC (rev 477) +++ ccm-ldn-image-step/trunk/application.xml 2005-03-20 23:13:40 UTC (rev 478) @@ -1,26 +1,20 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> - -<ccm:application name="ccm-ldn-image-step" - prettyName="Image step" - version="2.0.0" - release="8" - webapp="ROOT" - xmlns:ccm="http://ccm.redhat.com/ccm-project"> - +<?xml version="1.0"?> +<ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" + name="ccm-ldn-image-step" + prettyName="Image step" + version="2.0.0" + release="10" + webapp="ROOT"> <ccm:dependencies> <ccm:requires name="ccm-core" version="6.1.1"/> <ccm:requires name="ccm-cms" version="6.1.1"/> <ccm:requires name="ccm-ldn-navigation" version="1.4.4"/> </ccm:dependencies> - <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> <ccm:contact uri="mailto:rh...@re..." type="support"/> </ccm:contacts> - <ccm:description> UI step for attaching an image to article (or other content types). </ccm:description> - </ccm:application> - |
From: <mb...@re...> - 2005-03-20 23:15:47
|
Author: mbooth Date: 2005-03-21 00:13:29 +0100 (Mon, 21 Mar 2005) New Revision: 476 Modified: ccm-ldn-subsite/trunk/ ccm-ldn-subsite/trunk/application.xml Log: Merged revisions 319-431 via svnmerge from /releases/1.0.2/ccm-ldn-subsite/ Property changes on: ccm-ldn-subsite/trunk ___________________________________________________________________ Name: svnmerge-integrated - /releases/1.0.2/ccm-ldn-subsite/:1-318 + /releases/1.0.2/ccm-ldn-subsite/:1-431 Modified: ccm-ldn-subsite/trunk/application.xml =================================================================== --- ccm-ldn-subsite/trunk/application.xml 2005-03-20 23:13:25 UTC (rev 475) +++ ccm-ldn-subsite/trunk/application.xml 2005-03-20 23:13:29 UTC (rev 476) @@ -1,26 +1,21 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> - -<ccm:application name="ccm-ldn-subsite" - prettyName="Subsite" - version="1.4.1" - release="8" - xmlns:ccm="http://ccm.redhat.com/ccm-project"> - +<?xml version="1.0"?> +<ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project" + name="ccm-ldn-subsite" + prettyName="Subsite" + version="1.4.1" + release="10"> <ccm:dependencies> <ccm:requires name="ccm-core" version="6.1.1"/> <ccm:requires name="ccm-cms" version="6.1.1"/> <ccm:requires name="ccm-ldn-util" version="1.4.1"/> <ccm:requires name="ccm-ldn-navigation" version="1.4.4"/> </ccm:dependencies> - <ccm:contacts> <ccm:contact uri="http://www.redhat.com/software/rhea" type="website"/> <ccm:contact uri="mailto:rh...@re..." type="support"/> </ccm:contacts> - <ccm:description> The Red Hat Web Application Framework is a platform for writing database-backed web applications in Java. </ccm:description> - </ccm:application> |