diff --git a/ccm-auth-http/web/themes/heirloom/apps/auth-http/xsl/index.xsl b/ccm-auth-http/web/themes/heirloom/apps/auth-http/xsl/index.xsl index 3bde5b7e6..dd3c6eec5 100755 --- a/ccm-auth-http/web/themes/heirloom/apps/auth-http/xsl/index.xsl +++ b/ccm-auth-http/web/themes/heirloom/apps/auth-http/xsl/index.xsl @@ -2,9 +2,6 @@ - diff --git a/ccm-bundle/web/themes/static/aplaws-generic/forum-example/categorised-forum/forum-index.xsl b/ccm-bundle/web/themes/static/aplaws-generic/forum-example/categorised-forum/forum-index.xsl index 230109cc2..4fba593f8 100644 --- a/ccm-bundle/web/themes/static/aplaws-generic/forum-example/categorised-forum/forum-index.xsl +++ b/ccm-bundle/web/themes/static/aplaws-generic/forum-example/categorised-forum/forum-index.xsl @@ -9,9 +9,9 @@ version="1.0"> diff --git a/ccm-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css b/ccm-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css index 74c5d3a59..c398a3e27 100644 --- a/ccm-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css +++ b/ccm-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css @@ -1,7 +1,7 @@ @import url("css/main.css"); /* Chris presumably forgot the ! to comment the following 2 lines out -/* <--@import url("/css/acs-master.css");--> */ -/* <--@import url("/css/tabbed-pane/tabbed-pane.css");--> */ +/* <--@import url("/themes/heirloom/css/acs-master.css");--> */ +/* <--@import url("/themes/heirloom/css/tabbed-pane/tabbed-pane.css");--> */ body { diff --git a/ccm-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.xsl b/ccm-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.xsl index 8440f6225..6c28dd698 100644 --- a/ccm-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.xsl +++ b/ccm-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.xsl @@ -9,9 +9,9 @@ version="1.0"> diff --git a/ccm-bundle/web/themes/static/aplaws-generic/forum-index.css b/ccm-bundle/web/themes/static/aplaws-generic/forum-index.css index 74c5d3a59..c398a3e27 100644 --- a/ccm-bundle/web/themes/static/aplaws-generic/forum-index.css +++ b/ccm-bundle/web/themes/static/aplaws-generic/forum-index.css @@ -1,7 +1,7 @@ @import url("css/main.css"); /* Chris presumably forgot the ! to comment the following 2 lines out -/* <--@import url("/css/acs-master.css");--> */ -/* <--@import url("/css/tabbed-pane/tabbed-pane.css");--> */ +/* <--@import url("/themes/heirloom/css/acs-master.css");--> */ +/* <--@import url("/themes/heirloom/css/tabbed-pane/tabbed-pane.css");--> */ body { diff --git a/ccm-bundle/web/themes/static/aplaws-generic/forum-index.xsl b/ccm-bundle/web/themes/static/aplaws-generic/forum-index.xsl index 666133a05..40150b681 100644 --- a/ccm-bundle/web/themes/static/aplaws-generic/forum-index.xsl +++ b/ccm-bundle/web/themes/static/aplaws-generic/forum-index.xsl @@ -9,9 +9,9 @@ version="1.0"> diff --git a/ccm-cms-assets-notes/application.xml b/ccm-cms-assets-notes/application.xml index 01b4aeca9..5edacba6e 100755 --- a/ccm-cms-assets-notes/application.xml +++ b/ccm-cms-assets-notes/application.xml @@ -3,7 +3,7 @@ name="ccm-cms-assets-notes" prettyName="Red Hat CMS Content Asset Notes" version="6.6.0" - release="1" + release="2" webapp="ROOT"> diff --git a/ccm-cms-assets-notes/src/com/arsdigita/cms/contentassets/Note.java b/ccm-cms-assets-notes/src/com/arsdigita/cms/contentassets/Note.java index 7671dde43..7537d497a 100755 --- a/ccm-cms-assets-notes/src/com/arsdigita/cms/contentassets/Note.java +++ b/ccm-cms-assets-notes/src/com/arsdigita/cms/contentassets/Note.java @@ -39,16 +39,19 @@ import org.apache.log4j.Logger; * */ public class Note extends ACSObject { - public static final String BASE_DATA_OBJECT_TYPE = - "com.arsdigita.cms.contentassets.Note"; private static final Logger s_log = Logger.getLogger( Note.class ); + + /** PDL stuff */ + public static final String BASE_DATA_OBJECT_TYPE = + "com.arsdigita.cms.contentassets.Note"; static { s_log.debug("Static initalizer is starting..."); DomainObjectFactory.registerInstantiator( BASE_DATA_OBJECT_TYPE, new DomainObjectInstantiator() { + @Override public DomainObjectInstantiator resolveInstantiator ( DataObject dataObject ) { return this; @@ -104,6 +107,7 @@ public class Note extends ACSObject { * (non-Javadoc) * @see com.arsdigita.domain.DomainObject#initialize() */ + @Override protected void initialize() { super.initialize(); @@ -192,17 +196,20 @@ public class Note extends ACSObject { return notes; } + @Override protected void beforeDelete() { // Put this note at the end so other notes will be correctly reordered setRank( Long.MAX_VALUE ); } + @Override protected void beforeSave() { super.beforeSave(); if( isNew() ) m_isNew = true; } + @Override protected void afterSave() { super.afterSave(); diff --git a/ccm-cms-assets-notes/src/com/arsdigita/cms/contentassets/NotesInitializer.java b/ccm-cms-assets-notes/src/com/arsdigita/cms/contentassets/NotesInitializer.java index 887bf73c2..5ae542b48 100755 --- a/ccm-cms-assets-notes/src/com/arsdigita/cms/contentassets/NotesInitializer.java +++ b/ccm-cms-assets-notes/src/com/arsdigita/cms/contentassets/NotesInitializer.java @@ -68,10 +68,11 @@ public class NotesInitializer extends ContentAssetInitializer { } // public void init( LegacyInitEvent ev ) { + @Override public void init( DomainInitEvent ev ) { super.init( ev ); - ContentType.registerXSLFile( null, "/__ccm__/assets/notes/index.xsl" ); + ContentType.registerXSLFile( null, "/themes/heirloom/assets/notes/xsl/index.xsl" ); DomainObjectTraversal.registerAdapter( Note.BASE_DATA_OBJECT_TYPE, new SimpleDomainObjectTraversalAdapter(), SimpleXMLGenerator.ADAPTER_CONTEXT ); diff --git a/ccm-cms-assets-notes/web/__ccm__/assets/notes/index.xsl b/ccm-cms-assets-notes/web/themes/heirloom/assets/notes/xsl/index.xsl old mode 100755 new mode 100644 similarity index 74% rename from ccm-cms-assets-notes/web/__ccm__/assets/notes/index.xsl rename to ccm-cms-assets-notes/web/themes/heirloom/assets/notes/xsl/index.xsl index b317120fd..461a70e1f --- a/ccm-cms-assets-notes/web/__ccm__/assets/notes/index.xsl +++ b/ccm-cms-assets-notes/web/themes/heirloom/assets/notes/xsl/index.xsl @@ -3,11 +3,11 @@ ]> - + - + @@ -32,11 +32,11 @@ - /cms/admin/action-group/action-delete.png + /images/action-delete.png - /cms/admin/action-group/action-edit.png + /images/action-edit.png - /cms/admin/action-group/action-generic.png + /images/action-generic.png diff --git a/ccm-cms-types-article/src/com/arsdigita/cms/contenttypes/ArticleInitializer.java b/ccm-cms-types-article/src/com/arsdigita/cms/contenttypes/ArticleInitializer.java index 17948a27f..5215e1420 100755 --- a/ccm-cms-types-article/src/com/arsdigita/cms/contenttypes/ArticleInitializer.java +++ b/ccm-cms-types-article/src/com/arsdigita/cms/contenttypes/ArticleInitializer.java @@ -24,7 +24,8 @@ import org.apache.log4j.Logger; * Initializes the GenericArticle content type. * Defines the content type specific properties and just uses the super class * methods to register the content type with the (transient) content type store - * (map). + * (map). This is done by runtimeRuntime startup method which runs the init() + * methods of all initializers (this one just using the parent implementation). * * @author Justin Ross <jross@redhat.com> * @version $Id: ArticleInitializer.java 757 2005-09-02 14:12:21Z sskracic $ @@ -37,9 +38,9 @@ public class ArticleInitializer extends ContentTypeInitializer { super("ccm-cms-types-article.pdl.mf", GenericArticle.BASE_DATA_OBJECT_TYPE); } -// deprecated, no longer used. -// public String[] getStylesheets() { -// return new String[] -// { "/static/content-types/com/arsdigita/cms/contenttypes/Article.xsl" }; -// } + @Override + public String[] getStylesheets() { + return new String[] + { "/static/content-types/com/arsdigita/cms/contenttypes/Article.xsl" }; + } } diff --git a/ccm-core/src/com/arsdigita/bebop/page/PageTransformer.java b/ccm-core/src/com/arsdigita/bebop/page/PageTransformer.java index 2df03a961..c9f0938c6 100755 --- a/ccm-core/src/com/arsdigita/bebop/page/PageTransformer.java +++ b/ccm-core/src/com/arsdigita/bebop/page/PageTransformer.java @@ -16,6 +16,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ + package com.arsdigita.bebop.page; import com.arsdigita.developersupport.DeveloperSupport; diff --git a/ccm-core/src/com/arsdigita/loader/CoreLoader.java b/ccm-core/src/com/arsdigita/loader/CoreLoader.java index e108d7ee2..5a5faeff7 100755 --- a/ccm-core/src/com/arsdigita/loader/CoreLoader.java +++ b/ccm-core/src/com/arsdigita/loader/CoreLoader.java @@ -455,8 +455,6 @@ public class CoreLoader extends PackageLoader { packType.setDispatcherClass("com.arsdigita.webdevsupport.Dispatcher"); } -// private static final String XSL_ROOT = "/packages/acs-admin/xsl/"; - private Application loadAdminApp() { ApplicationType adminType = ApplicationType .createApplicationType("admin", diff --git a/ccm-core/src/com/arsdigita/versioning/VersioningServlet.java b/ccm-core/src/com/arsdigita/versioning/VersioningServlet.java index 2ebf6eafb..004ca706f 100755 --- a/ccm-core/src/com/arsdigita/versioning/VersioningServlet.java +++ b/ccm-core/src/com/arsdigita/versioning/VersioningServlet.java @@ -61,7 +61,7 @@ public final class VersioningServlet extends BaseServlet { private final static String CMD = "cmd"; private final static String OID = "oid"; private final static String TITLE = "title"; - private final static String JSP_DIR = "/packages/versioning/"; + private final static String JSP_DIR = "themes/heirloom//packages/versioning/"; public void doService(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { diff --git a/ccm-core/web/css/acs-master.css b/ccm-core/web/css/acs-master.css deleted file mode 100755 index 6c8ea49de..000000000 --- a/ccm-core/web/css/acs-master.css +++ /dev/null @@ -1,271 +0,0 @@ -@import url(context-bar/context-bar.css); -@import url(tabbed-pane/tabbed-pane.css); - -body { - background: white; - color: black; -} -.main {background-color: #ffffff;} -.dark {background-color: #6699cc;} -.medium {background-color: #99ccff;} -.light {background-color: #ccffff;} -td.bread_crumbs { - padding-left: 8px; - margin-top: 0px; - margin-bottom: 0px; - font-family: arial, helvetica; - font-size: x-small; -} -td.top_right_links { - padding-right: 8px; - margin-top: 0px; - margin-bottom: 0px; - font-family: arial, helvetica; - font-size: x-small; -} -td.bottom_right_links { - padding-right: 8px; - margin-top: 0px; - margin-bottom: 0px; - font-family: arial, helvetica; - font-size: x-small; -} -td.page_title { - padding-left: 8px; - margin-top: 0px; - margin-bottom: 0px; - font-weight: bold; - font-family: arial, helvetica; - color: #333333; - font-size: medium; -} - -a.tab_unselected { - text-decoration: none; - font-weight: bold; - color: black; - font-family: arial, helvetica; - font-size: x-small; -} -a.tab_unselected:hover { - text-decoration: underline; -} -a.tab_selected { - text-decoration: none; - font-weight: bold; - color: white; - font-family: arial, helvetica; - font-size: x-small; -} -a.tab_selected:hover { - text-decoration: underline; -} -td.tab_selected { - text-decoration: none; - font-weight: bold; - color: white; - font-family: arial, helvetica; - font-size: x-small; - background-color: #878175; -} -tr.tab_selected { - text-decoration: none; - font-weight: bold; - color: white; - font-family: arial, helvetica; - font-size: x-small; - background-color: #878175; -} - -a.action_link { - font-family: tahoma, arial, helvetica; - font-size: x-small; - color: #333333; - text-decoration: none; -} -a.action_link:hover { - font-family: tahoma, arial, helvetica; - font-size: x-small; - color: #333333; - text-decoration: underline; -} -a.action_link_disabled { - font-family: tahoma, arial, helvetica; - font-size: x-small; - color: #999999; - text-decoration: none; -} -a.form_label { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; -} - -td.form_label { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; -} -td.form_value { - font-family: tahoma, arial, helvetica; - font-size: x-small; -} - -/**********Split Pane*********/ -th.split_pane_header { - font-family: arial, helvetica; - text-align: left; - padding-left: 8px; - font-size: x-small; - background-color: rgb(63,63,63); - color: rgb(222,222,222); -} -td.split_pane_left_background { - background-color: rgb(222,222,222); -} -td.split_pane_left_item { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - padding-left: 8px; -} -a.split_pane_left_item { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - text-decoration: none; -} -a.split_pane_left_item:hover { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - text-decoration: underline; -} -td.split_pane_left_item_selected { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - background-color: #eae9c6; - padding-left: 8px; -} -td.split_pane_right_body { - padding-left: 8px; - font-family: arial, helvetica; - font-size: x-small; -} - -/*****Misc. Table********/ -th.table_header { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - color: black; -} -a.table_header { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - text-decoration: none; - color: black; -} -a.table_header:hover { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - text-decoration: underline; - color: black; -} -tr.table_row_odd { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - background-color: #e1d5b0; -} -tr.table_row_even { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - background-color: white; -} -td.table_cell { - font-family: tahoma, arial, helvetica; - font-size: x-small; -} -p { - font-family: georgia, arial, helvetica; - font-size: x-small; -} - -th.section_header { - font-family: arial, helvetica; - text-align: left; - padding-left: 8px; - font-size: x-small; - background-color: #878175; - color: white; -} -td.section_header { - font-family: arial, helvetica; - font-size: x-small; - background-color: #878175; - color: white; -} -td.section_body { - padding-left: 8px; - font-family: arial, helvetica; - font-size: x-small; -} -h3.section_body { - font-family: arial, helvetica; - font-size: small; - font-weight: bold; - margin-bottom: 4px; -} -h4.section_body { - font-family: arial, helvetica; - font-size: x-small; - font-weight: bold; - margin-bottom: 4px; - margin-top: 4px; -} -blockquote.section_body { - margin-bottom: 0px; - margin-top: 0px; - margin-left: 16px; - font-family: arial, helvetica; - font-size: x-small; -} -p.section_body { - font-family: arial, helvetica; - font-size: x-small; -} - -td.left_tabs_background { - background-color: #DDD7A1; -} -td.left_tabs_tab { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - padding-left: 8px; -} -a.left_tabs_tab { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - text-decoration: none; -} -a.left_tabs_tab:hover { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - text-decoration: underline; -} -td.left_tabs_tab_selected { - font-family: tahoma, arial, helvetica; - font-size: x-small; - font-weight: bold; - background-color: #eae9c6; - padding-left: 8px; -} - diff --git a/ccm-core/web/css/context-bar/RHCLogoRoundRedSmallest.png b/ccm-core/web/css/context-bar/RHCLogoRoundRedSmallest.png deleted file mode 100755 index 43979025f..000000000 Binary files a/ccm-core/web/css/context-bar/RHCLogoRoundRedSmallest.png and /dev/null differ diff --git a/ccm-core/web/css/context-bar/context-bar.css b/ccm-core/web/css/context-bar/context-bar.css deleted file mode 100755 index e09c2d6da..000000000 --- a/ccm-core/web/css/context-bar/context-bar.css +++ /dev/null @@ -1,82 +0,0 @@ -body, a, div, td, th { - font-family: verdana, arial, helvetica, sans-serif; - font-size: small; -} - -/***Admin Styles****/ -table.globalAdminHeader { - background-color: rgb(225,225,225); - font-size: 10pt; - width: 100%; -} - -table.globalAdminHeader td { - padding: 6px; - padding-bottom: 7px; - vertical-align: middle; -} - -td.globalAdminNavigation { - color: rgb(63,63,63); -} - -table.globalAdminHeader td.globalLogo { - width: 25px; - height: 25px; - background-image: url(RHCLogoRoundRedSmallest.png); - background-repeat: no-repeat; -} - -td.globalAdminNavigation a { - color: rgb(63,63,63); -} - -td.globalAdminNavigation span.contextBarSeparator { - color: rgb(63,63,63); - font-weight: bold; -} - -td.globalAdminControl { - color: rgb(63,63,63); - margin: 0; - padding: 0; - padding-right: 6px; - text-align: right; - vertical-align: middle; - font-weight: bold; -} - -td.globalAdminControl a, -td.globalAdminControl img { - margin: 0; - padding: 0; - color: rgb(63,63,63); - vertical-align: middle; - border: 0 none; - text-decoration: none; -} - -td.global-links { - float: right; -} - -td.global-link-icon { - padding: 0 4px 0 10px; -} - -td.global-link-icon img { - border: 0; -} - -td.global-link a { - color: blue; - text-decoration: none; -} - -div.page-title { - font-size: larger; - font-weight: bold; - margin: 0; - padding: 4px 6px 4px 6px; -} - diff --git a/ccm-core/web/css/error.css b/ccm-core/web/css/error.css deleted file mode 100755 index 7a2ec08bf..000000000 --- a/ccm-core/web/css/error.css +++ /dev/null @@ -1,570 +0,0 @@ -/* - * Fundamental Styles - */ - -body { - background-color: white; - font-family: Arial, Helvetica, sans-serif; - font-size: 10pt; - margin: 0; -} - -table { - border-spacing: 0; - empty-cells: show; -} - -td { - font-family: Arial, Helvetica, sans-serif; - font-size: 10pt; - vertical-align: top; -} - -.main { /* background-color: #ffffff; */ } -.dark { /* background-color: #666666; */ } -.medium { /* background-color: #999999; */ } -.light { /* background-color: #cccccc; */ } - -.activeTabColor { - background: #93bee2; -} - -.inactiveTabColor { - background: #d8e8f5; -} - -.dialogTitle { - font-weight: bold; - font-size: 12pt; -} - -.messageOfTheDay { - padding-left: 0.4em; - padding-right: 0.4em; - margin-top: 0.4em; - margin-bottom: 0.4em; - border-style: solid; - border-bottom-width: 1px; - border-top-width: 1px; - border-right-width: 1px; - border-left-width: 1px; - border-color: #cccccc; -} - -/* We would use a div here, but it triggers a rendering bug. */ - -table.setInside { - width: 100%; - border-spacing: 0; -} - -table.setInside td.setInside { - padding: 6px; - padding-bottom: 0; -} - -/* - * Global Header - * - * This is currently a blue stripe at the top of each workspace and - * application page. The left side, a context bar, uses the class - * attribute "globalNavigation" and the right uses "globalControl". - */ - -table.globalHeader { - background-color: #003366; - font-size: 10pt; - width: 100%; -} - -table.globalHeader td { - padding: 6px; - padding-bottom: 7px; - vertical-align: middle; -} - -td.globalNavigation { - color: #d8e8f5; -} - -td.globalNavigation a { - color: #d8e8f5; -} - -td.globalNavigation span.contextBarSeparator { - color: #d8e8f5; - font-weight: bold; -} - -td.globalNavigation span.immediateContext { - color: white; - font-weight: bold; -} - -form.globalSearch { - margin: 0; - border: 0; - padding: 0; -} - -td.globalControl { - color: white; - margin: 0; - padding: 0; - padding-right: 6px; - text-align: right; - vertical-align: middle; - font-weight: bold; -} - -td.globalControl a, -td.globalControl img { - margin: 0; - padding: 0; - color: white; - vertical-align: middle; - border: 0 none; - text-decoration: none; -} - -/* - * Local Header - * - * The header elements right under the blue stripe. These are - * elements logically connected to the current application, not to the - * system in general. - */ - -table.localHeader { - width: 100%; -} - -table.localHeader td.localTitle { - text-align: left; - font-weight: bold; - font-size: 12pt; -} - -table.localHeader td.localControl, -table.localHeader td.localControl a { - text-align: right; -} - -/* - * Split Panel - */ - -table.splitPanel { - width: 100%; -} - -table.splitPanelHeader { - /* Nothing here yet. */ -} - -td.splitPanelLeft { - width: 25%; -} - -td.splitPanelRight { - width: 75%; -} - -/* - * Tabs and Header/Body/Footer Separators - */ - -table.topRuleNoTabs { - background-color: #93bee2; - width: 100%; - margin: 0; - margin-bottom: 6px; - border-top: 1px solid black; - padding: 0; -} - -table.topRuleUnderTabs { - background-color: #93bee2; - width: 100%; - margin: 0; - margin-bottom: 6px; - padding: 0; -} - -table.bottomRule { - background-color: #93bee2; - width: 100%; - margin: 0; - margin-top: 6px; - border-bottom: 1px solid black; - padding: 0; -} - -table.tabs { - margin: 0; - border-spacing: 0; -} - -table.tabs a { - color: black; - text-decoration: none; - white-space: nowrap; -} - -table.tabs td { - margin: 0; - border: 0; - padding: 0; - font-weight: bold; - font-size: 10pt; - color: black; - text-decoration: none; - white-space: nowrap; -} - -table.tabs td.activeTab { - vertical-align: middle; - background-color: #93bee2; - border-top: 1px solid black; - padding-top: 1px; -} - -table.tabs td.inactiveTab { - vertical-align: middle; - background-color: #d8e8f5; - border-top: 1px solid black; - border-bottom: 1px solid black; - padding-top: 2px; -} - -table.tabs td.trimSpace { - border-bottom: 1px solid black; -} - -/* - * Portals and Portlets - * - * "NW" denotes Narrow and Wide columns, in that order. Other layouts - * will require other CSS rules. - */ - -table.portalLayoutNW { - width: 100%; - margin: 0; - padding: 0; -} - -table.portalLayoutNW td.narrowColumn { - width: 25%; -} - -table.portalLayoutNW td.columnSeparator { - border: 0; - padding: 0; -} - -table.portalLayoutNW td.wideColumn { - width: 75%; -} - -table.portalLayoutW { - width: 100%; - margin: 0; - padding: 0; -} - -table.portalLayoutW td.VeryWideColumn { - width:100%; -} - -table.portalLayoutWN { - width: 100%; - margin: 0; - padding: 0; -} - -table.portalLayoutWN td.narrowColumn { - width: 25%; -} - -table.portalLayoutWN td.columnSeparator { - border: 0; - padding: 0; -} - -table.portalLayoutWN td.wideColumn { - width: 75%; -} - -table.portalLayoutNWN { - width: 100%; - margin: 0; - padding: 0; -} - -table.portalLayoutNWN td.narrowColumnLeft { - width: 25%; -} - -table.portalLayoutNWN td.narrowColumnRight { - width: 25%; -} - -table.portalLayoutNWN td.columnSeparator { - border: 0; - padding: 0; -} - -table.portalLayoutNWN td.wideColumn { - width: 50%; -} - -table.portalLayoutNNN { - width: 100%; - margin: 0; - padding: 0; -} - -table.portalLayoutNNN td.narrowColumnLeft { - width: 33%; -} - -table.portalLayoutNNN td.narrowColumnRight { - width: 33%; -} - -table.portalLayoutNNN td.columnSeparator { - border: 0; - padding: 0; -} - -table.portalLayoutNNN td.narrowColumnCenter { - width: 33%; -} - -table.portlet { - width: 100%; - margin: 0; - margin-bottom: 6px; - padding: 0; -} - -table.portlet td.portletHeader { - font-weight: bold; - background: #dddddd; - color: #666666; - padding: 4px; - padding-left: 6px; - vertical-align: middle; -} - -table.portlet td.portletIcon { - background: #dddddd; - padding: 4px; - text-align: right; -} - -table.portlet td.portletBody { - padding: 6px; -} - -/* - * Fancy Tables (for tabular data) - */ - -table.fancy { - width: 100%; - border-collapse: collapse; - border-spacing: 0; - border: 1px solid black; -} - -table.fancy th { - padding: 4px; - border:0 none; - font-size: 9pt; - text-align: left; -} - -table.fancy td { - padding: 4; - border: 0 none; - font-size: 9pt; -} - -table.fancy thead tr { - background-color: #eeeeee; -} - -table.fancy thead tr.subheading { - background-color: #93bee2; -} - -table.fancy thead tr.subheading td { - text-align: right; -} - -table.fancy tbody td.subDivider { - padding: 0; - background-color: #93bee2; -} - -table.fancy thead th { - font-weight: bold; - text-align: left; - white-space: nowrap; -} - -table.fancy thead th.numeric { - text-align: right; -} - -table.fancy thead th.date { - text-align: center; -} - -table.fancy thead th.icon { - text-align: center; -} - -table.fancy tbody td { - border-top: 1px solid black; -} - -table.fancy tbody td.noborder { - border-top: none; -} - -table.fancy tbody td.numeric { - text-align: right; -} - -table.fancy tbody td.date { - text-align: right; - white-space: nowrap; -} - -table.fancy tbody td.icon { - text-align: center; -} - -/* - * With is for tables that want to look standard (no lines on the inside) but - * also want to have the really thin line around the outside - */ -table.plainWithBorder { - width: 100%; - border-collapse: collapse; - border-spacing: 0; - border: 1px solid black; -} - - -/* - * Miscellaneous - */ - -select { - font-family: Arial, Helvetica, sans-serif; - font-size: 9pt; -} - -tr.rowEven { background-color: #eeeeff; } - -th { - font-family: Arial, Helvetica, sans-serif; - font-size: 10pt; - font-weight: bold; - text-align: left; - vertical-align: bottom; -} - -td.panelHeader { - padding-left: 0.4em; - padding-right: 0.4em; - padding-top: 0.1em; - padding-bottom: 0.1em; - vertical-align: middle; - text-align: left; - font-weight: bold; -} - -/* styles for section headers */ - -table.sectionHeader { - border:0 none; -} - -table.sectionHeader td { - font-weight:bold; - font-size:12pt; - border:0 none; - white-space:nowrap; -} - -table.sectionHeader td.add { - text-align:right; -} - -table.sectionHeader td.path { - text-align:right; - font-family:monospace; - font-weight:normal; - font-size:10pt; -} - -/* styles for controlBar */ - -table.controlBar { - width:100%; - font-size:8pt; - border:0 none; - border-collapse:collapse; - border-spacing:0; - border:1px solid black; -} - -table.controlBar td { - font-size:8pt; - border:0 none; - white-space:nowrap; -} - -table.controlBar span { - font-size:8pt; - font-weight:bold; - border:0 none; - white-space:nowrap; -} - -table.controlBar select { - font-size:8pt; - vertical-align: middle; -} - -table.controlBar input { - font-size:8pt; - vertical-align: middle; -} - -table.controlBar img { - vertical-align: middle; -} - -tbody.controlBar td { - border-top:1px solid black; -} - -tbody.controlBar td.numeric { - text-align:right; - padding-right:20px; -} - -tbody.controlBar td.date { - text-align:right; - white-space:nowrap; -} - -tbody.controlBar td.icon { - text-align:center; -} diff --git a/ccm-core/web/css/tabbed-pane/tab-bar.png b/ccm-core/web/css/tabbed-pane/tab-bar.png deleted file mode 100755 index 9c5ea5a1e..000000000 Binary files a/ccm-core/web/css/tabbed-pane/tab-bar.png and /dev/null differ diff --git a/ccm-core/web/css/tabbed-pane/tab-selected-end.png b/ccm-core/web/css/tabbed-pane/tab-selected-end.png deleted file mode 100755 index e7890a8c2..000000000 Binary files a/ccm-core/web/css/tabbed-pane/tab-selected-end.png and /dev/null differ diff --git a/ccm-core/web/css/tabbed-pane/tab-selected.png b/ccm-core/web/css/tabbed-pane/tab-selected.png deleted file mode 100755 index 19ebe5fec..000000000 Binary files a/ccm-core/web/css/tabbed-pane/tab-selected.png and /dev/null differ diff --git a/ccm-core/web/css/tabbed-pane/tab-unselected-end.png b/ccm-core/web/css/tabbed-pane/tab-unselected-end.png deleted file mode 100755 index de7b61aa6..000000000 Binary files a/ccm-core/web/css/tabbed-pane/tab-unselected-end.png and /dev/null differ diff --git a/ccm-core/web/css/tabbed-pane/tab-unselected.png b/ccm-core/web/css/tabbed-pane/tab-unselected.png deleted file mode 100755 index e6a6b9f4b..000000000 Binary files a/ccm-core/web/css/tabbed-pane/tab-unselected.png and /dev/null differ diff --git a/ccm-core/web/css/tabbed-pane/tabbed-pane.css b/ccm-core/web/css/tabbed-pane/tabbed-pane.css deleted file mode 100755 index a95b3ef32..000000000 --- a/ccm-core/web/css/tabbed-pane/tabbed-pane.css +++ /dev/null @@ -1,56 +0,0 @@ -div.tabbed-pane div, div.tabbed-pane table.tab-set, div.tabbed-pane table.tab-set td { - margin: 0; - border: 0; - padding: 0; -} - -div.tabbed-pane table { - border-collapse: collapse; -} - -div.tabbed-pane table.tab-set { - margin-left: 6px; -} - -div.tabbed-pane table.tab-set a { - text-decoration: none; - color: rgb(63,63,63); -} - -div.tabbed-pane table.tab-set td.tab-label { - margin-left: 4px; - padding: 5px 0 3px 10px; - font-size: x-small; - background: rgb(225,225,225) url(tab-unselected.png) no-repeat; -} - -div.tabbed-pane table.tab-set td.tab-end { - width: 10px; - background: url(tab-unselected-end.png) no-repeat; -} - -div.tabbed-pane table.tab-set td.current-tab-label { - margin-left: 4px; - padding: 5px 0 3px 10px; - background: rgb(162,30,30) url(tab-selected.png) no-repeat; - color: white; -} - -div.tabbed-pane table.tab-set td.current-tab-end { - width: 10px; - background: url(tab-selected-end.png) no-repeat; -} - -div.tabbed-pane table.tab-set td.tab-spacer { - width: 4px; -} - -div.tabbed-pane table.rule { - width: 100%; - background: rgb(162,30,30) url(tab-bar.png) repeat-x; - height: 10px; -} - -div.tabbed-pane div.current-pane { - width: 100%; -} diff --git a/ccm-core/web/packages/acs-admin/xsl/admin.xsl b/ccm-core/web/packages/acs-admin/xsl/admin.xsl deleted file mode 100755 index 50e4e612a..000000000 --- a/ccm-core/web/packages/acs-admin/xsl/admin.xsl +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - -
-
- - - - - - - - #e1d5b0 - #ffffff - - - - - - - - - - - - - - - - - -
diff --git a/ccm-core/web/packages/acs-admin/xsl/admin_en.xsl b/ccm-core/web/packages/acs-admin/xsl/admin_en.xsl deleted file mode 100755 index 4c4557ab9..000000000 --- a/ccm-core/web/packages/acs-admin/xsl/admin_en.xsl +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - - -
    -
  • Name:
  • -
  • Email: - - -
    -
  • -
  • Screen Name:
  • -
  • URL:
  • -
  • User ID:
  • -
  • Member State: -
  • -
- -
- - - - -

Adminstrative Actions

- - - -
- - - - For -
-
- - - -

Note

-

If this user does not currently have an authentication record, - one will be created when you submit this form and the account - will be enabled for login to the system.

-
- - - - - - - - - (primary) - - - - - - - - - - - - - - - - - - -
-

You don't have permission to perform the requested action.

-
-
- - - -

Your search returned no results.

-
- - - -

Results matching your query:

-
    - -
  • -
    -
-
- - - - -
    -
  • Group Name:
  • -
  • Primary Email:
  • -
- -
- - -

None

-
- - -   - ( - - ) - - -
- - diff --git a/ccm-core/web/packages/acs-admin/xsl/sitemap_en.xsl b/ccm-core/web/packages/acs-admin/xsl/sitemap_en.xsl deleted file mode 100755 index c72b2b5d6..000000000 --- a/ccm-core/web/packages/acs-admin/xsl/sitemap_en.xsl +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/ccm-core/web/packages/acs-admin/xsl/split-panel.xsl b/ccm-core/web/packages/acs-admin/xsl/split-panel.xsl deleted file mode 100755 index aa5dc3fe2..000000000 --- a/ccm-core/web/packages/acs-admin/xsl/split-panel.xsl +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - - - - - - - - - - - - The Heading Goes Here - This is the Navbar - This is the Main Display Panel - Title - - - - - - -
- - - - - - - - - - - - -
- - - - -
- -
-
- - - -
-
-
- - -
-
- - - -
-
- - - - - - - - -
- - - - - - - - - - - - - - -
- - - -
-
-
- - - -
-
-
- -
-
-
- - - - - - - - - - -   - - {$internal-theme}/images/arrow-right.gif - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/ccm-core/web/packages/bebop-jsp/www/all-in-one.jsp b/ccm-core/web/packages/bebop-jsp/www/all-in-one.jsp deleted file mode 100755 index fcdd0ece8..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/all-in-one.jsp +++ /dev/null @@ -1,40 +0,0 @@ -<%@ taglib prefix="define" uri="/WEB-INF/bebop-define.tld" %> -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> -<%@ page import="com.arsdigita.bebop.*" %> -<%@ page import="com.arsdigita.bebop.form.*" %> -<%@ page import="com.arsdigita.bebop.event.*" %> - -<%-- -all-in-one demo. -shows definition of page and display (show:...) tags in same page ---%> - - -<% -Form myForm = new Form("myForm"); -myForm.addProcessListener(new FormProcessListener() { - public void process(FormSectionEvent fse) { - System.err.println("form process"); - } -}); -myForm.add(new TextField("foo")); -myForm.add(new Submit("bar")); -p.add(myForm); -%> - - - -this is a test. Let's see if we can insert the form here: - - -
    -
  • input widget: -
  • submit: -
-
- -

the advantage of not trying to parse this as XML is that we can - have badly-formed HTML here: -

  • one
  • two
  • three
- -
\ No newline at end of file diff --git a/ccm-core/web/packages/bebop-jsp/www/globalization.jsp b/ccm-core/web/packages/bebop-jsp/www/globalization.jsp deleted file mode 100755 index cb4733d72..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/globalization.jsp +++ /dev/null @@ -1,28 +0,0 @@ -<%@ taglib prefix="i18n" uri="/WEB-INF/i18n.tld" %> -<%@ page import="com.arsdigita.dispatcher.DispatcherHelper" %> - -This is a demonstration of the Jakarta i18n taglib. -

-First we need to establish the bundle/locale with the bundle tag. - - - -

This is a message from the login package: - - - - - -

This is what happens when you ask for a message that isn't there: - - -Default message text - - - - - - - diff --git a/ccm-core/web/packages/bebop-jsp/www/included.jsp b/ccm-core/web/packages/bebop-jsp/www/included.jsp deleted file mode 100755 index f07ff8611..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/included.jsp +++ /dev/null @@ -1,8 +0,0 @@ -Included page: - - -

    -
  • first name field: -
  • last name field: -
- \ No newline at end of file diff --git a/ccm-core/web/packages/bebop-jsp/www/index.jsp b/ccm-core/web/packages/bebop-jsp/www/index.jsp deleted file mode 100755 index 7b680b856..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/index.jsp +++ /dev/null @@ -1,18 +0,0 @@ -Examples of Bebop-JSP-XSLT integration: - - - - diff --git a/ccm-core/web/packages/bebop-jsp/www/list.jsp b/ccm-core/web/packages/bebop-jsp/www/list.jsp deleted file mode 100755 index f242cfc63..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/list.jsp +++ /dev/null @@ -1,58 +0,0 @@ -<%@ taglib prefix="define" uri="/WEB-INF/bebop-define.tld" %> -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> -<%@ page import="com.arsdigita.bebop.PageState" %> -<%@ page import="com.arsdigita.bebop.List" %> -<%@ page import="com.arsdigita.bebop.list.ListModelBuilder" %> -<%@ page import="com.arsdigita.bebop.list.ListModel" %> -<%@ page import="com.arsdigita.bebop.form.*" %> -<%@ page import="com.arsdigita.bebop.event.*" %> - - - - <% - myList.setModelBuilder(new ListModelBuilder() { - private Object[] m_values = new Object[] {"foo", "bar", "baz"}; - private boolean m_locked; - - public ListModel makeModel(List list, PageState state) { - return new ListModel() { - private int i = -1; - - public boolean next() { - i += 1; - return ( i < m_values.length ); - } - - public Object getElement() { - return m_values[i]; - } - - public String getKey() { - return String.valueOf(i); - } - }; - } - - public void lock() { - m_locked = true; - } - - public final boolean isLocked() { - return m_locked; - } - }); - %> - - - - -showing page with list. - -

-<% int i = 0; %> -

    - -
  • list item #<%= ++i %>: . next... - - - diff --git a/ccm-core/web/packages/bebop-jsp/www/master-page-def.jsp b/ccm-core/web/packages/bebop-jsp/www/master-page-def.jsp deleted file mode 100755 index e75e377fb..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/master-page-def.jsp +++ /dev/null @@ -1,18 +0,0 @@ -<%@ taglib prefix="define" uri="/WEB-INF/bebop-define.tld" %> -<%@ page import="com.arsdigita.bebop.*" %> -<%@ page import="com.arsdigita.bebop.form.*" %> -<%@ page import="com.arsdigita.bebop.event.*" %> - - -<% -Form f = new Form("preSlaveForm"); -f.add(new TextField("pre1")); -f.add(new Submit("presubmit")); -f.addSubmissionListener(new FormSubmissionListener() { - public void submitted(FormSectionEvent fse) { - System.out.println("Processed preSlaveForm"); - } -}); -masterPage.add(f); -%> - \ No newline at end of file diff --git a/ccm-core/web/packages/bebop-jsp/www/master-page.jsp b/ccm-core/web/packages/bebop-jsp/www/master-page.jsp deleted file mode 100755 index cd5c2d787..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/master-page.jsp +++ /dev/null @@ -1,30 +0,0 @@ -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> - -<%@ include file="master-page-def.jsp" %> - - -This is a master page. - -
    - -preslave form, defined in master-page-def.jsp: - -
    - - - form label for input (pre1): - - - -
    - - - -
    - - slave done - -note that you can also show components from the slave page inside -the master page. Just refer to them by name. - -
    diff --git a/ccm-core/web/packages/bebop-jsp/www/options.jsp b/ccm-core/web/packages/bebop-jsp/www/options.jsp deleted file mode 100755 index e05d206d6..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/options.jsp +++ /dev/null @@ -1,57 +0,0 @@ -<%@ taglib prefix="define" uri="/WEB-INF/bebop-define.tld" %> -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> -<%@ page import="com.arsdigita.bebop.*" %> -<%@ page import="com.arsdigita.bebop.form.*" %> -<%@ page import="com.arsdigita.bebop.event.*" %> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -showing page with option groups. - - - -

    -radio group: - - -

    -checkbox group: - - -

    -single select: - - -

    -multi select: - - - - - diff --git a/ccm-core/web/packages/bebop-jsp/www/redirect-race-1.jsp b/ccm-core/web/packages/bebop-jsp/www/redirect-race-1.jsp deleted file mode 100755 index 10ea52610..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/redirect-race-1.jsp +++ /dev/null @@ -1,18 +0,0 @@ -<%@ page import="com.arsdigita.persistence.SessionManager, java.sql.*" %> -<%@ page import="com.arsdigita.dispatcher.*" %> - -<% -response.addHeader("Expires", "-1"); -response.addHeader("Cache-control", "no-cache"); -Connection conn = SessionManager.getSession().getConnection(); -PreparedStatement stmt = - conn.prepareStatement("insert into redirect_race_test (singleton, when) " - + "values (?, sysdate)"); -stmt.setObject(1, new Integer(request.getParameter("random"))); -stmt.executeUpdate(); - -DispatcherHelper.sendRedirect(request, response, "redirect-race-2.jsp"); - -// delay before committing transaction -%> - diff --git a/ccm-core/web/packages/bebop-jsp/www/redirect-race-2.jsp b/ccm-core/web/packages/bebop-jsp/www/redirect-race-2.jsp deleted file mode 100755 index 17f2a92d0..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/redirect-race-2.jsp +++ /dev/null @@ -1,17 +0,0 @@ -<%@ page import="com.arsdigita.persistence.SessionManager, java.sql.*" %> - -<% -response.addHeader("Cache-control", "no-cache"); -response.addHeader("Expires", "-1"); -Connection conn = SessionManager.getSession().getConnection(); -Statement stmt = conn.createStatement(); -ResultSet rs = stmt.executeQuery("select * from redirect_race_test " - + " where when = (select max(when) from redirect_race_test)"); -rs.next(); -%> -<%= rs.getString("singleton") %> diff --git a/ccm-core/web/packages/bebop-jsp/www/static-footer.jsp b/ccm-core/web/packages/bebop-jsp/www/static-footer.jsp deleted file mode 100755 index 820095a0d..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/static-footer.jsp +++ /dev/null @@ -1,6 +0,0 @@ -


    - - slave done - -note that you could still show components from the slave page inside -the master page, even though you can't define new components here. \ No newline at end of file diff --git a/ccm-core/web/packages/bebop-jsp/www/static-header.jsp b/ccm-core/web/packages/bebop-jsp/www/static-header.jsp deleted file mode 100755 index 559ed9568..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/static-header.jsp +++ /dev/null @@ -1,12 +0,0 @@ -This is a master page, included via static -<%@ include file=...> tags. - -
    - -We couldn't easily define new components in the master page, because -we are inside a show:... page block for a concrete Page object that -has already been locked and finished. - -
    - -
    diff --git a/ccm-core/web/packages/bebop-jsp/www/tab-test.jsp b/ccm-core/web/packages/bebop-jsp/www/tab-test.jsp deleted file mode 100755 index 577dd51bc..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/tab-test.jsp +++ /dev/null @@ -1,41 +0,0 @@ -<%@ taglib prefix="define" uri="/WEB-INF/bebop-define.tld" %> -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> -<%@ page import="com.arsdigita.bebop.*" %> -<%@ page import="com.arsdigita.bebop.form.*" %> -<%@ page import="com.arsdigita.bebop.event.*" %> -<%@ page import="com.arsdigita.sitenode.SiteNodePresentationManager" %> -<%@ page import="com.arsdigita.xml.Document" %> -<%@ page import="com.arsdigita.dispatcher.DispatcherHelper" %> - -<% request = DispatcherHelper.restoreRequestWrapper(request); %> - - - - - - <% left.add(new Label("left")); %> - - - - - <% right.setEncType("multipart/form-data"); - right.setMethod("POST"); - right.add(new FileUpload("upfile")); - right.add(new Submit("send")); - right.addProcessListener(new FormProcessListener() { - public void process(FormSectionEvent fse) { - System.out.println("Got uploaded file"); - } - }); - %> - - - - - - - - - - - diff --git a/ccm-core/web/packages/bebop-jsp/www/table.jsp b/ccm-core/web/packages/bebop-jsp/www/table.jsp deleted file mode 100755 index 5cba378fa..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/table.jsp +++ /dev/null @@ -1,59 +0,0 @@ -<%@ taglib prefix="define" uri="/WEB-INF/bebop-define.tld" %> -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> -<%@ page import="com.arsdigita.bebop.*" %> -<%@ page import="com.arsdigita.bebop.form.*" %> -<%@ page import="com.arsdigita.bebop.event.*" %> - - -<% - Object tableValues[][] = new Object[][] { - {"Bill Schneider", "bschneid@arsdigita.com", "developer"}, - {"Doug Harris", "dharris@arsdigita.com", "developer"}, - {"Roger Metcalf", "rmetcalf@arsdigita.com", "developer"}, - {"Rich James", "rjames@arsdigita.com", "sales/marketing"}, - {"Harry Greenspun", "harryg@arsdigita.com", "VP sales"} - }; - Object tableHeaders[] = new Object[] { - "Name", "Email", "title" - }; - - Table t = new Table(tableValues, tableHeaders); - t.setIdAttr("myTable"); - p.add(t); -%> - - - This is a demonstration of using JSP to style the contents -of a model-backed Table. The <show:table>, <show:thead>, -<show:tbody>, and <show:row> tags iterate over the rows and -columns of data from the model and the <show:col/> places the -component for an individual table column. - -

    If the Table contains a cell renderer, the <show:col/> contents -will be globally styled according to the rules for whatever component -is there. - -

    Note that any HTML <tr> and <td> tags must be manually -placed. But this is a good thing because then a regular JSP/HTML -editor can modify table colors, spacing, etc. - -<show:col>, - - - - - - - - - - - - - - - - -
    - - \ No newline at end of file diff --git a/ccm-core/web/packages/bebop-jsp/www/test-class.jsp b/ccm-core/web/packages/bebop-jsp/www/test-class.jsp deleted file mode 100755 index 38e9321ff..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/test-class.jsp +++ /dev/null @@ -1,15 +0,0 @@ -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> - -<%-- basic JSP integration test, taking page definition from class --%> - - -Showing a page from a class. - - -

      -
    • first name field: -
    • last name field: -
    -
    - -
    \ No newline at end of file diff --git a/ccm-core/web/packages/bebop-jsp/www/test-def.jsp b/ccm-core/web/packages/bebop-jsp/www/test-def.jsp deleted file mode 100755 index 1fe0cefb0..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/test-def.jsp +++ /dev/null @@ -1,22 +0,0 @@ -<%@ taglib prefix="define" uri="/WEB-INF/bebop-define.tld" %> -<%@ page import="com.arsdigita.bebop.*" %> -<%@ page import="com.arsdigita.bebop.parameters.*" %> -<%@ page import="com.arsdigita.bebop.form.*" %> -<%@ page import="com.arsdigita.bebop.event.*" %> - - -<% -Form myForm = new Form("myForm"); -final ServletRequest req = request; -myForm.addProcessListener(new FormProcessListener() { - public void process(FormSectionEvent fse) { - req.setAttribute("test-def.submitted", - fse.getFormData().getString("foo")); - } -}); -final StringParameter spFoo = new StringParameter("foo"); -myForm.add(new TextField(spFoo)); -myForm.add(new Submit("bar")); -p.add(myForm); -%> - diff --git a/ccm-core/web/packages/bebop-jsp/www/test-include.jsp b/ccm-core/web/packages/bebop-jsp/www/test-include.jsp deleted file mode 100755 index 7f7d4b76f..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/test-include.jsp +++ /dev/null @@ -1,19 +0,0 @@ -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> - - -This page is going to include another page. -
    -include another page: - -
    - - <%-- use static @include file=... to get around brokenness in JSP - 1.1 spec. --%> - <%@ include file="included.jsp" %> - -
    - -include done. - -
    - diff --git a/ccm-core/web/packages/bebop-jsp/www/test-master-def.jsp b/ccm-core/web/packages/bebop-jsp/www/test-master-def.jsp deleted file mode 100755 index c65b8d5f5..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/test-master-def.jsp +++ /dev/null @@ -1,17 +0,0 @@ -<%@ taglib prefix="define" uri="/WEB-INF/bebop-define.tld" %> -<%@ page import="com.arsdigita.bebop.*" %> -<%@ page import="com.arsdigita.bebop.form.*" %> -<%@ page import="com.arsdigita.bebop.event.*" %> - - - - <% myForm.addSubmissionListener(new FormSubmissionListener() { - public void submitted(FormSectionEvent fse) { - System.out.println("form submitted"); - } - }); - %> - - - - diff --git a/ccm-core/web/packages/bebop-jsp/www/test-master-static.jsp b/ccm-core/web/packages/bebop-jsp/www/test-master-static.jsp deleted file mode 100755 index c46d56bea..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/test-master-static.jsp +++ /dev/null @@ -1,18 +0,0 @@ -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> - -<%@ include file="test-master-def.jsp" %> - - -<%@ include file="static-header.jsp" %> - -this is a slave page, which will display a form included from within -another (master) page. - - input foo -
    - input bar -
    - -<%@ include file="static-footer.jsp" %> -
    - diff --git a/ccm-core/web/packages/bebop-jsp/www/test-master.jsp b/ccm-core/web/packages/bebop-jsp/www/test-master.jsp deleted file mode 100755 index c2dfdd293..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/test-master.jsp +++ /dev/null @@ -1,13 +0,0 @@ -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> - -<%@ include file="test-master-def.jsp" %> - - -this is a slave page, which will display a form included from within -another (master) page. - - input foo -
    - input bar -
    -
    diff --git a/ccm-core/web/packages/bebop-jsp/www/test.jsp b/ccm-core/web/packages/bebop-jsp/www/test.jsp deleted file mode 100755 index 107df25aa..000000000 --- a/ccm-core/web/packages/bebop-jsp/www/test.jsp +++ /dev/null @@ -1,24 +0,0 @@ -<%@ taglib prefix="show" uri="/WEB-INF/bebop-show.tld" %> - -<%-- basic JSP integration test, taking page definition from test-def --%> -<%@ include file="test-def.jsp" %> - - -this is a test. Let's see if we can insert the form here: - - -
      -
    • input widget: -
    • submit: -
    -
    - - <% if (request.getAttribute("test-def.submitted") != null) { %> - form was submitted with value - <%= request.getAttribute("test-def.submitted") %> - <% } %> -

    the advantage of not trying to parse this as XML is that we can - have badly-formed HTML here: -

    • one
    • two
    • three
    - -
    diff --git a/ccm-core/web/packages/categorization/README b/ccm-core/web/packages/categorization/README deleted file mode 100644 index c61c22c8a..000000000 --- a/ccm-core/web/packages/categorization/README +++ /dev/null @@ -1 +0,0 @@ -Seems not to be used by any package diff --git a/ccm-core/web/packages/categorization/xsl/categorization.xsl b/ccm-core/web/packages/categorization/xsl/categorization.xsl deleted file mode 100755 index 4242a23c6..000000000 --- a/ccm-core/web/packages/categorization/xsl/categorization.xsl +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - -
    - -
    -
    - - -
    -
    - -
    \ No newline at end of file diff --git a/ccm-core/web/packages/login/xsl/login_en.xsl b/ccm-core/web/packages/login/xsl/login_en.xsl deleted file mode 100755 index 4131c7332..000000000 --- a/ccm-core/web/packages/login/xsl/login_en.xsl +++ /dev/null @@ -1,173 +0,0 @@ - - - - -]> - - - - - - - - - - - - - - Log in - - - - - - - - -

      - - - - - - - - - - - -
    -
    -
    - - - - - - - - -
    -

    -   - - - - - - - - - - -


    - -

    What we tell other users about you

    - - In general we identify content that you've posted by your full name. In - an attempt to protect you from unsolicited bulk email (spam), we keep your - email address hidden except from other registered users. - -

    Basic Information

    - -
      -
    • Name:
    • -
    • User ID:
    • -
    • Email Address:
    • -
    • Personal URL:
    • -
    • Screen Name:
    • -
    - - - -
    - - - Our server can tell your browser to remember certain things, such as your - email address and password. This is convenient for you because, if you're - the only person who uses your computer, you won't have to keep telling us - your email address and password. -

    - It would be a very bad idea to choose this option if you're using a - shared computer in a library or school. Any subsequent user of this machine - would be able to masquerade as you on our service. -

    - Note that you can erase your saved email address and password by choosing - the "log out" option from your workspace. -

    - - - - Current users: Please enter your email and password below. -

    - New users: Please begin the registration process - by entering a valid email address and leaving the password field blank. - You will be directed to another form to complete your registration. -

      - - - - Current users: Please enter your screen name and password below. -

    - New users: Please begin the registration process - by entering your desired screen name and leaving the password field blank. - You will be directed to another form to complete your registration. -

      - - - -
    - Note: Our personalized web services require that your browser be enabled for JavaScript and cookies. -
    - - - You have been sent an email that will allow you to change your password. - - - - Unable to send password recovery information via email. -

    - Please contact the system administrator for further help in recovering your password. - - - -

    - - - - - -
    Note: For security reasons, the login page - expires after a certain interval to prevent malicious attackers from logging - in as you using cached browser passwords.
    -
    -
    - - - -

    My Control Centers

    -
    - - - diff --git a/ccm-core/web/packages/lucene/xsl/search.xsl b/ccm-core/web/packages/lucene/xsl/search.xsl deleted file mode 100755 index 9493ec3b3..000000000 --- a/ccm-core/web/packages/lucene/xsl/search.xsl +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TitleSummaryCreated OnModified OnScore
    - - - - - - - - - - - - - - -
    -
    -
    - -
    - - - - diff --git a/ccm-core/web/packages/search/xsl/search.xsl b/ccm-core/web/packages/search/xsl/search.xsl deleted file mode 100755 index 33336c006..000000000 --- a/ccm-core/web/packages/search/xsl/search.xsl +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - - - - - - - - - - - -
    - Displaying page - - of - - (maximum of - - results per page) -
    -
    -
    - - -
    - - - There were no results for your search - - - Displaying results - - through - - - (total: - - ) - - - -
    -
    - - - -
    - - <<<Previous - - Page - - of - - - Next >>> - -
    -
    -
    - - - - - - - - - - - - - - - - odd - even - - - - - -
    ScoreTitleSummary
    -
    - - - - - - - - - - - - - - - - - - - -
    - - - - -
    -
    - - - - Query: - - - - - - - - - Types: - - - - - - - - - Categories: - - - -
    - - - - - - checked - - - Include subcategories - -
    - -
    diff --git a/ccm-core/web/packages/templating/stylesheet-paths.txt b/ccm-core/web/packages/templating/stylesheet-paths.txt deleted file mode 100755 index 8d7be466e..000000000 --- a/ccm-core/web/packages/templating/stylesheet-paths.txt +++ /dev/null @@ -1,11 +0,0 @@ -# -*- text -*- -# This file locates stylesheets, if you are using the -# "PatternStylesheetResolver". Please read the Javadoc for that file for -# the full story. - -/packages/aplaws/xsl/::vhost::/::application::_::locale::.xsl -/packages/aplaws/xsl/::vhost::/::application::.xsl -/packages/aplaws/xsl/::application::_::locale::.xsl -/packages/aplaws/xsl/::application::.xsl -/packages/::application::/xsl/::application::_::locale::.xsl -/packages/::application::/xsl/::application::.xsl diff --git a/ccm-core/web/packages/toolbox/xsl/AbstractCollectionTable.xsl b/ccm-core/web/packages/toolbox/xsl/AbstractCollectionTable.xsl deleted file mode 100755 index 3380a4d40..000000000 --- a/ccm-core/web/packages/toolbox/xsl/AbstractCollectionTable.xsl +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
    -
    - - - 0 - asc - - - -   - - - -   - - {$internal-theme}/images/gray-triangle-up.gif{$internal-theme}/images/gray-triangle-down.gif - - - -   -   - - -   - - - - - - -
    diff --git a/ccm-core/web/packages/toolbox/xsl/ControlBar.xsl b/ccm-core/web/packages/toolbox/xsl/ControlBar.xsl deleted file mode 100755 index 5fef0a72e..000000000 --- a/ccm-core/web/packages/toolbox/xsl/ControlBar.xsl +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - -
    - - - - - - - -
    - - - - - | - -
    -
    -
    - -
    diff --git a/ccm-core/web/packages/ui/xsl/debug-panel.xsl b/ccm-core/web/packages/ui/xsl/debug-panel.xsl deleted file mode 100755 index b69689194..000000000 --- a/ccm-core/web/packages/ui/xsl/debug-panel.xsl +++ /dev/null @@ -1,326 +0,0 @@ - -]> - - - - - -
    -

    Debug Options

    - - -
    -
    - - - - - - Debug - -   - - - - - - - - - - - -

    Page structure

    -

    Legend:

    -
      -
    • Branch visible, self visible
    • -
    • Branch visible, self invisible
    • -
    • Branch invisible, self visible
    • -
    • Branch invisible, self-invisible
    • -
    • bold if selected
    • -
    -
    -      
    -        
    -          
    -        
    -      
    -    
    -

    XML before transformation

    -
    -      
    -        
    -      
    -    
    -

    Stack traces

    -
    - - - -
    -
    - - -

    State

    - -

    Selected:

    -
    - -

    Event: - Value: -

    -
    -
    - - -

    Params

    - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - font-weight: bold; - - - - selectedComponent - - - - - - - - - - - - - - - - - - - - - - color: LightPink; - color: FireBrick; - color: HotPink; - color: LightSteelBlue; - CANNOT GET HERE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &lf; - - - - - - - - - - - - - &lf; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &lf; - - - - - - - - - - - - - - - - - - - - - = - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -          
    -        
    -
    -
    - - - - - - -
    - -
    diff --git a/ccm-core/web/packages/ui/xsl/simple-page.xsl b/ccm-core/web/packages/ui/xsl/simple-page.xsl deleted file mode 100755 index 136744b4e..000000000 --- a/ccm-core/web/packages/ui/xsl/simple-page.xsl +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - <xsl:call-template name="bebop:pageTitle"/> - - - - - - - - -
    - -
    - - - - - -
    - - - - -
    -
    - - - - - -
    - - - - -
    -
    - - - - - -
    -
    - -
    -
    - - - - - -
    - - - - -
    -
    - - - - - - - -
    - - - - - -
    - - - - - -
    - - - - -
    -
    - - - - - -
    - - - - -
    -
    - - - - - -
    - -
    - - - - -
    - - -
    - - - - - - - - - - -
    - - - - - - - - - -
    - - - -
    - -
    -
    - -
    -
    - - -
    diff --git a/ccm-core/web/packages/ui/xsl/site-banner.xsl b/ccm-core/web/packages/ui/xsl/site-banner.xsl deleted file mode 100755 index def6807ca..000000000 --- a/ccm-core/web/packages/ui/xsl/site-banner.xsl +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - -
    - If you encounter any problems using - - http:/// - - please contact the - mailto: - site administrator. -
    -
    - -
    - - diff --git a/ccm-core/web/packages/ui/xsl/ui.xsl b/ccm-core/web/packages/ui/xsl/ui.xsl deleted file mode 100755 index 61aa5c401..000000000 --- a/ccm-core/web/packages/ui/xsl/ui.xsl +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/ccm-core/web/packages/ui/xsl/url-encoding.xsl b/ccm-core/web/packages/ui/xsl/url-encoding.xsl deleted file mode 100755 index 3fec605a4..000000000 --- a/ccm-core/web/packages/ui/xsl/url-encoding.xsl +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ -  ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ - - - !'()*-.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~ - - 0123456789ABCDEF - - - - - - - - - - - - - - - - - - - - Warning: string contains a character that is out of range! Substituting "?". - 63 - - - - - - - - - - - - - - - - - diff --git a/ccm-core/web/packages/ui/xsl/user-banner.xsl b/ccm-core/web/packages/ui/xsl/user-banner.xsl deleted file mode 100755 index 3a9df58a7..000000000 --- a/ccm-core/web/packages/ui/xsl/user-banner.xsl +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - -
           - - - - -
    - -   - -   - - -
    -
    - - - - - - - - - - -
    -
    -
    - - - - - - - - - - -
           - - - - -
    - You are not currently logged in -
    -
    - - - - - Login - -
    -
    -
    -
    - -
    diff --git a/ccm-core/web/packages/versioning/header.jspf b/ccm-core/web/packages/versioning/header.jspf index 6ffb01ef2..e3dab4fb1 100755 --- a/ccm-core/web/packages/versioning/header.jspf +++ b/ccm-core/web/packages/versioning/header.jspf @@ -1,6 +1,6 @@ <%= (String) request.getAttribute("title") %> - + diff --git a/ccm-core/web/themes/heirloom/apps/webdev-support/xsl/index.xsl b/ccm-core/web/themes/heirloom/apps/webdev-support/xsl/index.xsl index 2837a13f0..12e0974f0 100644 --- a/ccm-core/web/themes/heirloom/apps/webdev-support/xsl/index.xsl +++ b/ccm-core/web/themes/heirloom/apps/webdev-support/xsl/index.xsl @@ -5,7 +5,7 @@ xmlns:devsup="http://xmlns.redhat.com/waf/webdevsupport/1.0" version="1.0"> - + - - - - - - - Skip over navigation - | - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    - - - - - - | - - - - | - -
    -

    -
    -
    - -
    -
    -
    - - - - - - - - - - postOdd - - - postEven - - - - - - - - - - - - - - - - - - - - - - - -
    Thread:
    - - -
    - -
    -
    -
    -
    - - - ( - - ) - -
    - - -
    - - - Approve - - -   - - - - - Reject - - -   - - - - Edit - - -   - - - - Delete - - -   - - -   -   -   - - Reply - -   - Reply -   - -
    -
    -
    - -
    - Posted:  - -  by  - - - -
    - -
    - - - -
    - -
    -
    -
    - -
    -
    -
    - -
    - -
    - -
    - - -
    - {./description} -
    -
    -
    -
    -
    - - - - - - -
    - -
    -
    - - - -
    -
    - - - - - - - - - - <<< Previous - -   -   - - Page  -   - of  -   - -   -   - - - - - - - - - Next >>> - - -
    -
    -
    - - - -
    -
    - -
    -
    Filter by topic:
    - -
    - -
    -
    -
    -
    -
    -
    - - -
    -
    -
    Thread
    -
    Author
    -
    Replies
    -
    Last Post
    -
    - -
    No messages have been posted yet
    -
    - - -
    - - - - odd - - - even - - - - - -
    - - - -
    -
    - -
    -
    - -
    -
    - -
    - -
    -
    -
    - - - -
    - - -
    -
    -
    Subject
    -
    Replies
    -
    Author
    -
    Last Post
    -
    Status
    -
    Delete
    -
    -
    - -
    - You are not subscribed to any threads -
    -
    - - - - - postOdd - - - postEven - - - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    -
    -
    - - -
    - - - - false - - - -
    -
    - - - - -
    -
    -
    Topic
    -
    Threads
    -
    Last Post
    -
    - - - - - - postOdd - - - postEven - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    - -
    -
    - - - - - - n/a - - -
    -
    -
    - - - - - postOdd - - - postEven - - - -
    -
    - - - - - - - - - - - None - - - - None - - -
    -
    - -
    -
    - - - - - - n/a - - -
    -
    -
    -
    -
    - - -
    -
    Forum Alerts
    -
    - -
    -
    - - - - -
    -
    Thread Alerts
    -
    - -
    -
    - - - -
    - - - - -
    - - - - -
    -
    -
    -   -
    -
    -
    -
    - - - - - - -
    -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - forum member list -
    -
    - - - -
    -
    -
    -
    - - - -
    - -
    -
    -   -
    -
    - - -
    - -
    -
    -   -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - post - - - - - - - -
    -

    - -
    - -
    -
    - - - - - -
    -
    - -
    -
    - -
    -
    -
    - - - - -
    -
    -
    -
    -
    - -
    - - - - -
    -
    Subject:
    -
    - -
    - -
    -
    -
    -
    -
    Message:
    -
    - -
    - -
    -
    -
    - - - -
    -
    Topic:
    -
    - -
    -
    -
    - -
    - Original Message: -
    -
    -
    - -
    -
    -
    -
    - -
    - - - - - - -
    -
    - - - -
    -
    - -
    - Posted - -
    -
    -
    - -
    -
    -
    - - - - - - - - - - - - -
    -
    Image:
    -
    - -
    - -
    -
    -
    -
    -
    Description:
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - - - - - - -
    - No images attached to this post -
    -
    - - - - - - - postOdd - - - postEven - - - -
    -
    -
    - {@caption} -
    -
    - -
    -
    - Remove -
    -
    -
    -
    -
    -
    -
    - - - - - - -
    - -
    - -
    -
    File:
    -
    - -
    - -
    -
    -
    -
    -
    Description:
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - - - - -
    - No files attached to this post -
    -
    - -
    - - - - - - - - - - - - -
    File
    Description
    -
    - - - - - - - - - - - Remove
    -
    -
    -
    - -
    - -
    - - -
    - -
    -
    - - - - - - - Post New Message - - - Add Images (optional) - - - Add Files (optional) - - - Preview New Message - - - - - - - - - - - - Edit Message - - - Edit Images - - - Edit Files - - - Preview Changes - - - - - - - - - - - - Post reply - - - Add Images (optional) - - - Add Files (optional) - - - Preview Reply - - - - - - - - -
    -
    - - - -
    -

    -
    -
    - -
    -
    Name:
    -
    - -
    - -
    -
    -
    -
    -
    Description:
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - -
    -
    - - - - -
    - - - - - -
    -

    -
    -
    -
    - - -
    -
    -
    - -
    - -
    -
    -
    -
    -
    -
    - -
    - -
    -
    -
    -
    - - -
    - - - - - -
    -
    -
    -
    - -
    -
    -
    - -
    -
    -
    -
    - -
    - - -
    -
    - - - -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - - -
    - - -
    -
    - -
    -
    - -
    -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - - - -
    - -
    - - - - - - - - - - - - - - -
    - You are watching this thread. To stop watching this thread, click "Stop Watching Thread" below. -
    - -
    - - - - - - - - - - - -
    - - - - -
    - - - -
    -
    - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Forum + + + + + + + + + + + Skip over navigation + | + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + + | + + + + | + +
    +

    +
    +
    + +
    +
    +
    + + + + + + + + + + postOdd + + + postEven + + + + + + + + + + + + + + + + + + + + + + + +
    Thread:
    + + +
    + +
    +
    +
    +
    + + + ( + + ) + +
    + + +
    + + + Approve + + +   + + + + + Reject + + +   + + + + Edit + + +   + + + + Delete + + +   + + +   +   +   + + Reply + +   + Reply +   + +
    +
    +
    + +
    + Posted:  + +  by  + + + +
    + +
    + + + +
    + +
    +
    +
    + +
    +
    +
    + +
    + +
    + +
    + + +
    + {./description} +
    +
    +
    +
    +
    + + + + + + +
    + +
    +
    + + + +
    +
    + + + + + + + + + + <<< Previous + +   +   + + Page  +   + of  +   + +   +   + + + + + + + + + Next >>> + + +
    +
    +
    + + + +
    +
    + +
    +
    Filter by topic:
    + +
    + +
    +
    +
    +
    +
    +
    + + +
    +
    +
    Thread
    +
    Author
    +
    Replies
    +
    Last Post
    +
    + +
    No messages have been posted yet
    +
    + + +
    + + + + odd + + + even + + + + + +
    + + + +
    +
    + +
    +
    + +
    +
    + +
    + +
    +
    +
    + + + +
    + + +
    +
    +
    Subject
    +
    Replies
    +
    Author
    +
    Last Post
    +
    Status
    +
    Delete
    +
    +
    + +
    + You are not subscribed to any threads +
    +
    + + + + + postOdd + + + postEven + + + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    +
    + + +
    + + + + false + + + +
    +
    + + + + +
    +
    +
    Topic
    +
    Threads
    +
    Last Post
    +
    + + + + + + postOdd + + + postEven + + + +
    +
    + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    + + + + + + n/a + + +
    +
    +
    + + + + + postOdd + + + postEven + + + +
    +
    + + + + + + + + + + + None + + + + None + + +
    +
    + +
    +
    + + + + + + n/a + + +
    +
    +
    +
    +
    + + +
    +
    Forum Alerts
    +
    + +
    +
    + + + + +
    +
    Thread Alerts
    +
    + +
    +
    + + + +
    + + + + +
    + + + + +
    +
    +
    +   +
    +
    +
    +
    + + + + + + +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + forum member list +
    +
    + + + +
    +
    +
    +
    + + + +
    + +
    +
    +   +
    +
    + + +
    + +
    +
    +   +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + post + + + + + + + +
    +

    + +
    + +
    +
    + + + + + +
    +
    + +
    +
    + +
    +
    +
    + + + + +
    +
    +
    +
    +
    + +
    + + + + +
    +
    Subject:
    +
    + +
    + +
    +
    +
    +
    +
    Message:
    +
    + +
    + +
    +
    +
    + + + +
    +
    Topic:
    +
    + +
    +
    +
    + +
    + Original Message: +
    +
    +
    + +
    +
    +
    +
    + +
    + + + + + + +
    +
    + + + +
    +
    + +
    + Posted + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + + +
    +
    Image:
    +
    + +
    + +
    +
    +
    +
    +
    Description:
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + + + + + + +
    + No images attached to this post +
    +
    + + + + + + + postOdd + + + postEven + + + +
    +
    +
    + {@caption} +
    +
    + +
    +
    + Remove +
    +
    +
    +
    +
    +
    +
    + + + + + + +
    + +
    + +
    +
    File:
    +
    + +
    + +
    +
    +
    +
    +
    Description:
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + + + + +
    + No files attached to this post +
    +
    + +
    + + + + + + + + + + + + +
    File
    Description
    +
    + + + + + + + + + + + Remove
    +
    +
    +
    + +
    + +
    + + +
    + +
    +
    + + + + + + + Post New Message + + + Add Images (optional) + + + Add Files (optional) + + + Preview New Message + + + + + + + + + + + + Edit Message + + + Edit Images + + + Edit Files + + + Preview Changes + + + + + + + + + + + + Post reply + + + Add Images (optional) + + + Add Files (optional) + + + Preview Reply + + + + + + + + +
    +
    + + + +
    +

    +
    +
    + +
    +
    Name:
    +
    + +
    + +
    +
    +
    +
    +
    Description:
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + +
    +
    + + + + +
    + + + + + +
    +

    +
    +
    +
    + + +
    +
    +
    + +
    + +
    +
    +
    +
    +
    +
    + +
    + +
    +
    +
    +
    + + +
    + + + + + +
    +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    + +
    + + +
    +
    + + + +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + + +
    + + +
    +
    + +
    +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + + + + + + + + +
    + You are watching this thread. To stop watching this thread, click "Stop Watching Thread" below. +
    + +
    + + + + + + + + + + + +
    + + + + +
    + + + +
    +
    +
    + + diff --git a/ccm-ldn-aplaws/web/themes/static/aplaws/forum-example/forum-index.css b/ccm-ldn-aplaws/web/themes/static/aplaws/forum-example/forum-index.css index 74c5d3a59..c398a3e27 100644 --- a/ccm-ldn-aplaws/web/themes/static/aplaws/forum-example/forum-index.css +++ b/ccm-ldn-aplaws/web/themes/static/aplaws/forum-example/forum-index.css @@ -1,7 +1,7 @@ @import url("css/main.css"); /* Chris presumably forgot the ! to comment the following 2 lines out -/* <--@import url("/css/acs-master.css");--> */ -/* <--@import url("/css/tabbed-pane/tabbed-pane.css");--> */ +/* <--@import url("/themes/heirloom/css/acs-master.css");--> */ +/* <--@import url("/themes/heirloom/css/tabbed-pane/tabbed-pane.css");--> */ body { diff --git a/ccm-ldn-aplaws/web/themes/static/aplaws/forum-index.css b/ccm-ldn-aplaws/web/themes/static/aplaws/forum-index.css index 74c5d3a59..c398a3e27 100644 --- a/ccm-ldn-aplaws/web/themes/static/aplaws/forum-index.css +++ b/ccm-ldn-aplaws/web/themes/static/aplaws/forum-index.css @@ -1,7 +1,7 @@ @import url("css/main.css"); /* Chris presumably forgot the ! to comment the following 2 lines out -/* <--@import url("/css/acs-master.css");--> */ -/* <--@import url("/css/tabbed-pane/tabbed-pane.css");--> */ +/* <--@import url("/themes/heirloom/css/acs-master.css");--> */ +/* <--@import url("/themes/heirloom/css/tabbed-pane/tabbed-pane.css");--> */ body { diff --git a/ccm-ldn-aplaws/web/themes/static/aplaws/forum-index.xsl b/ccm-ldn-aplaws/web/themes/static/aplaws/forum-index.xsl index 82314d163..439674c51 100644 --- a/ccm-ldn-aplaws/web/themes/static/aplaws/forum-index.xsl +++ b/ccm-ldn-aplaws/web/themes/static/aplaws/forum-index.xsl @@ -1,1306 +1,1306 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Forum - - - - - - - - - - Skip over navigation - | - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    - - - - - - | - - - - | - -
    -

    -
    -
    - -
    -
    -
    - - - - - - - - - - postOdd - - - postEven - - - - - - - - - - - - - - - - - - - - - - - -
    Thread:
    - - -
    - -
    -
    -
    -
    - - - ( - - ) - -
    - - -
    - - - Approve - - -   - - - - - Reject - - -   - - - - Edit - - -   - - - - Delete - - -   - - -   -   -   - - Reply - -   - Reply -   - -
    -
    -
    - -
    - Posted:  - -  by  - - - -
    - -
    - - - -
    - -
    -
    -
    - -
    -
    -
    - -
    - -
    - -
    - - -
    - {./description} -
    -
    -
    -
    -
    - - - - - - -
    - -
    -
    - - - -
    -
    - - - - - - - - - - <<< Previous - -   -   - - Page  -   - of  -   - -   -   - - - - - - - - - Next >>> - - -
    -
    -
    - - - -
    -
    - -
    -
    Filter by topic:
    - -
    - -
    -
    -
    -
    -
    -
    - - -
    -
    -
    Thread
    -
    Author
    -
    Replies
    -
    Last Post
    -
    - -
    No messages have been posted yet
    -
    - - -
    - - - - odd - - - even - - - - - -
    - - - -
    -
    - -
    -
    - -
    -
    - -
    - -
    -
    -
    - - - -
    - - -
    -
    -
    Subject
    -
    Replies
    -
    Author
    -
    Last Post
    -
    Status
    -
    Delete
    -
    -
    - -
    - You are not subscribed to any threads -
    -
    - - - - - postOdd - - - postEven - - - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    -
    -
    - - -
    - - - - false - - - -
    -
    - - - - -
    -
    -
    Topic
    -
    Threads
    -
    Last Post
    -
    - - - - - - postOdd - - - postEven - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    - -
    -
    - - - - - - n/a - - -
    -
    -
    - - - - - postOdd - - - postEven - - - -
    -
    - - - - - - - - - - - None - - - - None - - -
    -
    - -
    -
    - - - - - - n/a - - -
    -
    -
    -
    -
    - - -
    -
    Forum Alerts
    -
    - -
    -
    - - - - -
    -
    Thread Alerts
    -
    - -
    -
    - - - -
    - - - - -
    - - - - -
    -
    -
    -   -
    -
    -
    -
    - - - - - - -
    -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - forum member list -
    -
    - - - -
    -
    -
    -
    - - - -
    - -
    -
    -   -
    -
    - - -
    - -
    -
    -   -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - post - - - - - - - -
    -

    - -
    - -
    -
    - - - - - -
    -
    - -
    -
    - -
    -
    -
    - - - - -
    -
    -
    -
    -
    - -
    - - - - -
    -
    Subject:
    -
    - -
    - -
    -
    -
    -
    -
    Message:
    -
    - -
    - -
    -
    -
    - - - -
    -
    Topic:
    -
    - -
    -
    -
    - -
    - Original Message: -
    -
    -
    - -
    -
    -
    -
    - -
    - - - - - - -
    -
    - - - -
    -
    - -
    - Posted - -
    -
    -
    - -
    -
    -
    - - - - - - - - - - - - -
    -
    Image:
    -
    - -
    - -
    -
    -
    -
    -
    Description:
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - - - - - - -
    - No images attached to this post -
    -
    - - - - - - - postOdd - - - postEven - - - -
    -
    -
    - {@caption} -
    -
    - -
    -
    - Remove -
    -
    -
    -
    -
    -
    -
    - - - - - - -
    - -
    - -
    -
    File:
    -
    - -
    - -
    -
    -
    -
    -
    Description:
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - - - - -
    - No files attached to this post -
    -
    - -
    - - - - - - - - - - - - -
    File
    Description
    -
    - - - - - - - - - - - Remove
    -
    -
    -
    - -
    - -
    - - -
    - -
    -
    - - - - - - - Post New Message - - - Add Images (optional) - - - Add Files (optional) - - - Preview New Message - - - - - - - - - - - - Edit Message - - - Edit Images - - - Edit Files - - - Preview Changes - - - - - - - - - - - - Post reply - - - Add Images (optional) - - - Add Files (optional) - - - Preview Reply - - - - - - - - -
    -
    - - - -
    -

    -
    -
    - -
    -
    Name:
    -
    - -
    - -
    -
    -
    -
    -
    Description:
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - -
    -
    - - - - -
    - - - - - -
    -

    -
    -
    -
    - - -
    -
    -
    - -
    - -
    -
    -
    -
    -
    -
    - -
    - -
    -
    -
    -
    - - -
    - - - - - -
    -
    -
    -
    - -
    -
    -
    - -
    -
    -
    -
    - -
    - - -
    -
    - - - -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - - -
    - - -
    -
    - -
    -
    - -
    -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - - - -
    - -
    - - - - - - - - - - - - - - -
    - You are watching this thread. To stop watching this thread, click "Stop Watching Thread" below. -
    - -
    - - - - - - - - - - - -
    - - - - -
    - - - -
    -
    -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Forum + + + + + + + + + + Skip over navigation + | + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + + | + + + + | + +
    +

    +
    +
    + +
    +
    +
    + + + + + + + + + + postOdd + + + postEven + + + + + + + + + + + + + + + + + + + + + + + +
    Thread:
    + + +
    + +
    +
    +
    +
    + + + ( + + ) + +
    + + +
    + + + Approve + + +   + + + + + Reject + + +   + + + + Edit + + +   + + + + Delete + + +   + + +   +   +   + + Reply + +   + Reply +   + +
    +
    +
    + +
    + Posted:  + +  by  + + + +
    + +
    + + + +
    + +
    +
    +
    + +
    +
    +
    + +
    + +
    + +
    + + +
    + {./description} +
    +
    +
    +
    +
    + + + + + + +
    + +
    +
    + + + +
    +
    + + + + + + + + + + <<< Previous + +   +   + + Page  +   + of  +   + +   +   + + + + + + + + + Next >>> + + +
    +
    +
    + + + +
    +
    + +
    +
    Filter by topic:
    + +
    + +
    +
    +
    +
    +
    +
    + + +
    +
    +
    Thread
    +
    Author
    +
    Replies
    +
    Last Post
    +
    + +
    No messages have been posted yet
    +
    + + +
    + + + + odd + + + even + + + + + +
    + + + +
    +
    + +
    +
    + +
    +
    + +
    + +
    +
    +
    + + + +
    + + +
    +
    +
    Subject
    +
    Replies
    +
    Author
    +
    Last Post
    +
    Status
    +
    Delete
    +
    +
    + +
    + You are not subscribed to any threads +
    +
    + + + + + postOdd + + + postEven + + + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    +
    + + +
    + + + + false + + + +
    +
    + + + + +
    +
    +
    Topic
    +
    Threads
    +
    Last Post
    +
    + + + + + + postOdd + + + postEven + + + +
    +
    + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    + + + + + + n/a + + +
    +
    +
    + + + + + postOdd + + + postEven + + + +
    +
    + + + + + + + + + + + None + + + + None + + +
    +
    + +
    +
    + + + + + + n/a + + +
    +
    +
    +
    +
    + + +
    +
    Forum Alerts
    +
    + +
    +
    + + + + +
    +
    Thread Alerts
    +
    + +
    +
    + + + +
    + + + + +
    + + + + +
    +
    +
    +   +
    +
    +
    +
    + + + + + + +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + forum member list +
    +
    + + + +
    +
    +
    +
    + + + +
    + +
    +
    +   +
    +
    + + +
    + +
    +
    +   +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + post + + + + + + + +
    +

    + +
    + +
    +
    + + + + + +
    +
    + +
    +
    + +
    +
    +
    + + + + +
    +
    +
    +
    +
    + +
    + + + + +
    +
    Subject:
    +
    + +
    + +
    +
    +
    +
    +
    Message:
    +
    + +
    + +
    +
    +
    + + + +
    +
    Topic:
    +
    + +
    +
    +
    + +
    + Original Message: +
    +
    +
    + +
    +
    +
    +
    + +
    + + + + + + +
    +
    + + + +
    +
    + +
    + Posted + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + + +
    +
    Image:
    +
    + +
    + +
    +
    +
    +
    +
    Description:
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + + + + + + +
    + No images attached to this post +
    +
    + + + + + + + postOdd + + + postEven + + + +
    +
    +
    + {@caption} +
    +
    + +
    +
    + Remove +
    +
    +
    +
    +
    +
    +
    + + + + + + +
    + +
    + +
    +
    File:
    +
    + +
    + +
    +
    +
    +
    +
    Description:
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + + + + +
    + No files attached to this post +
    +
    + +
    + + + + + + + + + + + + +
    File
    Description
    +
    + + + + + + + + + + + Remove
    +
    +
    +
    + +
    + +
    + + +
    + +
    +
    + + + + + + + Post New Message + + + Add Images (optional) + + + Add Files (optional) + + + Preview New Message + + + + + + + + + + + + Edit Message + + + Edit Images + + + Edit Files + + + Preview Changes + + + + + + + + + + + + Post reply + + + Add Images (optional) + + + Add Files (optional) + + + Preview Reply + + + + + + + + +
    +
    + + + +
    +

    +
    +
    + +
    +
    Name:
    +
    + +
    + +
    +
    +
    +
    +
    Description:
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + +
    +
    + + + + +
    + + + + + +
    +

    +
    +
    +
    + + +
    +
    +
    + +
    + +
    +
    +
    +
    +
    +
    + +
    + +
    +
    +
    +
    + + +
    + + + + + +
    +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    + +
    + + +
    +
    + + + +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + + +
    + + +
    +
    + +
    +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + + + + + + + + +
    + You are watching this thread. To stop watching this thread, click "Stop Watching Thread" below. +
    + +
    + + + + + + + + + + + +
    + + + + +
    + + + +
    +
    +
    diff --git a/ccm-ldn-atoz/web/themes/heirloom/apps/atoz/xsl/index.xsl b/ccm-ldn-atoz/web/themes/heirloom/apps/atoz/xsl/index.xsl index 5e4e2e973..f5d83f748 100755 --- a/ccm-ldn-atoz/web/themes/heirloom/apps/atoz/xsl/index.xsl +++ b/ccm-ldn-atoz/web/themes/heirloom/apps/atoz/xsl/index.xsl @@ -6,13 +6,6 @@ xmlns:atoz="http://xmlns.redhat.com/atoz/1.0" version="1.0"> - - diff --git a/ccm-ldn-search/web/themes/heirloom/apps/search/xsl/index.xsl b/ccm-ldn-search/web/themes/heirloom/apps/search/xsl/index.xsl index 638367453..7deb79957 100755 --- a/ccm-ldn-search/web/themes/heirloom/apps/search/xsl/index.xsl +++ b/ccm-ldn-search/web/themes/heirloom/apps/search/xsl/index.xsl @@ -4,12 +4,6 @@ xmlns:bebop="http://www.arsdigita.com/bebop/1.0" version="1.0"> - diff --git a/ccm-quasi-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css b/ccm-quasi-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css index 74c5d3a59..c398a3e27 100644 --- a/ccm-quasi-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css +++ b/ccm-quasi-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css @@ -1,7 +1,7 @@ @import url("css/main.css"); /* Chris presumably forgot the ! to comment the following 2 lines out -/* <--@import url("/css/acs-master.css");--> */ -/* <--@import url("/css/tabbed-pane/tabbed-pane.css");--> */ +/* <--@import url("/themes/heirloom/css/acs-master.css");--> */ +/* <--@import url("/themes/heirloom/css/tabbed-pane/tabbed-pane.css");--> */ body { diff --git a/ccm-quasi-bundle/web/themes/static/aplaws-generic/forum-index.css b/ccm-quasi-bundle/web/themes/static/aplaws-generic/forum-index.css index 74c5d3a59..c398a3e27 100644 --- a/ccm-quasi-bundle/web/themes/static/aplaws-generic/forum-index.css +++ b/ccm-quasi-bundle/web/themes/static/aplaws-generic/forum-index.css @@ -1,7 +1,7 @@ @import url("css/main.css"); /* Chris presumably forgot the ! to comment the following 2 lines out -/* <--@import url("/css/acs-master.css");--> */ -/* <--@import url("/css/tabbed-pane/tabbed-pane.css");--> */ +/* <--@import url("/themes/heirloom/css/acs-master.css");--> */ +/* <--@import url("/themes/heirloom/css/tabbed-pane/tabbed-pane.css");--> */ body { diff --git a/ccm-quasi-bundle/web/themes/static/aplaws-generic/navigation-admin.css b/ccm-quasi-bundle/web/themes/static/aplaws-generic/navigation-admin.css index 49dd80c4e..41b5cdea9 100644 --- a/ccm-quasi-bundle/web/themes/static/aplaws-generic/navigation-admin.css +++ b/ccm-quasi-bundle/web/themes/static/aplaws-generic/navigation-admin.css @@ -1,2 +1,2 @@ -@import url("/css/acs-master.css"); +@import url("/themes/heirloom/css/acs-master.css"); @import url("/themes/heirloom/apps/navigation/xsl/admin.css"); diff --git a/ccm-quasi-bundle/web/themes/static/aplaws-generic/shortcuts-index.css b/ccm-quasi-bundle/web/themes/static/aplaws-generic/shortcuts-index.css index 4210f401a..8b66ce665 100644 --- a/ccm-quasi-bundle/web/themes/static/aplaws-generic/shortcuts-index.css +++ b/ccm-quasi-bundle/web/themes/static/aplaws-generic/shortcuts-index.css @@ -1 +1 @@ -@import url(/css/acs-master.css); +@import url(/themes/heirloom/css/acs-master.css); diff --git a/ccm-quasi-bundle/web/themes/static/aplaws-generic/subsite-index.css b/ccm-quasi-bundle/web/themes/static/aplaws-generic/subsite-index.css index 4210f401a..8b66ce665 100644 --- a/ccm-quasi-bundle/web/themes/static/aplaws-generic/subsite-index.css +++ b/ccm-quasi-bundle/web/themes/static/aplaws-generic/subsite-index.css @@ -1 +1 @@ -@import url(/css/acs-master.css); +@import url(/themes/heirloom/css/acs-master.css); diff --git a/ccm-quasi-bundle/web/themes/static/aplaws-generic/terms-index.css b/ccm-quasi-bundle/web/themes/static/aplaws-generic/terms-index.css index 15fd56956..b3e1b4f42 100644 --- a/ccm-quasi-bundle/web/themes/static/aplaws-generic/terms-index.css +++ b/ccm-quasi-bundle/web/themes/static/aplaws-generic/terms-index.css @@ -1,6 +1,6 @@ -@import url(/css/acs-master.css); +@import url(/themes/heirloom/css/acs-master.css); /* Following import is valid if terms is executed in its own */ /* web application context (ccm-ldn-terms) */ /* @import url(/ccm-ldn-terms/__ccm__/apps/terms/xsl/index.css); */ /* import if installed in the main (common) web context */ -@import url(/__ccm__/apps/terms/xsl/index.css); +@import url(/themes/heirloom/apps/terms/xsl/index.css); diff --git a/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-example/categorised-forum/forum-index.xsl b/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-example/categorised-forum/forum-index.xsl index 59fde8128..94f34946a 100644 --- a/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-example/categorised-forum/forum-index.xsl +++ b/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-example/categorised-forum/forum-index.xsl @@ -1,1312 +1,1312 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Forum - - - - - - - - - - - Skip over navigation - | - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    - - - - - - | - - - - | - -
    -

    -
    -
    - -
    -
    -
    - - - - - - - - - - postOdd - - - postEven - - - - - - - - - - - - - - - - - - - - - - - -
    Thread:
    - - -
    - -
    -
    -
    -
    - - - ( - - ) - -
    - - -
    - - - Approve - - -   - - - - - Reject - - -   - - - - Edit - - -   - - - - Delete - - -   - - -   -   -   - - Reply - -   - Reply -   - -
    -
    -
    - -
    - Posted:  - -  by  - - - -
    - -
    - - - -
    - -
    -
    -
    - -
    -
    -
    - -
    - -
    - -
    - - -
    - {./description} -
    -
    -
    -
    -
    - - - - - - -
    - -
    -
    - - - -
    -
    - - - - - - - - - - <<< Previous - -   -   - - Page  -   - of  -   - -   -   - - - - - - - - - Next >>> - - -
    -
    -
    - - - -
    -
    - -
    -
    Filter by topic:
    - -
    - -
    -
    -
    -
    -
    -
    - - -
    -
    -
    Thread
    -
    Author
    -
    Replies
    -
    Last Post
    -
    - -
    No messages have been posted yet
    -
    - - -
    - - - - odd - - - even - - - - - -
    - - - -
    -
    - -
    -
    - -
    -
    - -
    - -
    -
    -
    - - - -
    - - -
    -
    -
    Subject
    -
    Replies
    -
    Author
    -
    Last Post
    -
    Status
    -
    Delete
    -
    -
    - -
    - You are not subscribed to any threads -
    -
    - - - - - postOdd - - - postEven - - - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    -
    -
    - - -
    - - - - false - - - -
    -
    - - - - -
    -
    -
    Topic
    -
    Threads
    -
    Last Post
    -
    - - - - - - postOdd - - - postEven - - - -
    -
    - - - - - - - - - - - - - - - - - -
    -
    - -
    -
    - - - - - - n/a - - -
    -
    -
    - - - - - postOdd - - - postEven - - - -
    -
    - - - - - - - - - - - None - - - - None - - -
    -
    - -
    -
    - - - - - - n/a - - -
    -
    -
    -
    -
    - - -
    -
    Forum Alerts
    -
    - -
    -
    - - - - -
    -
    Thread Alerts
    -
    - -
    -
    - - - -
    - - - - -
    - - - - -
    -
    -
    -   -
    -
    -
    -
    - - - - - - -
    -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - forum member list -
    -
    - - - -
    -
    -
    -
    - - - -
    - -
    -
    -   -
    -
    - - -
    - -
    -
    -   -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - post - - - - - - - -
    -

    - -
    - -
    -
    - - - - - -
    -
    - -
    -
    - -
    -
    -
    - - - - -
    -
    -
    -
    -
    - -
    - - - - -
    -
    Subject:
    -
    - -
    - -
    -
    -
    -
    -
    Message:
    -
    - -
    - -
    -
    -
    - - - -
    -
    Topic:
    -
    - -
    -
    -
    - -
    - Original Message: -
    -
    -
    - -
    -
    -
    -
    - -
    - - - - - - -
    -
    - - - -
    -
    - -
    - Posted - -
    -
    -
    - -
    -
    -
    - - - - - - - - - - - - -
    -
    Image:
    -
    - -
    - -
    -
    -
    -
    -
    Description:
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - - - - - - -
    - No images attached to this post -
    -
    - - - - - - - postOdd - - - postEven - - - -
    -
    -
    - {@caption} -
    -
    - -
    -
    - Remove -
    -
    -
    -
    -
    -
    -
    - - - - - - -
    - -
    - -
    -
    File:
    -
    - -
    - -
    -
    -
    -
    -
    Description:
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - - - - -
    - No files attached to this post -
    -
    - -
    - - - - - - - - - - - - -
    File
    Description
    -
    - - - - - - - - - - - Remove
    -
    -
    -
    - -
    - -
    - - -
    - -
    -
    - - - - - - - Post New Message - - - Add Images (optional) - - - Add Files (optional) - - - Preview New Message - - - - - - - - - - - - Edit Message - - - Edit Images - - - Edit Files - - - Preview Changes - - - - - - - - - - - - Post reply - - - Add Images (optional) - - - Add Files (optional) - - - Preview Reply - - - - - - - - -
    -
    - - - -
    -

    -
    -
    - -
    -
    Name:
    -
    - -
    - -
    -
    -
    -
    -
    Description:
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - -
    -
    - - - - -
    - - - - - -
    -

    -
    -
    -
    - - -
    -
    -
    - -
    - -
    -
    -
    -
    -
    -
    - -
    - -
    -
    -
    -
    - - -
    - - - - - -
    -
    -
    -
    - -
    -
    -
    - -
    -
    -
    -
    - -
    - - -
    -
    - - - -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - - -
    - - -
    -
    - -
    -
    - -
    -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - - - -
    - -
    - - - - - - - - - - - - - - -
    - You are watching this thread. To stop watching this thread, click "Stop Watching Thread" below. -
    - -
    - - - - - - - - - - - -
    - - - - -
    - - - -
    -
    -
    - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Forum + + + + + + + + + + + Skip over navigation + | + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + + | + + + + | + +
    +

    +
    +
    + +
    +
    +
    + + + + + + + + + + postOdd + + + postEven + + + + + + + + + + + + + + + + + + + + + + + +
    Thread:
    + + +
    + +
    +
    +
    +
    + + + ( + + ) + +
    + + +
    + + + Approve + + +   + + + + + Reject + + +   + + + + Edit + + +   + + + + Delete + + +   + + +   +   +   + + Reply + +   + Reply +   + +
    +
    +
    + +
    + Posted:  + +  by  + + + +
    + +
    + + + +
    + +
    +
    +
    + +
    +
    +
    + +
    + +
    + +
    + + +
    + {./description} +
    +
    +
    +
    +
    + + + + + + +
    + +
    +
    + + + +
    +
    + + + + + + + + + + <<< Previous + +   +   + + Page  +   + of  +   + +   +   + + + + + + + + + Next >>> + + +
    +
    +
    + + + +
    +
    + +
    +
    Filter by topic:
    + +
    + +
    +
    +
    +
    +
    +
    + + +
    +
    +
    Thread
    +
    Author
    +
    Replies
    +
    Last Post
    +
    + +
    No messages have been posted yet
    +
    + + +
    + + + + odd + + + even + + + + + +
    + + + +
    +
    + +
    +
    + +
    +
    + +
    + +
    +
    +
    + + + +
    + + +
    +
    +
    Subject
    +
    Replies
    +
    Author
    +
    Last Post
    +
    Status
    +
    Delete
    +
    +
    + +
    + You are not subscribed to any threads +
    +
    + + + + + postOdd + + + postEven + + + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    +
    + + +
    + + + + false + + + +
    +
    + + + + +
    +
    +
    Topic
    +
    Threads
    +
    Last Post
    +
    + + + + + + postOdd + + + postEven + + + +
    +
    + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    + + + + + + n/a + + +
    +
    +
    + + + + + postOdd + + + postEven + + + +
    +
    + + + + + + + + + + + None + + + + None + + +
    +
    + +
    +
    + + + + + + n/a + + +
    +
    +
    +
    +
    + + +
    +
    Forum Alerts
    +
    + +
    +
    + + + + +
    +
    Thread Alerts
    +
    + +
    +
    + + + +
    + + + + +
    + + + + +
    +
    +
    +   +
    +
    +
    +
    + + + + + + +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + forum member list +
    +
    + + + +
    +
    +
    +
    + + + +
    + +
    +
    +   +
    +
    + + +
    + +
    +
    +   +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + post + + + + + + + +
    +

    + +
    + +
    +
    + + + + + +
    +
    + +
    +
    + +
    +
    +
    + + + + +
    +
    +
    +
    +
    + +
    + + + + +
    +
    Subject:
    +
    + +
    + +
    +
    +
    +
    +
    Message:
    +
    + +
    + +
    +
    +
    + + + +
    +
    Topic:
    +
    + +
    +
    +
    + +
    + Original Message: +
    +
    +
    + +
    +
    +
    +
    + +
    + + + + + + +
    +
    + + + +
    +
    + +
    + Posted + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + + +
    +
    Image:
    +
    + +
    + +
    +
    +
    +
    +
    Description:
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + + + + + + +
    + No images attached to this post +
    +
    + + + + + + + postOdd + + + postEven + + + +
    +
    +
    + {@caption} +
    +
    + +
    +
    + Remove +
    +
    +
    +
    +
    +
    +
    + + + + + + +
    + +
    + +
    +
    File:
    +
    + +
    + +
    +
    +
    +
    +
    Description:
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + + + + +
    + No files attached to this post +
    +
    + +
    + + + + + + + + + + + + +
    File
    Description
    +
    + + + + + + + + + + + Remove
    +
    +
    +
    + +
    + +
    + + +
    + +
    +
    + + + + + + + Post New Message + + + Add Images (optional) + + + Add Files (optional) + + + Preview New Message + + + + + + + + + + + + Edit Message + + + Edit Images + + + Edit Files + + + Preview Changes + + + + + + + + + + + + Post reply + + + Add Images (optional) + + + Add Files (optional) + + + Preview Reply + + + + + + + + +
    +
    + + + +
    +

    +
    +
    + +
    +
    Name:
    +
    + +
    + +
    +
    +
    +
    +
    Description:
    +
    + +
    + +
    +
    +
    +
    +
    + +
    +
    +
    + +
    +
    + + + + +
    + + + + + +
    +

    +
    +
    +
    + + +
    +
    +
    + +
    + +
    +
    +
    +
    +
    +
    + +
    + +
    +
    +
    +
    + + +
    + + + + + +
    +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    + +
    + + +
    +
    + + + +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + + +
    + + +
    +
    + +
    +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + + + + + + + + +
    + You are watching this thread. To stop watching this thread, click "Stop Watching Thread" below. +
    + +
    + + + + + + + + + + + +
    + + + + +
    + + + +
    +
    +
    + + diff --git a/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css b/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css index 74c5d3a59..c398a3e27 100644 --- a/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css +++ b/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-example/forum-index.css @@ -1,7 +1,7 @@ @import url("css/main.css"); /* Chris presumably forgot the ! to comment the following 2 lines out -/* <--@import url("/css/acs-master.css");--> */ -/* <--@import url("/css/tabbed-pane/tabbed-pane.css");--> */ +/* <--@import url("/themes/heirloom/css/acs-master.css");--> */ +/* <--@import url("/themes/heirloom/css/tabbed-pane/tabbed-pane.css");--> */ body { diff --git a/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-index.css b/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-index.css index 74c5d3a59..c398a3e27 100644 --- a/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-index.css +++ b/ccm-sci-bundle/web/themes/static/aplaws-generic/forum-index.css @@ -1,7 +1,7 @@ @import url("css/main.css"); /* Chris presumably forgot the ! to comment the following 2 lines out -/* <--@import url("/css/acs-master.css");--> */ -/* <--@import url("/css/tabbed-pane/tabbed-pane.css");--> */ +/* <--@import url("/themes/heirloom/css/acs-master.css");--> */ +/* <--@import url("/themes/heirloom/css/tabbed-pane/tabbed-pane.css");--> */ body { diff --git a/ccm-shortcuts/web/themes/heirloom/apps/shortcuts/xsl/index.xsl b/ccm-shortcuts/web/themes/heirloom/apps/shortcuts/xsl/index.xsl index d754c48c5..70e20f706 100755 --- a/ccm-shortcuts/web/themes/heirloom/apps/shortcuts/xsl/index.xsl +++ b/ccm-shortcuts/web/themes/heirloom/apps/shortcuts/xsl/index.xsl @@ -4,10 +4,6 @@ xmlns:shortcuts="http://www.arsdigita.com/shortcuts/1.0" xmlns:bebop="http://www.arsdigita.com/bebop/1.0"> - diff --git a/ccm-themedirector/web/themes/heirloom/apps/theme-director/xsl/index.xsl b/ccm-themedirector/web/themes/heirloom/apps/theme-director/xsl/index.xsl index 89ca10d89..0a07ab1a8 100755 --- a/ccm-themedirector/web/themes/heirloom/apps/theme-director/xsl/index.xsl +++ b/ccm-themedirector/web/themes/heirloom/apps/theme-director/xsl/index.xsl @@ -5,8 +5,8 @@ version="1.0">