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: <mb...@re...> - 2005-02-25 12:52:57
|
Author: mbooth
Date: 2005-02-25 13:51:36 +0100 (Fri, 25 Feb 2005)
New Revision: 300
Modified:
ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/DomainBuilder.java
ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/HierarchyBuilder.java
ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/MixedHierarchyBuilder.java
ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/RelatedBuilder.java
Log:
Merge Camden's update to the terms importer which allows domains to be
upgraded.
Modified: ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/DomainBuilder.java
===================================================================
--- ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/DomainBuilder.java 2005-02-25 12:49:44 UTC (rev 299)
+++ ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/DomainBuilder.java 2005-02-25 12:51:36 UTC (rev 300)
@@ -53,13 +53,27 @@
String version,
String versionDate)
throws Exception {
+ s_log.debug("key: "+key+" url: "+url+" title: "+title
+ +" description: "+description+" version: "+version
+ +" versionDate: "+versionDate);
+ DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
+ Date released = format.parse(versionDate);
+
Domain domain = null;
try {
domain = Domain.retrieve(key);
+ s_log.debug("Retrieved Domain: "+domain);
+
+ // Now update this.
+ domain.setURL(new URL(url));
+ domain.setTitle(title);
+ domain.setDescription(description);
+ domain.setVersion(version);
+ domain.setReleased(released);
+
+
} catch (DataObjectNotFoundException ex) {
- DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
- Date released = format.parse(versionDate);
domain = Domain.create(key,
new URL(url),
@@ -67,6 +81,7 @@
null,
version,
released);
+ s_log.debug("created Domain "+domain);
}
m_domain = domain;
s_log.debug("Domain " + m_domain);
@@ -118,6 +133,6 @@
shortcut,
m_domain);
}
- s_log.debug("Term " + term);
+ s_log.debug("doAddTerm " + term);
}
}
Modified: ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/HierarchyBuilder.java
===================================================================
--- ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/HierarchyBuilder.java 2005-02-25 12:49:44 UTC (rev 299)
+++ ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/HierarchyBuilder.java 2005-02-25 12:51:36 UTC (rev 300)
@@ -19,6 +19,7 @@
package com.arsdigita.london.terms.importer;
+import com.arsdigita.domain.DomainCollection;
import com.arsdigita.london.terms.Domain;
import com.arsdigita.london.terms.Term;
import com.arsdigita.util.Assert;
@@ -36,17 +37,63 @@
public void findDomain(String url)
throws Exception {
+ s_log.debug("Entering find domain");
m_domain = Domain.find(new URL(url));
s_log.debug("Domain " + m_domain);
+ removeRootTerms();
+ removeNarrowerTerms();
}
- public void addNarrowerTerm(Integer id,
+ /**
+ * Find all the terms and remove all
+ * the narrower associations in each
+ */
+ private void removeNarrowerTerms() {
+ s_log.debug("Removing narrower terms from domain "+m_domain);
+ DomainCollection allTerms = m_domain.getTerms();
+ while(allTerms.next())
+ {
+ Term t = (Term)allTerms.getDomainObject();
+ DomainCollection narrowerTerms = t.getNarrowerTerms();
+ //s_log.debug("Term "+t+" has narrower terms "+narrowerTerms);
+ while(narrowerTerms.next())
+ {
+ Term narrow = (Term)narrowerTerms.getDomainObject();
+ //s_log.debug("removing term "+narrow+" from narrower association of term "+t);
+ t.removeNarrowerTerm(narrow);
+
+ }
+ }
+
+ }
+
+ /**
+ * Find the existing root terms in the current domain
+ * and remove them all
+ */
+ private void removeRootTerms() {
+ //s_log.debug("remvoing root terms of domain "+m_domain);
+ DomainCollection dc = m_domain.getRootTerms();
+ while(dc.next())
+ {
+ Term t = (Term)dc.getDomainObject();
+ //s_log.debug("removing root term "+t);
+ m_domain.removeRootTerm(t);
+
+ }
+ }
+
+ public void addNarrowerTerm(Integer id,
Integer narrowerID,
Boolean isDefault,
Boolean isPreferred) {
Assert.exists(m_domain, Domain.class);
Assert.exists(id, Integer.class);
Assert.exists(narrowerID, Integer.class);
+ s_log.debug("addNarrowerTerm id" + id
+ + " narrowerID " + narrowerID
+ + " isDefault "+ isDefault
+ + " isPreferred "+isPreferred);
Term term = m_domain.getTerm(id);
Term narrowerTerm = m_domain.getTerm(narrowerID);
@@ -56,14 +103,14 @@
isPreferred == null ?
true : isPreferred.booleanValue());
- s_log.debug("Term " + term + " Narrower " + narrowerTerm);
+ s_log.debug("addNarrowerTerm " + term.getName() + " Narrower " + narrowerTerm.getName());
term.save();
}
public void addRootTerm(Integer id) {
Assert.exists(m_domain, Domain.class);
Assert.exists(id, Integer.class);
-
+ s_log.debug("addRootTerm "+id);
Term term = m_domain.getTerm(id);
m_domain.addRootTerm(term);
term.save();
Modified: ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/MixedHierarchyBuilder.java
===================================================================
--- ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/MixedHierarchyBuilder.java 2005-02-25 12:49:44 UTC (rev 299)
+++ ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/MixedHierarchyBuilder.java 2005-02-25 12:51:36 UTC (rev 300)
@@ -19,8 +19,10 @@
package com.arsdigita.london.terms.importer;
+import com.arsdigita.domain.DomainCollection;
import com.arsdigita.london.terms.Domain;
import com.arsdigita.london.terms.Term;
+import com.arsdigita.persistence.Filter;
import com.arsdigita.util.Assert;
import org.apache.log4j.Logger;
@@ -32,8 +34,8 @@
private static final Logger s_log =
Logger.getLogger(MixedHierarchyBuilder.class);
- private Domain m_src_domain;
- private Domain m_dst_domain;
+ private Domain m_src_domain = null;
+ private Domain m_dst_domain = null;
public void findSourceDomain(String url)
throws Exception {
@@ -45,8 +47,44 @@
throws Exception {
m_dst_domain = Domain.find(new URL(url));
s_log.debug("Dest Domain " + m_dst_domain);
+ removeNarrowerTerms();
}
+ /**
+ * Find all the terms and remove all
+ * the narrower associations in each
+ */
+ private void removeNarrowerTerms() {
+ s_log.debug("Removing narrower terms from domain "+m_src_domain);
+ DomainCollection allTerms = m_src_domain.getTerms();
+ while(allTerms.next())
+ {
+ Term t = (Term)allTerms.getDomainObject();
+ DomainCollection narrowerTerms = t.getNarrowerTerms();
+ s_log.debug("Term "+t+" has narrower terms "+narrowerTerms);
+ s_log.debug(" narrower terms have "+narrowerTerms.size()+" terms");
+
+ // ok, we have all the narrower terms
+ // but really we only want the ones that are in the destination
+ // domain, so lets try and filter them.
+ Filter filter = narrowerTerms.getFilterFactory().equals(Term.DOMAIN,m_dst_domain.getURL().toExternalForm());
+ narrowerTerms.addFilter(filter);
+
+ // ok, now we have filtered them
+
+ s_log.debug("Term "+t+" has filtered narrower terms "+narrowerTerms+" from domain "+m_dst_domain);
+ s_log.debug("filtered narrower terms have "+narrowerTerms.size()+" terms");
+
+ while(narrowerTerms.next())
+ {
+ Term narrow = (Term)narrowerTerms.getDomainObject();
+ t.removeNarrowerTerm(narrow);
+
+ }
+ }
+
+ }
+
public void addNarrowerTerm(Integer id,
Integer narrowerID,
Boolean isDefault,
@@ -64,8 +102,7 @@
isPreferred == null ?
true : isPreferred.booleanValue());
- s_log.debug("Term " + term + " Narrower " + narrowerTerm);
-
+ s_log.debug("addNarrowerTerm " + term + " Narrower " + narrowerTerm);
term.save();
}
}
Modified: ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/RelatedBuilder.java
===================================================================
--- ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/RelatedBuilder.java 2005-02-25 12:49:44 UTC (rev 299)
+++ ccm-ldn-terms/trunk/src/com/arsdigita/london/terms/importer/RelatedBuilder.java 2005-02-25 12:51:36 UTC (rev 300)
@@ -19,26 +19,30 @@
package com.arsdigita.london.terms.importer;
+import java.net.URL;
+
+import org.apache.log4j.Logger;
+
+import com.arsdigita.domain.DomainCollection;
import com.arsdigita.london.terms.Domain;
import com.arsdigita.london.terms.Term;
import com.arsdigita.util.Assert;
-import org.apache.log4j.Logger;
-
-import java.net.URL;
-
public class RelatedBuilder {
private static final Logger s_log =
- Logger.getLogger(HierarchyBuilder.class);
+ Logger.getLogger(RelatedBuilder.class);
private Domain m_src_domain;
- private Domain m_dst_domain;
+ private Domain m_dst_domain;
+
+ private boolean m_removed_related_terms = false;
public void findSourceDomain(String url)
throws Exception {
m_src_domain = Domain.find(new URL(url));
s_log.debug("Src Domain " + m_src_domain);
+
}
public void findDestinationDomain(String url)
@@ -47,12 +51,52 @@
s_log.debug("Dest Domain " + m_dst_domain);
}
- public void addRelatedTerm(Integer srcID,
+ /**
+ *
+ * remove all the related terms from the
+ * terms in the source domain to the destination domain,
+ * or within the source domain if the destination domain
+ * is null.
+ * This only happens on the first call.
+ *
+ */
+ private void removeRelatedTerms() {
+ Assert.exists(m_src_domain);
+ s_log.debug("removing related terms from domain "+m_src_domain);
+ if(m_removed_related_terms) {
+ //done this!!
+ s_log.warn("This method has been called twice. This is unexpected.");
+ return;
+ }
+ m_removed_related_terms = true;
+ DomainCollection srcTerms = m_src_domain.getTerms();
+ s_log.debug("got terms "+srcTerms);
+ Domain domain = m_dst_domain;
+ if(m_dst_domain == null) {
+ s_log.debug("destination domain is null. Assume related terms within a single domain");
+ domain = m_src_domain;
+
+ }
+ while(srcTerms.next()) {
+ Term srcTerm = (Term)srcTerms.getDomainObject();
+ DomainCollection relatedTerms = srcTerm.getRelatedTerms(domain);
+ while(relatedTerms.next()){
+ Term related = (Term)relatedTerms.getDomainObject();
+ srcTerm.removeRelatedTerm(related);
+ }
+ }
+ }
+
+
+ public void addRelatedTerm(Integer srcID,
Integer dstID) {
Assert.exists(m_src_domain, Domain.class);
Assert.exists(srcID, Integer.class);
- Assert.exists(dstID, Integer.class);
+ Assert.exists(dstID, Integer.class);
+ if(!m_removed_related_terms) {
+ removeRelatedTerms();
+ }
Term srcTerm = m_src_domain.getTerm(srcID);
Term dstTerm = m_dst_domain == null ?
m_src_domain.getTerm(dstID) :
|
|
From: <mb...@re...> - 2005-02-25 12:51:04
|
Author: mbooth
Date: 2005-02-25 13:49:44 +0100 (Fri, 25 Feb 2005)
New Revision: 299
Modified:
ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/ItemCategoryPicker.java
ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java
Log:
Automatically Map LGSL -> LGCL and GCL
Modified: ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/ItemCategoryPicker.java
===================================================================
--- ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/ItemCategoryPicker.java 2005-02-24 19:20:47 UTC (rev 298)
+++ ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/ItemCategoryPicker.java 2005-02-25 12:49:44 UTC (rev 299)
@@ -37,7 +37,7 @@
import com.arsdigita.cms.ui.authoring.ItemCategoryForm;
import java.util.List;
-import java.util.ArrayList;
+import java.util.LinkedList;
import java.util.Iterator;
import java.math.BigDecimal;
@@ -63,13 +63,27 @@
PageState state = ev.getPageState();
Domain domain = getDomain(state);
- if (domain == null || !domain.getKey().equals("LGCL")) {
- fireCompletionEvent(ev.getPageState());
+ String domainKey = domain.getKey();
+
+ if (s_log.isDebugEnabled()) {
+ s_log.debug("Saving categories in: " + domainKey);
}
ContentItem item = CMS.getContext().getContentItem();
ContentBundle bundle = (ContentBundle)item.getParent();
+ if ("LGCL".equals(domainKey)) {
+ lgclSelected(domain, bundle);
+ }
+
+ else if ("LGDL".equals(domainKey)) {
+ lgdlSelected(domain, bundle);
+ }
+
+ fireCompletionEvent(state);
+ }
+
+ private void lgclSelected(Domain domain, ContentBundle bundle) {
// adding processing or mapping from LGCL to APLAWS-NAV too
boolean lgclOverrideAnav = Aplaws.getAplawsConfig().getOverrideAnavFromLGCLMappings().booleanValue();
@@ -88,15 +102,47 @@
clearTerms(gcl, bundle);
assignTerms(gclTerms, bundle);
- clearTerms(lgsl, bundle);
- assignTerms(lgslTerms, bundle);
+ // The assignment below is removed to satisfy requirement 4.1,
+ // use case 1 of the document "Metadata Improvements" version 1
+ // by Camden, dated 23/01/05.
+ //clearTerms(lgsl, bundle);
+ //assignTerms(lgslTerms, bundle);
+
if (lgclOverrideAnav) {
clearTerms(aplawsNav, bundle);
assignTerms(aplawsNavTerms, bundle);
}
+ }
- fireCompletionEvent(state);
+ // User has selected a term in the LGDL hierarchy, which includes
+ // terms from the LGSL. We're only interested in LGSL terms here.
+ private void lgdlSelected(Domain domain, ContentBundle bundle) {
+ Domain lgsl = Domain.retrieve("LGSL");
+ Domain gcl = Domain.retrieve("GCL");
+ Domain lgcl = Domain.retrieve("LGCL");
+
+ // We have a mapping LGSL -> LGCL based on the reverse of a
+ // published mapping. We don't have a mapping LGSL -> GCL, so we
+ // do LGSL -> LGCL -> GCL instead.
+
+ List lgslTerms = getCurrentCategories(lgsl, bundle);
+ List lgclTerms = getRelatedTerms(lgslTerms, lgcl);
+
+ LinkedList lgclIDs = new LinkedList();
+ Iterator i = lgclTerms.iterator();
+ while (i.hasNext()) {
+ Term term = (Term) i.next();
+ lgclIDs.add(term.getModel().getID());
+ }
+
+ List gclTerms = getRelatedTerms(lgclIDs, gcl);
+
+ clearTerms(lgcl, bundle);
+ assignTerms(lgclTerms, bundle);
+
+ clearTerms(gcl, bundle);
+ assignTerms(gclTerms, bundle);
}
}
@@ -105,10 +151,11 @@
if (s_log.isDebugEnabled()) {
s_log.debug("Getting terms from " + domain + " to " + bundle);
}
- List current = new ArrayList();
DomainCollection terms = domain.getTerms();
terms.addEqualsFilter("model.childObjects.id", bundle.getID());
terms.addPath("model.id");
+
+ List current = new LinkedList();
while (terms.next()) {
if (s_log.isDebugEnabled()) {
s_log.debug("Got term " + terms.get("model.id"));
@@ -123,7 +170,7 @@
if (s_log.isDebugEnabled()) {
s_log.debug("Getting terms from " + domain + " to " + bundle);
}
- List current = new ArrayList();
+ List current = new LinkedList();
DomainCollection terms = domain.getTerms();
terms.addEqualsFilter("model.childObjects.id", bundle.getID());
terms.addPath("model.id");
@@ -145,15 +192,14 @@
if (src.isEmpty()) {
// this is a hack, it would be better not to use a completion event listener as
// this is called even when the form is cancelled...
- return new ArrayList();
+ return new LinkedList();
}
DomainCollection terms = domain.getTerms();
// these next two lines build the query
terms.addEqualsFilter("model.parents.link.relationType", "related");
terms.addFilter("model.parents.id in :ids").set("ids", src);
-
- List related = new ArrayList();
+ List related = new LinkedList();
while (terms.next()) {
if (s_log.isDebugEnabled()) {
s_log.debug("Got term " + terms.getDomainObject());
Modified: ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java
===================================================================
--- ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java 2005-02-24 19:20:47 UTC (rev 298)
+++ ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java 2005-02-25 12:49:44 UTC (rev 299)
@@ -39,14 +39,14 @@
import com.arsdigita.cms.CMS;
-import java.util.Set;
+import java.math.BigDecimal;
+import java.util.HashMap;
import java.util.HashSet;
+import java.util.Iterator;
+import java.util.LinkedList;
+import java.util.List;
import java.util.Map;
-import java.util.HashMap;
-import java.util.List;
-import java.util.LinkedList;
-import java.util.Iterator;
-import java.math.BigDecimal;
+import java.util.Set;
/**
* A Widget for selecting Terms. Based heavily on CategoryWidget.
|
|
From: <mb...@re...> - 2005-02-24 19:22:19
|
Author: mbooth
Date: 2005-02-24 20:20:47 +0100 (Thu, 24 Feb 2005)
New Revision: 298
Modified:
ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java
ccm-ldn-aplaws/trunk/web/__ccm__/themes/aplaws/content-section-admin.xsl
Log:
Fix to show all child terms of a domain, even if they're in a domain. This is
specifically relevant to the LGDL which has child terms in the LGSL.
Modified: ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java
===================================================================
--- ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java 2005-02-24 13:38:23 UTC (rev 297)
+++ ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java 2005-02-24 19:20:47 UTC (rev 298)
@@ -29,10 +29,11 @@
import com.arsdigita.bebop.parameters.BigDecimalParameter;
import com.arsdigita.categorization.Category;
import com.arsdigita.categorization.CategoryCollection;
-import com.arsdigita.domain.DomainCollection;
import com.arsdigita.domain.DomainObjectFactory;
+import com.arsdigita.persistence.DataCollection;
import com.arsdigita.persistence.DataObject;
import com.arsdigita.persistence.OID;
+import com.arsdigita.persistence.SessionManager;
import com.arsdigita.xml.Element;
import com.arsdigita.xml.XML;
@@ -82,7 +83,6 @@
widget.addAttribute("mode", (String)state.getValue(m_mode));
widget.addAttribute("name", getName());
- widget.addAttribute("domain", domain.getKey());
Set ids = new HashSet();
@@ -93,15 +93,32 @@
}
}
- DomainCollection terms = domain.getTerms();
-
+ DataCollection terms = SessionManager.getSession().retrieve
+ (Term.BASE_DATA_OBJECT_TYPE);
+ terms.addEqualsFilter("model.roTransParents.id",
+ domain.getModel().getID());
terms.addEqualsFilter("model.parents.link.relationType", "child");
terms.addPath("model.parents.link.sortKey");
terms.addPath("model.parents.id");
+ terms.addPath("domain.key");
+
+ // Pull out everything related to the category, otherwise
+ // another query per row is executed when doing term.getModel();
+ terms.addPath("model.objectType");
+ terms.addPath("model.displayName");
+ terms.addPath("model.defaultDomainClass");
+ terms.addPath("model.name");
+ terms.addPath("model.description");
+ terms.addPath("model.url");
+ terms.addPath("model.isEnabled");
+ terms.addPath("model.isAbstract");
+ terms.addPath("model.defaultAncestors");
+
Map children = new HashMap();
while (terms.next()) {
- Term term = (Term) terms.getDomainObject();
+ Term term = (Term)
+ DomainObjectFactory.newInstance(terms.getDataObject());
BigDecimal parentID = (BigDecimal) terms.get("model.parents.id");
List childList = (List)children.get(parentID);
@@ -125,7 +142,7 @@
Term term = pair.getTerm();
BigDecimal sortKey = pair.getSortKey();
- generateTerm(el, domain.getKey(), term, ids, sortKey, children);
+ generateTerm(el, term, ids, sortKey, children);
}
}
}
@@ -155,7 +172,6 @@
}
public void generateTerm(Element parent,
- String domainKey,
Term term,
Set selected,
BigDecimal sortKey,
@@ -164,7 +180,7 @@
Element el = generateCategory(parent, cat, selected, sortKey);
el.addAttribute("pid", term.getUniqueID().toString());
- el.addAttribute("domain", domainKey);
+ el.addAttribute("domain", term.getDomain().getKey());
List c = (List)children.get(cat.getID());
if (c != null) {
@@ -173,8 +189,7 @@
TermSortKeyPair pair = (TermSortKeyPair) i.next();
Term child = pair.getTerm();
BigDecimal childSortKey = pair.getSortKey();
- generateTerm(el, domainKey, child,
- selected, childSortKey, children);
+ generateTerm(el, child, selected, childSortKey, children);
}
}
}
Modified: ccm-ldn-aplaws/trunk/web/__ccm__/themes/aplaws/content-section-admin.xsl
===================================================================
--- ccm-ldn-aplaws/trunk/web/__ccm__/themes/aplaws/content-section-admin.xsl 2005-02-24 13:38:23 UTC (rev 297)
+++ ccm-ldn-aplaws/trunk/web/__ccm__/themes/aplaws/content-section-admin.xsl 2005-02-24 19:20:47 UTC (rev 298)
@@ -16,7 +16,7 @@
<xsl:template name="cat-widget-cat-name">
<xsl:value-of select="@name"/>
- <xsl:if test="@pid and @domain='LGDL'">
+ <xsl:if test="@pid and @domain='LGSL'">
(<xsl:value-of select="@pid"/>)
</xsl:if>
</xsl:template>
|
Author: mbooth
Date: 2005-02-24 14:38:23 +0100 (Thu, 24 Feb 2005)
New Revision: 297
Added:
ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java
Modified:
ccm-cms/trunk/src/com/arsdigita/cms/ui/authoring/ItemCategoryForm.java
ccm-cms/trunk/web/__ccm__/static/cms/admin/category-step/category-step.xsl
ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/ItemCategoryPicker.java
ccm-ldn-aplaws/trunk/web/__ccm__/themes/aplaws/content-section-admin.xsl
Log:
Display PIDs next to names when displaying the LGDL in Aplaws
Modified: ccm-cms/trunk/src/com/arsdigita/cms/ui/authoring/ItemCategoryForm.java
===================================================================
--- ccm-cms/trunk/src/com/arsdigita/cms/ui/authoring/ItemCategoryForm.java 2005-02-23 07:47:02 UTC (rev 296)
+++ ccm-cms/trunk/src/com/arsdigita/cms/ui/authoring/ItemCategoryForm.java 2005-02-24 13:38:23 UTC (rev 297)
@@ -18,23 +18,24 @@
*/
package com.arsdigita.cms.ui.authoring;
+import com.arsdigita.bebop.ActionLink;
+import com.arsdigita.bebop.BoxPanel;
+import com.arsdigita.bebop.Form;
+import com.arsdigita.bebop.FormProcessException;
+import com.arsdigita.bebop.PageState;
+import com.arsdigita.bebop.SaveCancelSection;
import com.arsdigita.bebop.SimpleContainer;
-import com.arsdigita.bebop.ActionLink;
+import com.arsdigita.bebop.event.ActionEvent;
import com.arsdigita.bebop.event.ActionListener;
-import com.arsdigita.bebop.event.ActionEvent;
-import com.arsdigita.bebop.Form;
-import com.arsdigita.bebop.form.Submit;
+import com.arsdigita.bebop.event.FormInitListener;
+import com.arsdigita.bebop.event.FormProcessListener;
import com.arsdigita.bebop.event.FormSectionEvent;
import com.arsdigita.bebop.event.FormSubmissionListener;
-import com.arsdigita.bebop.event.FormProcessListener;
-import com.arsdigita.bebop.event.FormInitListener;
+import com.arsdigita.bebop.form.Submit;
+import com.arsdigita.bebop.form.Widget;
+import com.arsdigita.bebop.parameters.BigDecimalParameter;
import com.arsdigita.bebop.parameters.NotNullValidationListener;
-import com.arsdigita.bebop.parameters.BigDecimalParameter;
-import com.arsdigita.bebop.FormProcessException;
-import com.arsdigita.bebop.SaveCancelSection;
import com.arsdigita.bebop.parameters.StringParameter;
-import com.arsdigita.bebop.PageState;
-import com.arsdigita.bebop.BoxPanel;
import com.arsdigita.categorization.Category;
import com.arsdigita.categorization.CategoryCollection;
@@ -51,16 +52,20 @@
public class ItemCategoryForm extends Form {
- private CategoryWidget m_category;
+ private Widget m_category;
private SaveCancelSection m_buttons;
public ItemCategoryForm(BigDecimalParameter root,
StringParameter mode) {
+ this (root, mode, new CategoryWidget("category", root, mode));
+ }
+
+ public ItemCategoryForm(BigDecimalParameter root,
+ StringParameter mode,
+ Widget categoryWidget) {
super("category", new BoxPanel(BoxPanel.VERTICAL));
- m_category = new CategoryWidget("category",
- root,
- mode);
+ m_category = categoryWidget;
m_category.addValidationListener(new NotNullValidationListener());
m_buttons = new SaveCancelSection();
Modified: ccm-cms/trunk/web/__ccm__/static/cms/admin/category-step/category-step.xsl
===================================================================
--- ccm-cms/trunk/web/__ccm__/static/cms/admin/category-step/category-step.xsl 2005-02-23 07:47:02 UTC (rev 296)
+++ ccm-cms/trunk/web/__ccm__/static/cms/admin/category-step/category-step.xsl 2005-02-24 13:38:23 UTC (rev 297)
@@ -205,7 +205,7 @@
<xsl:value-of select="@description"/>
</xsl:attribute>
</xsl:if>
- <xsl:value-of select="@name"/>
+ <xsl:call-template name="cat-widget-cat-name"/>
</a>
<span id="catNm{@id}" style="padding-left: 6px; display: {$nameStyle}">
<xsl:if test="@description">
@@ -213,7 +213,7 @@
<xsl:value-of select="@description"/>
</xsl:attribute>
</xsl:if>
- <xsl:value-of select="@name"/>
+ <xsl:call-template name="cat-widget-cat-name"/>
</span>
</div>
<div id="catCh{@id}" style="margin-left: 20px; display: {$expand}">
@@ -223,6 +223,10 @@
</div>
</xsl:template>
+ <xsl:template name="cat-widget-cat-name">
+ <xsl:value-of select="@name"/>
+ </xsl:template>
+
<xsl:template match="cms:categoryWidget" mode="cms:plain">
<select name="{@name}" size="30" multiple="multiple">
<xsl:apply-templates select="cms:category[position() = 1]/cms:category[@isEnabled = '1' and @isAbstract = '0']" mode="cms:plainCat"/>
Modified: ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/ItemCategoryPicker.java
===================================================================
--- ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/ItemCategoryPicker.java 2005-02-23 07:47:02 UTC (rev 296)
+++ ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/ItemCategoryPicker.java 2005-02-24 13:38:23 UTC (rev 297)
@@ -51,7 +51,7 @@
public ItemCategoryPicker(BigDecimalParameter root,
StringParameter mode) {
- m_form = new ItemCategoryForm(root, mode);
+ m_form = new ItemCategoryForm(root, mode, new TermWidget(mode, this));
m_root = root;
add(m_form);
Added: ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java
===================================================================
--- ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java 2005-02-23 07:47:02 UTC (rev 296)
+++ ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java 2005-02-24 13:38:23 UTC (rev 297)
@@ -0,0 +1,197 @@
+/*
+ * 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.aplaws.ui;
+
+import com.arsdigita.london.terms.Domain;
+import com.arsdigita.london.terms.Term;
+
+import com.arsdigita.bebop.form.Widget;
+import com.arsdigita.bebop.PageState;
+import com.arsdigita.bebop.parameters.ArrayParameter;
+import com.arsdigita.bebop.parameters.StringParameter;
+import com.arsdigita.bebop.parameters.BigDecimalParameter;
+import com.arsdigita.categorization.Category;
+import com.arsdigita.categorization.CategoryCollection;
+import com.arsdigita.domain.DomainCollection;
+import com.arsdigita.domain.DomainObjectFactory;
+import com.arsdigita.persistence.DataObject;
+import com.arsdigita.persistence.OID;
+import com.arsdigita.xml.Element;
+import com.arsdigita.xml.XML;
+
+import com.arsdigita.cms.CMS;
+
+import java.util.Set;
+import java.util.HashSet;
+import java.util.Map;
+import java.util.HashMap;
+import java.util.List;
+import java.util.LinkedList;
+import java.util.Iterator;
+import java.math.BigDecimal;
+
+/**
+ * A Widget for selecting Terms. Based heavily on CategoryWidget.
+ *
+ * @author mb...@re...
+ */
+public class TermWidget extends Widget {
+ private StringParameter m_mode;
+ private ItemCategoryPicker m_picker;
+
+ public TermWidget(StringParameter mode,
+ ItemCategoryPicker picker) {
+ super(new ArrayParameter(new BigDecimalParameter("category")));
+
+ m_mode = mode;
+ m_picker = picker;
+ }
+
+ protected String getType() {
+ return "category";
+ }
+
+ public boolean isCompound() {
+ return false;
+ }
+
+ protected void generateWidget(PageState state,
+ Element parent) {
+ Domain domain = m_picker.getDomain(state);
+
+ Element widget = parent.newChildElement("cms:categoryWidget",
+ CMS.CMS_XML_NS);
+ exportAttributes(widget);
+
+ widget.addAttribute("mode", (String)state.getValue(m_mode));
+ widget.addAttribute("name", getName());
+ widget.addAttribute("domain", domain.getKey());
+
+ Set ids = new HashSet();
+
+ BigDecimal[] values = (BigDecimal[])getValue(state);
+ if (values != null) {
+ for (int i = 0 ; i < values.length ; i++) {
+ ids.add(values[i]);
+ }
+ }
+
+ DomainCollection terms = domain.getTerms();
+
+ terms.addEqualsFilter("model.parents.link.relationType", "child");
+ terms.addPath("model.parents.link.sortKey");
+ terms.addPath("model.parents.id");
+
+ Map children = new HashMap();
+ while (terms.next()) {
+ Term term = (Term) terms.getDomainObject();
+ BigDecimal parentID = (BigDecimal) terms.get("model.parents.id");
+
+ List childList = (List)children.get(parentID);
+ if (childList == null) {
+ childList = new LinkedList();
+ children.put(parentID, childList);
+ }
+
+ childList.add(new TermSortKeyPair
+ (term,(BigDecimal)terms.get("model.parents.link.sortKey")));
+ }
+
+ // The top level category isn't a term, so has to be handled
+ // differently
+ Element el = generateCategory(widget, domain.getModel(), ids, null);
+ List roots = (List) children.get(domain.getModel().getID());
+ if (null != roots) {
+ Iterator i = roots.iterator();
+ while (i.hasNext()) {
+ TermSortKeyPair pair = (TermSortKeyPair) i.next();
+ Term term = pair.getTerm();
+ BigDecimal sortKey = pair.getSortKey();
+
+ generateTerm(el, domain.getKey(), term, ids, sortKey, children);
+ }
+ }
+ }
+
+ public Element generateCategory(Element parent,
+ Category cat,
+ Set selected,
+ BigDecimal sortKey) {
+ Element el = parent.newChildElement("cms:category", CMS.CMS_XML_NS);
+
+ el.addAttribute("id", XML.format(cat.getID()));
+ el.addAttribute("name", cat.getName());
+ el.addAttribute("description", cat.getDescription());
+ el.addAttribute("isSelected", selected.contains(cat.getID()) ? "1" : "0");
+ el.addAttribute("isAbstract", cat.isAbstract() ? "1" : "0");
+ el.addAttribute("isEnabled", cat.isEnabled() ? "1" : "0");
+ if (sortKey != null) {
+ el.addAttribute("sortKey", sortKey.toString());
+ }
+
+ StringBuffer path = new StringBuffer(parent.getAttribute("fullname"));
+ if (path.length() > 0) path.append(" > ");
+ path.append(cat.getName());
+ el.addAttribute("fullname", path.toString());
+
+ return el;
+ }
+
+ public void generateTerm(Element parent,
+ String domainKey,
+ Term term,
+ Set selected,
+ BigDecimal sortKey,
+ Map children) {
+ Category cat = term.getModel();
+ Element el = generateCategory(parent, cat, selected, sortKey);
+
+ el.addAttribute("pid", term.getUniqueID().toString());
+ el.addAttribute("domain", domainKey);
+
+ List c = (List)children.get(cat.getID());
+ if (c != null) {
+ Iterator i = c.iterator();
+ while (i.hasNext()) {
+ TermSortKeyPair pair = (TermSortKeyPair) i.next();
+ Term child = pair.getTerm();
+ BigDecimal childSortKey = pair.getSortKey();
+ generateTerm(el, domainKey, child,
+ selected, childSortKey, children);
+ }
+ }
+ }
+
+ private class TermSortKeyPair {
+ private Term m_term;
+ private BigDecimal m_sortKey;
+
+ public TermSortKeyPair(Term term, BigDecimal sortKey) {
+ m_term = term;
+ m_sortKey = sortKey;
+ }
+ public Term getTerm() {
+ return m_term;
+ }
+ public BigDecimal getSortKey() {
+ return m_sortKey;
+ }
+ }
+}
Property changes on: ccm-ldn-aplaws/trunk/src/com/arsdigita/aplaws/ui/TermWidget.java
___________________________________________________________________
Name: svn:keywords
+ "Id Author DateTime"
Modified: ccm-ldn-aplaws/trunk/web/__ccm__/themes/aplaws/content-section-admin.xsl
===================================================================
--- ccm-ldn-aplaws/trunk/web/__ccm__/themes/aplaws/content-section-admin.xsl 2005-02-23 07:47:02 UTC (rev 296)
+++ ccm-ldn-aplaws/trunk/web/__ccm__/themes/aplaws/content-section-admin.xsl 2005-02-24 13:38:23 UTC (rev 297)
@@ -13,7 +13,15 @@
<xsl:variable name="here"><xsl:value-of select="$static-prefix"/>/cms/admin/page</xsl:variable>
+ <xsl:template name="cat-widget-cat-name">
+ <xsl:value-of select="@name"/>
+ <xsl:if test="@pid and @domain='LGDL'">
+ (<xsl:value-of select="@pid"/>)
+ </xsl:if>
+ </xsl:template>
+
+
<xsl:template match="bebop:page[@class = 'cms-admin']">
<html xmlns:deditor="http://www.arsdigita.com/deditor/1.0">
<head>
|
|
From: <ap...@re...> - 2005-02-23 07:48:22
|
Author: apevec
Date: 2005-02-23 08:47:02 +0100 (Wed, 23 Feb 2005)
New Revision: 296
Modified:
tools/trunk/tools/commands/mkservice
Log:
don't match too much when filtering by applications
Modified: tools/trunk/tools/commands/mkservice
===================================================================
--- tools/trunk/tools/commands/mkservice 2005-02-22 15:52:45 UTC (rev 295)
+++ tools/trunk/tools/commands/mkservice 2005-02-23 07:47:02 UTC (rev 296)
@@ -166,7 +166,8 @@
my %app_seen;
while(<SRC>) {
my $line = $_;
- my @matches = grep($line =~ $_, @{$apps});
+ my $pat;
+ my @matches = grep {$pat=$_.'-[0-9]'; $line =~ $pat} @{$apps};
my $times = scalar @matches;
if ($times > 0) {
$app_seen{$matches[0]} = 1;
|
|
From: <ss...@re...> - 2005-02-22 15:55:30
|
Author: sshinde Date: 2005-02-22 16:52:45 +0100 (Tue, 22 Feb 2005) New Revision: 295 Added: tools/trunk/rpms/solaris-linux-compat/README tools/trunk/rpms/solaris-linux-compat/packages/ tools/trunk/rpms/solaris-linux-compat/packages/libiconv-1.6.1-sol8-sparc-local.gz tools/trunk/rpms/solaris-linux-compat/packages/md5-6142000-sol8-sparc-local.gz tools/trunk/rpms/solaris-linux-compat/packages/rpm-4.0.4-dc2-sol8-sparc-local.gz tools/trunk/rpms/solaris-linux-compat/packages/update-alternatives-1.8.3-4jpp.noarch.rpm Log: A rough draft for CCM on solaris howto. May need some more details, but i have put in whatever i could remember. Added: tools/trunk/rpms/solaris-linux-compat/README =================================================================== --- tools/trunk/rpms/solaris-linux-compat/README 2005-02-22 15:35:53 UTC (rev 294) +++ tools/trunk/rpms/solaris-linux-compat/README 2005-02-22 15:52:45 UTC (rev 295) @@ -0,0 +1,101 @@ +Well what do i say ? +It's pain in the ? + +So , here is it: + +This document covers 64 bit Solaris 9 install of APLAWS+ +Use the packages from "packages" directory here. + +Roughly followed/based on +http://post-office.corp.redhat.com/archives/ccm-engineering-list/2003-May/msg00103.html + +Installing packages : + +1. gunzip libiconv-1.6.1-sol8-sparc-local.gz + pkgadd -d libiconv-1.6.1-sol8-sparc-local + +2. gunzip md5-6142000-sol8-sparc-local.gz + pkgadd -d md5-6142000-sol8-sparc-local + +2.1 [OPTIONAL] Install cvs if you wanna use CVS + and setup developement environment for CCM. + +3. Ensure the SUNWzlib & SUNWbzip packages are installed: + pkginfo SUNWbzip + pkginfo SUNWzlib + These two commands should display the package description + if sucessful. + +4. gunzip rpm-4.0.4-dc2-sol8-sparc-local.gz + pkgadd -d rpm-4.0.4-dc2-sol8-sparc-local + +NOTES: + When it prompts you about attribute changes on a bunch + of directories, say 'no' to installing the conflicting + files & then 'yes' to continuing with installation + + NB, the post install script generates a monster RPM + stuffed full of 'Provides:' lines for all current + software on your system. This may take some time... + + ie as much as 10-15 minutes. + +4. Create & install the solaris / linux compatability RPM + + $ rpm -ba solaris-linux-compat.spec + $ rpm -ivh /usr/local/src/redhat/RPMS/noarch/solaris-linux-compat-1.0.0-1.noarch.rpm + + The source spec file is in p4 //tools/rpms/SPECS/solaris-linux-compat.spec + Read the %description section in this spec file. + + For solaris 9 u have to tweak the spec file to change line + + to + echo "os_compat: solaris2.9: Linux" > /etc/rpmrc + +5.1 + [OPTIONAL] + Install the CCM development RPMs if needed: + + $ rpm -ivh xml-commons-1.0-0.b2.1jpp.noarch.rpm \ + xml-commons-apis-1.0-0.b2.1jpp.noarch.rpm \ + update-alternatives-1.8.3-4jpp.noarch.rpm \ + xerces-j2-2.0.2-3jpp.noarch.rpm \ + ant-1.5-5jpp.noarch.rpm \ + ant-optional-1.5-5jpp.noarch.rpm \ + jpackage-utils-1.5.13-1.noarch.rpm + + Then the CCM app you need + + $ rpm -ivh ccm-core-devel-5.2.0-1.noarch.rpm + + or + + $ rpm -ivh ccm-cms-devel-5.2.0-1.noarch.rpm + +5.2 + Install CCM binary RPMs: + $ rpm -Uvh *.rpm in a directory you have all the needed rpms. + + It's a good idea to use --test flag before running actual + install to check the required dependencies. + +6. Setup /etc/profile to include additional /etc/profile.d scripts, + by adding the following to /etc/profile: + + for i in /etc/profile.d/*.sh ; do + if [ -r $i ]; then + . $i + fi + done + unset i + +7. Set the JAVA_HOME environment variable in /etc/profile + + echo JAVA_HOME=/usr/j2se >> /etc/profile + echo export JAVA_HOME >> /etc/profile + +8. Install Resin: + Just follow steps mentioned on caucho , or the normal steps + you use for install on linux. + Added: tools/trunk/rpms/solaris-linux-compat/packages/libiconv-1.6.1-sol8-sparc-local.gz =================================================================== (Binary files differ) Property changes on: tools/trunk/rpms/solaris-linux-compat/packages/libiconv-1.6.1-sol8-sparc-local.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: tools/trunk/rpms/solaris-linux-compat/packages/md5-6142000-sol8-sparc-local.gz =================================================================== (Binary files differ) Property changes on: tools/trunk/rpms/solaris-linux-compat/packages/md5-6142000-sol8-sparc-local.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: tools/trunk/rpms/solaris-linux-compat/packages/rpm-4.0.4-dc2-sol8-sparc-local.gz =================================================================== (Binary files differ) Property changes on: tools/trunk/rpms/solaris-linux-compat/packages/rpm-4.0.4-dc2-sol8-sparc-local.gz ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: tools/trunk/rpms/solaris-linux-compat/packages/update-alternatives-1.8.3-4jpp.noarch.rpm =================================================================== (Binary files differ) Property changes on: tools/trunk/rpms/solaris-linux-compat/packages/update-alternatives-1.8.3-4jpp.noarch.rpm ___________________________________________________________________ Name: svn:mime-type + application/octet-stream |
|
From: <ss...@re...> - 2005-02-22 15:37:19
|
Author: sshinde Date: 2005-02-22 16:35:53 +0100 (Tue, 22 Feb 2005) New Revision: 294 Modified: tools/trunk/rpms/solaris-linux-compat/solaris-linux-compat.spec Log: Add the Provides: tags in spec file to satisfy the dependencies needed to compile the rpm on solaris. More maybe needed as we add more requires tags in rpms built for APLAWS. Modified: tools/trunk/rpms/solaris-linux-compat/solaris-linux-compat.spec =================================================================== --- tools/trunk/rpms/solaris-linux-compat/solaris-linux-compat.spec 2005-02-22 15:10:39 UTC (rev 293) +++ tools/trunk/rpms/solaris-linux-compat/solaris-linux-compat.spec 2005-02-22 15:35:53 UTC (rev 294) @@ -17,11 +17,29 @@ Provides: rpm Provides: java-devel Provides: perl +Provides: perl(Carp) +Provides: perl(Exporter) +Provides: perl(File::Copy) +Provides: perl(File::Find) +Provides: perl(File::Path) +Provides: perl(File::Spec) +Provides: perl(File::stat) +Provides: perl(Getopt::Long) +Provides: perl(POSIX) +Provides: perl(strict) +Provides: perl(vars) +Provides: perl(vars) +Provides: perl(IO::Socket) +Provides: perl(File::Basename) %description -An empty RPM providing compatability Provides: lines -to make solaris look like linux. Also sets up some symlinks -in /bin & /usr/bin +An empty RPM providing compatability Provides: +Ensure that all of the Provides: xxxx statements above +are actually present on the sytem.Otherwise it will fail +somewhere in runtime. +Lines to make solaris look like linux. +Sets up some symlinks in /bin & /usr/bin +NOTE: Change solaris2.x depending on solaris 8 or solaris 9 %post test -f /usr/bin/rpm || ln -s /usr/local/bin/rpm /usr/bin/rpm |
|
From: <ssk...@re...> - 2005-02-22 15:12:44
|
Author: sskracic Date: 2005-02-22 16:10:39 +0100 (Tue, 22 Feb 2005) New Revision: 293 Added: ccm-cms/trunk/sql/ccm-cms/oracle-se/upgrade/6.1.0-6.1.1/ ccm-cms/trunk/sql/ccm-cms/oracle-se/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql ccm-cms/trunk/sql/ccm-cms/postgres/upgrade/6.1.0-6.1.1/ ccm-cms/trunk/sql/ccm-cms/postgres/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql Modified: ccm-cms/trunk/sql/ccm-cms/upgrade/oracle-se-6.1.0-6.1.1.sql ccm-cms/trunk/sql/ccm-cms/upgrade/postgres-6.1.0-6.1.1.sql Log: Proper CMS upgrade scripts. Added: ccm-cms/trunk/sql/ccm-cms/oracle-se/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql =================================================================== --- ccm-cms/trunk/sql/ccm-cms/oracle-se/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql 2005-02-22 13:09:20 UTC (rev 292) +++ ccm-cms/trunk/sql/ccm-cms/oracle-se/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql 2005-02-22 15:10:39 UTC (rev 293) @@ -0,0 +1,2 @@ + +alter table cms_files add (length int); Property changes on: ccm-cms/trunk/sql/ccm-cms/oracle-se/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql ___________________________________________________________________ Name: svn:keywords + Id Author URL Added: ccm-cms/trunk/sql/ccm-cms/postgres/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql =================================================================== --- ccm-cms/trunk/sql/ccm-cms/postgres/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql 2005-02-22 13:09:20 UTC (rev 292) +++ ccm-cms/trunk/sql/ccm-cms/postgres/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql 2005-02-22 15:10:39 UTC (rev 293) @@ -0,0 +1,2 @@ + +alter table cms_files add column length int; Property changes on: ccm-cms/trunk/sql/ccm-cms/postgres/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql ___________________________________________________________________ Name: svn:keywords + Id Author URL Modified: ccm-cms/trunk/sql/ccm-cms/upgrade/oracle-se-6.1.0-6.1.1.sql =================================================================== --- ccm-cms/trunk/sql/ccm-cms/upgrade/oracle-se-6.1.0-6.1.1.sql 2005-02-22 13:09:20 UTC (rev 292) +++ ccm-cms/trunk/sql/ccm-cms/upgrade/oracle-se-6.1.0-6.1.1.sql 2005-02-22 15:10:39 UTC (rev 293) @@ -18,10 +18,7 @@ -- $Id$ -- $DateTime: 2004/08/16 18:10:38 $ -\echo Red Hat Enterprise CMS 6.1.0 -> 6.1.1 Upgrade Script (Oracle SE) +PROMPT Red Hat Enterprise CMS 6.1.0 -> 6.1.1 Upgrade Script (Oracle) -begin; +@@ ../oracle-se/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql -alter table cms_files add (length int); - -commit; Modified: ccm-cms/trunk/sql/ccm-cms/upgrade/postgres-6.1.0-6.1.1.sql =================================================================== --- ccm-cms/trunk/sql/ccm-cms/upgrade/postgres-6.1.0-6.1.1.sql 2005-02-22 13:09:20 UTC (rev 292) +++ ccm-cms/trunk/sql/ccm-cms/upgrade/postgres-6.1.0-6.1.1.sql 2005-02-22 15:10:39 UTC (rev 293) @@ -22,6 +22,6 @@ begin; -alter table cms_files add column length int; +\i ../postgres/upgrade/6.1.0-6.1.1/upgrade-cms_files.sql commit; |
|
From: <ssk...@re...> - 2005-02-22 13:10:39
|
Author: sskracic Date: 2005-02-22 14:09:20 +0100 (Tue, 22 Feb 2005) New Revision: 292 Added: ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/ ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-search_content.sql ccm-core/trunk/sql/ccm-core/postgres/upgrade/6.1.0-6.1.1/ ccm-core/trunk/sql/ccm-core/postgres/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql Modified: ccm-core/trunk/sql/ccm-core/upgrade/oracle-se-6.1.0-6.1.1.sql ccm-core/trunk/sql/ccm-core/upgrade/postgres-6.1.0-6.1.1.sql Log: Proper data upgrade scripts for core. Added: ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql =================================================================== --- ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql 2005-02-22 09:32:28 UTC (rev 291) +++ ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql 2005-02-22 13:09:20 UTC (rev 292) @@ -0,0 +1,2 @@ + +alter table lucene_docs add (content_section varchar(300)); Property changes on: ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql ___________________________________________________________________ Name: svn:keywords + Id Author URL Added: ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-search_content.sql =================================================================== --- ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-search_content.sql 2005-02-22 09:32:28 UTC (rev 291) +++ ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-search_content.sql 2005-02-22 13:09:20 UTC (rev 292) @@ -0,0 +1,2 @@ + +alter table search_content add (content_section varchar(300)); Property changes on: ccm-core/trunk/sql/ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-search_content.sql ___________________________________________________________________ Name: svn:keywords + Id Author URL Added: ccm-core/trunk/sql/ccm-core/postgres/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql =================================================================== --- ccm-core/trunk/sql/ccm-core/postgres/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql 2005-02-22 09:32:28 UTC (rev 291) +++ ccm-core/trunk/sql/ccm-core/postgres/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql 2005-02-22 13:09:20 UTC (rev 292) @@ -0,0 +1,6 @@ + +begin; + +alter table lucene_docs add column content_section varchar(300); + +commit; Property changes on: ccm-core/trunk/sql/ccm-core/postgres/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql ___________________________________________________________________ Name: svn:keywords + Id Author URL Modified: ccm-core/trunk/sql/ccm-core/upgrade/oracle-se-6.1.0-6.1.1.sql =================================================================== --- ccm-core/trunk/sql/ccm-core/upgrade/oracle-se-6.1.0-6.1.1.sql 2005-02-22 09:32:28 UTC (rev 291) +++ ccm-core/trunk/sql/ccm-core/upgrade/oracle-se-6.1.0-6.1.1.sql 2005-02-22 13:09:20 UTC (rev 292) @@ -18,11 +18,8 @@ -- $Id$ -- $DateTime: 2004/08/16 18:10:38 $ -\echo Red Hat WAF 6.1.0 -> 6.1.1 Upgrade Script (Oracle SE) +PROMPT Red Hat WAF 6.1.0 -> 6.1.1 Upgrade Script (Oracle) -begin; +@@ ../../ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql +@@ ../../ccm-core/oracle-se/upgrade/6.1.0-6.1.1/upgrade-search_content.sql -alter table search_content add (content_section varchar(300)); -alter table lucene_docs add (content_section varchar(300)); - -commit; Modified: ccm-core/trunk/sql/ccm-core/upgrade/postgres-6.1.0-6.1.1.sql =================================================================== --- ccm-core/trunk/sql/ccm-core/upgrade/postgres-6.1.0-6.1.1.sql 2005-02-22 09:32:28 UTC (rev 291) +++ ccm-core/trunk/sql/ccm-core/upgrade/postgres-6.1.0-6.1.1.sql 2005-02-22 13:09:20 UTC (rev 292) @@ -20,8 +20,4 @@ \echo Red Hat WAF 6.1.0 -> 6.1.1 Upgrade Script (PostgreSQL) -begin; - -alter table lucene_docs add column content_section varchar(300); - -commit; +\i ../../ccm-core/postgres/upgrade/6.1.0-6.1.1/upgrade-lucene_docs.sql |
|
From: <ssk...@re...> - 2005-02-22 09:33:43
|
Author: sskracic Date: 2005-02-22 10:32:28 +0100 (Tue, 22 Feb 2005) New Revision: 291 Removed: users/sskracic/README users/sskracic/TODO users/sskracic/test users/sskracic/test.conf Log: |
|
From: <ssk...@re...> - 2005-02-22 09:32:34
|
Author: sskracic Date: 2005-02-22 10:30:24 +0100 (Tue, 22 Feb 2005) New Revision: 290 Added: users/sskracic/TODO Log: test. Added: users/sskracic/TODO =================================================================== --- users/sskracic/TODO 2005-02-22 09:27:55 UTC (rev 289) +++ users/sskracic/TODO 2005-02-22 09:30:24 UTC (rev 290) @@ -0,0 +1,7 @@ + +/** + * $Id$ + * $URL$ + * $Author$ + */ + Property changes on: users/sskracic/TODO ___________________________________________________________________ Name: svn:keywords + Id Author URL |
|
From: <ssk...@re...> - 2005-02-22 09:29:12
|
Author: sskracic Date: 2005-02-22 10:27:55 +0100 (Tue, 22 Feb 2005) New Revision: 289 Added: users/sskracic/README Log: Testing. Added: users/sskracic/README =================================================================== --- users/sskracic/README 2005-02-22 09:25:07 UTC (rev 288) +++ users/sskracic/README 2005-02-22 09:27:55 UTC (rev 289) @@ -0,0 +1,7 @@ + +/** + * $Id$ + * $URL$ + * $Author$ + */ + Property changes on: users/sskracic/README ___________________________________________________________________ Name: svn:keywords + "Id Author URL" |
|
From: <ssk...@re...> - 2005-02-22 09:26:23
|
Author: sskracic Date: 2005-02-22 10:25:07 +0100 (Tue, 22 Feb 2005) New Revision: 288 Added: users/sskracic/test.conf Log: Another test - ignore. Added: users/sskracic/test.conf =================================================================== --- users/sskracic/test.conf 2005-02-22 09:20:38 UTC (rev 287) +++ users/sskracic/test.conf 2005-02-22 09:25:07 UTC (rev 288) @@ -0,0 +1,7 @@ + +/** + * $Id$ + * $URL$ + * $Author$ + */ + |
|
From: <ssk...@re...> - 2005-02-22 09:22:02
|
Author: sskracic Date: 2005-02-22 10:20:38 +0100 (Tue, 22 Feb 2005) New Revision: 287 Added: users/sskracic/test Log: Test - ignore. Added: users/sskracic/test =================================================================== --- users/sskracic/test 2005-02-22 00:55:45 UTC (rev 286) +++ users/sskracic/test 2005-02-22 09:20:38 UTC (rev 287) @@ -0,0 +1,6 @@ +/** + * $Id$ + * $URL$ + * $Author$ + */ + |
Author: sskracic
Date: 2005-02-22 01:55:45 +0100 (Tue, 22 Feb 2005)
New Revision: 286
Modified:
tools/trunk/bundle/Makefile.am
tools/trunk/bundle/NEWS
tools/trunk/bundle/README
tools/trunk/bundle/bin/Makefile.am
tools/trunk/bundle/bin/hostinit-bundle
tools/trunk/bundle/bin/hostinit-bundle.cmd
tools/trunk/bundle/bin/load-bundle
tools/trunk/bundle/bin/load-bundle.cmd
tools/trunk/bundle/ccm-tools-bundle.spec.in
tools/trunk/bundle/configure.in
tools/trunk/bundle/make-zip.sh
tools/trunk/bundle/reconf.sh
tools/trunk/bundle/rollingbuild.sh
tools/trunk/devel/AUTHORS
tools/trunk/devel/COPYING
tools/trunk/devel/ChangeLog
tools/trunk/devel/INSTALL
tools/trunk/devel/Makefile.am
tools/trunk/devel/NEWS
tools/trunk/devel/README
tools/trunk/devel/TODO
tools/trunk/devel/bin/Makefile.am
tools/trunk/devel/bin/ccm-configure
tools/trunk/devel/bin/ccm-configure-all.sh
tools/trunk/devel/bin/ccm-configure.cmd
tools/trunk/devel/bin/ccm-configure.sh
tools/trunk/devel/bin/ccm-devel-create.cmd
tools/trunk/devel/bin/ccm-devel-create.pl
tools/trunk/devel/bin/ccm-devel-profile.cmd
tools/trunk/devel/bin/ccm-devel-profile.sh
tools/trunk/devel/bin/ccm-devel-user.cmd
tools/trunk/devel/bin/ccm-devel-user.sh
tools/trunk/devel/bin/ccm-profile.cmd
tools/trunk/devel/bin/ccm-start.cmd
tools/trunk/devel/bin/ccm-stop.cmd
tools/trunk/devel/build.sh
tools/trunk/devel/ccm-devel.spec.in
tools/trunk/devel/configure.in
tools/trunk/devel/doinstall.sh
tools/trunk/devel/etc/Makefile.am
tools/trunk/devel/etc/bin/Makefile.am
tools/trunk/devel/etc/bin/ccm-inst
tools/trunk/devel/etc/bin/ccm-restart
tools/trunk/devel/etc/bin/ccm-start
tools/trunk/devel/etc/bin/ccm-start-optit
tools/trunk/devel/etc/bin/ccm-start-resin
tools/trunk/devel/etc/bin/ccm-start-tomcat
tools/trunk/devel/etc/bin/ccm-start-tomcat4
tools/trunk/devel/etc/bin/ccm-stop
tools/trunk/devel/etc/bin/ccm-stop-resin
tools/trunk/devel/etc/bin/ccm-stop-tomcat
tools/trunk/devel/etc/bin/ccm-stop-tomcat4
tools/trunk/devel/etc/ccm-devel-cvs.sh.in
tools/trunk/devel/etc/ccm-devel.cmd
tools/trunk/devel/etc/ccm-devel.sh.in
tools/trunk/devel/etc/config.vars.in
tools/trunk/devel/etc/portalloc.txt
tools/trunk/devel/etc/project.pl
tools/trunk/devel/etc/project/Makefile.am
tools/trunk/devel/etc/project/ccm-devel-cvs.sh
tools/trunk/devel/etc/project/ccm-devel-perforce.sh
tools/trunk/devel/etc/project5x.cmd
tools/trunk/devel/etc/project5x.sh
tools/trunk/devel/etc/resin.conf.in
tools/trunk/devel/etc/server.xml.in
tools/trunk/devel/lib/Makefile.am
tools/trunk/devel/make-release.sh
tools/trunk/devel/make-zip.sh
tools/trunk/devel/prepatch.sh
tools/trunk/devel/reconf.sh
tools/trunk/devel/rollingbuild.sh
tools/trunk/devel/src/Makefile.am
tools/trunk/devel/src/build.xml
tools/trunk/devel/src/com/Makefile.am
tools/trunk/devel/src/com/redhat/Makefile.am
tools/trunk/devel/src/com/redhat/ccm/Makefile.am
tools/trunk/devel/src/com/redhat/ccm/config/ConfigHelper.java
tools/trunk/devel/src/com/redhat/ccm/config/IntegrateConfig.java
tools/trunk/devel/src/com/redhat/ccm/config/MakeConfig.java
tools/trunk/devel/src/com/redhat/ccm/config/MakeInit.java
tools/trunk/devel/src/com/redhat/ccm/config/Makefile.am
tools/trunk/devel/src/com/redhat/ccm/tools/Makefile.am
tools/trunk/devel/src/com/redhat/ccm/tools/ant/Makefile.am
tools/trunk/devel/src/com/redhat/ccm/tools/ant/taskdefs/JDOEnhance.java
tools/trunk/devel/src/com/redhat/ccm/tools/ant/taskdefs/Makefile.am
tools/trunk/devel/template/.cvsignore
tools/trunk/devel/template/Makefile.am
tools/trunk/devel/template/ant.properties.in
tools/trunk/devel/template/custom/.cvsignore
tools/trunk/devel/template/custom/Makefile.am
tools/trunk/devel/template/custom/application.xml
tools/trunk/devel/template/custom/etc/.cvsignore
tools/trunk/devel/template/custom/etc/Makefile.am
tools/trunk/devel/template/custom/etc/enterprise.init.in
tools/trunk/devel/template/custom/pdl/.cvsignore
tools/trunk/devel/template/custom/pdl/Makefile.am
tools/trunk/devel/template/custom/sql/.cvsignore
tools/trunk/devel/template/custom/sql/Makefile.am
tools/trunk/devel/template/custom/sql/oracle-se/.cvsignore
tools/trunk/devel/template/custom/sql/oracle-se/Makefile.am
tools/trunk/devel/template/custom/sql/oracle-se/upgrade/.cvsignore
tools/trunk/devel/template/custom/sql/oracle-se/upgrade/Makefile.am
tools/trunk/devel/template/custom/src/.cvsignore
tools/trunk/devel/template/custom/src/Makefile.am
tools/trunk/devel/template/custom/web/.cvsignore
tools/trunk/devel/template/custom/web/Makefile.am
tools/trunk/devel/template/project.xml
tools/trunk/devel/xsd/Makefile.am
tools/trunk/devel/xsd/application.xsd
tools/trunk/devel/xsd/project.xsd
tools/trunk/devel/xsl/Makefile.am
tools/trunk/devel/xsl/build-template-5x.xsl
tools/trunk/devel/xsl/build-template.xsl
tools/trunk/devel/xsl/classpath-template.xsl
tools/trunk/devel/xsl/combine.xsl
tools/trunk/devel/xsl/junit-bicycle.xsl
tools/trunk/misc/build-all.sh
tools/trunk/misc/build-ordering.sh
tools/trunk/misc/expand-dependencies
tools/trunk/rpms/httpunit/httpunit.spec
tools/trunk/rpms/httpunit/rollingbuild.sh
tools/trunk/rpms/junit/junit.spec
tools/trunk/rpms/junit/rollingbuild.sh
tools/trunk/rpms/junitperf/junitperf.spec
tools/trunk/rpms/junitperf/rollingbuild.sh
tools/trunk/rpms/servlet/rollingbuild.sh
tools/trunk/rpms/servlet/servlet.spec
tools/trunk/rpms/solaris-linux-compat/rollingbuild.sh
tools/trunk/rpms/solaris-linux-compat/solaris-linux-compat.spec
tools/trunk/scripts/AUTHORS
tools/trunk/scripts/COPYING
tools/trunk/scripts/ChangeLog
tools/trunk/scripts/INSTALL
tools/trunk/scripts/Makefile.am
tools/trunk/scripts/NEWS
tools/trunk/scripts/README
tools/trunk/scripts/TODO
tools/trunk/scripts/bin/Makefile.am
tools/trunk/scripts/bin/build.cmd
tools/trunk/scripts/bin/build.sh
tools/trunk/scripts/bin/calc-checksum.sh
tools/trunk/scripts/bin/env-conf
tools/trunk/scripts/bin/env-conf.cmd
tools/trunk/scripts/bin/env-conf.sh
tools/trunk/scripts/bin/extract-version-5x.pl
tools/trunk/scripts/bin/extract-version-6.0.pl
tools/trunk/scripts/bin/extract-version.pl
tools/trunk/scripts/bin/interpolate.cmd
tools/trunk/scripts/bin/interpolate.pl
tools/trunk/scripts/bin/interpolate.sh
tools/trunk/scripts/bin/make-dist.cmd
tools/trunk/scripts/bin/make-dist.sh
tools/trunk/scripts/bin/make-rpm
tools/trunk/scripts/bin/make-rpm.sh
tools/trunk/scripts/bin/make-source
tools/trunk/scripts/bin/make-source.cmd
tools/trunk/scripts/bin/make-source.sh
tools/trunk/scripts/bin/make-zip
tools/trunk/scripts/bin/make-zip.5x.cmd
tools/trunk/scripts/bin/make-zip.5x.sh
tools/trunk/scripts/bin/make-zip.6.0.cmd
tools/trunk/scripts/bin/make-zip.6.0.sh
tools/trunk/scripts/bin/make-zip.cmd
tools/trunk/scripts/bin/make-zip.sh
tools/trunk/scripts/build.sh
tools/trunk/scripts/ccm-scripts.spec.in
tools/trunk/scripts/configure.in
tools/trunk/scripts/doc/Makefile.am
tools/trunk/scripts/doc/rollingbuild.sh
tools/trunk/scripts/doinstall.sh
tools/trunk/scripts/etc/Makefile.am
tools/trunk/scripts/etc/ccm-scripts.cmd
tools/trunk/scripts/etc/ccm-scripts.sh.in
tools/trunk/scripts/make-release.sh
tools/trunk/scripts/make-zip.sh
tools/trunk/scripts/pkg/Makefile.am
tools/trunk/scripts/pkg/bin/Makefile.am
tools/trunk/scripts/pkg/bin/configure.cmd
tools/trunk/scripts/pkg/bin/configure.pl
tools/trunk/scripts/pkg/bin/init.sh.in
tools/trunk/scripts/pkg/bin/resin/Makefile.am
tools/trunk/scripts/pkg/bin/resin/run-apache.sh.in
tools/trunk/scripts/pkg/bin/resin/run-resin.sh.in
tools/trunk/scripts/pkg/bin/resin/run.sh.in
tools/trunk/scripts/pkg/bin/tomcat4/Makefile.am
tools/trunk/scripts/pkg/bin/tomcat4/run-tomcat.sh.in
tools/trunk/scripts/pkg/bin/tomcat4/run.sh.in
tools/trunk/scripts/pkg/bin/tomcat4/tomcat-service-install.cmd.in
tools/trunk/scripts/pkg/bin/tomcat4/tomcat-service-uninstall.cmd.in
tools/trunk/scripts/pkg/conf/Makefile.am
tools/trunk/scripts/pkg/conf/resin/Makefile.am
tools/trunk/scripts/pkg/conf/resin/httpd-resin-vhost.conf.in
tools/trunk/scripts/pkg/conf/resin/resin-back.conf.in
tools/trunk/scripts/pkg/conf/resin/resin-front.conf.in
tools/trunk/scripts/pkg/conf/system.conf-resin.in
tools/trunk/scripts/pkg/conf/system.conf-tomcat4-win2k.in
tools/trunk/scripts/pkg/conf/system.conf-tomcat4.in
tools/trunk/scripts/pkg/conf/tomcat4/Makefile.am
tools/trunk/scripts/pkg/conf/tomcat4/httpd-tomcat-vhost.conf.in
tools/trunk/scripts/pkg/conf/tomcat4/mod_jk.conf.in
tools/trunk/scripts/pkg/conf/tomcat4/server.xml.in
tools/trunk/scripts/pkg/conf/tomcat4/tomcat-apps.xml.in
tools/trunk/scripts/pkg/conf/tomcat4/tomcat-env.cmd.in
tools/trunk/scripts/pkg/conf/tomcat4/tomcat-users.xml.in
tools/trunk/scripts/pkg/conf/tomcat4/web.xml.in
tools/trunk/scripts/pkg/conf/tomcat4/workers.properties-win32.in
tools/trunk/scripts/pkg/conf/tomcat4/workers.properties.in
tools/trunk/scripts/pkg/dist/FILE-LIST.in
tools/trunk/scripts/pkg/dist/MANIFEST.SKIP.in
tools/trunk/scripts/pkg/dist/MANIFEST.SKIP.win2k.in
tools/trunk/scripts/pkg/dist/Makefile.am
tools/trunk/scripts/pkg/dist/pkginfo.in
tools/trunk/scripts/pkg/dist/rpm.spec.5x.in
tools/trunk/scripts/pkg/dist/rpm.spec.6.0.in
tools/trunk/scripts/pkg/dist/rpm.spec.in
tools/trunk/scripts/pkg/dist/rpm.spec.java-standalone.in
tools/trunk/scripts/prepatch.sh
tools/trunk/scripts/reconf.sh
tools/trunk/scripts/rollingbuild.sh
tools/trunk/scripts/template/Makefile.am
tools/trunk/scripts/template/rollingbuild.cmd
tools/trunk/scripts/template/rollingbuild.sh
tools/trunk/tools/AUTHORS
tools/trunk/tools/COPYING
tools/trunk/tools/ChangeLog
tools/trunk/tools/Makefile.PL
tools/trunk/tools/Makefile.am
tools/trunk/tools/NEWS
tools/trunk/tools/README
tools/trunk/tools/TODO
tools/trunk/tools/bin/Makefile.am
tools/trunk/tools/bin/ccm
tools/trunk/tools/bin/ccm-init-profile.cmd
tools/trunk/tools/bin/ccm-run
tools/trunk/tools/bin/ccm-run.cmd
tools/trunk/tools/bin/ccm.cmd
tools/trunk/tools/bin/javaconfig
tools/trunk/tools/build.sh
tools/trunk/tools/ccm-tools.spec.in
tools/trunk/tools/commands/Makefile.am
tools/trunk/tools/commands/hostinit
tools/trunk/tools/commands/hostinit.cmd
tools/trunk/tools/commands/hostinit.help
tools/trunk/tools/commands/hostinit.usage
tools/trunk/tools/commands/mkservice
tools/trunk/tools/commands/mkservice.help
tools/trunk/tools/commands/mkservice.usage
tools/trunk/tools/commands/start
tools/trunk/tools/commands/start.cmd
tools/trunk/tools/commands/start.help
tools/trunk/tools/commands/start.usage
tools/trunk/tools/commands/stop
tools/trunk/tools/commands/stop.cmd
tools/trunk/tools/commands/stop.help
tools/trunk/tools/commands/stop.usage
tools/trunk/tools/configure.in
tools/trunk/tools/doinstall.sh
tools/trunk/tools/etc/Makefile.am
tools/trunk/tools/etc/ccm-tools/Makefile.am
tools/trunk/tools/etc/ccm-tools/resin.sh
tools/trunk/tools/etc/ccm-tools/tomcat.sh
tools/trunk/tools/etc/envvars
tools/trunk/tools/etc/init.d/Makefile.am
tools/trunk/tools/etc/init.d/ccm
tools/trunk/tools/etc/profile.d/Makefile.am
tools/trunk/tools/etc/profile.d/ccm-tools-resin.cmd.in
tools/trunk/tools/etc/profile.d/ccm-tools-resin.sh.in
tools/trunk/tools/etc/profile.d/ccm-tools-tomcat.cmd.in
tools/trunk/tools/etc/profile.d/ccm-tools-tomcat.sh.in
tools/trunk/tools/etc/profile.d/ccm-tools.cmd.in
tools/trunk/tools/etc/profile.d/ccm-tools.sh.in
tools/trunk/tools/lib/CCM/CommandsUtil.pm
tools/trunk/tools/lib/CCM/Interpolate.pm
tools/trunk/tools/lib/CCM/Makefile.am
tools/trunk/tools/lib/CCM/Runtime.pm
tools/trunk/tools/lib/CCM/Server.pm
tools/trunk/tools/lib/CCM/Server/Makefile.am
tools/trunk/tools/lib/CCM/Server/Resin.pm
tools/trunk/tools/lib/CCM/Server/Tomcat.pm
tools/trunk/tools/lib/CCM/Util.pm
tools/trunk/tools/lib/Makefile.am
tools/trunk/tools/lib/security/Makefile.am
tools/trunk/tools/make-release.sh
tools/trunk/tools/make-zip.sh
tools/trunk/tools/prepatch.sh
tools/trunk/tools/reconf.sh
tools/trunk/tools/rollingbuild.sh
tools/trunk/tools/server/Makefile.am
tools/trunk/tools/server/resin/Makefile.am
tools/trunk/tools/server/resin/bin/Makefile.am
tools/trunk/tools/server/resin/bin/resin-conf-gen
tools/trunk/tools/server/resin/bin/resin-conf-gen.cmd
tools/trunk/tools/server/resin/conf/Makefile.am
tools/trunk/tools/server/resin/conf/resin-default.conf.in
tools/trunk/tools/server/resin/conf/resin-devel.conf.in
tools/trunk/tools/server/resin/conf/resin-front.conf.in
tools/trunk/tools/server/tomcat/Makefile.am
tools/trunk/tools/server/tomcat/bin/Makefile.am
tools/trunk/tools/server/tomcat/bin/tomcat-conf-gen
tools/trunk/tools/server/tomcat/bin/tomcat-conf-gen.cmd
tools/trunk/tools/server/tomcat/conf/Makefile.am
tools/trunk/tools/server/tomcat/conf/server-default.xml.in
tools/trunk/tools/server/tomcat/conf/server-devel.xml.in
tools/trunk/tools/server/tomcat/lib/Makefile.am
tools/trunk/tools/server/tomcat/src/Makefile.am
tools/trunk/tools/server/tomcat/src/build.xml
tools/trunk/tools/server/tomcat/src/com/Makefile.am
tools/trunk/tools/server/tomcat/src/com/arsdigita/Makefile.am
tools/trunk/tools/server/tomcat/src/com/arsdigita/tools/Makefile.am
tools/trunk/tools/server/tomcat/src/com/arsdigita/tools/catalina/Makefile.am
tools/trunk/tools/server/tomcat/src/com/arsdigita/tools/catalina/startup/Bootstrap.java
tools/trunk/tools/server/tomcat/src/com/arsdigita/tools/catalina/startup/Makefile.am
tools/trunk/tools/t/010-Util.t
Log:
Finishing operation started @285.
Property changes on: tools/trunk/bundle/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/NEWS
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/README
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/bin/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/bin/hostinit-bundle
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/bin/hostinit-bundle.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/bin/load-bundle
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/bin/load-bundle.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/ccm-tools-bundle.spec.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/bundle/configure.in
===================================================================
--- tools/trunk/bundle/configure.in 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/bundle/configure.in 2005-02-22 00:55:45 UTC (rev 286)
@@ -1,5 +1,5 @@
dnl Process with autoconf
-dnl $Id: //tools/ccmbuild/bundle/dev/configure.in#2 $
+dnl $Id$
AC_INIT(ccm-tools-bundle.spec.in)
Property changes on: tools/trunk/bundle/configure.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/make-zip.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/reconf.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/bundle/rollingbuild.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/AUTHORS
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/COPYING
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/ChangeLog
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/INSTALL
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/NEWS
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/README
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/TODO
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-configure
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-configure-all.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-configure.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-configure.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-devel-create.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-devel-create.pl
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-devel-profile.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-devel-profile.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-devel-user.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-devel-user.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-profile.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-start.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/bin/ccm-stop.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/build.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/ccm-devel.spec.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/configure.in
===================================================================
--- tools/trunk/devel/configure.in 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/configure.in 2005-02-22 00:55:45 UTC (rev 286)
@@ -1,5 +1,5 @@
dnl Process with autoconf
-dnl $Id: //tools/ccmbuild/devel/dev/configure.in#12 $
+dnl $Id$
AC_INIT(ccm-devel.spec.in)
Property changes on: tools/trunk/devel/configure.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/doinstall.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/bin/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-inst
===================================================================
--- tools/trunk/devel/etc/bin/ccm-inst 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-inst 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,7 +14,7 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-inst#1 $
+# $Id$
(
cddev;
Property changes on: tools/trunk/devel/etc/bin/ccm-inst
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-restart
===================================================================
--- tools/trunk/devel/etc/bin/ccm-restart 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-restart 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,7 +14,7 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-restart#1 $
+# $Id$
ccm stop $@
ccm start $@
Property changes on: tools/trunk/devel/etc/bin/ccm-restart
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-start
===================================================================
--- tools/trunk/devel/etc/bin/ccm-start 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-start 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,6 +14,6 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-start#1 $
+# $Id$
ccm start $@
Property changes on: tools/trunk/devel/etc/bin/ccm-start
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-start-optit
===================================================================
--- tools/trunk/devel/etc/bin/ccm-start-optit 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-start-optit 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,6 +14,6 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-start-optit#1 $
+# $Id$
JAVA_ARGS="-J-classic -J-Djava.compiler=NONE -J-Xrunoii:filter=$OPTIT_HOME/filters/Resin.oif -J-Xbootclasspath/a:$OPTIT_HOME/lib/oibcp.jar -J-verbosegc" ccm start $@
Property changes on: tools/trunk/devel/etc/bin/ccm-start-optit
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-start-resin
===================================================================
--- tools/trunk/devel/etc/bin/ccm-start-resin 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-start-resin 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,6 +14,6 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-start-resin#1 $
+# $Id$
ccm-start --container=resin $@
Property changes on: tools/trunk/devel/etc/bin/ccm-start-resin
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-start-tomcat
===================================================================
--- tools/trunk/devel/etc/bin/ccm-start-tomcat 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-start-tomcat 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,6 +14,6 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-start-tomcat#1 $
+# $Id$
ccm-start --container=tomcat $@
Property changes on: tools/trunk/devel/etc/bin/ccm-start-tomcat
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-start-tomcat4
===================================================================
--- tools/trunk/devel/etc/bin/ccm-start-tomcat4 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-start-tomcat4 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,6 +14,6 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-start-tomcat4#1 $
+# $Id$
ccm-start --container=tomcat $@
Property changes on: tools/trunk/devel/etc/bin/ccm-start-tomcat4
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-stop
===================================================================
--- tools/trunk/devel/etc/bin/ccm-stop 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-stop 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,6 +14,6 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-stop#1 $
+# $Id$
ccm stop $@
Property changes on: tools/trunk/devel/etc/bin/ccm-stop
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-stop-resin
===================================================================
--- tools/trunk/devel/etc/bin/ccm-stop-resin 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-stop-resin 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,6 +14,6 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-stop-resin#1 $
+# $Id$
ccm-stop --container=resin $@
Property changes on: tools/trunk/devel/etc/bin/ccm-stop-resin
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-stop-tomcat
===================================================================
--- tools/trunk/devel/etc/bin/ccm-stop-tomcat 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-stop-tomcat 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,6 +14,6 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-stop-tomcat#1 $
+# $Id$
ccm-stop --container=tomcat $@
Property changes on: tools/trunk/devel/etc/bin/ccm-stop-tomcat
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/bin/ccm-stop-tomcat4
===================================================================
--- tools/trunk/devel/etc/bin/ccm-stop-tomcat4 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/bin/ccm-stop-tomcat4 2005-02-22 00:55:45 UTC (rev 286)
@@ -14,6 +14,6 @@
#
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/bin/ccm-stop-tomcat4#1 $
+# $Id$
ccm-stop --container=tomcat $@
Property changes on: tools/trunk/devel/etc/bin/ccm-stop-tomcat4
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/ccm-devel-cvs.sh.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/ccm-devel.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/ccm-devel.sh.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/config.vars.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/portalloc.txt
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/project/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/project/ccm-devel-cvs.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/project/ccm-devel-perforce.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/etc/project.pl
===================================================================
--- tools/trunk/devel/etc/project.pl 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/etc/project.pl 2005-02-22 00:55:45 UTC (rev 286)
@@ -15,7 +15,7 @@
# Daniel Berrange <ber...@re...>
# Dennis Gregorovic <dg...@re...>
#
-# $Id: //tools/ccmbuild/devel/dev/etc/project.pl#5 $
+# $Id$
BEGIN {
if ( exists $ENV{'CCM_TOOLS_HOME'} && defined $ENV{'CCM_TOOLS_HOME'} ) {
Property changes on: tools/trunk/devel/etc/project.pl
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/project5x.cmd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/project5x.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/resin.conf.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/etc/server.xml.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/lib/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/make-release.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/make-zip.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/prepatch.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/reconf.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/rollingbuild.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/build.xml
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/config/ConfigHelper.java
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/config/IntegrateConfig.java
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/config/MakeConfig.java
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/config/MakeInit.java
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/config/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/tools/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/tools/ant/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/tools/ant/taskdefs/JDOEnhance.java
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/src/com/redhat/ccm/tools/ant/taskdefs/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/.cvsignore
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Modified: tools/trunk/devel/template/ant.properties.in
===================================================================
--- tools/trunk/devel/template/ant.properties.in 2005-02-22 00:29:02 UTC (rev 285)
+++ tools/trunk/devel/template/ant.properties.in 2005-02-22 00:55:45 UTC (rev 286)
@@ -2,7 +2,7 @@
#
# Be sure to set all parameters that are in UPPER-CASE to their correct values.
#
-# $Id: //tools/ccmbuild/devel/dev/template/ant.properties.in#4 $
+# $Id$
## DEPLOYMENT ##############################################
Property changes on: tools/trunk/devel/template/ant.properties.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/.cvsignore
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/application.xml
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/etc/.cvsignore
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/etc/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/etc/enterprise.init.in
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/pdl/.cvsignore
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/pdl/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/sql/.cvsignore
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/sql/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/sql/oracle-se/.cvsignore
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/sql/oracle-se/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/sql/oracle-se/upgrade/.cvsignore
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/sql/oracle-se/upgrade/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/src/.cvsignore
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/src/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/web/.cvsignore
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/custom/web/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/template/project.xml
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/xsd/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/xsd/application.xsd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/xsd/project.xsd
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/xsl/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/xsl/build-template-5x.xsl
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/xsl/build-template.xsl
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/xsl/classpath-template.xsl
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/xsl/combine.xsl
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/devel/xsl/junit-bicycle.xsl
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/misc/build-all.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/misc/build-ordering.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/misc/expand-dependencies
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/httpunit/httpunit.spec
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/httpunit/rollingbuild.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/junit/junit.spec
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/junit/rollingbuild.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/junitperf/junitperf.spec
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/junitperf/rollingbuild.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/servlet/rollingbuild.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/servlet/servlet.spec
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/solaris-linux-compat/rollingbuild.sh
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/rpms/solaris-linux-compat/solaris-linux-compat.spec
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/scripts/AUTHORS
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/scripts/COPYING
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/scripts/ChangeLog
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/scripts/INSTALL
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
Property changes on: tools/trunk/scripts/Makefile.am
___________________________________________________________________
Name: svn:keywords
+ Id Author URL
..
|
|
From: <mb...@re...> - 2005-02-21 21:11:35
|
Author: mbooth Date: 2005-02-21 22:10:23 +0100 (Mon, 21 Feb 2005) New Revision: 284 Added: users/mbooth/projects/aplaws-build/ccm-cms-types-htmlform/ users/mbooth/projects/aplaws-build/ccm-cms-types-htmlform/ccm-cms-types-htmlform/ Modified: users/mbooth/projects/aplaws-build/svn-switch.sh Log: Add htmlform application Modified: users/mbooth/projects/aplaws-build/svn-switch.sh =================================================================== --- users/mbooth/projects/aplaws-build/svn-switch.sh 2005-02-21 21:03:22 UTC (rev 283) +++ users/mbooth/projects/aplaws-build/svn-switch.sh 2005-02-21 21:10:23 UTC (rev 284) @@ -48,4 +48,5 @@ 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/tools/trunk tools/ |
|
From: <mb...@re...> - 2005-02-21 21:04:57
|
Author: mbooth Date: 2005-02-21 22:03:22 +0100 (Mon, 21 Feb 2005) New Revision: 283 Added: users/mbooth/projects/aplaws/ccm-cms-types-htmlform/ Modified: users/mbooth/projects/aplaws/svn-switch.sh Log: Add htmlform Modified: users/mbooth/projects/aplaws/svn-switch.sh =================================================================== --- users/mbooth/projects/aplaws/svn-switch.sh 2005-02-21 21:00:12 UTC (rev 282) +++ users/mbooth/projects/aplaws/svn-switch.sh 2005-02-21 21:03:22 UTC (rev 283) @@ -48,3 +48,4 @@ svn switch http://aplaws.redhat.com/svn/aplaws/ccm-ldn-xmlfeed/trunk ccm-ldn-xmlfeed/ 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 |
Author: mbooth Date: 2005-02-21 22:00:12 +0100 (Mon, 21 Feb 2005) New Revision: 282 Added: ccm-cms-types-htmlform/ ccm-cms-types-htmlform/trunk/ ccm-cms-types-htmlform/trunk/application.xml ccm-cms-types-htmlform/trunk/pdl/ ccm-cms-types-htmlform/trunk/pdl/com/ ccm-cms-types-htmlform/trunk/pdl/com/arsdigita/ ccm-cms-types-htmlform/trunk/pdl/com/arsdigita/cms/ ccm-cms-types-htmlform/trunk/pdl/com/arsdigita/cms/contenttypes/ ccm-cms-types-htmlform/trunk/pdl/com/arsdigita/cms/contenttypes/HTMLForm.pdl ccm-cms-types-htmlform/trunk/src/ ccm-cms-types-htmlform/trunk/src/WEB-INF/ ccm-cms-types-htmlform/trunk/src/WEB-INF/content-types/ ccm-cms-types-htmlform/trunk/src/WEB-INF/content-types/com/ ccm-cms-types-htmlform/trunk/src/WEB-INF/content-types/com/arsdigita/ ccm-cms-types-htmlform/trunk/src/WEB-INF/content-types/com/arsdigita/cms/ ccm-cms-types-htmlform/trunk/src/WEB-INF/content-types/com/arsdigita/cms/contenttypes/ ccm-cms-types-htmlform/trunk/src/WEB-INF/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xml ccm-cms-types-htmlform/trunk/src/ccm-cms-types-htmlform.config ccm-cms-types-htmlform/trunk/src/ccm-cms-types-htmlform.load ccm-cms-types-htmlform/trunk/src/com/ ccm-cms-types-htmlform/trunk/src/com/arsdigita/ ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/ ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/ ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLForm.java ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormInitializer.java ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormLoader.java ccm-cms-types-htmlform/trunk/web/ ccm-cms-types-htmlform/trunk/web/static/ ccm-cms-types-htmlform/trunk/web/static/content-types/ ccm-cms-types-htmlform/trunk/web/static/content-types/com/ ccm-cms-types-htmlform/trunk/web/static/content-types/com/arsdigita/ ccm-cms-types-htmlform/trunk/web/static/content-types/com/arsdigita/cms/ ccm-cms-types-htmlform/trunk/web/static/content-types/com/arsdigita/cms/contenttypes/ ccm-cms-types-htmlform/trunk/web/static/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xsl Log: Initial import from p4 @42055 Added: ccm-cms-types-htmlform/trunk/application.xml =================================================================== --- ccm-cms-types-htmlform/trunk/application.xml 2005-02-21 17:43:32 UTC (rev 281) +++ ccm-cms-types-htmlform/trunk/application.xml 2005-02-21 21:00:12 UTC (rev 282) @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> + +<ccm:application name="ccm-cms-types-htmlform" + prettyName="Red Hat CCM Content Types" + version="6.1.0" + release="3" + webapp="ROOT" + xmlns:ccm="http://ccm.redhat.com/ccm-project"> + + <ccm:dependencies> + <ccm:requires name="ccm-core" version="6.1.0"/> + <ccm:requires name="ccm-cms" version="6.1.0"/> + <ccm:requires name="ccm-cms-types-article" version="6.1.0"/> + </ccm:dependencies> + + <ccm:directories> + <ccm:directory name="pdl"/> + <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 HTML For Content Type for the Red Hat CCM CMS. + </ccm:description> +</ccm:application> Added: ccm-cms-types-htmlform/trunk/pdl/com/arsdigita/cms/contenttypes/HTMLForm.pdl =================================================================== --- ccm-cms-types-htmlform/trunk/pdl/com/arsdigita/cms/contenttypes/HTMLForm.pdl 2005-02-21 17:43:32 UTC (rev 281) +++ ccm-cms-types-htmlform/trunk/pdl/com/arsdigita/cms/contenttypes/HTMLForm.pdl 2005-02-21 21:00:12 UTC (rev 282) @@ -0,0 +1,21 @@ +// +// Copyright (C) 2001, 2002, 2003 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. +// +// $Id: //ps/apps/london/htmlform/dev/pdl/com/arsdigita/cms/contenttypes/HTMLForm.pdl#1 $ +// $DateTime: 2004/03/05 09:47:41 $ + +model com.arsdigita.cms.contenttypes; + + +object type HTMLForm extends Article { +} Property changes on: ccm-cms-types-htmlform/trunk/pdl/com/arsdigita/cms/contenttypes/HTMLForm.pdl ___________________________________________________________________ Name: svn:keywords + "Id Author DateTime" Added: ccm-cms-types-htmlform/trunk/src/WEB-INF/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xml =================================================================== --- ccm-cms-types-htmlform/trunk/src/WEB-INF/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xml 2005-02-21 17:43:32 UTC (rev 281) +++ ccm-cms-types-htmlform/trunk/src/WEB-INF/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xml 2005-02-21 21:00:12 UTC (rev 282) @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<ctd:content-types xmlns:ctd="http://xmlns.redhat.com/cms/content-types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.redhat.com/cms/content-types content-types.xsd"> + <ctd:content-type label="HTML Form" description="An HTML Form" objectType="com.arsdigita.cms.contenttypes.HTMLForm" classname="com.arsdigita.cms.contenttypes.HTMLForm"> + <ctd:authoring-kit createComponent="com.arsdigita.cms.ui.authoring.PageCreate"> + <ctd:authoring-step + labelKey="cms.contenttypes.shared.basic_properties.title" + labelBundle="com.arsdigita.cms.ui.CMSResources" + descriptionKey="cms.contenttypes.shared.basic_properties.description" + descriptionBundle="com.arsdigita.cms.ui.CMSResources" + component="com.arsdigita.cms.contenttypes.ui.ArticlePropertiesStep"/> + + <ctd:include href="/WEB-INF/content-types/edit-body-text-step.xml"/> + + <ctd:include href="/WEB-INF/content-types/assign-categories-step.xml"/> + </ctd:authoring-kit> + </ctd:content-type> +</ctd:content-types> Added: ccm-cms-types-htmlform/trunk/src/ccm-cms-types-htmlform.config =================================================================== --- ccm-cms-types-htmlform/trunk/src/ccm-cms-types-htmlform.config 2005-02-21 17:43:32 UTC (rev 281) +++ ccm-cms-types-htmlform/trunk/src/ccm-cms-types-htmlform.config 2005-02-21 21:00:12 UTC (rev 282) @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<registry> + <!-- nothing yet --> +</registry> Added: ccm-cms-types-htmlform/trunk/src/ccm-cms-types-htmlform.load =================================================================== --- ccm-cms-types-htmlform/trunk/src/ccm-cms-types-htmlform.load 2005-02-21 17:43:32 UTC (rev 281) +++ ccm-cms-types-htmlform/trunk/src/ccm-cms-types-htmlform.load 2005-02-21 21:00:12 UTC (rev 282) @@ -0,0 +1,16 @@ +<load> + <requires> + <table name="inits"/> + <table name="acs_objects"/> + <table name="cms_items"/> + <initializer class="com.arsdigita.cms.Initializer"/> + <table name="ct_articles"/> + <initializer class="com.arsdigita.cms.contenttypes.ArticleInitializer"/> + </requires> + <provides> + <initializer class="com.arsdigita.cms.contenttypes.HTMLFormInitializer"/> + </provides> + <scripts> + <data class="com.arsdigita.cms.contenttypes.HTMLFormLoader"/> + </scripts> +</load> Added: ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLForm.java =================================================================== --- ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLForm.java 2005-02-21 17:43:32 UTC (rev 281) +++ ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLForm.java 2005-02-21 21:00:12 UTC (rev 282) @@ -0,0 +1,72 @@ +/* + * Copyright (C) 2001, 2002, 2003 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.cms.contenttypes; + +import com.arsdigita.domain.DataObjectNotFoundException; +import com.arsdigita.persistence.DataObject; +import com.arsdigita.persistence.OID; +import com.arsdigita.cms.ContentType; +import com.arsdigita.util.UncheckedWrapperException; +import com.arsdigita.util.Assert; + +import java.math.BigDecimal; + +/** + * This content type represents an article. + * + * @version $Revision: #1 $ $Date: 2004/03/05 $ + */ +public class HTMLForm extends Article { + + private final static org.apache.log4j.Logger s_log = + org.apache.log4j.Logger.getLogger(HTMLForm.class); + + /** Data object type for this domain object */ + public static final String BASE_DATA_OBJECT_TYPE + = "com.arsdigita.cms.contenttypes.HTMLForm"; + + /** Data object type for this domain object (for CMS compatibility) */ + public static final String TYPE + = BASE_DATA_OBJECT_TYPE; + + public HTMLForm() { + this( BASE_DATA_OBJECT_TYPE ); + } + + public HTMLForm( BigDecimal id ) + throws DataObjectNotFoundException { + this( new OID( BASE_DATA_OBJECT_TYPE, id ) ); + } + + public HTMLForm( OID id ) + throws DataObjectNotFoundException { + super( id ); + } + + public HTMLForm( DataObject obj ) { + super( obj ); + } + + public HTMLForm( String type ) { + super( type ); + } + + public void beforeSave() { + super.beforeSave(); + + Assert.exists(getContentType(), ContentType.class); + } +} Property changes on: ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLForm.java ___________________________________________________________________ Name: svn:keywords + "Id Author DateTime" Added: ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormInitializer.java =================================================================== --- ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormInitializer.java 2005-02-21 17:43:32 UTC (rev 281) +++ ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormInitializer.java 2005-02-21 21:00:12 UTC (rev 282) @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2001, 2002, 2003 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.cms.contenttypes; + + +/** + * The CMS initializer. + * + * @author Justin Ross <jr...@re...> + * @version $Id: //ps/apps/london/htmlform/dev/src/com/arsdigita/cms/contenttypes/HTMLFormInitializer.java#2 $ + */ +public class HTMLFormInitializer extends ContentTypeInitializer { + + public HTMLFormInitializer() { + super("ccm-cms-types-htmlform.pdl.mf", HTMLForm.BASE_DATA_OBJECT_TYPE); + } + + + public String[] getStylesheets() { + return new String[] { "/static/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xsl" }; + } +} Property changes on: ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormInitializer.java ___________________________________________________________________ Name: svn:keywords + "Id Author DateTime" Added: ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormLoader.java =================================================================== --- ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormLoader.java 2005-02-21 17:43:32 UTC (rev 281) +++ ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormLoader.java 2005-02-21 21:00:12 UTC (rev 282) @@ -0,0 +1,39 @@ +/* + * Copyright (C) 2001, 2002, 2003 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.cms.contenttypes; + +import com.arsdigita.cms.contenttypes.AbstractContentTypeLoader; + +/** + * Loader. + * + * @author Justin Ross <jr...@re...> + * @version $Id: //ps/apps/london/htmlform/dev/src/com/arsdigita/cms/contenttypes/HTMLFormLoader.java#1 $ + */ +public class HTMLFormLoader extends AbstractContentTypeLoader { + public final static String versionId = + "$Id: //ps/apps/london/htmlform/dev/src/com/arsdigita/cms/contenttypes/HTMLFormLoader.java#1 $" + + "$Author$" + + "$DateTime: 2004/03/05 09:47:41 $"; + + private static final String[] TYPES = { + "/WEB-INF/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xml" + }; + + public String[] getTypes() { + return TYPES; + } +} Property changes on: ccm-cms-types-htmlform/trunk/src/com/arsdigita/cms/contenttypes/HTMLFormLoader.java ___________________________________________________________________ Name: svn:keywords + "Id Author DateTime" Added: ccm-cms-types-htmlform/trunk/web/static/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xsl =================================================================== --- ccm-cms-types-htmlform/trunk/web/static/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xsl 2005-02-21 17:43:32 UTC (rev 281) +++ ccm-cms-types-htmlform/trunk/web/static/content-types/com/arsdigita/cms/contenttypes/HTMLForm.xsl 2005-02-21 21:00:12 UTC (rev 282) @@ -0,0 +1,46 @@ +<!DOCTYPE stylesheet [ +<!ENTITY nbsp " " ><!-- no-break space = non-breaking space, U+00A0 ISOnum --> +]> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:cms="http://www.arsdigita.com/cms/1.0" + version="1.0"> + + <xsl:template match="cms:item[objectType='com.arsdigita.cms.contenttypes.HTMLForm']" mode="cms:CT_graphics" + name="cms:CT_graphics_com_arsdigita_cms_contenttypes_HTMLForm"> + <table width="435" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td width="435" align="left" valign="top"> + <table width="435" border="0" cellspacing="1" cellpadding="0"> + <tr> + <td class="contentTitle" align="left" valign="top"> + <xsl:value-of select="./title"/> + </td> + </tr> + + <tr> + <td class="contentSynopsis" align="left" valign="top"> + <xsl:value-of select="./lead"/> + </td> + </tr> + + <tr> + <td class="contentText" align="left" valign="top"> + <br/><xsl:value-of disable-output-escaping="yes" select="./textAsset/content"/> + </td> + </tr> + </table> + </td> + </tr> + </table> + </xsl:template> + + <xsl:template match="cms:item[objectType='com.arsdigita.cms.contenttypes.HTMLForm']" mode="cms:CT_text" + name="cms:CT_text_com_arsdigita_cms_contenttypes_HTMLForm"> + <h1 class="mainTitle">HTMLForm <xsl:text disable-output-escaping="yes">&</xsl:text>gt; <xsl:value-of select="./title"/></h1> + <span class="synopsis"><xsl:value-of select="./lead" /></span><br /> + <br/> + <span class="text"><xsl:value-of disable-output-escaping="yes" select="./textAsset/content"/></span> + </xsl:template> + +</xsl:stylesheet> |
Author: mbooth Date: 2005-02-21 18:43:32 +0100 (Mon, 21 Feb 2005) New Revision: 281 Modified: ccm-ldn-aplaws/trunk/bundles/camden/ ccm-ldn-aplaws/trunk/bundles/camden/cfg/ ccm-ldn-aplaws/trunk/bundles/complete/ ccm-ldn-aplaws/trunk/bundles/complete/cfg/ ccm-ldn-aplaws/trunk/bundles/demo/ ccm-ldn-aplaws/trunk/bundles/demo/cfg/ ccm-ldn-aplaws/trunk/bundles/devel/ ccm-ldn-aplaws/trunk/bundles/devel/cfg/ ccm-ldn-aplaws/trunk/bundles/standard/ ccm-ldn-aplaws/trunk/bundles/standard/cfg/ tools/trunk/bundle/ tools/trunk/bundle/bin/ tools/trunk/devel/ tools/trunk/devel/bin/ tools/trunk/devel/etc/ tools/trunk/devel/etc/bin/ tools/trunk/devel/etc/project/ tools/trunk/devel/lib/ tools/trunk/devel/src/ tools/trunk/devel/src/com/ tools/trunk/devel/src/com/redhat/ tools/trunk/devel/src/com/redhat/ccm/ tools/trunk/devel/src/com/redhat/ccm/config/ tools/trunk/devel/src/com/redhat/ccm/tools/ tools/trunk/devel/src/com/redhat/ccm/tools/ant/ tools/trunk/devel/src/com/redhat/ccm/tools/ant/taskdefs/ tools/trunk/devel/template/ tools/trunk/devel/template/custom/ tools/trunk/devel/template/custom/etc/ tools/trunk/devel/template/custom/pdl/ tools/trunk/devel/template/custom/sql/ tools/trunk/devel/template/custom/sql/oracle-se/ tools/trunk/devel/template/custom/sql/oracle-se/upgrade/ tools/trunk/devel/template/custom/src/ tools/trunk/devel/template/custom/web/ tools/trunk/devel/xsd/ tools/trunk/devel/xsl/ tools/trunk/rpms/httpunit/ tools/trunk/rpms/junit/ tools/trunk/rpms/junitperf/ tools/trunk/rpms/servlet/ tools/trunk/scripts/ tools/trunk/scripts/bin/ tools/trunk/scripts/doc/ tools/trunk/scripts/etc/ tools/trunk/scripts/pkg/ tools/trunk/scripts/pkg/bin/ tools/trunk/scripts/pkg/bin/resin/ tools/trunk/scripts/pkg/bin/tomcat4/ tools/trunk/scripts/pkg/conf/ tools/trunk/scripts/pkg/conf/resin/ tools/trunk/scripts/pkg/conf/tomcat4/ tools/trunk/scripts/pkg/dist/ tools/trunk/scripts/template/ tools/trunk/tools/ tools/trunk/tools/bin/ tools/trunk/tools/commands/ tools/trunk/tools/etc/ tools/trunk/tools/etc/ccm-tools/ tools/trunk/tools/etc/init.d/ tools/trunk/tools/etc/profile.d/ tools/trunk/tools/lib/ tools/trunk/tools/lib/CCM/ tools/trunk/tools/lib/CCM/Server/ tools/trunk/tools/lib/security/ tools/trunk/tools/server/ tools/trunk/tools/server/resin/ tools/trunk/tools/server/resin/bin/ tools/trunk/tools/server/resin/conf/ tools/trunk/tools/server/tomcat/ tools/trunk/tools/server/tomcat/bin/ tools/trunk/tools/server/tomcat/conf/ tools/trunk/tools/server/tomcat/lib/ tools/trunk/tools/server/tomcat/src/ tools/trunk/tools/server/tomcat/src/com/ tools/trunk/tools/server/tomcat/src/com/arsdigita/ tools/trunk/tools/server/tomcat/src/com/arsdigita/tools/ tools/trunk/tools/server/tomcat/src/com/arsdigita/tools/catalina/ tools/trunk/tools/server/tomcat/src/com/arsdigita/tools/catalina/startup/ users/mbooth/projects/aplaws-build/ccm-cms-assets-fileattachment/ users/mbooth/projects/aplaws-build/ccm-cms-assets-relatedlink/ users/mbooth/projects/aplaws-build/ccm-cms-types-article/ users/mbooth/projects/aplaws-build/ccm-cms-types-contact/ users/mbooth/projects/aplaws-build/ccm-cms-types-esdservice/ users/mbooth/projects/aplaws-build/ccm-cms-types-filestorageitem/ users/mbooth/projects/aplaws-build/ccm-cms-types-formitem/ users/mbooth/projects/aplaws-build/ccm-cms-types-formsectionitem/ users/mbooth/projects/aplaws-build/ccm-cms-types-inlinesite/ users/mbooth/projects/aplaws-build/ccm-cms-types-mparticle/ users/mbooth/projects/aplaws-build/ccm-cms-types-newsitem/ users/mbooth/projects/aplaws-build/ccm-cms-types-pressrelease/ users/mbooth/projects/aplaws-build/ccm-cms/ users/mbooth/projects/aplaws-build/ccm-core/ users/mbooth/projects/aplaws-build/ccm-forum/ users/mbooth/projects/aplaws-build/ccm-ldn-aplaws/ users/mbooth/projects/aplaws-build/ccm-ldn-atoz/ users/mbooth/projects/aplaws-build/ccm-ldn-dublin/ users/mbooth/projects/aplaws-build/ccm-ldn-importer/ users/mbooth/projects/aplaws-build/ccm-ldn-navigation/ users/mbooth/projects/aplaws-build/ccm-ldn-portal/ users/mbooth/projects/aplaws-build/ccm-ldn-rss/ users/mbooth/projects/aplaws-build/ccm-ldn-search/ users/mbooth/projects/aplaws-build/ccm-ldn-shortcuts/ users/mbooth/projects/aplaws-build/ccm-ldn-subsite/ users/mbooth/projects/aplaws-build/ccm-ldn-terms/ users/mbooth/projects/aplaws-build/ccm-ldn-theme/ users/mbooth/projects/aplaws-build/ccm-ldn-util/ users/mbooth/projects/aplaws-build/ccm-ldn-xmlfeed/ Log: Add lots of svn:ignores to build directories Property changes on: ccm-ldn-aplaws/trunk/bundles/camden ___________________________________________________________________ Name: svn:ignore + mkinstalldirs configure Makefile.in config.log config.status autom4te.cache ccm-bundle-aplaws-plus-*.spec INSTALL COPYING ccm-bundle-aplaws-plus-*.zip missing ccm-bundle-aplaws-plus-*.tar.gz aclocal.m4 Makefile install-sh Property changes on: ccm-ldn-aplaws/trunk/bundles/camden/cfg ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: ccm-ldn-aplaws/trunk/bundles/complete ___________________________________________________________________ Name: svn:ignore + mkinstalldirs configure Makefile.in config.log config.status autom4te.cache ccm-bundle-aplaws-plus-*.spec INSTALL COPYING ccm-bundle-aplaws-plus-*.zip missing ccm-bundle-aplaws-plus-*.tar.gz aclocal.m4 Makefile install-sh Property changes on: ccm-ldn-aplaws/trunk/bundles/complete/cfg ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: ccm-ldn-aplaws/trunk/bundles/demo ___________________________________________________________________ Name: svn:ignore + mkinstalldirs configure Makefile.in config.log config.status autom4te.cache ccm-bundle-aplaws-plus-*.spec INSTALL COPYING ccm-bundle-aplaws-plus-*.zip missing ccm-bundle-aplaws-plus-*.tar.gz aclocal.m4 Makefile install-sh Property changes on: ccm-ldn-aplaws/trunk/bundles/demo/cfg ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: ccm-ldn-aplaws/trunk/bundles/devel ___________________________________________________________________ Name: svn:ignore + mkinstalldirs configure Makefile.in config.log config.status autom4te.cache ccm-bundle-aplaws-plus-*.spec INSTALL COPYING ccm-bundle-aplaws-plus-*.zip missing ccm-bundle-aplaws-plus-*.tar.gz aclocal.m4 Makefile install-sh Property changes on: ccm-ldn-aplaws/trunk/bundles/devel/cfg ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: ccm-ldn-aplaws/trunk/bundles/standard ___________________________________________________________________ Name: svn:ignore + mkinstalldirs configure Makefile.in config.log config.status autom4te.cache ccm-bundle-aplaws-plus-*.spec INSTALL COPYING ccm-bundle-aplaws-plus-*.zip missing ccm-bundle-aplaws-plus-*.tar.gz aclocal.m4 Makefile install-sh Property changes on: ccm-ldn-aplaws/trunk/bundles/standard/cfg ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/bundle ___________________________________________________________________ Name: svn:ignore + mkinstalldirs configure Makefile.in config.log config.status ccm-tools-bundle.spec ccm-tools-bundle-*.zip autom4te.cache ccm-tools-bundle-*.tar.gz INSTALL COPYING missing aclocal.m4 Makefile install-sh Property changes on: tools/trunk/bundle/bin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel ___________________________________________________________________ Name: svn:ignore + configure Makefile.in config.log ccm-devel.spec ccm-devel-*.zip Makefile mkinstalldirs config.status ccm-devel-*.tar.gz autom4te.cache missing aclocal.m4 install-sh Property changes on: tools/trunk/devel/bin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/etc ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in ccm-devel-cvs.sh ccm-devel.sh Property changes on: tools/trunk/devel/etc/bin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/etc/project ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/lib ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/src ___________________________________________________________________ Name: svn:ignore + build Makefile.in Makefile Property changes on: tools/trunk/devel/src/com ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/src/com/redhat ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/src/com/redhat/ccm ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/src/com/redhat/ccm/config ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/src/com/redhat/ccm/tools ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/src/com/redhat/ccm/tools/ant ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/src/com/redhat/ccm/tools/ant/taskdefs ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/template ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in Property changes on: tools/trunk/devel/template/custom ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in Property changes on: tools/trunk/devel/template/custom/etc ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in Property changes on: tools/trunk/devel/template/custom/pdl ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in Property changes on: tools/trunk/devel/template/custom/sql ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in Property changes on: tools/trunk/devel/template/custom/sql/oracle-se ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in Property changes on: tools/trunk/devel/template/custom/sql/oracle-se/upgrade ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in Property changes on: tools/trunk/devel/template/custom/src ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in Property changes on: tools/trunk/devel/template/custom/web ___________________________________________________________________ Name: svn:ignore + Makefile Makefile.in Property changes on: tools/trunk/devel/xsd ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/devel/xsl ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/rpms/httpunit ___________________________________________________________________ Name: svn:ignore + zip httpunit-*.zip Property changes on: tools/trunk/rpms/junit ___________________________________________________________________ Name: svn:ignore + zip junit-*.zip Property changes on: tools/trunk/rpms/junitperf ___________________________________________________________________ Name: svn:ignore + zip junitperf-*.zip Property changes on: tools/trunk/rpms/servlet ___________________________________________________________________ Name: svn:ignore + zip servlet-*.zip Property changes on: tools/trunk/scripts ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile ccm-scripts.spec configure ccm-scripts-*.zip config.log ccm-scripts-*.tar.gz mkinstalldirs config.status autom4te.cache missing aclocal.m4 install-sh Property changes on: tools/trunk/scripts/bin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/scripts/doc ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/scripts/etc ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile ccm-scripts.sh Property changes on: tools/trunk/scripts/pkg ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/scripts/pkg/bin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile .configure.pl.test Property changes on: tools/trunk/scripts/pkg/bin/resin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/scripts/pkg/bin/tomcat4 ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/scripts/pkg/conf ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/scripts/pkg/conf/resin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/scripts/pkg/conf/tomcat4 ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/scripts/pkg/dist ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/scripts/template ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools ___________________________________________________________________ Name: svn:ignore + configure Makefile.in config.log ccm-tools-*.zip ccm-tools-servlet-resin-*.zip Makefile mkinstalldirs config.status ccm-tools.spec ccm-tools-*.tar.gz autom4te.cache pm_to_blib ccm-tools-servlet-tomcat-*.zip blib missing aclocal.m4 install-sh Makefile.perl Property changes on: tools/trunk/tools/bin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/commands ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/etc ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/etc/ccm-tools ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/etc/init.d ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/etc/profile.d ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile ccm-tools-tomcat.cmd ccm-tools-tomcat.sh ccm-tools-resin.cmd ccm-tools-resin.sh ccm-tools.cmd ccm-tools.sh Property changes on: tools/trunk/tools/lib ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/lib/CCM ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/lib/CCM/Server ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/lib/security ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/resin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/resin/bin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/resin/conf ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/tomcat ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/tomcat/bin ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/tomcat/conf ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/tomcat/lib ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/tomcat/src ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile build Property changes on: tools/trunk/tools/server/tomcat/src/com ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/tomcat/src/com/arsdigita ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/tomcat/src/com/arsdigita/tools ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/tomcat/src/com/arsdigita/tools/catalina ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: tools/trunk/tools/server/tomcat/src/com/arsdigita/tools/catalina/startup ___________________________________________________________________ Name: svn:ignore + Makefile.in Makefile Property changes on: users/mbooth/projects/aplaws-build/ccm-cms ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-assets-fileattachment ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-assets-relatedlink ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-article ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-contact ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-esdservice ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-filestorageitem ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-formitem ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-formsectionitem ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-inlinesite ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-mparticle ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-newsitem ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-cms-types-pressrelease ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-core ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-forum ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-aplaws ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-atoz ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-dublin ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-importer ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-navigation ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-portal ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-rss ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-search ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-shortcuts ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-subsite ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-terms ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild MANIFEST Property changes on: users/mbooth/projects/aplaws-build/ccm-ldn-theme ___________________________________________________________________ Name: svn:ignore + project.xml rollingbuild .. |
|
From: <mb...@re...> - 2005-02-21 17:39:15
|
Author: mbooth
Date: 2005-02-21 18:38:07 +0100 (Mon, 21 Feb 2005)
New Revision: 280
Removed:
tools/trunk/rpms/servlet22/
Modified:
tools/trunk/misc/build-all.sh
Log:
Remove legacy servlet22
Modified: tools/trunk/misc/build-all.sh
===================================================================
--- tools/trunk/misc/build-all.sh 2005-02-21 16:42:23 UTC (rev 279)
+++ tools/trunk/misc/build-all.sh 2005-02-21 17:38:07 UTC (rev 280)
@@ -235,7 +235,7 @@
export RPM_DIR=$HOMETOPDIR
# Build the build tools
-for i in httpunit junit junitperf servlet servlet22
+for i in httpunit junit junitperf servlet
do
(
set -e
@@ -244,9 +244,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'`
- if [ $i != "servlet22" ]; then
- $RPM $RPM_ARGS -ivh --relocate /usr=$VIRTUAL_ROOT $HOMERPMDIR/$TOOLS_NAME-$TOOLS_VERSION-$TOOLS_RELEASE.noarch.rpm
- fi
+ $RPM $RPM_ARGS -ivh --relocate /usr=$VIRTUAL_ROOT $HOMERPMDIR/$TOOLS_NAME-$TOOLS_VERSION-$TOOLS_RELEASE.noarch.rpm
) || exit $?
done
|
|
From: <mb...@re...> - 2005-02-21 16:43:34
|
Author: mbooth Date: 2005-02-21 17:42:23 +0100 (Mon, 21 Feb 2005) New Revision: 279 Added: users/mbooth/projects/aplaws-build/standard.txt Log: applications of standard bundle in dependency order, for use when building standard bundle apps Added: users/mbooth/projects/aplaws-build/standard.txt =================================================================== --- users/mbooth/projects/aplaws-build/standard.txt 2005-02-21 16:40:42 UTC (rev 278) +++ users/mbooth/projects/aplaws-build/standard.txt 2005-02-21 16:42:23 UTC (rev 279) @@ -0,0 +1,29 @@ +ccm-core +ccm-cms +ccm-cms-assets-relatedlink +ccm-cms-assets-fileattachment +ccm-ldn-util +ccm-ldn-atoz +ccm-ldn-terms +ccm-ldn-navigation +ccm-ldn-dublin +ccm-cms-types-contact +ccm-cms-types-esdservice +ccm-cms-types-article +ccm-cms-types-filestorageitem +ccm-cms-types-mparticle +ccm-cms-types-newsitem +ccm-cms-types-pressrelease +ccm-cms-types-formsectionitem +ccm-cms-types-formitem +ccm-cms-types-inlinesite +ccm-ldn-xmlfeed +ccm-ldn-rss +ccm-forum +ccm-ldn-portal +ccm-ldn-search +ccm-ldn-shortcuts +ccm-ldn-subsite +ccm-ldn-aplaws +ccm-ldn-importer +ccm-ldn-theme |
|
From: <mb...@re...> - 2005-02-21 16:41:52
|
Author: mbooth Date: 2005-02-21 17:40:42 +0100 (Mon, 21 Feb 2005) New Revision: 278 Modified: ccm-ldn-aplaws/trunk/bundles/standard/cfg/applications.cfg Log: File attachments are part of standard bundle Modified: ccm-ldn-aplaws/trunk/bundles/standard/cfg/applications.cfg =================================================================== --- ccm-ldn-aplaws/trunk/bundles/standard/cfg/applications.cfg 2005-02-21 16:31:49 UTC (rev 277) +++ ccm-ldn-aplaws/trunk/bundles/standard/cfg/applications.cfg 2005-02-21 16:40:42 UTC (rev 278) @@ -4,6 +4,7 @@ # Content assets ccm-cms-assets-relatedlink +ccm-cms-assets-fileattachment ccm-ldn-dublin # Content types |
|
From: <mb...@re...> - 2005-02-21 16:33:10
|
Author: mbooth
Date: 2005-02-21 17:31:49 +0100 (Mon, 21 Feb 2005)
New Revision: 277
Modified:
ccm-core/trunk/src/com/arsdigita/formbuilder/ui/NewAction.java
Log:
Remove unused code
Modified: ccm-core/trunk/src/com/arsdigita/formbuilder/ui/NewAction.java
===================================================================
--- ccm-core/trunk/src/com/arsdigita/formbuilder/ui/NewAction.java 2005-02-21 16:31:22 UTC (rev 276)
+++ ccm-core/trunk/src/com/arsdigita/formbuilder/ui/NewAction.java 2005-02-21 16:31:49 UTC (rev 277)
@@ -62,8 +62,6 @@
fs.add(new Label(GlobalizationUtil.globalize("formbuilder.ui.action")));
fs.add(new Submit("Add"));
- addInitListener(new NewActionInitListener());
-
add(fs);
}
@@ -93,15 +91,4 @@
public SingleSelectionModel getSelection() {
return m_selection;
}
-
- private class NewActionInitListener implements FormInitListener {
- public void init(FormSectionEvent e)
- throws FormProcessException {
-
- // FIXME: what this the point of this method? -- 2002-11-26
- // BigDecimal type = (BigDecimal)m_selection.getSelectedKey(e.getPageState());
-
- //m_type.setOptionSelected(type.toString());
- }
- }
}
|
|
From: <mb...@re...> - 2005-02-21 16:32:30
|
Author: mbooth
Date: 2005-02-21 17:31:22 +0100 (Mon, 21 Feb 2005)
New Revision: 276
Modified:
ccm-ldn-aplaws/trunk/src/ccm-ldn-aplaws.config
Log:
Fix use of moved APLAWS config class
Modified: ccm-ldn-aplaws/trunk/src/ccm-ldn-aplaws.config
===================================================================
--- ccm-ldn-aplaws/trunk/src/ccm-ldn-aplaws.config 2005-02-21 16:30:44 UTC (rev 275)
+++ ccm-ldn-aplaws/trunk/src/ccm-ldn-aplaws.config 2005-02-21 16:31:22 UTC (rev 276)
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<registry>
- <config class="com.runtimecollective.aplaws.AplawsConfig"
+ <config class="com.arsdigita.aplaws.AplawsConfig"
storage="ccm-ldn-aplaws/aplaws.properties"/>
</registry>
|
|
From: <mb...@re...> - 2005-02-21 16:32:03
|
Author: mbooth
Date: 2005-02-21 17:30:44 +0100 (Mon, 21 Feb 2005)
New Revision: 275
Modified:
ccm-cms/trunk/src/com/arsdigita/cms/ui/cse/ContentSoonExpiredPane.java
Log:
Fix use of moved pdl query
Modified: ccm-cms/trunk/src/com/arsdigita/cms/ui/cse/ContentSoonExpiredPane.java
===================================================================
--- ccm-cms/trunk/src/com/arsdigita/cms/ui/cse/ContentSoonExpiredPane.java 2005-02-18 15:04:51 UTC (rev 274)
+++ ccm-cms/trunk/src/com/arsdigita/cms/ui/cse/ContentSoonExpiredPane.java 2005-02-21 16:30:44 UTC (rev 275)
@@ -127,7 +127,7 @@
public DataQuery makeDataQuery(DataTable t, PageState s) {
Session ses = SessionManager.getSession();
- DataQuery query = ses.retrieveQuery("com.runtimecollective.cms.getContentItemExpiredBeforeInSection");
+ DataQuery query = ses.retrieveQuery("com.arsdigita.cms.getContentItemExpiredBeforeInSection");
Calendar now = Calendar.getInstance();
now.add(Calendar.DAY_OF_YEAR, 1);
|