gatein SVN: r6771 - in portal/branches/branch-GTNPORTAL-1921/component/web/resources/src: test/java/org/exoplatform/portal/resource and 2 other directories.
by do-not-reply@jboss.org
Author: hoang_to
Date: 2011-06-28 21:35:38 -0400 (Tue, 28 Jun 2011)
New Revision: 6771
Added:
portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/CommentBlockHandler.java
portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkipCommentReader.java
portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/test/java/org/exoplatform/portal/resource/TestSkipCommentReader.java
portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/test/resources/skin/
portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/test/resources/skin/test_1.css
Modified:
portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkinService.java
Log:
GTNPORTAL-1943: SkinService.processCSSRecursively processed even comment block
Added: portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/CommentBlockHandler.java
===================================================================
--- portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/CommentBlockHandler.java (rev 0)
+++ portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/CommentBlockHandler.java 2011-06-29 01:35:38 UTC (rev 6771)
@@ -0,0 +1,99 @@
+/*
+ * Copyright (C) 2011 eXo Platform SAS.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.exoplatform.portal.resource;
+
+import java.io.IOException;
+
+/**
+ * Designed to plugged into SkipCommentReader for custom handling of comment block
+ *
+ * @author <a href="hoang281283(a)gmail.com">Minh Hoang TO</a>
+ * @date 6/28/11
+ */
+public abstract class CommentBlockHandler
+{
+
+ public abstract void handle(CharSequence commentBlock, SkipCommentReader reader) throws IOException;
+
+
+ /**
+ * A handler that push back content of comment block into the cache
+ * if content of comment block is
+ *
+ * orientation=lt or orientation=rt
+ */
+ public static class OrientationCommentBlockHandler extends CommentBlockHandler
+ {
+
+ private static final String LT = "orientation=lt";
+
+ private static final String RT = "orientation=rt";
+
+ @Override
+ public void handle(CharSequence commentBlock, SkipCommentReader reader) throws IOException
+ {
+ if(findInterestingContentIn(commentBlock))
+ {
+ reader.pushback(commentBlock);
+ reader.setNumberOfCommingEscapes(commentBlock.length()); /* The comment block won't be skipped */
+ }
+ }
+
+ /**
+ * Return true if content of comment block is either
+ *
+ * orientation=lt or orientation=rt
+ *
+ * @param commentBlock
+ * @return
+ */
+ private boolean findInterestingContentIn(CharSequence commentBlock)
+ {
+
+ int indexOfFirstO = 0;
+
+ while(indexOfFirstO < commentBlock.length())
+ {
+ if(commentBlock.charAt(indexOfFirstO) == 'o')
+ {
+ break;
+ }
+ else
+ {
+ indexOfFirstO++;
+ }
+ }
+
+ if(commentBlock.length() <= (indexOfFirstO + LT.length()))
+ {
+ return false;
+ }
+ for(int i = 0; i < LT.length(); i++)
+ {
+ if(commentBlock.charAt(indexOfFirstO + i) != LT.charAt(i) && i != (LT.length() -2))
+ {
+ return false;
+ }
+ }
+ return commentBlock.charAt(indexOfFirstO + LT.length() - 2) == 'l'
+ || commentBlock.charAt(indexOfFirstO + LT.length() - 2) == 'r';
+ }
+
+ }
+}
Modified: portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkinService.java
===================================================================
--- portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkinService.java 2011-06-28 12:48:20 UTC (rev 6770)
+++ portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkinService.java 2011-06-29 01:35:38 UTC (rev 6771)
@@ -725,7 +725,7 @@
{
throw new RenderingException("No skin resolved for path " + skin.getResourcePath());
}
- BufferedReader reader = new BufferedReader(tmp);
+ BufferedReader reader = new SkipCommentReader(tmp, new CommentBlockHandler.OrientationCommentBlockHandler());
try
{
while ((line = reader.readLine()) != null)
Added: portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkipCommentReader.java
===================================================================
--- portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkipCommentReader.java (rev 0)
+++ portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkipCommentReader.java 2011-06-29 01:35:38 UTC (rev 6771)
@@ -0,0 +1,236 @@
+/*
+ * Copyright (C) 2011 eXo Platform SAS.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.exoplatform.portal.resource;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.Reader;
+
+/**
+ *
+ * A subclass of BufferedReader which skip the comment block
+ *
+ * @author <a href="hoang281283(a)gmail.com">Minh Hoang TO</a>
+ * @date 6/27/11
+ */
+public class SkipCommentReader extends BufferedReader
+{
+
+ private BufferedReader bufferedReader;
+
+ private final StringBuilder pushbackCache;
+
+ private final static int EOF = -1;
+
+ private State cursorState;
+
+ private CommentBlockHandler commentBlockHandler;
+
+ /* The number of next comming characters that won't be skipped even if they are in a comment block */
+ private int numberOfCommingEscapes;
+
+ public SkipCommentReader(Reader reader)
+ {
+ this(reader, null);
+ }
+
+ public SkipCommentReader(Reader reader, CommentBlockHandler handler)
+ {
+ super(reader);
+ pushbackCache = new StringBuilder();
+ cursorState = State.ENCOUNTING_ORDINARY_CHARACTER;
+ this.commentBlockHandler = handler;
+ }
+
+ /**
+ * Recursive method that read a single character from underlying reader. Encountered comment block
+ * is escaped automatically.
+ *
+ * @return
+ * @throws IOException
+ */
+ public int readSingleCharacter() throws IOException
+ {
+ int readingChar = readLikePushbackReader();
+ if(readingChar == EOF)
+ {
+ return EOF;
+ }
+
+ if(numberOfCommingEscapes > 0)
+ {
+ numberOfCommingEscapes--;
+ return readingChar;
+ }
+
+ switch (readingChar)
+ {
+ case '/':
+ int nextCharToRead = read();
+ if (nextCharToRead == '*')
+ {
+ this.cursorState = SkipCommentReader.State.ENCOUNTING_COMMENT_BLOCK_OPENING_TAG;
+ advanceToEscapeCommentBlock();
+ return readSingleCharacter();
+ }
+ else
+ {
+ this.cursorState = SkipCommentReader.State.ENCOUNTING_FORWARD_SLASH;
+ pushbackCache.append((char)nextCharToRead);
+ return '/';
+ }
+
+ case '*':
+ if (this.cursorState == SkipCommentReader.State.ENCOUNTING_FORWARD_SLASH)
+ {
+ this.cursorState = SkipCommentReader.State.ENCOUNTING_COMMENT_BLOCK_OPENING_TAG;
+ advanceToEscapeCommentBlock();
+ return readSingleCharacter();
+ }
+ else
+ {
+ this.cursorState = SkipCommentReader.State.ENCOUNTING_ASTERIK;
+ return '*';
+ }
+
+ default:
+ this.cursorState = SkipCommentReader.State.ENCOUNTING_ORDINARY_CHARACTER;
+ return readingChar;
+ }
+
+ }
+
+ /**
+ * Read from the pushback cache first, then underlying reader
+ */
+ private int readLikePushbackReader() throws IOException
+ {
+ if(pushbackCache.length() > 0)
+ {
+ int readingChar = pushbackCache.charAt(0);
+ pushbackCache.deleteCharAt(0);
+ return readingChar;
+ }
+ return read();
+ }
+
+ /**
+ * Advance in comment block until we reach a comment block closing tag
+ */
+ private void advanceToEscapeCommentBlock() throws IOException
+ {
+ if(cursorState != SkipCommentReader.State.ENCOUNTING_COMMENT_BLOCK_OPENING_TAG)
+ {
+ throw new IllegalStateException("This method should be invoked only if we are entering a comment block");
+ }
+
+ int readingChar = read();
+ StringBuilder commentBlock = new StringBuilder("/*");
+
+ LOOP:
+ while(readingChar != EOF)
+ {
+ commentBlock.append((char)readingChar);
+ if(readingChar == '/')
+ {
+ if(this.cursorState == SkipCommentReader.State.ENCOUNTING_ASTERIK)
+ {
+ this.cursorState = SkipCommentReader.State.ENCOUNTING_COMMENT_BLOCK_CLOSING_TAG;
+ break LOOP; //We 've just escaped the comment block
+ }
+ else
+ {
+ this.cursorState = SkipCommentReader.State.ENCOUNTING_FORWARD_SLASH;
+ }
+ }
+ else
+ {
+ this.cursorState = (readingChar == '*')? SkipCommentReader.State.ENCOUNTING_ASTERIK : SkipCommentReader.State.ENCOUNTING_ORDINARY_CHARACTER;
+ }
+ readingChar = read();
+ }
+
+ if(commentBlockHandler != null)
+ {
+ commentBlockHandler.handle(commentBlock, this);
+ }
+ }
+
+ @Override
+ public String readLine() throws IOException
+ {
+ StringBuilder builder = new StringBuilder();
+ int nextChar = readSingleCharacter();
+ if(nextChar == EOF)
+ {
+ return null;
+ }
+
+ while(nextChar != EOF)
+ {
+ if(nextChar == '\n' || nextChar == '\r')
+ {
+ break;
+ }
+ builder.append((char)nextChar);
+ nextChar = readSingleCharacter();
+ }
+
+ String line = builder.toString().trim();
+
+ return line;
+ }
+
+ /**
+ * Used for JUnit tests
+ * @return
+ */
+ public State getCursorState()
+ {
+ return this.cursorState;
+ }
+
+ public void setCommentBlockHandler(CommentBlockHandler commentBlockHandler)
+ {
+ this.commentBlockHandler = commentBlockHandler;
+ }
+
+ public void setNumberOfCommingEscapes(int numberOfCommingEscapes)
+ {
+ this.numberOfCommingEscapes = numberOfCommingEscapes;
+ }
+
+ public void pushback(CharSequence sequence)
+ {
+ this.pushbackCache.append(sequence);
+ }
+
+ public enum State
+ {
+ ENCOUNTING_FORWARD_SLASH,
+
+ ENCOUNTING_ASTERIK,
+
+ ENCOUNTING_COMMENT_BLOCK_OPENING_TAG,
+
+ ENCOUNTING_COMMENT_BLOCK_CLOSING_TAG,
+
+ ENCOUNTING_ORDINARY_CHARACTER
+ }
+}
Added: portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/test/java/org/exoplatform/portal/resource/TestSkipCommentReader.java
===================================================================
--- portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/test/java/org/exoplatform/portal/resource/TestSkipCommentReader.java (rev 0)
+++ portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/test/java/org/exoplatform/portal/resource/TestSkipCommentReader.java 2011-06-29 01:35:38 UTC (rev 6771)
@@ -0,0 +1,133 @@
+/*
+ * Copyright (C) 2011 eXo Platform SAS.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.exoplatform.portal.resource;
+
+import junit.framework.TestCase;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.Reader;
+import java.io.StringReader;
+
+/**
+ * @author <a href="hoang281283(a)gmail.com">Minh Hoang TO</a>
+ * @date 6/28/11
+ */
+public class TestSkipCommentReader extends TestCase
+{
+
+ private SkipCommentReader skipCommentReader;
+
+ @Override
+ protected void setUp() throws Exception
+ {
+ }
+
+ @Override
+ protected void tearDown() throws Exception
+ {
+ if(skipCommentReader != null)
+ {
+ skipCommentReader.close();
+ }
+ }
+
+ private void initiateReader(String relativePath)
+ {
+ InputStream in = Thread.currentThread().getContextClassLoader().getResourceAsStream(relativePath);
+ skipCommentReader = new SkipCommentReader(new InputStreamReader(in));
+ }
+
+ private void initiateReader(Reader reader)
+ {
+ skipCommentReader = new SkipCommentReader(reader);
+ }
+
+ public void testFirstCSSFile() throws IOException
+ {
+ initiateReader("skin/test_1.css");
+
+ for(int i =0; i < 30; i++)
+ {
+ String line = skipCommentReader.readLine();
+ System.out.println(line);
+ line = skipCommentReader.readLine();
+ }
+ }
+
+ public void testSkipCommentBlock() throws IOException
+ {
+ Reader reader = new StringReader("abcdefgh/* comment block */ijklmn");
+ initiateReader(reader);
+
+ String line = skipCommentReader.readLine();
+ assertEquals("abcdefghijklmn", line);
+ }
+
+ public void testSkipMultipleCommentBlocks() throws IOException
+ {
+ StringBuilder builder = new StringBuilder();
+ builder.append("1.abcdefgh/* comment block */ijklmn\n");
+ builder.append("2.abcdefgh/* comment block */ijklmn\n");
+ builder.append("3.abcdefgh/* comment block */ijklmn\n");
+ builder.append("4.abcdefgh/* comment block */ijklmn\n");
+
+ Reader reader = new StringReader(builder.toString());
+ initiateReader(reader);
+
+ String line = skipCommentReader.readLine();
+ assertEquals("1.abcdefghijklmn", line);
+
+ line = skipCommentReader.readLine();
+ assertEquals("2.abcdefghijklmn", line);
+
+ line = skipCommentReader.readLine();
+ assertEquals("3.abcdefghijklmn", line);
+
+ line = skipCommentReader.readLine();
+ assertEquals("4.abcdefghijklmn", line);
+ }
+
+ public void testSkipCommentBlocksWithHandler() throws IOException
+ {
+ StringBuilder builder = new StringBuilder();
+ builder.append("1.abcdefgh/* orientation=lt */ijklmn\n");
+ builder.append("2.abcdefgh/* comment block */ijklmn\n");
+ builder.append("3.abcdefgh/* orientation=rt */ijklmn\n");
+ builder.append("4.abcdefgh/* comment block */ijklmn\n");
+
+ Reader reader = new StringReader(builder.toString());
+ initiateReader(reader);
+ skipCommentReader.setCommentBlockHandler(new CommentBlockHandler.OrientationCommentBlockHandler());
+
+ String line = skipCommentReader.readLine();
+ assertEquals("1.abcdefgh/* orientation=lt */ijklmn", line);
+
+ line = skipCommentReader.readLine();
+ assertEquals("2.abcdefghijklmn", line);
+
+ line = skipCommentReader.readLine();
+ assertEquals("3.abcdefgh/* orientation=rt */ijklmn", line);
+
+ line = skipCommentReader.readLine();
+ assertEquals("4.abcdefghijklmn", line);
+
+
+ }
+}
Added: portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/test/resources/skin/test_1.css
===================================================================
--- portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/test/resources/skin/test_1.css (rev 0)
+++ portal/branches/branch-GTNPORTAL-1921/component/web/resources/src/test/resources/skin/test_1.css 2011-06-29 01:35:38 UTC (rev 6771)
@@ -0,0 +1,3320 @@
+/**
+ * Copyright (C) 2009 eXo Platform SAS.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+/*-------------------------- DefaultTheme ---------------------------*/
+
+.DefaultTheme .WindowBarCenter .WindowPortletInfo {
+ margin-right: 80px; /* orientation=lt */
+ margin-left: 80px; /* orientation=rt */
+}
+
+.DefaultTheme .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 24px;
+ height: 17px;
+ cursor: pointer;
+ background-image: url('background/DefaultTheme.png');
+}
+
+.DefaultTheme .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.DefaultTheme .OverArrowDownIcon {
+ background-position: center 116px;
+}
+
+.DefaultTheme .MinimizedIcon {
+ background-position: center 44px;
+}
+
+.DefaultTheme .OverMinimizedIcon {
+ background-position: center 140px;
+}
+
+.DefaultTheme .MaximizedIcon {
+ background-position: center 68px;
+}
+
+.DefaultTheme .OverMaximizedIcon {
+ background-position: center 164px;
+}
+
+.DefaultTheme .RestoreIcon {
+ background-position: center 92px;
+}
+
+.DefaultTheme .OverRestoreIcon {
+ background-position: center 188px;
+}
+
+.DefaultTheme .NormalIcon {
+ background-position: center 92px;
+}
+
+.DefaultTheme .OverNormalIcon {
+ background-position: center 188px;
+}
+
+.DefaultTheme .Information {
+ height: 18px; line-height: 18px;
+ vertical-align: middle; font-size: 10px;
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+}
+
+.DefaultTheme .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+ line-height: 16px;
+}
+
+.DefaultTheme .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.DefaultTheme .WindowBarLeft {
+ padding-left: 12px;
+ background-image: url('background/DefaultTheme.png');
+ background-repeat: no-repeat;
+ background-position: left -148px;
+}
+
+.DefaultTheme .WindowBarRight {
+ padding-right: 11px;
+ background-image: url('background/DefaultTheme.png');
+ background-repeat: no-repeat;
+ background-position: right -119px;
+}
+
+.DefaultTheme .WindowBarCenter {
+ background-image: url('background/DefaultTheme.png');
+ background-repeat: repeat-x;
+ background-position: left -90px;
+}
+
+.DefaultTheme .WindowBarCenter .FixHeight {
+ height: 21px;
+ padding-top: 8px;
+}
+
+.DefaultTheme .MiddleDecoratorLeft {
+ padding-left: 12px;
+ background: url('background/MDefaultTheme.png') repeat-y left;
+}
+
+.DefaultTheme .MiddleDecoratorRight {
+ padding-right: 11px;
+ background: url('background/MDefaultTheme.png') repeat-y right;
+}
+
+.DefaultTheme .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.DefaultTheme .BottomDecoratorLeft {
+ padding-left: 12px;
+ background-image: url('background/DefaultTheme.png');
+ background-repeat: no-repeat;
+ background-position: left -60px;
+}
+
+.DefaultTheme .BottomDecoratorRight {
+ padding-right: 11px;
+ background-image: url('background/DefaultTheme.png');
+ background-repeat: no-repeat;
+ background-position: right -30px;
+}
+
+.DefaultTheme .BottomDecoratorCenter {
+ background-image: url('background/DefaultTheme.png');
+ background-repeat: repeat-x;
+ background-position: left top;
+}
+
+.DefaultTheme .BottomDecoratorCenter .FixHeight {
+ height: 30px;
+}
+
+/*-------------------------- MacTheme ---------------------------*/
+
+.MacTheme .WindowBarCenter .WindowPortletInfo {
+ margin: 0px 70px 0px 0px; /* orientation=lt */
+ margin: 0px 0px 0px 70px; /* orientation=rt */
+}
+
+.MacTheme .WindowBarCenter .WindowPortletIcon {
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.MacTheme .WindowBarCenter .PortletName {
+ font-weight: bold;
+ line-height: 17px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.MacTheme .WindowBarCenter .PortletIcon {
+ background: url('/eXoSkinMac/skin/MacSkin/skinIcons/16x16/icons/DefaultPortletIcon.png') no-repeat left top; /* orientation=lt */
+ background: url('/eXoSkinMac/skin/MacSkin/skinIcons/16x16/icons/DefaultPortletIcon.png') no-repeat right top; /* orientation=rt */
+}
+
+.MacTheme .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 21px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/MacTheme.png');
+}
+
+.MacTheme .ArrowDownIcon {
+ background-position: center 18px;
+}
+
+.MacTheme .OverArrowDownIcon {
+ background-position: center 98px;
+}
+
+.MacTheme .MinimizedIcon {
+ background-position: center 37px;
+}
+
+.MacTheme .OverMinimizedIcon {
+ background-position: center 118px;
+}
+
+.MacTheme .MaximizedIcon {
+ background-position: center 57px;
+}
+
+.MacTheme .OverMaximizedIcon {
+ background-position: center 138px;
+}
+
+.MacTheme .NormalIcon {
+ background-position: center 78px;
+}
+
+.MacTheme .OverNormalIcon {
+ background-position: center 158px;
+}
+
+.MacTheme .RestoreIcon {
+ background-position: center 78px;
+}
+
+.MacTheme .OverRestoreIcon {
+ background-position: center 158px;
+}
+
+.MacTheme .BackgroundIcon {
+ float: left; /* orientation=lt */
+ float: right; /* orientation=rt */
+ margin: 4px 2px 0px 2px;
+}
+
+.MacTheme .Information {
+ height: 16px; line-height: 14px; vertical-align: middle;
+ font-size: 10px;
+ margin-right: 18px;
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.MacTheme .MiddleDecoratorLeft {
+ background: url('background/MMacTheme.png') repeat-y left;
+ padding: 0px 0px 0px 5px;
+}
+
+.MacTheme .MiddleDecoratorRight {
+ padding: 0px 5px 0px 0px;
+ background: url('background/MMacTheme.png') repeat-y right;
+}
+
+.MacTheme .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .MacTheme .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.MacTheme .BottomDecoratorLeft {
+ background-image: url('background/MacTheme.png');
+ background-repeat: no-repeat;
+ background-position: left -46px;
+ padding: 0px 0px 0px 5px;
+}
+
+.MacTheme .BottomDecoratorRight {
+ background-image: url('background/MacTheme.png');
+ background-repeat: no-repeat;
+ background-position: right -23px;
+ padding: 0px 5px 0px 0px;
+}
+
+.MacTheme .BottomDecoratorCenter {
+ background-image: url('background/MacTheme.png');
+ background-repeat: repeat-x;
+ background-position: center top;
+}
+
+.MacTheme .BottomDecoratorCenter .FixHeight {
+ height: 23px; line-height: 23px;
+}
+
+.MacTheme .WindowBarLeft {
+ background-image: url('background/MacTheme.png');
+ background-repeat: no-repeat;
+ background-position: left -115px;
+ padding: 0px 0px 0px 12px;
+}
+
+.MacTheme .WindowBarRight {
+ background-image: url('background/MacTheme.png');
+ background-repeat: no-repeat;
+ background-position: right -92px;
+ padding: 0px 12px 0px 0px;
+}
+
+.MacTheme .WindowBarCenter {
+ background-image: url('background/MacTheme.png');
+ background-repeat: repeat-x;
+ background-position: center -69px;
+}
+
+.MacTheme .WindowBarCenter .FixHeight {
+ height: 19px;
+ padding-top: 4px;
+}
+
+/*-------------------------- MacGray ---------------------------*/
+
+.MacGray .WindowBarCenter .WindowPortletInfo {
+ margin: 0px 70px 0px 0px; /* orientation=lt */
+ margin: 0px 0px 0px 70px; /* orientation=rt */
+}
+
+.MacGray .WindowBarCenter .WindowPortletIcon {
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.MacGray .WindowBarCenter .PortletName {
+ font-weight: bold;
+ line-height: 17px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.MacGray .WindowBarCenter .PortletIcon {
+ background: url('/eXoSkinMac/skin/MacSkin/skinIcons/16x16/icons/DefaultPortletIcon.png') no-repeat left top; /* orientation=lt */
+ background: url('/eXoSkinMac/skin/MacSkin/skinIcons/16x16/icons/DefaultPortletIcon.png') no-repeat right top; /* orientation=rt */
+}
+
+.MacGray .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 21px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/MacGray.png');
+}
+
+.MacGray .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.MacGray .OverArrowDownIcon {
+ background-position: center 100px;
+}
+
+.MacGray .MinimizedIcon {
+ background-position: center 37px;
+}
+
+.MacGray .OverMinimizedIcon {
+ background-position: center 120px;
+}
+
+.MacGray .MaximizedIcon {
+ background-position: center 57px;
+}
+
+.MacGray .OverMaximizedIcon {
+ background-position: center 140px;
+}
+
+.MacGray .NormalIcon {
+ background-position: center 78px;
+}
+
+.MacGray .OverNormalIcon {
+ background-position: center 160px;
+}
+
+.MacGray .RestoreIcon {
+ background-position: center 78px;
+}
+
+.MacGray .OverRestoreIcon {
+ background-position: center 160px;
+}
+
+.MacGray .BackgroundIcon {
+ float: left; /* orientation=lt */
+ float: right; /* orientation=rt */
+ margin: 4px 2px 0px 2px;
+}
+
+.MacGray .Information {
+ height: 16px; line-height: 14px; vertical-align: middle;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.MacGray .MiddleDecoratorLeft {
+ background: url('background/MMacGray.png') repeat-y left;
+ padding: 0px 0px 0px 8px;
+}
+
+.MacGray .MiddleDecoratorRight {
+ padding: 0px 8px 0px 0px;
+ background: url('background/MMacGray.png') repeat-y right;
+}
+
+.MacGray .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.MacGray .MiddleDecoratorCenter {
+ height:100%;
+}
+
+.MacGray .BottomDecoratorLeft {
+ background-image: url('background/MacGray.png');
+ background-repeat: no-repeat;
+ background-position: left -48px;
+ padding: 0px 0px 0px 9px;
+}
+
+.MacGray .BottomDecoratorRight {
+ padding: 0px 9px 0px 0px;
+ background-image: url('background/MacGray.png');
+ background-repeat: no-repeat;
+ background-position: right -24px;
+}
+
+.MacGray .BottomDecoratorCenter {
+ background-image: url('background/MacGray.png');
+ background-repeat: repeat-x;
+ background-position: left top;
+}
+
+.MacGray .BottomDecoratorCenter .FixHeight {
+ height: 24px; line-height: 24px;
+}
+
+.MacGray .WindowBarLeft {
+ padding: 0px 0px 0px 9px;
+ background-image: url('background/MacGray.png');
+ background-repeat: no-repeat;
+ background-position: left -118px;
+}
+
+.MacGray .WindowBarRight {
+ padding: 0px 9px 0px 0px;
+ background-image: url('background/MacGray.png');
+ background-repeat: no-repeat;
+ background-position: right -95px;
+}
+
+.MacGray .WindowBarCenter {
+ background-image: url('background/MacGray.png');
+ background-repeat: repeat-x;
+ background-position: center -72px;
+}
+
+.MacGray .WindowBarCenter .FixHeight {
+ height: 19px;
+ padding-top: 4px;
+}
+
+/*-------------------------- MacBlack ---------------------------*/
+
+.MacBlack .WindowBarCenter .WindowPortletInfo {
+ margin: 0px 70px 0px 0px; /* orientation=lt */
+ margin: 0px 0px 0px 70px; /* orientation=rt */
+}
+
+.MacBlack .WindowBarCenter .WindowPortletIcon {
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.MacBlack .WindowBarCenter .PortletName {
+ font-weight: bold;
+ line-height: 17px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.MacBlack .WindowBarCenter .PortletIcon {
+ background: url('/eXoSkinMac/skin/MacSkin/skinIcons/16x16/icons/DefaultPortletIcon.png') no-repeat left top; /* orientation=lt */
+ background: url('/eXoSkinMac/skin/MacSkin/skinIcons/16x16/icons/DefaultPortletIcon.png') no-repeat right top; /* orientation=rt */
+}
+
+.MacBlack .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 21px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/MacBlack.png');
+}
+
+.MacBlack .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.MacBlack .OverArrowDownIcon {
+ background-position: center 100px;
+}
+
+.MacBlack .MinimizedIcon {
+ background-position: center 37px;
+}
+
+.MacBlack .OverMinimizedIcon {
+ background-position: center 120px;
+}
+
+.MacBlack .MaximizedIcon {
+ background-position: center 57px;
+}
+
+.MacBlack .OverMaximizedIcon {
+ background-position: center 140px;
+}
+
+.MacBlack .NormalIcon {
+ background-position: center 78px;
+}
+
+.MacBlack .OverNormalIcon {
+ background-position: center 160px;
+}
+
+.MacBlack .RestoreIcon {
+ background-position: center 78px;
+}
+
+.MacBlack .OverRestoreIcon {
+ background-position: center 160px;
+}
+
+.MacBlack .BackgroundIcon {
+ float: left; /* orientation=lt */
+ float: right; /* orientation=rt */
+ margin: 4px 2px 0px 2px;
+}
+
+.MacBlack .Information {
+ height: 16px; line-height: 14px; vertical-align: middle;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.MacBlack .MiddleDecoratorLeft {
+ background: url('background/MMacBlack.png') repeat-y left;
+ padding: 0px 0px 0px 8px;
+}
+
+.MacBlack .MiddleDecoratorRight {
+ padding: 0px 8px 0px 0px;
+ background: url('background/MMacBlack.png') repeat-y right;
+}
+
+.MacBlack .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .MacBlack .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.MacBlack .BottomDecoratorLeft {
+ background-image: url('background/MacBlack.png');
+ background-repeat: no-repeat;
+ background-position: left -48px;
+ padding: 0px 0px 0px 9px;
+}
+
+.MacBlack .BottomDecoratorRight {
+ padding: 0px 9px 0px 0px;
+ background-image: url('background/MacBlack.png');
+ background-repeat: no-repeat;
+ background-position: right -24px;
+}
+
+.MacBlack .BottomDecoratorCenter {
+ background-image: url('background/MacBlack.png');
+ background-repeat: repeat-x;
+ background-position: left top;
+}
+
+.MacBlack .BottomDecoratorCenter .FixHeight {
+ height: 24px; line-height: 24px;
+}
+
+.MacBlack .WindowBarLeft {
+ padding: 0px 0px 0px 9px;
+ background-image: url('background/MacBlack.png');
+ background-repeat: no-repeat;
+ background-position: left -118px;
+}
+
+.MacBlack .WindowBarRight {
+ padding: 0px 9px 0px 0px;
+ background-image: url('background/MacBlack.png');
+ background-repeat: no-repeat;
+ background-position: right -95px;
+}
+
+.MacBlack .WindowBarCenter {
+ background-image: url('background/MacBlack.png');
+ background-repeat: repeat-x;
+ background-position: center -72px;
+}
+
+.MacBlack .WindowBarCenter .FixHeight {
+ height: 19px;
+ padding-top: 4px;
+}
+
+/*-------------------------- MacGreenSteel ---------------------------*/
+
+.MacGreenSteel .WindowBarCenter .WindowPortletInfo {
+ margin: 0px 70px 0px 0px; /* orientation=lt */
+ margin: 0px 0px 0px 70px; /* orientation=rt */
+}
+
+.MacGreenSteel .WindowBarCenter .WindowPortletIcon {
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.MacGreenSteel .WindowBarCenter .PortletName {
+ font-weight: bold;
+ line-height: 17px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.MacGreenSteel .WindowBarCenter .PortletIcon {
+ background: url('/eXoSkinMac/skin/MacSkin/skinIcons/16x16/icons/DefaultPortletIcon.png') no-repeat left top; /* orientation=lt */
+ background: url('/eXoSkinMac/skin/MacSkin/skinIcons/16x16/icons/DefaultPortletIcon.png') no-repeat right top; /* orientation=rt */
+}
+
+.MacGreenSteel .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 21px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/MacGreen.png');
+}
+
+.MacGreenSteel .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.MacGreenSteel .OverArrowDownIcon {
+ background-position: center 100px;
+}
+
+.MacGreenSteel .MinimizedIcon {
+ background-position: center 37px;
+}
+
+.MacGreenSteel .OverMinimizedIcon {
+ background-position: center 120px;
+}
+
+.MacGreenSteel .MaximizedIcon {
+ background-position: center 57px;
+}
+
+.MacGreenSteel .OverMaximizedIcon {
+ background-position: center 140px;
+}
+
+.MacGreenSteel .NormalIcon {
+ background-position: center 78px;
+}
+
+.MacGreenSteel .OverNormalIcon {
+ background-position: center 160px;
+}
+
+.MacGreenSteel .RestoreIcon {
+ background-position: center 78px;
+}
+
+.MacGreenSteel .OverRestoreIcon {
+ background-position: center 160px;
+}
+
+.MacGreenSteel .BackgroundIcon {
+ float: left; /* orientation=lt */
+ float: right; /* orientation=rt */
+ margin: 4px 2px 0px 2px;
+}
+
+.MacGreenSteel .Information {
+ height: 16px; line-height: 14px; vertical-align: middle;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.MacGreenSteel .MiddleDecoratorLeft {
+ background: url('background/MMacGreen.png') repeat-y left;
+ padding: 0px 0px 0px 8px;
+}
+
+.MacGreenSteel .MiddleDecoratorRight {
+ padding: 0px 8px 0px 0px;
+ background: url('background/MMacGreen.png') repeat-y right;
+}
+
+.MacGreenSteel .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .MacGreenSteel .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.MacGreenSteel .BottomDecoratorLeft {
+ background-image: url('background/MacGreen.png');
+ background-repeat: no-repeat;
+ background-position: left -48px;
+ padding: 0px 0px 0px 9px;
+}
+
+.MacGreenSteel .BottomDecoratorRight {
+ padding: 0px 9px 0px 0px;
+ background-image: url('background/MacGreen.png');
+ background-repeat: no-repeat;
+ background-position: right -24px;
+}
+
+.MacGreenSteel .BottomDecoratorCenter {
+ background-image: url('background/MacGreen.png');
+ background-repeat: repeat-x;
+ background-position: left top;
+}
+
+.MacGreenSteel .BottomDecoratorCenter .FixHeight {
+ height: 24px; line-height: 24px;
+}
+
+.MacGreenSteel .WindowBarLeft {
+ padding: 0px 0px 0px 9px;
+ background-image: url('background/MacGreen.png');
+ background-repeat: no-repeat;
+ background-position: left -118px;
+}
+
+.MacGreenSteel .WindowBarRight {
+ padding: 0px 9px 0px 0px;
+ background-image: url('background/MacGreen.png');
+ background-repeat: no-repeat;
+ background-position: right -95px;
+}
+
+.MacGreenSteel .WindowBarCenter {
+ background-image: url('background/MacGreen.png');
+ background-repeat: repeat-x;
+ background-position: center -72px;
+}
+
+.MacGreenSteel .WindowBarCenter .FixHeight {
+ height: 19px;
+ padding-top: 4px;
+}
+
+/*-------------------------------- VistaTheme -----------------------------*/
+
+.VistaTheme .WindowBarCenter .WindowPortletInfo {
+ margin-right: 95px; /* orientation=lt */
+ margin-left: 95px; /* orientation=rt */
+
+}
+
+.VistaTheme .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 22px;
+}
+
+.VistaTheme .WindowBarCenter .PortletIcon {
+ background: url('/eXoSkinVista/skin/VistaSkin/skinIcons/16x16/icons/PortletIcon.png') no-repeat left 3px; /* orientation=lt */
+ background: url('/eXoSkinVista/skin/VistaSkin/skinIcons/16x16/icons/PortletIcon-rt.png') no-repeat right 3px; /* orientation=rt */
+}
+
+.VistaTheme .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 30px;
+ height: 20px;
+ cursor: pointer;
+ background-image: url('background/VistaTheme.png'); /* orientation=lt */
+ background-image: url('background/VistaTheme-rt.png'); /* orientation=rt */
+}
+
+.VistaTheme .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.VistaTheme .OverArrowDownIcon {
+ background-position: center 100px;
+}
+
+.VistaTheme .MinimizedIcon {
+ background-position: center 40px;
+}
+
+.VistaTheme .OverMinimizedIcon {
+ background-position: center 120px;
+}
+
+.VistaTheme .MaximizedIcon {
+ background-position: center 60px;
+}
+
+.VistaTheme .OverMaximizedIcon {
+ background-position: center 140px;
+}
+
+.VistaTheme .NormalIcon {
+ background-position: center 80px;
+}
+
+.VistaTheme .OverNormalIcon {
+ background-position: center 160px;
+}
+
+.VistaTheme .RestoreIcon {
+ background-position: center 80px;
+}
+
+.VistaTheme .OverRestoreIcon {
+ background-position: center 160px;
+}
+
+.VistaTheme .Information {
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+}
+
+.VistaTheme .MiddleDecoratorCenter {
+ background: #ffffff;
+ border: solid 1px #717171;
+}
+
+.VistaTheme .MiddleDecoratorLeft {
+ padding-left:12px;
+ background: url('background/MVistaTheme.png') repeat-y left;
+}
+
+.VistaTheme .MiddleDecoratorRight {
+ padding-right: 13px;
+ background: url('background/MVistaTheme.png') repeat-y right;
+}
+
+.UIPageBody .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.VistaTheme .BottomDecoratorLeft {
+ background-image: url('background/VistaTheme.png');
+ background-repeat: no-repeat;
+ background-position: left -48px;
+ padding-left: 12px;
+}
+
+.VistaTheme .BottomDecoratorRight {
+ background-image: url('background/VistaTheme.png');
+ background-repeat: no-repeat;
+ background-position: right -24px;
+ padding-right: 13px;
+}
+
+.VistaTheme .BottomDecoratorCenter {
+ background-image: url('background/VistaTheme.png');
+ background-repeat: repeat-x;
+ background-position: left top;
+}
+
+.VistaTheme .BottomDecoratorCenter .FixHeight {
+ height: 24px;
+}
+
+.VistaTheme .WindowBarCenter .PortletName {
+ font-weight: bold;
+ line-height: 22px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.VistaTheme .WindowBarLeft {
+ background-image: url('background/VistaTheme.png');
+ background-repeat: no-repeat;
+ background-position: left -130px;
+ padding-left: 12px;
+}
+
+.VistaTheme .WindowBarRight {
+ background-image: url('background/VistaTheme.png');
+ background-repeat: no-repeat;
+ background-position: right -101px;
+ padding-right: 16px;
+}
+
+.VistaTheme .WindowBarCenter {
+ background-image: url('background/VistaTheme.png');
+ background-repeat: repeat-x;
+ background-position: left -72px;
+}
+
+.VistaTheme .WindowBarCenter .FixHeight {
+ height: 24px;
+ padding-top: 5px;
+}
+
+/*-------------------------------- VistaBlue -----------------------------*/
+
+.VistaBlue .WindowBarCenter .WindowPortletInfo {
+ margin-right: 95px; /* orientation=lt */
+ margin-left: 95px; /* orientation=rt */
+
+}
+
+.VistaBlue .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 20px;
+}
+
+.VistaBlue .WindowBarCenter .PortletName {
+ font-weight: bold;
+ line-height: 22px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.VistaBlue .WindowBarCenter .PortletIcon {
+ background: url('/eXoSkinVista/skin/VistaSkin/skinIcons/16x16/icons/PortletIcon.png') no-repeat left 3px; /* orientation=lt */
+ background: url('/eXoSkinVista/skin/VistaSkin/skinIcons/16x16/icons/PortletIcon-rt.png') no-repeat right 3px; /* orientation=rt */
+}
+
+.VistaBlue .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 30px; height: 19px;
+ cursor: pointer;
+ background-image: url('background/VistaBlue.png');
+}
+
+.VistaBlue .ArrowDownIcon {
+ background-position: center 19px;
+}
+
+.VistaBlue .OverArrowDownIcon {
+ background-position: center 99px;
+}
+
+.VistaBlue .MinimizedIcon {
+ background-position: center 39px;
+}
+
+.VistaBlue .OverMinimizedIcon {
+ background-position: center 119px;
+}
+
+.VistaBlue .MaximizedIcon {
+ background-position: center 59px;
+}
+
+.VistaBlue .OverMaximizedIcon {
+ background-position: center 139px;
+}
+
+.VistaBlue .NormalIcon {
+ background-position: center 79px;
+}
+
+.VistaBlue .OverNormalIcon {
+ background-position: center 159px;
+}
+
+.VistaBlue .RestoreIcon {
+ background-position: center 79px;
+}
+
+.VistaBlue .OverRestoreIcon {
+ background-position: center 159px;
+}
+
+.VistaBlue .Information {
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+}
+
+.VistaBlue .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .VistaBlue .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.VistaBlue .MiddleDecoratorLeft {
+ padding-left: 15px;
+ background: url('background/MVistaBlue.png') repeat-y left;
+}
+
+.VistaBlue .MiddleDecoratorRight {
+ padding-right: 18px;
+ background: url('background/MVistaBlue.png') repeat-y right;
+}
+
+.UIPortlet .VistaBlue .MiddleDecoratorRight {
+ padding-right: 16px;
+}
+
+.VistaBlue .BottomDecoratorLeft {
+ background-image: url('background/VistaBlue.png');
+ background-repeat: no-repeat;
+ background-position: left -54px;
+ padding-left: 15px;
+}
+
+.VistaBlue .BottomDecoratorRight {
+ background-image: url('background/VistaBlue.png');
+ background-repeat: no-repeat;
+ background-position: right -27px;
+ padding-right: 15px;
+}
+
+.VistaBlue .BottomDecoratorCenter {
+ background-image: url('background/VistaBlue.png');
+ background-repeat: repeat-x;
+ background-position: left top;
+}
+
+.VistaBlue .BottomDecoratorCenter .FixHeight {
+ height: 27px;
+}
+
+.VistaBlue .WindowBarLeft {
+ background-image: url('background/VistaBlue.png');
+ background-repeat: no-repeat;
+ background-position: left -151px;
+ padding-left: 15px;
+}
+
+.VistaBlue .WindowBarRight {
+ background-image: url('background/VistaBlue.png');
+ background-repeat: no-repeat;
+ background-position: right -116px;
+ padding-right: 15px;
+}
+
+.VistaBlue .WindowBarCenter {
+ background-image: url('background/VistaBlue.png');
+ background-repeat: repeat-x;
+ background-position: left -81px;
+}
+
+.VistaBlue .WindowBarCenter .FixHeight {
+ height: 27px;
+ padding-top: 8px;
+}
+
+/*-------------------------- RoundConerBlue ---------------------------*/
+
+.RoundConerBlue .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+
+}
+
+.RoundConerBlue .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/RoundCornerBlue.png');
+}
+
+.RoundConerBlue .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.RoundConerBlue .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.RoundConerBlue .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 19px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.RoundConerBlue .ArrowDownIcon {
+ background-position: center 21px;
+}
+
+.RoundConerBlue .OverArrowDownIcon {
+ background-position: center 117px;
+}
+
+.RoundConerBlue .MinimizedIcon {
+ background-position: center 45px;
+}
+
+.RoundConerBlue .OverMinimizedIcon {
+ background-position: center 141px;
+}
+
+.RoundConerBlue .MaximizedIcon {
+ background-position: center 69px;
+}
+
+.RoundConerBlue .OverMaximizedIcon {
+ background-position: center 165px;
+}
+
+.RoundConerBlue .RestoreIcon {
+ background-position: center 93px;
+}
+
+.RoundConerBlue .OverRestoreIcon {
+ background-position: center 189px;
+}
+
+.RoundConerBlue .NormalIcon {
+ background-position: center 93px;
+}
+
+.RoundConerBlue .OverNormalIcon {
+ background-position: center 189px;
+}
+
+.RoundConerBlue .WindowBarLeft {
+ padding-left: 12px;
+ background-image: url('background/RoundCornerBlue.png');
+ background-repeat: no-repeat;
+ background-position: left -154px;
+}
+
+.RoundConerBlue .WindowBarRight {
+ padding-right: 12px;
+ background-image: url('background/RoundCornerBlue.png');
+ background-repeat: no-repeat;
+ background-position: right -122px;
+}
+
+.RoundConerBlue .WindowBarCenter {
+ background: url('background/RoundCornerBlue.png') repeat-x;
+ background-position: left -90px;
+}
+
+.RoundConerBlue .WindowBarCenter .FixHeight {
+ height: 22px;
+ padding-top: 10px;
+}
+
+.RoundConerBlue .MiddleDecoratorLeft {
+ padding-left: 13px;
+ background: url('background/MRoundConerBlue.png') repeat-y left;
+}
+
+.RoundConerBlue .MiddleDecoratorRight {
+ padding-right: 13px;
+ background: url('background/MRoundConerBlue.png') repeat-y right;
+}
+
+.RoundConerBlue .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .RoundConerBlue .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.RoundConerBlue .BottomDecoratorLeft {
+ padding-left: 13px;
+ background-image: url('background/RoundCornerBlue.png');
+ background-repeat: no-repeat;
+ background-position: left -60px;
+}
+
+.RoundConerBlue .BottomDecoratorRight {
+ padding-right: 13px;
+ background-image: url('background/RoundCornerBlue.png');
+ background-repeat: no-repeat;
+ background-position: right -30px;
+}
+
+.RoundConerBlue .BottomDecoratorCenter {
+ background: url('background/RoundCornerBlue.png') repeat-x;
+ background-position: top;
+}
+
+.RoundConerBlue .BottomDecoratorCenter .FixHeight {
+ height: 30px;
+}
+
+/*------------------ RoundConerViolet -----------------*/
+
+.RoundConerViolet .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+
+}
+
+.RoundConerViolet .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/RoundConerViolet.png');
+}
+
+.RoundConerViolet .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ padding-left: 5px;
+ margin-right: 18px;
+}
+
+.RoundConerViolet .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.RoundConerViolet .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 19px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.RoundConerViolet .ArrowDownIcon {
+ background-position: center 21px;
+}
+
+.RoundConerViolet .OverArrowDownIcon {
+ background-position: center 117px;
+}
+
+.RoundConerViolet .MinimizedIcon {
+ background-position: center 45px;
+}
+
+.RoundConerViolet .OverMinimizedIcon {
+ background-position: center 141px;
+}
+
+.RoundConerViolet .MaximizedIcon {
+ background-position: center 69px;
+}
+
+.RoundConerViolet .OverMaximizedIcon {
+ background-position: center 165px;
+}
+
+.RoundConerViolet .RestoreIcon {
+ background-position: center 93px;
+}
+
+.RoundConerViolet .OverRestoreIcon {
+ background-position: center 189px;
+}
+
+.RoundConerViolet .NormalIcon {
+ background-position: center 93px;
+}
+
+.RoundConerViolet .OverNormalIcon {
+ background-position: center 189px;
+}
+
+.RoundConerViolet .WindowBarLeft {
+ padding-left: 13px;
+ background-image: url('background/RoundConerViolet.png');
+ background-repeat: no-repeat;
+ background-position: left -153px;
+}
+
+.RoundConerViolet .WindowBarRight {
+ padding-right: 13px;
+ background-image: url('background/RoundConerViolet.png');
+ background-repeat: no-repeat;
+ background-position: right -121px;
+}
+
+.RoundConerViolet .WindowBarCenter {
+ background: url('background/RoundConerViolet.png') repeat-x;
+ background-position: left -90px;
+}
+
+.RoundConerViolet .WindowBarCenter .FixHeight {
+ height: 22px;
+ padding-top: 10px;
+}
+
+.UIPortlet .RoundConerViolet .WindowBarCenter {
+ height: 31px;
+}
+
+.RoundConerViolet .MiddleDecoratorLeft {
+ padding-left: 13px;
+ background: url('background/MRoundConerViolet.png') repeat-y left;
+}
+
+.RoundConerViolet .MiddleDecoratorRight {
+ padding-right: 13px;
+ background: url('background/MRoundConerViolet.png') repeat-y right;
+}
+
+.RoundConerViolet .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .RoundConerViolet .MiddleDecoratorCenter {
+ height:100%;
+}
+
+.RoundConerViolet .BottomDecoratorLeft {
+ padding-left: 13px;
+ background-image: url('background/RoundConerViolet.png');
+ background-repeat: no-repeat;
+ background-position: left -60px;
+}
+
+.RoundConerViolet .BottomDecoratorRight {
+ padding-right: 13px;
+ background-image: url('background/RoundConerViolet.png');
+ background-repeat: no-repeat;
+ background-position: right -30px;
+}
+
+.RoundConerViolet .BottomDecoratorCenter {
+ background: url('background/RoundConerViolet.png') repeat-x;
+ background-position: top;
+}
+
+.RoundConerViolet .BottomDecoratorCenter .FixHeight {
+ height: 30px;
+}
+
+/*------------------------------- RoundConerOrange ----------------------------------*/
+
+.RoundConerOrange .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+}
+
+.RoundConerOrange .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/RoundConerOrange.png');
+}
+
+.RoundConerOrange .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.RoundConerOrange .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.RoundConerOrange .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 19px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.RoundConerOrange .ArrowDownIcon {
+ background-position: center 21px;
+}
+
+.RoundConerOrange .OverArrowDownIcon {
+ background-position: center 117px;
+}
+
+.RoundConerOrange .MinimizedIcon {
+ background-position: center 45px;
+}
+
+.RoundConerOrange .OverMinimizedIcon {
+ background-position: center 141px;
+}
+
+.RoundConerOrange .MaximizedIcon {
+ background-position: center 69px;
+}
+
+.RoundConerOrange .OverMaximizedIcon {
+ background-position: center 165px;
+}
+
+.RoundConerOrange .RestoreIcon {
+ background-position: center 93px;
+}
+
+.RoundConerOrange .OverRestoreIcon {
+ background-position: center 189px;
+}
+
+.RoundConerOrange .NormalIcon {
+ background-position: center 93px;
+}
+
+.RoundConerOrange .OverNormalIcon {
+ background-position: center 189px;
+}
+
+.RoundConerOrange .WindowBarLeft {
+ padding-left: 13px;
+ background-image: url('background/RoundConerOrange.png');
+ background-repeat: no-repeat;
+ background-position: left -153px;
+}
+
+.RoundConerOrange .WindowBarRight {
+ padding-right: 13px;
+ background-image: url('background/RoundConerOrange.png');
+ background-repeat: no-repeat;
+ background-position: right -121px;
+}
+
+.RoundConerOrange .WindowBarCenter {
+ background: url('background/RoundConerOrange.png') repeat-x;
+ background-position: left -90px;
+}
+
+.RoundConerOrange .WindowBarCenter .FixHeight {
+ height: 22px;
+ padding-top: 10px;
+}
+
+.UIPortlet .RoundConerOrange .WindowBarCenter {
+ height: 31px;
+}
+
+.RoundConerOrange .MiddleDecoratorLeft {
+ padding-left: 13px;
+ background: url('background/MRoundConerOrange.png') repeat-y left;
+}
+
+.RoundConerOrange .MiddleDecoratorRight {
+ padding-right: 13px;
+ background: url('background/MRoundConerOrange.png') repeat-y right;
+}
+
+.RoundConerOrange .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .RoundConerOrange .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.RoundConerOrange .BottomDecoratorLeft {
+ padding-left: 13px;
+ background-image: url('background/RoundConerOrange.png');
+ background-repeat: no-repeat;
+ background-position: left -60px;
+}
+
+.RoundConerOrange .BottomDecoratorRight {
+ padding-right: 13px;
+ background-image: url('background/RoundConerOrange.png');
+ background-repeat: no-repeat;
+ background-position: right -30px;
+}
+
+.RoundConerOrange .BottomDecoratorCenter {
+ background: url('background/RoundConerOrange.png') repeat-x;
+ background-position: top;
+}
+
+.RoundConerOrange .BottomDecoratorCenter .FixHeight {
+ height: 30px;
+}
+
+/*------------------------------- RoundConerPink ----------------------------------*/
+
+.RoundConerPink .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+}
+
+.RoundConerPink .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/RoundConerPink.png');
+}
+
+.RoundConerPink .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.RoundConerPink .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.RoundConerPink .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 19px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.RoundConerPink .ArrowDownIcon {
+ background-position: center 21px;
+}
+
+.RoundConerPink .OverArrowDownIcon {
+ background-position: center 117px;
+}
+
+.RoundConerPink .MinimizedIcon {
+ background-position: center 45px;
+}
+
+.RoundConerPink .OverMinimizedIcon {
+ background-position: center 141px;
+}
+
+.RoundConerPink .MaximizedIcon {
+ background-position: center 69px;
+}
+
+.RoundConerPink .OverMaximizedIcon {
+ background-position: center 165px;
+}
+
+.RoundConerPink .RestoreIcon {
+ background-position: center 93px;
+}
+
+.RoundConerPink .OverRestoreIcon {
+ background-position: center 189px;
+}
+
+.RoundConerPink .NormalIcon {
+ background-position: center 93px;
+}
+
+.RoundConerPink .OverNormalIcon {
+ background-position: center 189px;
+}
+
+.RoundConerPink .WindowBarLeft {
+ padding-left: 13px;
+ background-image: url('background/RoundConerPink.png');
+ background-repeat: no-repeat;
+ background-position: left -153px;
+}
+
+.RoundConerPink .WindowBarRight {
+ padding-right: 13px;
+ background-image: url('background/RoundConerPink.png');
+ background-repeat: no-repeat;
+ background-position: right -121px;
+}
+
+.RoundConerPink .WindowBarCenter {
+ background: url('background/RoundConerPink.png') repeat-x;
+ background-position: left -90px;
+}
+
+.RoundConerPink .WindowBarCenter .FixHeight {
+ height: 22px;
+ padding-top: 10px;
+}
+
+.UIPortlet .RoundConerPink .WindowBarCenter {
+ height: 31px;
+}
+
+.RoundConerPink .MiddleDecoratorLeft {
+ padding-left: 13px;
+ background: url('background/MRoundConerPink.png') repeat-y left;
+}
+
+.RoundConerPink .MiddleDecoratorRight {
+ padding-right: 13px;
+ background: url('background/MRoundConerPink.png') repeat-y right;
+}
+
+.RoundConerPink .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .RoundConerPink .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.RoundConerPink .BottomDecoratorLeft {
+ padding-left: 13px;
+ background-image: url('background/RoundConerPink.png');
+ background-repeat: no-repeat;
+ background-position: left -60px;
+}
+
+.RoundConerPink .BottomDecoratorRight {
+ padding-right: 13px;
+ background-image: url('background/RoundConerPink.png');
+ background-repeat: no-repeat;
+ background-position: right -30px;
+}
+
+.RoundConerPink .BottomDecoratorCenter {
+ background: url('background/RoundConerPink.png') repeat-x;
+ background-position: top;
+}
+
+.RoundConerPink .BottomDecoratorCenter .FixHeight {
+ height: 30px;
+}
+
+/*------------------------------- RoundConerGreen ----------------------------------*/
+
+.RoundConerGreen .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+}
+
+.RoundConerGreen .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/RoundConerGreen.png');
+}
+
+.RoundConerGreen .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.RoundConerGreen .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.RoundConerGreen .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 19px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.RoundConerGreen .ArrowDownIcon {
+ background-position: center 21px;
+}
+
+.RoundConerGreen .OverArrowDownIcon {
+ background-position: center 117px;
+}
+
+.RoundConerGreen .MinimizedIcon {
+ background-position: center 45px;
+}
+
+.RoundConerGreen .OverMinimizedIcon {
+ background-position: center 141px;
+}
+
+.RoundConerGreen .MaximizedIcon {
+ background-position: center 69px;
+}
+
+.RoundConerGreen .OverMaximizedIcon {
+ background-position: center 165px;
+}
+
+.RoundConerGreen .RestoreIcon {
+ background-position: center 93px;
+}
+
+.RoundConerGreen .OverRestoreIcon {
+ background-position: center 189px;
+}
+
+.RoundConerGreen .NormalIcon {
+ background-position: center 93px;
+}
+
+.RoundConerGreen .OverNormalIcon {
+ background-position: center 189px;
+}
+
+.RoundConerGreen .WindowBarLeft {
+ padding-left: 13px;
+ background-image: url('background/RoundConerGreen.png');
+ background-repeat: no-repeat;
+ background-position: left -153px;
+}
+
+.RoundConerGreen .WindowBarRight {
+ padding-right: 13px;
+ background-image: url('background/RoundConerGreen.png');
+ background-repeat: no-repeat;
+ background-position: right -121px;
+}
+
+.RoundConerGreen .WindowBarCenter {
+ background: url('background/RoundConerGreen.png') repeat-x;
+ background-position: left -90px;
+}
+
+.RoundConerGreen .WindowBarCenter .FixHeight {
+ height: 22px;
+ padding-top: 10px;
+}
+
+.UIPortlet .RoundConerGreen .WindowBarCenter {
+ height: 31px;
+}
+
+.RoundConerGreen .MiddleDecoratorLeft {
+ padding-left: 13px;
+ background: url('background/MRoundConerGreen.png') repeat-y left;
+}
+
+.RoundConerGreen .MiddleDecoratorRight {
+ padding-right: 13px;
+ background: url('background/MRoundConerGreen.png') repeat-y right;
+}
+
+.RoundConerGreen .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .RoundConerGreen .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.RoundConerGreen .BottomDecoratorLeft {
+ padding-left: 13px;
+ background-image: url('background/RoundConerGreen.png');
+ background-repeat: no-repeat;
+ background-position: left -60px;
+}
+
+.RoundConerGreen .BottomDecoratorRight {
+ padding-right: 13px;
+ background-image: url('background/RoundConerGreen.png');
+ background-repeat: no-repeat;
+ background-position: right -30px;
+}
+
+.RoundConerGreen .BottomDecoratorCenter {
+ background: url('background/RoundConerGreen.png') repeat-x;
+ background-position: top;
+}
+
+.RoundConerGreen .BottomDecoratorCenter .FixHeight {
+ height: 30px;
+}
+
+/*-------------------------- ShadowBlue ---------------------------*/
+
+.ShadowBlue .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+}
+
+.ShadowBlue .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/ShadowBlue.png');
+}
+
+.ShadowBlue .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.ShadowBlue .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.ShadowBlue .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 16px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.ShadowBlue .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.ShadowBlue .OverArrowDownIcon {
+ background-position: center 116px;
+}
+
+.ShadowBlue .MinimizedIcon {
+ background-position: center 44px;
+}
+
+.ShadowBlue .OverMinimizedIcon {
+ background-position: center 140px;
+}
+
+.ShadowBlue .MaximizedIcon {
+ background-position: center 68px;
+}
+
+.ShadowBlue .OverMaximizedIcon {
+ background-position: center 164px;
+}
+
+.ShadowBlue .RestoreIcon {
+ background-position: center 92px;
+}
+
+.ShadowBlue .OverRestoreIcon {
+ background-position: center 188px;
+}
+
+.ShadowBlue .NormalIcon {
+ background-position: center 92px;
+}
+
+.ShadowBlue .OverNormalIcon {
+ background-position: center 188px;
+}
+
+.ShadowBlue .WindowBarLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowBlue.png');
+ background-repeat: no-repeat;
+ background-position: left -142px;
+}
+
+.ShadowBlue .WindowBarRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowBlue.png');
+ background-repeat: no-repeat;
+ background-position: right -113px;
+}
+
+.ShadowBlue .WindowBarCenter {
+ background-image: url('background/ShadowBlue.png');
+ background-repeat: repeat-x;
+ background-position: center -84px;
+}
+
+.ShadowBlue .WindowBarCenter .FixHeight {
+ height: 20px;
+ padding-top: 9px;
+}
+
+.ShadowBlue .MiddleDecoratorLeft {
+ padding-left: 11px;
+ background: url('background/MShadowBlue.png') repeat-y left;
+}
+
+.ShadowBlue .MiddleDecoratorRight {
+ padding-right: 10px;
+ background: url('background/MShadowBlue.png') repeat-y right;
+}
+
+.ShadowBlue .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .ShadowBlue .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.ShadowBlue .BottomDecoratorLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowBlue.png');
+ background-repeat: no-repeat;
+ background-position: left -56px;
+}
+
+.ShadowBlue .BottomDecoratorRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowBlue.png');
+ background-repeat: no-repeat;
+ background-position: right -28px;
+}
+
+.ShadowBlue .BottomDecoratorCenter {
+ background-image: url('background/ShadowBlue.png');
+ background-repeat: repeat-x;
+ background-position: center top;
+}
+
+.ShadowBlue .BottomDecoratorCenter .FixHeight {
+ height: 28px;
+}
+
+/*------------------------------ ShadowViolet -----------------------------------*/
+
+.ShadowViolet .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+}
+
+.ShadowViolet .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/ShadowViolet.png');
+}
+
+.ShadowViolet .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.ShadowViolet .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.ShadowViolet .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 16px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.ShadowViolet .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.ShadowViolet .OverArrowDownIcon {
+ background-position: center 116px;
+}
+
+.ShadowViolet .MinimizedIcon {
+ background-position: center 44px;
+}
+
+.ShadowViolet .OverMinimizedIcon {
+ background-position: center 140px;
+}
+
+.ShadowViolet .MaximizedIcon {
+ background-position: center 68px;
+}
+
+.ShadowViolet .OverMaximizedIcon {
+ background-position: center 164px;
+}
+
+.ShadowViolet .RestoreIcon {
+ background-position: center 92px;
+}
+
+.ShadowViolet .OverRestoreIcon {
+ background-position: center 188px;
+}
+
+.ShadowViolet .NormalIcon {
+ background-position: center 92px;
+}
+
+.ShadowViolet .OverNormalIcon {
+ background-position: center 188px;
+}
+
+.ShadowViolet .WindowBarLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowViolet.png');
+ background-repeat: no-repeat;
+ background-position: left -142px;
+}
+
+.ShadowViolet .WindowBarRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowViolet.png');
+ background-repeat: no-repeat;
+ background-position: right -113px;
+}
+
+.ShadowViolet .WindowBarCenter {
+ background-image: url('background/ShadowViolet.png');
+ background-repeat: repeat-x;
+ background-position: center -84px;
+}
+
+.ShadowViolet .WindowBarCenter .FixHeight {
+ height: 20px;
+ padding-top: 9px;
+}
+
+.ShadowViolet .MiddleDecoratorLeft {
+ padding-left: 11px;
+ background: url('background/MShadowViolet.png') repeat-y left;
+}
+
+.ShadowViolet .MiddleDecoratorRight {
+ padding-right: 10px;
+ background: url('background/MShadowViolet.png') repeat-y right;
+}
+
+.ShadowViolet .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .ShadowViolet .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.ShadowViolet .BottomDecoratorLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowViolet.png');
+ background-repeat: no-repeat;
+ background-position: left -56px;
+}
+
+.ShadowViolet .BottomDecoratorRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowViolet.png');
+ background-repeat: no-repeat;
+ background-position: right -28px;
+}
+
+.ShadowViolet .BottomDecoratorCenter {
+ background-image: url('background/ShadowViolet.png');
+ background-repeat: repeat-x;
+ background-position: center top;
+}
+
+.ShadowViolet .BottomDecoratorCenter .FixHeight {
+ height: 28px;
+}
+
+/*------------------------------ ShadowOrange -----------------------------------*/
+
+.ShadowOrange .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+}
+
+.ShadowOrange .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/ShadowOrange.png');
+}
+
+.ShadowOrange .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.ShadowOrange .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.ShadowOrange .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 16px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.ShadowOrange .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.ShadowOrange .OverArrowDownIcon {
+ background-position: center 116px;
+}
+
+.ShadowOrange .MinimizedIcon {
+ background-position: center 44px;
+}
+
+.ShadowOrange .OverMinimizedIcon {
+ background-position: center 140px;
+}
+
+.ShadowOrange .MaximizedIcon {
+ background-position: center 68px;
+}
+
+.ShadowOrange .OverMaximizedIcon {
+ background-position: center 164px;
+}
+
+.ShadowOrange .RestoreIcon {
+ background-position: center 92px;
+}
+
+.ShadowOrange .OverRestoreIcon {
+ background-position: center 188px;
+}
+
+.ShadowOrange .NormalIcon {
+ background-position: center 92px;
+}
+
+.ShadowOrange .OverNormalIcon {
+ background-position: center 188px;
+}
+
+.ShadowOrange .WindowBarLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowOrange.png');
+ background-repeat: no-repeat;
+ background-position: left -142px;
+}
+
+.ShadowOrange .WindowBarRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowOrange.png');
+ background-repeat: no-repeat;
+ background-position: right -113px;
+}
+
+.ShadowOrange .WindowBarCenter {
+ background-image: url('background/ShadowOrange.png');
+ background-repeat: repeat-x;
+ background-position: center -84px;
+}
+
+.ShadowOrange .WindowBarCenter .FixHeight {
+ height: 19px;
+ padding-top: 10px;
+}
+
+.ShadowOrange .MiddleDecoratorLeft {
+ padding-left: 11px;
+ background: url('background/MShadowOrange.png') repeat-y left;
+}
+
+.ShadowOrange .MiddleDecoratorRight {
+ padding-right: 10px;
+ background: url('background/MShadowOrange.png') repeat-y right;
+}
+
+.ShadowOrange .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .ShadowOrange .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.ShadowOrange .BottomDecoratorLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowOrange.png');
+ background-repeat: no-repeat;
+ background-position: left -56px;
+}
+
+.ShadowOrange .BottomDecoratorRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowOrange.png');
+ background-repeat: no-repeat;
+ background-position: right -28px;
+}
+
+.ShadowOrange .BottomDecoratorCenter {
+ background-image: url('background/ShadowOrange.png');
+ background-repeat: repeat-x;
+ background-position: center top;
+}
+
+.ShadowOrange .BottomDecoratorCenter .FixHeight {
+ height: 28px;
+}
+
+/*------------------------------ ShadowPink -----------------------------------*/
+
+
+.ShadowPink .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+}
+
+.ShadowPink .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/ShadowPink.png');
+}
+
+.ShadowPink .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.ShadowPink .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.ShadowPink .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 16px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.ShadowPink .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.ShadowPink .OverArrowDownIcon {
+ background-position: center 116px;
+}
+
+.ShadowPink .MinimizedIcon {
+ background-position: center 44px;
+}
+
+.ShadowPink .OverMinimizedIcon {
+ background-position: center 140px;
+}
+
+.ShadowPink .MaximizedIcon {
+ background-position: center 68px;
+}
+
+.ShadowPink .OverMaximizedIcon {
+ background-position: center 164px;
+}
+
+.ShadowPink .RestoreIcon {
+ background-position: center 92px;
+}
+
+.ShadowPink .OverRestoreIcon {
+ background-position: center 188px;
+}
+
+.ShadowPink .NormalIcon {
+ background-position: center 92px;
+}
+
+.ShadowPink .OverNormalIcon {
+ background-position: center 188px;
+}
+
+.ShadowPink .WindowBarLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowPink.png');
+ background-repeat: no-repeat;
+ background-position: left -142px;
+}
+
+.ShadowPink .WindowBarRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowPink.png');
+ background-repeat: no-repeat;
+ background-position: right -113px;
+}
+
+.ShadowPink .WindowBarCenter {
+ background-image: url('background/ShadowPink.png');
+ background-repeat: repeat-x;
+ background-position: center -84px;
+}
+
+.ShadowPink .WindowBarCenter .FixHeight {
+ height: 19px;
+ padding-top: 10px;
+}
+
+.ShadowPink .MiddleDecoratorLeft {
+ padding-left: 11px;
+ background: url('background/MShadowPink.png') repeat-y left;
+}
+
+.ShadowPink .MiddleDecoratorRight {
+ padding-right: 10px;
+ background: url('background/MShadowPink.png') repeat-y right;
+}
+
+.ShadowPink .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .ShadowPink .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.ShadowPink .BottomDecoratorLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowPink.png');
+ background-repeat: no-repeat;
+ background-position: left -56px;
+}
+
+.ShadowPink .BottomDecoratorRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowPink.png');
+ background-repeat: no-repeat;
+ background-position: right -28px;
+}
+
+.ShadowPink .BottomDecoratorCenter {
+ background-image: url('background/ShadowPink.png');
+ background-repeat: repeat-x;
+ background-position: center top;
+}
+
+.ShadowPink .BottomDecoratorCenter .FixHeight {
+ height: 28px;
+}
+
+/*------------------------------ ShadowGreen -----------------------------------*/
+
+
+.ShadowGreen .WindowBarCenter .WindowPortletInfo {
+ margin-right: 70px; /* orientation=lt */
+ margin-left: 70px; /* orientation=rt */
+}
+
+.ShadowGreen .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 20px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+ background-image: url('background/ShadowGreen.png');
+}
+
+.ShadowGreen .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.ShadowGreen .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.ShadowGreen .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ line-height: 16px;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.ShadowGreen .ArrowDownIcon {
+ background-position: center 20px;
+}
+
+.ShadowGreen .OverArrowDownIcon {
+ background-position: center 116px;
+}
+
+.ShadowGreen .MinimizedIcon {
+ background-position: center 44px;
+}
+
+.ShadowGreen .OverMinimizedIcon {
+ background-position: center 140px;
+}
+
+.ShadowGreen .MaximizedIcon {
+ background-position: center 68px;
+}
+
+.ShadowGreen .OverMaximizedIcon {
+ background-position: center 164px;
+}
+
+.ShadowGreen .RestoreIcon {
+ background-position: center 92px;
+}
+
+.ShadowGreen .OverRestoreIcon {
+ background-position: center 188px;
+}
+
+.ShadowGreen .NormalIcon {
+ background-position: center 92px;
+}
+
+.ShadowGreen .OverNormalIcon {
+ background-position: center 188px;
+}
+
+.ShadowGreen .WindowBarLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowGreen.png');
+ background-repeat: no-repeat;
+ background-position: left -142px;
+}
+
+.ShadowGreen .WindowBarRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowGreen.png');
+ background-repeat: no-repeat;
+ background-position: right -113px;
+}
+
+.ShadowGreen .WindowBarCenter {
+ background-image: url('background/ShadowGreen.png');
+ background-repeat: repeat-x;
+ background-position: center -84px;
+}
+
+.ShadowGreen .WindowBarCenter .FixHeight {
+ height: 20px;
+ padding-top: 9px;
+}
+
+.ShadowGreen .MiddleDecoratorLeft {
+ padding-left: 11px;
+ background: url('background/MShadowGreen.png') repeat-y left;
+}
+
+.ShadowGreen .MiddleDecoratorRight {
+ padding-right: 10px;
+ background: url('background/MShadowGreen.png') repeat-y right;
+}
+
+.ShadowGreen .MiddleDecoratorCenter {
+ background: #ffffff;
+}
+
+.UIPortlet .ShadowGreen .MiddleDecoratorCenter {
+ height: 100%;
+}
+
+.ShadowGreen .BottomDecoratorLeft {
+ padding-left: 11px;
+ background-image: url('background/ShadowGreen.png');
+ background-repeat: no-repeat;
+ background-position: left -56px;
+}
+
+.ShadowGreen .BottomDecoratorRight {
+ padding-right: 10px;
+ background-image: url('background/ShadowGreen.png');
+ background-repeat: no-repeat;
+ background-position: right -28px;
+}
+
+.ShadowGreen .BottomDecoratorCenter {
+ background-image: url('background/ShadowGreen.png');
+ background-repeat: repeat-x;
+ background-position: center top;
+}
+
+.ShadowGreen .BottomDecoratorCenter .FixHeight {
+ height: 28px;
+}
+
+/*------------------------------ SimpleBlue -----------------------------------*/
+
+.SimpleBlue .WindowBarCenter .WindowPortletInfo {
+ margin-right: 60px; /* orientation=lt */
+ margin-left: 60px; /* orientation=rt */
+}
+
+.SimpleBlue .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 16px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+}
+
+.SimpleBlue .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.SimpleBlue .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.SimpleBlue .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.SimpleBlue .ArrowDownIcon {
+ background: url('background/SimpleStyle.gif') left 16px;
+}
+
+.SimpleBlue .OverArrowDownIcon {
+ background: url('background/SimpleStyle.gif') right 16px;
+}
+
+.SimpleBlue .MinimizedIcon {
+ background: url('background/SimpleStyle.gif') left 32px;
+}
+
+.SimpleBlue .OverMinimizedIcon {
+ background: url('background/SimpleStyle.gif') right 32px;
+}
+
+.SimpleBlue .MaximizedIcon {
+ background: url('background/SimpleStyle.gif') left 48px;
+}
+
+.SimpleBlue .OverMaximizedIcon {
+ background: url('background/SimpleStyle.gif') right 48px;
+}
+
+.SimpleBlue .RestoreIcon {
+ background: url('background/SimpleStyle.gif') left 64px;
+}
+
+.SimpleBlue .OverRestoreIcon {
+ background: url('background/SimpleStyle.gif') right 64px;
+}
+
+.SimpleBlue .NormalIcon {
+ background: url('background/SimpleStyle.gif') left 64px;
+}
+
+.SimpleBlue .OverNormalIcon {
+ background: url('background/SimpleStyle.gif') right 64px;
+}
+
+.SimpleBlue .WindowBarLeft {
+ border: 1px solid #3d589d;
+ border-bottom: none;
+}
+
+.SimpleBlue .WindowBarRight {
+ border: 1px solid #d7e5f2;
+}
+
+.SimpleBlue .WindowBarCenter {
+ background: #b0c0f5;
+}
+
+.SimpleBlue .WindowBarCenter .FixHeight {
+ height: 18px;
+ line-height: 18px;
+}
+
+
+.SimpleBlue .MiddleDecoratorLeft {
+ border-left: 1px solid #3d589d;
+ border-right: 1px solid #3d589d;
+}
+
+.SimpleBlue .MiddleDecoratorRight {
+ border: 2px solid #d7e5f2;
+ border-top: none;
+ border-bottom: none;
+}
+
+.SimpleBlue .MiddleDecoratorCenter {
+ border: 1px solid #4a67b1;
+ border-bottom: none;
+ background: #ffffff;
+ padding: 1px;
+}
+
+.SimpleBlue .BottomDecoratorLeft {
+ border-left: 1px solid #3d589d;
+ border-right: 1px solid #3d589d;
+ border-bottom: 1px solid #3d589d;
+}
+
+.SimpleBlue .BottomDecoratorRight {
+ border: 2px solid #d7e5f2;
+ border-top: none;
+}
+
+.SimpleBlue .BottomDecoratorCenter {
+ border: 1px solid #4a67b1;
+ border-top: none;
+ background: white url('background/BGDecoratorCenter1x18.gif') repeat-x;
+}
+
+.SimpleBlue .BottomDecoratorCenter .FixHeight {
+ height: 19px;
+}
+
+/*------------------------------ SimpleViolet -----------------------------------*/
+
+.SimpleViolet .WindowBarCenter .WindowPortletInfo {
+ margin-right: 60px; /* orientation=lt */
+ margin-left: 60px; /* orientation=rt */
+}
+
+.SimpleViolet .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 16px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+}
+
+.SimpleViolet .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.SimpleViolet .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.SimpleViolet .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.SimpleViolet .ArrowDownIcon {
+ background: url('background/SimpleStyle.gif') left 80px;
+}
+
+.SimpleViolet .OverArrowDownIcon {
+ background: url('background/SimpleStyle.gif') right 80px;
+}
+
+.SimpleViolet .MinimizedIcon {
+ background: url('background/SimpleStyle.gif') left 96px;
+}
+
+.SimpleViolet .OverMinimizedIcon {
+ background: url('background/SimpleStyle.gif') right 96px;
+}
+
+.SimpleViolet .MaximizedIcon {
+ background: url('background/SimpleStyle.gif') left 112px;
+}
+
+.SimpleViolet .OverMaximizedIcon {
+ background: url('background/SimpleStyle.gif') right 112px;
+}
+
+.SimpleViolet .RestoreIcon {
+ background: url('background/SimpleStyle.gif') left 128px;
+}
+
+.SimpleViolet .OverRestoreIcon {
+ background: url('background/SimpleStyle.gif') right 128px;
+}
+
+.SimpleViolet .NormalIcon {
+ background: url('background/SimpleStyle.gif') left 128px;
+}
+
+.SimpleViolet .OverNormalIcon {
+ background: url('background/SimpleStyle.gif') right 128px;
+}
+
+.SimpleViolet .WindowBarLeft {
+ border: 1px solid #c41fdc;
+ border-bottom: none;
+}
+
+.SimpleViolet .WindowBarRight {
+ border: 1px solid #ece7ff;
+}
+
+.SimpleViolet .WindowBarCenter {
+ background: #c4a6ff;
+}
+
+.SimpleViolet .WindowBarCenter .FixHeight {
+ height: 18px;
+ line-height: 18px;
+}
+
+.SimpleViolet .MiddleDecoratorLeft {
+ border-left: 1px solid #c41fdc;
+ border-right: 1px solid #c41fdc;
+}
+
+.SimpleViolet .MiddleDecoratorRight {
+ border: 2px solid #ece7ff;
+ border-top: none;
+ border-bottom: none;
+}
+
+.SimpleViolet .MiddleDecoratorCenter {
+ border: 1px solid #5700a9;
+ border-bottom: none;
+ background: #ffffff;
+ padding: 1px;
+}
+
+.SimpleViolet .BottomDecoratorLeft {
+ border: 1px solid #c41fdc;
+ border-top: none;
+}
+
+.SimpleViolet .BottomDecoratorRight {
+ border: 2px solid #ece7ff;
+ border-top: none;
+}
+
+.SimpleViolet .BottomDecoratorCenter {
+ border: 1px solid #5700a9;
+ border-top: none;
+ background: url('background/BGDecoratorCenter1x18.gif') repeat-x;
+}
+
+.SimpleViolet .BottomDecoratorCenter .FixHeight {
+ height: 19px;
+}
+
+.UIPortlet .SimpleViolet .BottomDecoratorCenter {
+ height: 18px;
+}
+
+/*------------------------------ SimpleOrange -----------------------------------*/
+
+.SimpleOrange .WindowBarCenter .WindowPortletInfo {
+ margin-right: 60px; /* orientation=lt */
+ margin-left: 60px; /* orientation=rt */
+}
+
+.SimpleOrange .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 16px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+}
+
+.SimpleOrange .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.SimpleOrange .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.SimpleOrange .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.SimpleOrange .ArrowDownIcon {
+ background: url('background/SimpleStyle.gif') left 144px;
+}
+
+.SimpleOrange .OverArrowDownIcon {
+ background: url('background/SimpleStyle.gif') right 144px;
+}
+
+.SimpleOrange .MinimizedIcon {
+ background: url('background/SimpleStyle.gif') left 160px;
+}
+
+.SimpleOrange .OverMinimizedIcon {
+ background: url('background/SimpleStyle.gif') right 160px;
+}
+
+.SimpleOrange .MaximizedIcon {
+ background: url('background/SimpleStyle.gif') left 192px;
+}
+
+.SimpleOrange .OverMaximizedIcon {
+ background: url('background/SimpleStyle.gif') right 192px;
+}
+
+.SimpleOrange .RestoreIcon {
+ background: url('background/SimpleStyle.gif') left 176px;
+}
+
+.SimpleOrange .OverRestoreIcon {
+ background: url('background/SimpleStyle.gif') right 176px;
+}
+
+.SimpleOrange .NormalIcon {
+ background: url('background/SimpleStyle.gif') left 176px;
+}
+
+.SimpleOrange .OverNormalIcon {
+ background: url('background/SimpleStyle.gif') right 176px;
+}
+
+.SimpleOrange .WindowBarLeft {
+ border: 1px solid #ffb27f;
+ border-bottom: none;
+}
+
+.SimpleOrange .WindowBarRight {
+ border: 1px solid #fff1e5;
+}
+
+.SimpleOrange .WindowBarCenter {
+ background: #ffd1a8;
+}
+
+.SimpleOrange .WindowBarCenter .FixHeight {
+ height: 18px;
+ line-height: 18px;
+}
+
+.SimpleOrange .MiddleDecoratorLeft {
+ border-left: 1px solid #ffb27f;
+ border-right: 1px solid #ffb27f;
+}
+
+.SimpleOrange .MiddleDecoratorRight {
+ border: 2px solid #fff1e5;
+ border-top: none;
+ border-bottom: none;
+}
+
+.SimpleOrange .MiddleDecoratorCenter {
+ border: 1px solid #b27a49;
+ border-bottom: none;
+ background: #ffffff;
+ padding: 1px;
+}
+
+.SimpleOrange .BottomDecoratorLeft {
+ border: 1px solid #ffb27f;
+ border-top: none;
+}
+
+.SimpleOrange .BottomDecoratorRight {
+ border: 2px solid #fff1e5;
+ border-top: none;
+}
+
+.SimpleOrange .BottomDecoratorCenter {
+ border: 1px solid #b27a49;
+ border-top: none;
+ background: url('background/BGDecoratorCenter1x18.gif') repeat-x;
+}
+
+.SimpleOrange .BottomDecoratorCenter .FixHeight {
+ height: 19px;
+}
+
+.UIPortlet .SimpleOrange .BottomDecoratorCenter {
+ height: 18px;
+}
+
+/*------------------------------ SimplePink -----------------------------------*/
+
+.SimplePink .WindowBarCenter .WindowPortletInfo {
+ margin-right: 60px; /* orientation=lt */
+ margin-left: 60px; /* orientation=rt */
+}
+
+.SimplePink .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 16px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+}
+
+.SimplePink .Information {
+ height: 18px; line-height: 18px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.SimplePink .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.SimplePink .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.SimplePink .ArrowDownIcon {
+ background: url('background/SimpleStyle.gif') left 208px;
+}
+
+.SimplePink .OverArrowDownIcon {
+ background: url('background/SimpleStyle.gif') right 208px;
+}
+
+.SimplePink .MinimizedIcon {
+ background: url('background/SimpleStyle.gif') left 224px;
+}
+
+.SimplePink .OverMinimizedIcon {
+ background: url('background/SimpleStyle.gif') right 224px;
+}
+
+.SimplePink .MaximizedIcon {
+ background: url('background/SimpleStyle.gif') left 240px;
+}
+
+.SimplePink .OverMaximizedIcon {
+ background: url('background/SimpleStyle.gif') right 240px;
+}
+
+.SimplePink .RestoreIcon {
+ background: url('background/SimpleStyle.gif') left 256px;
+}
+
+.SimplePink .OverRestoreIcon {
+ background: url('background/SimpleStyle.gif') right 256px;
+}
+
+.SimplePink .NormalIcon {
+ background: url('background/SimpleStyle.gif') left 256px;
+}
+
+.SimplePink .OverNormalIcon {
+ background: url('background/SimpleStyle.gif') right 256px;
+}
+
+.SimplePink .WindowBarLeft {
+ border: 1px solid #b69db3;
+ border-bottom: none;
+}
+
+.SimplePink .WindowBarRight {
+ border: 1px solid #fff1fd;
+}
+
+.SimplePink .WindowBarCenter {
+ background: #fdd8f9;
+}
+
+.SimplePink .WindowBarCenter .FixHeight {
+ height: 18px;
+ line-height: 18px;
+}
+
+.SimplePink .MiddleDecoratorLeft {
+ border-left: 1px solid #b69db3;
+ border-right: 1px solid #b69db3;
+}
+
+.SimplePink .MiddleDecoratorRight {
+ border: 2px solid #fff1fd;
+ border-top: none;
+ border-bottom: none;
+}
+
+.SimplePink .MiddleDecoratorCenter {
+ border: 1px solid #9a5591;
+ border-bottom: none;
+ background: #ffffff;
+ padding: 1px;
+}
+
+.SimplePink .BottomDecoratorLeft {
+ border: 1px solid #b69db3;
+ border-top: none;
+}
+
+.SimplePink .BottomDecoratorRight {
+ border: 2px solid #fff1fd;
+ border-top: none;
+}
+
+.SimplePink .BottomDecoratorCenter {
+ border: 1px solid #9a5591;
+ border-top: none;
+ background: url('background/BGDecoratorCenter1x18.gif') repeat-x;
+}
+
+.SimplePink .BottomDecoratorCenter .FixHeight {
+ height: 19px;
+}
+
+.UIPortlet .SimplePink .BottomDecoratorCenter {
+ height: 18px;
+}
+
+/*------------------------------ SimpleGreen -----------------------------------*/
+
+.SimpleGreen .WindowBarCenter .WindowPortletInfo {
+ margin-right: 60px; /* orientation=lt */
+ margin-left: 60px; /* orientation=rt */
+}
+
+.SimpleGreen .WindowBarCenter .ControlIcon {
+ float: right; /* orientation=lt */
+ float: left; /* orientation=rt */
+ width: 16px; height: 16px;
+ margin-right: 2px; /* orientation=lt */
+ margin-left: 2px; /* orientation=rt */
+ cursor: pointer;
+}
+
+.SimpleGreen .Information {
+ line-height: 18px;
+ width: 100px;
+ font-size: 10px;
+ margin-right: 18px; /* orientation=lt */
+ margin-left: 18px; /* orientation=rt */
+ padding-left: 5px; /* orientation=lt */
+ padding-right: 5px; /* orientation=rt */
+}
+
+.SimpleGreen .WindowBarCenter .WindowPortletIcon {
+ background-position: left top; /* orientation=lt */
+ background-position: right top; /* orientation=rt */
+ padding-left: 20px; /* orientation=lt */
+ padding-right: 20px; /* orientation=rt */
+ height: 16px;
+}
+
+.SimpleGreen .WindowBarCenter .PortletName {
+ font-weight: bold;
+ color: #333333;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.SimpleGreen .ArrowDownIcon {
+ background: url('background/SimpleStyle.gif') left 272px;
+}
+
+.SimpleGreen .OverArrowDownIcon {
+ background: url('background/SimpleStyle.gif') right 272px;
+}
+
+.SimpleGreen .MinimizedIcon {
+ background: url('background/SimpleStyle.gif') left 288px;
+}
+
+.SimpleGreen .OverMinimizedIcon {
+ background: url('background/SimpleStyle.gif') right 288px;
+}
+
+.SimpleGreen .MaximizedIcon {
+ background: url('background/SimpleStyle.gif') left 304px;
+}
+
+.SimpleGreen .OverMaximizedIcon {
+ background: url('background/SimpleStyle.gif') right 304px;
+}
+
+.SimpleGreen .RestoreIcon {
+ background: url('background/SimpleStyle.gif') left 320px;
+}
+
+.SimpleGreen .OverRestoreIcon {
+ background: url('background/SimpleStyle.gif') right 320px;
+}
+
+.SimpleGreen .NormalIcon {
+ background: url('background/SimpleStyle.gif') left 320px;
+}
+
+.SimpleGreen .OverNormalIcon {
+ background: url('background/SimpleStyle.gif') right 320px;
+}
+
+.SimpleGreen .WindowBarLeft {
+ border: 1px solid #a0b9b6;
+ border-bottom: none;
+}
+
+.SimpleGreen .WindowBarRight {
+ border: 1px solid #eaf4ff;
+}
+
+.SimpleGreen .WindowBarCenter {
+ background: #a3d0ff;
+}
+
+.SimpleGreen .WindowBarCenter .FixHeight {
+ height: 18px;
+ line-height: 18px;
+}
+
+
+.SimpleGreen .MiddleDecoratorLeft {
+ border-left: 1px solid #a0b9b6;
+ border-right: 1px solid #a0b9b6;
+}
+
+.SimpleGreen .MiddleDecoratorRight {
+ border: 2px solid #eaf4ff;
+ border-top: none;
+ border-bottom: none;
+}
+
+.SimpleGreen .MiddleDecoratorCenter {
+ background: #ffffff;
+ border: 1px solid #4c717e;
+ border-bottom: none;
+ padding: 1px;
+}
+
+.SimpleGreen .BottomDecoratorLeft {
+ border: 1px solid #a0b9b6;
+ border-top: none;
+}
+
+.SimpleGreen .BottomDecoratorRight {
+ background: #eaf4ff;
+ padding: 0px 2px 2px 2px;
+}
+
+.SimpleGreen .BottomDecoratorCenter {
+ border: 1px solid #4c717e;
+ border-top: none;
+ background: url('background/BGDecoratorCenter1x18.gif') repeat-x;
+}
+
+.SimpleGreen .BottomDecoratorCenter .FixHeight {
+ height: 19px;
+}
+
+.UIPortlet .SimpleGreen .BottomDecoratorCenter {
+ height: 18px;
+}
13 years, 6 months
gatein SVN: r6770 - in epp/portal/branches/EPP_5_2_Branch: component/common/src/main/java/conf and 41 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-06-28 08:48:20 -0400 (Tue, 28 Jun 2011)
New Revision: 6770
Added:
epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/conf/configuration-jetty.properties
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/gatein_objects_1_2.xsd
epp/portal/branches/EPP_5_2_Branch/component/web/security/src/main/java/org/exoplatform/web/security/PortalLoginController.java
Modified:
epp/portal/branches/EPP_5_2_Branch/
epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/cache/future/FutureExoCache.java
epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/chromattic/ChromatticLifeCycle.java
epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/chromattic/ChromatticManager.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/NewPortalConfig.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/model/Page.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/model/PortalConfig.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/GlobalKey.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSession.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSessionManager.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/data/Mapper.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/data/PortalData.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/resources/binding.xml
epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/TestXSDCorruption.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestCache.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestContentRegistry.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestDataStorage.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestSerialization.java
epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/resources/conf/exo.portal.component.portal-configuration1.xml
epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/resources/portal/portal/classic/portal.xml
epp/portal/branches/EPP_5_2_Branch/component/web/controller/src/main/java/org/exoplatform/web/WebAppController.java
epp/portal/branches/EPP_5_2_Branch/component/web/resources/src/main/java/org/exoplatform/portal/application/ResourceRequestFilter.java
epp/portal/branches/EPP_5_2_Branch/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkinService.java
epp/portal/branches/EPP_5_2_Branch/examples/extension/war/src/main/webapp/templates/groovy/webui/component/UIHomePagePortlet.gtmpl
epp/portal/branches/EPP_5_2_Branch/examples/portal/war/src/main/webapp/templates/groovy/webui/component/UIHomePagePortlet.gtmpl
epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js
epp/portal/branches/EPP_5_2_Branch/packaging/profiles.xml
epp/portal/branches/EPP_5_2_Branch/pom.xml
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/GroupManagement.java
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component/UIUserToolBarGroupPortlet.java
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component/UIUserToolBarSitePortlet.java
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component/UIUserToolBarSitePortlet.gtmpl
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/applicationregistry/webui/component/UIGadgetInfo.gtmpl
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/navigation/webui/component/UISiteManagement.gtmpl
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet/DefaultStylesheet.css
epp/portal/branches/EPP_5_2_Branch/portlet/web/src/main/webapp/groovy/portal/webui/component/UIPortalNavigation.gtmpl
epp/portal/branches/EPP_5_2_Branch/settings.xml
epp/portal/branches/EPP_5_2_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageBrowser/Stylesheet.css
epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_en.properties
epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml
epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/portal/application-registry-configuration.xml
epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/portal/portal-configuration.xml
epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/groovy/portal/webui/UILoginForm.gtmpl
epp/portal/branches/EPP_5_2_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/account/UIUserSelector.java
epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIComponentDecorator.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/container/UIContainerActionListener.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/container/UIContainerForm.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/PageNavigationUtils.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/UIPortalNavigation.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/page/UIPageActionListener.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/page/UIPageBrowser.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortal.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortalForm.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/util/PortalDataMapper.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/UIMaskWorkspace.java
epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/UIPortalApplicationLifecycle.java
Log:
JBEPP-970 Cumulative update and merge
Property changes on: epp/portal/branches/EPP_5_2_Branch
___________________________________________________________________
Modified: svn:mergeinfo
- /epp/portal/branches/EPP_5_1_0_GA_JBEPP-795:5868
/portal/branches/branch-GTNPORTAL-1592:4894
/portal/branches/branch-GTNPORTAL-1643:5002,5063,5167
/portal/branches/branch-GTNPORTAL-1700:5348,5402,5445
/portal/branches/branch-GTNPORTAL-1731:5668
/portal/branches/branch-GTNPORTAL-1745:5765
/portal/branches/branch-GTNPORTAL-1822:5943
/portal/branches/branch-GTNPORTAL-1832:6030,6063
/portal/trunk:4891,5744,5822,5943,6168,6196,6201-6203,6205-6206
+ /epp/portal/branches/EPP_5_1_0_GA_JBEPP-795:5868
/portal/branches/branch-GTNPORTAL-1592:4894
/portal/branches/branch-GTNPORTAL-1643:5002,5063,5167
/portal/branches/branch-GTNPORTAL-1700:5348,5402,5445
/portal/branches/branch-GTNPORTAL-1731:5668
/portal/branches/branch-GTNPORTAL-1745:5765
/portal/branches/branch-GTNPORTAL-1822:5943
/portal/branches/branch-GTNPORTAL-1832:6030,6063
/portal/branches/site-describability:6171-6235
/portal/trunk:4891,5744,5822,5943,6168,6196,6201-6203,6205-6206
Copied: epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/conf/configuration-jetty.properties (from rev 5822, portal/trunk/component/common/src/main/java/conf/configuration-jetty.properties)
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/conf/configuration-jetty.properties (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/conf/configuration-jetty.properties 2011-06-28 12:48:20 UTC (rev 6770)
@@ -0,0 +1,62 @@
+#
+# Copyright (C) 2009 eXo Platform SAS.
+#
+# This is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation; either version 2.1 of
+# the License, or (at your option) any later version.
+#
+# This software is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this software; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+#
+
+# Data
+gatein.data.dir=../gatein/data
+
+# DB
+gatein.db.data.dir=${gatein.data.dir}/db
+
+# JCR
+gatein.jcr.config.type=local
+gatein.jcr.datasource.name=jdbcjcr
+gatein.jcr.datasource.dialect=auto
+gatein.jcr.datasource.driver=org.hsqldb.jdbcDriver
+gatein.jcr.datasource.url=jdbc:hsqldb:file:${gatein.db.data.dir}/data/jdbcjcr_${name}
+gatein.jcr.datasource.username=sa
+gatein.jcr.datasource.password=
+
+gatein.jcr.data.dir=${gatein.data.dir}/jcr
+gatein.jcr.storage.data.dir=${gatein.jcr.data.dir}/values
+gatein.jcr.cache.config=classpath:/conf/jcr/jbosscache/${gatein.jcr.config.type}/config.xml
+gatein.jcr.lock.cache.config=classpath:/conf/jcr/jbosscache/${gatein.jcr.config.type}/lock-config.xml
+gatein.jcr.index.data.dir=${gatein.jcr.data.dir}/lucene
+gatein.jcr.index.changefilterclass=org.exoplatform.services.jcr.impl.core.query.DefaultChangesFilter
+gatein.jcr.index.cache.config=classpath:/conf/jcr/jbosscache/cluster/indexer-config.xml
+gatein.jcr.jgroups.config=classpath:/conf/jcr/jbosscache/cluster/udp-mux.xml
+
+# IDM
+gatein.idm.datasource.name=jdbcidm
+gatein.idm.datasource.driver=org.hsqldb.jdbcDriver
+gatein.idm.datasource.url=jdbc:hsqldb:file:${gatein.db.data.dir}/data/jdbcidm_${name}
+gatein.idm.datasource.username=sa
+gatein.idm.datasource.password=
+
+# Arjuna configuration
+com.arjuna.ats.arjuna.objectstore.objectStoreDir=${gatein.data.dir}/jta
+
+# EMail
+gatein.email.smtp.username=
+gatein.email.smtp.password=
+gatein.email.smtp.host=smtp.gmail.com
+gatein.email.smtp.port=465
+gatein.email.smtp.starttls.enable=true
+gatein.email.smtp.auth=true
+gatein.email.smtp.socketFactory.port=465
+gatein.email.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
\ No newline at end of file
Modified: epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/cache/future/FutureExoCache.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/cache/future/FutureExoCache.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/cache/future/FutureExoCache.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -41,6 +41,16 @@
this.cache = cache;
}
+ public void clear()
+ {
+ cache.clearCache();
+ }
+
+ public void remove(K key)
+ {
+ cache.remove(key);
+ }
+
@Override
protected V get(K key)
{
Modified: epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/chromattic/ChromatticLifeCycle.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/chromattic/ChromatticLifeCycle.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/chromattic/ChromatticLifeCycle.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -150,7 +150,7 @@
{
return manager;
}
-
+
AbstractContext getLoginContext()
{
Synchronization sync = manager.getSynchronization();
@@ -164,7 +164,7 @@
//
return currentContext.get();
}
-
+
/**
* Returns <code>#getContext(false)</code>.
*
Modified: epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/chromattic/ChromatticManager.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/chromattic/ChromatticManager.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/common/src/main/java/org/exoplatform/commons/chromattic/ChromatticManager.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -50,6 +50,10 @@
this.lifeCycleToWorkspaceMap = new HashMap<String, String>();
}
+ public Synchronization getCurrentSynchronization() {
+ return currentSynchronization.get();
+ }
+
public ChromatticLifeCycle getLifeCycle(String lifeCycleName)
{
return lifeCycles.get(lifeCycleName);
Copied: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/gatein_objects_1_2.xsd (from rev 6756, portal/trunk/component/portal/src/main/java/gatein_objects_1_2.xsd)
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/gatein_objects_1_2.xsd (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/gatein_objects_1_2.xsd 2011-06-28 12:48:20 UTC (rev 6770)
@@ -0,0 +1,228 @@
+<?xml version="1.0"?>
+<!--
+ ~ Copyright (C) 2009 eXo Platform SAS.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<!--
+ DISCLAIMER :
+ - THIS FILE IS NOT YET FINAL AND IS SUBJECT TO CHANGES
+ - IT WILL BE CONSIDERED AS AN API (I.E FINAL) WHEN GATEIN 3.2 WILL BE RELEASED
+ -->
+
+<xs:schema
+ targetNamespace="http://www.gatein.org/xml/ns/gatein_objects_1_2"
+ xmlns="http://www.gatein.org/xml/ns/gatein_objects_1_2"
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified"
+ attributeFormDefault="unqualified"
+ version="1.0">
+
+ <!-- A top page element -->
+ <xs:element name="page" type="pageType"/>
+
+ <!-- A top page-set element -->
+ <xs:element name="page-set" type="pageSetType"/>
+
+ <!-- A top portal-config element -->
+ <xs:element name="portal-config" type="portalConfigType"/>
+
+ <!-- A top container element -->
+ <xs:element name="container" type="containerType"/>
+
+ <!-- A top node-navigation element -->
+ <xs:element name="node-navigation" type="nodeNavigationType"/>
+
+ <!-- The type of a top navigation node -->
+ <xs:complexType name="nodeNavigationType">
+ <xs:sequence>
+ <xs:element name="priority" type="xs:positiveInteger"/>
+ <xs:element name="page-nodes" minOccurs="0" maxOccurs="1">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="node" type="nodeType" minOccurs="0" maxOccurs="unbounded"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
+ </xs:complexType>
+
+ <!-- The type of a navigation node -->
+ <xs:complexType name="nodeType">
+ <xs:sequence>
+ <xs:element name="uri" type="xs:string"/>
+ <xs:element name="name" type="xs:string"/>
+ <xs:element name="label" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="icon" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="start-publication-date" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="end-publication-date" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="visibility" type="visibility" default="DISPLAYED" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="page-reference" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="node" type="nodeType" minOccurs="0" maxOccurs="unbounded"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:simpleType name="visibility">
+ <xs:restriction base='xs:string'>
+ <xs:enumeration value="DISPLAYED"/>
+ <xs:enumeration value="HIDDEN"/>
+ <xs:enumeration value="TEMPORAL"/>
+ <xs:enumeration value="SYSTEM"/>
+ </xs:restriction>
+ </xs:simpleType>
+
+ <xs:complexType name="pageSetType">
+ <xs:sequence>
+ <xs:element name="page" type="pageType" minOccurs="0" maxOccurs="unbounded"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="portalConfigType">
+ <xs:sequence>
+ <xs:element name="portal-name" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="label" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="description" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="locale" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="access-permissions" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="edit-permission" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="skin" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="properties" type="propertiesType" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="portal-layout" minOccurs="1" maxOccurs="1">
+ <xs:complexType>
+ <xs:group ref="containerChildrenGroup"/>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="propertiesType">
+ <xs:sequence minOccurs="0" maxOccurs="unbounded">
+ <xs:element name="entry" type="propertiesEntryType" minOccurs="1" maxOccurs="1"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="propertiesEntryType">
+ <xs:simpleContent>
+ <xs:extension base="xs:string">
+ <xs:attribute name="key" type="xs:string"/>
+ </xs:extension>
+ </xs:simpleContent>
+ </xs:complexType>
+
+ <xs:group name="containerChildrenGroup">
+ <xs:sequence>
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
+ <xs:element name="portlet-application" type="portletApplicationType" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="gadget-application" type="gadgetApplicationType" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="container" type="containerType" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="page-body" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="site-body" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ </xs:choice>
+ </xs:sequence>
+ </xs:group>
+
+ <xs:complexType name="pageType">
+ <xs:sequence>
+ <xs:element name="name" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="title" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="factory-id" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="access-permissions" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="edit-permission" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="show-max-window" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
+ <xs:group ref="containerChildrenGroup"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="containerType">
+ <xs:sequence>
+ <xs:element name="name" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="title" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="icon" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="access-permissions" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="factory-id" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="description" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:group ref="containerChildrenGroup"/>
+ </xs:sequence>
+ <xs:attribute name="id" type="xs:string"/>
+ <xs:attribute name="template" type="xs:string"/>
+ <xs:attribute name="attribute" type="xs:string"/>
+ <xs:attribute name="width" type="xs:string"/>
+ <xs:attribute name="height" type="xs:string"/>
+ </xs:complexType>
+
+ <xs:complexType name="portletApplicationType">
+ <xs:sequence>
+ <xs:choice>
+ <xs:element name="portlet" type="portletType"/>
+ <xs:element name="wsrp" type="xs:string"/>
+ </xs:choice>
+ <xs:element name="title" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="access-permissions" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="show-info-bar" type="xs:boolean" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="show-application-state" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="show-application-mode" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="description" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="icon" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="width" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="height" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="gadgetApplicationType">
+ <xs:sequence>
+ <xs:element name="gadget" type="gadgetType" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="theme" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="title" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="access-permissions" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="show-info-bar" type="xs:boolean" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="show-application-state" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="show-application-mode" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="description" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="icon" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="width" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ <xs:element name="height" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="portletType">
+ <xs:sequence>
+ <xs:element name="application-ref" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="portlet-ref" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="preferences" type="portletPreferencesType" minOccurs="0" maxOccurs="1"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="gadgetType">
+ <xs:sequence>
+ <xs:element name="gadget-ref" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="portletPreferencesType">
+ <xs:sequence>
+ <xs:element name="preference" type="portletPreferenceType" minOccurs="0" maxOccurs="unbounded"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="portletPreferenceType">
+ <xs:sequence>
+ <xs:element name="name" type="xs:string" minOccurs="1" maxOccurs="1"/>
+ <xs:element name="value" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
+ <xs:element name="read-only" type="xs:string" minOccurs="0" maxOccurs="1"/>
+ </xs:sequence>
+ </xs:complexType>
+</xs:schema>
\ No newline at end of file
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/NewPortalConfig.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/NewPortalConfig.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/NewPortalConfig.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -36,6 +36,10 @@
private String templateName;
private String location;
+
+ private String label;
+
+ private String description;
/**
* @deprecated use the location instead
@@ -52,10 +56,12 @@
this.ownerType = cfg.ownerType;
this.templateLocation = cfg.templateLocation;
this.location = cfg.location;
+ this.label = cfg.label;
+ this.description = cfg.description;
this.templateName = cfg.templateName;
this.predefinedOwner = new HashSet<String>(cfg.predefinedOwner);
}
-
+
public NewPortalConfig(String path)
{
this.location = path;
@@ -126,10 +132,30 @@
this.ownerType = ownerType;
}
+ public String getLabel()
+ {
+ return label;
+ }
+
+ public void setLabel(String label)
+ {
+ this.label = label;
+ }
+
+ public String getDescription()
+ {
+ return description;
+ }
+
+ public void setDescription(String description)
+ {
+ this.description = description;
+ }
+
@Override
public String toString()
{
- return "PortalConfig[predefinedOwner=" + predefinedOwner + ",ownerType=" + ownerType + ",templateName=" + templateName +
- "location=" + location + "]";
+ return "PortalConfig[predefinedOwner=" + predefinedOwner + ",ownerType=" + ownerType + ",templateName="
+ + templateName + ",label=" + label + ",description=" + description + ",location=" + location + "]";
}
}
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/model/Page.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/model/Page.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/model/Page.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -50,6 +50,13 @@
{
}
+ public Page(String ownerType, String ownerId, String name)
+ {
+ this.ownerType = ownerType;
+ this.ownerId = ownerId;
+ this.name = name;
+ }
+
public Page(PageData data)
{
super(data);
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/model/PortalConfig.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/model/PortalConfig.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/config/model/PortalConfig.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -50,6 +50,10 @@
private String locale;
+ private String label;
+
+ private String description;
+
private String[] accessPermissions;
private String editPermission;
@@ -95,6 +99,8 @@
this.name = data.getName();
this.type = data.getType();
this.locale = data.getLocale();
+ this.label = data.getLabel();
+ this.description = data.getDescription();
this.accessPermissions = data.getAccessPermissions().toArray(new String[data.getAccessPermissions().size()]);
this.editPermission = data.getEditPermission();
this.properties = new Properties(data.getProperties());
@@ -238,6 +244,26 @@
setProperty(PortalProperties.SESSION_ALIVE, type);
}
+ public void setDescription(String description)
+ {
+ this.description = description;
+ }
+
+ public String getDescription()
+ {
+ return description;
+ }
+
+ public void setLabel(String label)
+ {
+ this.label = label;
+ }
+
+ public String getLabel()
+ {
+ return label;
+ }
+
static public class PortalConfigSet
{
private ArrayList<PortalConfig> portalConfigs;
@@ -281,6 +307,8 @@
name,
type,
locale,
+ label,
+ description,
accessPermissions,
editPermission,
properties,
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/GlobalKey.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/GlobalKey.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/GlobalKey.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -55,6 +55,16 @@
this.localKey = localKey;
}
+ public String getRepositoryId()
+ {
+ return repositoryId;
+ }
+
+ public Serializable getLocalKey()
+ {
+ return localKey;
+ }
+
@Override
public int hashCode()
{
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSession.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSession.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSession.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -41,6 +41,7 @@
import org.gatein.mop.core.api.workspace.PageImpl;
import javax.jcr.RepositoryException;
+import javax.jcr.Session;
import java.io.Serializable;
import java.lang.reflect.Field;
import java.util.HashMap;
@@ -55,7 +56,7 @@
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
* @version $Revision$
*/
-public class POMSession
+public final class POMSession
{
/** . */
@@ -159,7 +160,9 @@
}
try
{
- modified = getSession().getJCRSession().hasPendingChanges();
+ ChromatticSession session = getSession();
+ Session jcrSession = session.getJCRSession();
+ modified = jcrSession.hasPendingChanges();
}
catch (RepositoryException e)
{
@@ -239,6 +242,11 @@
return prefs;
}
+ public POMSessionManager getManager()
+ {
+ return mgr;
+ }
+
private static final BaseEncodingObjectFormatter formatter = new BaseEncodingObjectFormatter();
public <O extends WorkspaceObject> Iterator<O> findObjects(ObjectType<O> type, ObjectType<? extends Site> siteType,
@@ -252,7 +260,7 @@
ownerId = ownerId.trim();
if (!ownerId.isEmpty())
{
- ownerIdChunk = formatter.encodeNodeName(null, ownerId);
+ ownerIdChunk = "mop:" + formatter.encodeNodeName(null, ownerId);
}
}
@@ -324,7 +332,7 @@
"jcr:path LIKE '" + workspaceChunk + "/" + ownerTypeChunk + "/" + ownerIdChunk
+ "/mop:rootpage/mop:children/mop:pages/mop:children/%' AND " +
"(" +
- "LOWER(gtn:name) LIKE '%" + title.toLowerCase() + "%' ESCAPE '\\')";
+ "LOWER(gtn:name) LIKE '%" + title.trim().toLowerCase() + "%' ESCAPE '\\')";
}
else
{
@@ -371,20 +379,40 @@
}
public void afterSynchronization(SynchronizationStatus status)
{
- if (status == SynchronizationStatus.SAVED && staleKeys != null)
+ if (status == SynchronizationStatus.SAVED)
{
- if (log.isTraceEnabled())
- {
- log.trace("Session commit about to evict entries " + staleKeys);
- }
- for (Serializable key : staleKeys)
- {
- mgr.cacheRemove(key);
- }
+ reset();
+ }
+ }
+ };
+
+ /**
+ * Reset the session and set its state like it was a newly created session.
+ */
+ private void reset()
+ {
+ // Evict entries from the shared cache if any
+ if (staleKeys != null && staleKeys.size() > 0)
+ {
+ if (log.isTraceEnabled())
+ {
+ log.trace("About to evict entries " + staleKeys);
}
+ for (Serializable key : staleKeys)
+ {
+ mgr.cacheRemove(key);
+ }
+ staleKeys.clear();
}
- };
+ // Reset modified flag
+ if (log.isTraceEnabled())
+ {
+ log.trace("Setting modified flag to false");
+ }
+ modified = false;
+ }
+
public <V> V execute(POMTask<V> task) throws Exception
{
if (isInTask)
@@ -414,7 +442,11 @@
{
if (!markedForRollback)
{
+ // Trigger persistent save
model.save();
+
+ // Reset modified state
+ reset();
}
else
{
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSessionManager.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSessionManager.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/config/POMSessionManager.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -24,8 +24,12 @@
import org.exoplatform.commons.chromattic.SessionContext;
import org.exoplatform.portal.pom.config.cache.DataCache;
import org.exoplatform.portal.pom.config.cache.PortalNamesCache;
+import org.exoplatform.portal.pom.data.OwnerKey;
+import org.exoplatform.portal.pom.data.PortalKey;
import org.exoplatform.services.cache.CacheService;
+import org.exoplatform.services.cache.CachedObjectSelector;
import org.exoplatform.services.cache.ExoCache;
+import org.exoplatform.services.cache.ObjectCacheInfo;
import org.exoplatform.services.jcr.RepositoryService;
import org.gatein.common.logging.Logger;
import org.gatein.common.logging.LoggerFactory;
@@ -106,7 +110,7 @@
public void cacheRemove(Serializable key)
{
- GlobalKey globalKey = GlobalKey.wrap(configurator.getRepositoryName(), key);
+ final GlobalKey globalKey = GlobalKey.wrap(configurator.getRepositoryName(), key);
//
if (log.isTraceEnabled())
@@ -115,7 +119,47 @@
}
//
- cache.remove(globalKey);
+ if (key instanceof PortalKey)
+ {
+ // This code seems complex but actually it tries to find all objects in cache that have the same
+ // owner key than the portal key, for instance if we remove (portal,classic) then all pages
+ // related to (portal,classic) are also evicted
+ final PortalKey portalKey = (PortalKey)key;
+ try
+ {
+ cache.select(new CachedObjectSelector<GlobalKey, Object>()
+ {
+ public boolean select(GlobalKey selectedGlobalKey, ObjectCacheInfo<?> ocinfo)
+ {
+ if (globalKey.getRepositoryId().equals(selectedGlobalKey.getRepositoryId()))
+ {
+ Serializable selectedLocalKey = selectedGlobalKey.getLocalKey();
+ if (selectedLocalKey instanceof OwnerKey)
+ {
+ OwnerKey selectedOwnerKey = (OwnerKey)selectedLocalKey;
+ if (selectedOwnerKey.getType().equals(portalKey.getType()) && selectedOwnerKey.getId().equals(portalKey.getId()))
+ {
+ return true;
+ }
+ }
+ }
+ return false;
+ }
+ public void onSelect(ExoCache<? extends GlobalKey, ?> exoCache, GlobalKey key, ObjectCacheInfo<?> ocinfo) throws Exception
+ {
+ cache.remove(key);
+ }
+ });
+ }
+ catch (Exception e)
+ {
+ log.error("Unexpected error when clearing pom cache", e);
+ }
+ }
+ else
+ {
+ cache.remove(globalKey);
+ }
}
public void start()
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/data/Mapper.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/data/Mapper.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/data/Mapper.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -19,6 +19,8 @@
package org.exoplatform.portal.pom.data;
+import javassist.runtime.Desc;
+
import org.exoplatform.portal.config.NoSuchDataException;
import org.exoplatform.portal.config.StaleModelException;
import org.exoplatform.portal.config.UserACL;
@@ -312,6 +314,8 @@
accessPermissions = pr.getAccessPermissions();
editPermission = pr.getEditPermission();
}
+
+ Described described = src.adapt(Described.class);
//
return new PortalData(
@@ -319,6 +323,8 @@
src.getName(),
type,
attrs.getValue(MappedAttributes.LOCALE),
+ described.getName(),
+ described.getDescription(),
accessPermissions,
editPermission,
Collections.unmodifiableMap(properties),
@@ -348,6 +354,10 @@
ProtectedResource pr = dst.adapt(ProtectedResource.class);
pr.setAccessPermissions(src.getAccessPermissions());
pr.setEditPermission(src.getEditPermission());
+
+ Described described = dst.adapt(Described.class);
+ described.setName(src.getLabel());
+ described.setDescription(src.getDescription());
//
org.gatein.mop.api.workspace.Page templates = dst.getRootPage().getChild("templates");
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/data/PortalData.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/data/PortalData.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/java/org/exoplatform/portal/pom/data/PortalData.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -48,12 +48,18 @@
/** . */
private final ContainerData portalLayout;
-
+
+ private final String label;
+
+ private final String description;
+
public PortalData(
String storageId,
String name,
String type,
String locale,
+ String label,
+ String description,
List<String> accessPermissions,
String editPermission,
Map<String, String> properties,
@@ -65,6 +71,8 @@
//
this.key = new PortalKey(type, name);
this.locale = locale;
+ this.label = label;
+ this.description = description;
this.accessPermissions = accessPermissions;
this.editPermission = editPermission;
this.properties = properties;
@@ -116,4 +124,14 @@
{
return portalLayout;
}
+
+ public String getDescription()
+ {
+ return description;
+ }
+
+ public String getLabel()
+ {
+ return label;
+ }
}
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/resources/binding.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/resources/binding.xml 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/main/resources/binding.xml 2011-06-28 12:48:20 UTC (rev 6770)
@@ -104,7 +104,9 @@
<mapping name="portal-config" class="org.exoplatform.portal.config.model.PortalConfig" ordered="false">
<value name="portal-name" field="name"/>
- <value name="locale" field="locale"/>
+ <value name="label" field="label" default="" />
+ <value name="description" field="description" default="" />
+ <value name="locale" field="locale" />
<value name="access-permissions" field="accessPermissions" usage="optional"/>
<value name="edit-permission" field="editPermission" usage="optional"/>
<value name="skin" field="skin" usage="optional"/>
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/TestXSDCorruption.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/TestXSDCorruption.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/TestXSDCorruption.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -34,7 +34,7 @@
private void assertHash(String expected, String resourcePath) throws Exception
{
InputStream in = Thread.currentThread().getContextClassLoader().getResourceAsStream(resourcePath);
- assertNotNull(in);
+ assertNotNull("For path " + resourcePath, in);
byte[] bytes = IOTools.getBytes(in);
java.security.MessageDigest digester = java.security.MessageDigest.getInstance("MD5");
digester.update(bytes);
@@ -55,9 +55,10 @@
assertEquals(expected, sb.toString());
}
- public void testGateInResources1_0() throws Exception
+ public void testGateInResources1_x() throws Exception
{
assertHash("d0591b0a022a0c2929e1aed8979857cd", "gatein_objects_1_0.xsd");
assertHash("99ae24c9bbfe1b59e066756a29ab6c79", "gatein_objects_1_1.xsd");
+ assertHash("9a031c15ce0e2b4dd1e283458f590581", "gatein_objects_1_2.xsd");
}
}
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestCache.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestCache.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestCache.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -20,9 +20,9 @@
import org.exoplatform.container.PortalContainer;
import org.exoplatform.portal.config.model.Page;
+import org.exoplatform.portal.config.model.PortalConfig;
import org.exoplatform.portal.pom.config.POMSession;
import org.exoplatform.portal.pom.config.POMSessionManager;
-
import java.util.concurrent.atomic.AtomicBoolean;
/**
@@ -128,4 +128,48 @@
//
end();
}
+
+ public void testGetPageFromRemovedPortal() throws Exception
+ {
+ // Create what we need for the test
+ begin();
+ session = mgr.openSession();
+ PortalConfig portalConfig = new PortalConfig("portal", "testGetPageFromRemovedPortal");
+ storage_.create(portalConfig);
+ storage_.create(new Page("portal", "testGetPageFromRemovedPortal", "home"));
+ end(true);
+
+ // Clear cache
+ mgr.clearCache();
+
+ // The first transaction
+ begin();
+ session = mgr.openSession();
+
+ // Get page from JCR and it should be stored in cache
+ Page page = storage_.getPage("portal::testGetPageFromRemovedPortal::home");
+ assertNotNull(page);
+
+ // Now remove the portal
+ PortalConfig portal = storage_.getPortalConfig("portal", "testGetPageFromRemovedPortal");
+ storage_.remove(portal);
+
+ // Terminate the first transaction
+ end(true);
+
+ // The second transaction
+ begin();
+ session = mgr.openSession();
+
+ // The portal should be null
+ portal = storage_.getPortalConfig("portal", "testGetPageFromRemovedPortal");
+ assertNull(portal);
+
+ // The portal home page should also be null
+ page = storage_.getPage("portal::testGetPageFromRemovedPortal::home");
+ assertNull(page);
+
+ // End second transaction
+ end(true);
+ }
}
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestContentRegistry.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestContentRegistry.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestContentRegistry.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -21,6 +21,7 @@
import org.exoplatform.container.PortalContainer;
import org.exoplatform.portal.pom.config.POMSession;
import org.exoplatform.portal.pom.config.POMSessionManager;
+import org.exoplatform.test.BasicTestCase;
/**
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestDataStorage.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestDataStorage.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestDataStorage.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -19,24 +19,14 @@
package org.exoplatform.portal.config;
-import org.exoplatform.portal.pom.config.POMSession;
import static org.exoplatform.portal.pom.config.Utils.split;
-import junit.framework.AssertionFailedError;
+import org.exoplatform.commons.utils.LazyPageList;
import org.exoplatform.container.PortalContainer;
import org.exoplatform.portal.application.PortletPreferences;
import org.exoplatform.portal.application.Preference;
-import org.exoplatform.portal.config.model.Application;
-import org.exoplatform.portal.config.model.ApplicationState;
-import org.exoplatform.portal.config.model.ApplicationType;
-import org.exoplatform.portal.config.model.Container;
-import org.exoplatform.portal.config.model.Dashboard;
-import org.exoplatform.portal.config.model.ModelObject;
-import org.exoplatform.portal.config.model.Page;
-import org.exoplatform.portal.config.model.PageNavigation;
-import org.exoplatform.portal.config.model.PageNode;
-import org.exoplatform.portal.config.model.PortalConfig;
-import org.exoplatform.portal.config.model.TransientApplicationState;
+import org.exoplatform.portal.config.model.*;
+import org.exoplatform.portal.pom.config.POMSession;
import org.exoplatform.portal.pom.config.POMSessionManager;
import org.exoplatform.portal.pom.data.ModelChange;
import org.exoplatform.portal.pom.spi.gadget.Gadget;
@@ -46,15 +36,12 @@
import org.exoplatform.services.listener.Listener;
import org.exoplatform.services.listener.ListenerService;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.HashSet;
-import java.util.LinkedList;
-import java.util.List;
+import java.util.*;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.atomic.AtomicReference;
+import junit.framework.AssertionFailedError;
+
/**
* Created by The eXo Platform SARL Author : Tung Pham thanhtungty(a)gmail.com Nov
* 13, 2007
@@ -63,9 +50,12 @@
{
/** . */
- private final String testPage = "portal::classic::testPage";
+ private static final String CLASSIC_HOME = "portal::classic::homepage";
/** . */
+ private static final String CLASSIC_TEST = "portal::classic::testPage";
+
+ /** . */
private final String testPortletPreferences = "portal#classic:/web/BannerPortlet/testPortletPreferences";
/** . */
@@ -75,6 +65,9 @@
private POMSessionManager mgr;
/** . */
+ private POMSession session;
+
+ /** . */
private EventQueue events;
/** . */
@@ -88,10 +81,11 @@
public void setUp() throws Exception
{
super.setUp();
+ begin();
PortalContainer container = PortalContainer.getInstance();
storage_ = (DataStorage)container.getComponentInstanceOfType(DataStorage.class);
mgr = (POMSessionManager)container.getComponentInstanceOfType(POMSessionManager.class);
- POMSession session = mgr.openSession();
+ session = mgr.openSession();
listenerService = (ListenerService)container.getComponentInstanceOfType(ListenerService.class);
//
@@ -112,23 +106,25 @@
{
events.clear();
}
-
- //
- begin();
}
protected void tearDown() throws Exception
{
+ session.close();
end();
super.tearDown();
}
public void testCreatePortal() throws Exception
{
+ String label = "portal_foo";
+ String description = "This is new portal for testing";
PortalConfig portal = new PortalConfig();
portal.setType("portal");
portal.setName("foo");
portal.setLocale("en");
+ portal.setLabel(label);
+ portal.setDescription(description);
portal.setAccessPermissions(new String[]{UserACL.EVERYONE});
//
@@ -139,6 +135,8 @@
assertNotNull(portal);
assertEquals("portal", portal.getType());
assertEquals("foo", portal.getName());
+ assertEquals(label, portal.getLabel());
+ assertEquals(description, portal.getDescription());
}
public void testPortalConfigSave() throws Exception
@@ -321,7 +319,7 @@
events.assertSize(1);
//
- page = storage_.getPage(testPage);
+ page = storage_.getPage(CLASSIC_TEST);
assertNull(page);
}
@@ -896,7 +894,22 @@
gadgetApp = (Application<Gadget>)row0.getChildren().get(0);
assertEquals("foo", storage_.getId(gadgetApp.getState()));
}
+
+ public void testRemoveAndFindPage() throws Exception
+ {
+ Page page = storage_.getPage(CLASSIC_HOME);
+ assertNotNull(page);
+ storage_.remove(page);
+ // This will trigger a save
+ Query<Page> query = new Query<Page>(null, null, null, null, Page.class);
+ LazyPageList<Page> list = storage_.find(query);
+ assertNotNull(list);
+
+ // We check is now seen as removed
+ assertNull(storage_.getPage(CLASSIC_HOME));
+ }
+
public void testGetAllPortalNames() throws Exception
{
final List<String> names = storage_.getAllPortalNames();
@@ -946,10 +959,12 @@
}
// Now commit tx
+ session.close(true);
end(true);
// We test we observe the change
begin();
+ session = mgr.openSession();
List<String> afterNames = storage_.getAllPortalNames();
assertTrue(afterNames.containsAll(names));
afterNames.removeAll(names);
@@ -1000,10 +1015,12 @@
}
//
+ session.close(true);
end(true);
// Now test it is still removed
begin();
+ session = mgr.openSession();
afterNames = storage_.getAllPortalNames();
assertEquals(new HashSet<String>(names), new HashSet<String>(afterNames));
}
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestSerialization.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestSerialization.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/java/org/exoplatform/portal/config/TestSerialization.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -159,6 +159,8 @@
"foo02",
"foo03",
"foo04",
+ "foo10",
+ "foo11",
Arrays.asList("foo05"),
"foo06",
Collections.singletonMap("foo07", "foo08"),
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/resources/conf/exo.portal.component.portal-configuration1.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/resources/conf/exo.portal.component.portal-configuration1.xml 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/resources/conf/exo.portal.component.portal-configuration1.xml 2011-06-28 12:48:20 UTC (rev 6770)
@@ -74,11 +74,16 @@
</component>
<component>
- <key>org.exoplatform.services.jcr.ext.hierarchy.NodeHierarchyCreator</key>
- <type>org.exoplatform.services.jcr.ext.hierarchy.impl.NodeHierarchyCreatorImpl</type>
+ <key>org.exoplatform.services.jcr.ext.distribution.DataDistributionManager</key>
+ <type>org.exoplatform.services.jcr.ext.distribution.impl.DataDistributionManagerImpl</type>
</component>
<component>
+ <key>org.exoplatform.services.jcr.ext.hierarchy.NodeHierarchyCreator</key>
+ <type>org.exoplatform.services.jcr.ext.hierarchy.impl.NodeHierarchyCreatorImpl</type>
+ </component>
+
+ <component>
<key>org.exoplatform.portal.config.UserACL</key>
<type>org.exoplatform.portal.config.UserACL</type>
<init-params>
Modified: epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/resources/portal/portal/classic/portal.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/resources/portal/portal/classic/portal.xml 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/portal/src/test/resources/portal/portal/classic/portal.xml 2011-06-28 12:48:20 UTC (rev 6770)
@@ -25,6 +25,8 @@
<locale>en</locale>
<access-permissions>Everyone</access-permissions>
<edit-permission>*:/platform/administrators</edit-permission>
+ <label>Classic</label>
+ <description>This is classic portal for testing</description>
<portal-layout>
<application>
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/controller/src/main/java/org/exoplatform/web/WebAppController.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/controller/src/main/java/org/exoplatform/web/WebAppController.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/controller/src/main/java/org/exoplatform/web/WebAppController.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -95,32 +95,36 @@
}
/**
- * This methods will add the new application if and only if it hasn't yet been registered
- * @param app the {@link Application} to add
- * @return the given application if no application with the same id has been added
- * otherwise the application already registered
+ * Add application (portlet, gadget) to the global application map if and only if it has
+ * not been registered yet.
+ *
+ * @param <T>
+ * @param app
+ * @return
*/
- @SuppressWarnings("unchecked")
public <T extends Application> T addApplication(T app)
{
Application result = getApplication(app.getApplicationId());
- if (result == null)
+
+ //Double-check block
+ if(result == null)
{
- synchronized (this)
+ synchronized(this)
{
result = getApplication(app.getApplicationId());
- if (result == null)
+ if(result == null)
{
- HashMap<String, Application> applications = new HashMap<String, Application>(applications_);
- applications.put(app.getApplicationId(), app);
- this.applications_ = applications;
+ HashMap<String, Application> temporalApplicationsMap = new HashMap<String, Application>(applications_);
+ temporalApplicationsMap.put(app.getApplicationId(), app);
+ this.applications_ = temporalApplicationsMap;
result = app;
}
}
}
+
return (T)result;
}
-
+
public void register(WebRequestHandler handler) throws Exception
{
for (String path : handler.getPath())
@@ -166,4 +170,4 @@
}
}
}
-}
\ No newline at end of file
+}
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/resources/src/main/java/org/exoplatform/portal/application/ResourceRequestFilter.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/resources/src/main/java/org/exoplatform/portal/application/ResourceRequestFilter.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/resources/src/main/java/org/exoplatform/portal/application/ResourceRequestFilter.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -94,8 +94,7 @@
httpResponse.setStatus(HttpServletResponse.SC_NOT_MODIFIED);
return;
}
- response.setContentType("text/css; charset=UTF-8");
-
+
final OutputStream out = response.getOutputStream();
final BinaryOutput output = new BinaryOutput()
{
Modified: epp/portal/branches/EPP_5_2_Branch/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkinService.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkinService.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/resources/src/main/java/org/exoplatform/portal/resource/SkinService.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -19,6 +19,8 @@
package org.exoplatform.portal.resource;
+import org.exoplatform.commons.cache.future.FutureExoCache;
+import org.exoplatform.commons.cache.future.Loader;
import org.exoplatform.commons.utils.BinaryOutput;
import org.exoplatform.commons.utils.ByteArrayOutput;
import org.exoplatform.commons.utils.PropertyManager;
@@ -34,6 +36,7 @@
import org.exoplatform.management.rest.annotations.RESTEndpoint;
import org.exoplatform.portal.resource.compressor.ResourceCompressor;
import org.exoplatform.portal.resource.compressor.ResourceType;
+import org.exoplatform.services.cache.concurrent.ConcurrentFIFOExoCache;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;
import org.exoplatform.services.resources.Orientation;
@@ -56,14 +59,15 @@
import java.util.List;
import java.util.Map;
import java.util.Set;
-import java.util.concurrent.ConcurrentHashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.servlet.ServletContext;
@Managed
-@NameTemplate({@Property(key = "view", value = "portal"), @Property(key = "service", value = "management"),
+@NameTemplate({
+ @Property(key = "view", value = "portal"),
+ @Property(key = "service", value = "management"),
@Property(key = "type", value = "skin")})
@ManagedDescription("Skin service")
@RESTEndpoint(path = "skinservice")
@@ -118,9 +122,9 @@
private final HashSet<String> availableSkins_;
- private final Map<String, CachedStylesheet> ltCache;
+ private final FutureExoCache<String, CachedStylesheet, Orientation> ltCache;
- private final Map<String, CachedStylesheet> rtCache;
+ private final FutureExoCache<String, CachedStylesheet, Orientation> rtCache;
private final Map<String, Set<String>> portletThemes_;
@@ -143,12 +147,41 @@
public SkinService(ExoContainerContext context, ResourceCompressor compressor)
{
+ Loader<String, CachedStylesheet, Orientation> loader = new Loader<String, CachedStylesheet, Orientation>()
+ {
+ public CachedStylesheet retrieve(Orientation context, String key) throws Exception
+ {
+ StringBuffer sb = new StringBuffer();
+ processCSS(sb, key, context, true);
+ String css;
+ try
+ {
+ StringWriter output = new StringWriter();
+ SkinService.this.compressor.compress(new StringReader(sb.toString()), output, ResourceType.STYLESHEET);
+ css = output.toString();
+ }
+ catch (Exception e)
+ {
+ log.warn("Error when compressing CSS " + key + " for orientation " + context + " will use normal CSS instead", e);
+ css = sb.toString();
+ }
+
+ return new CachedStylesheet(css);
+ }
+ };
+
+ //
+ FutureExoCache<String, CachedStylesheet, Orientation> ltCache = new FutureExoCache<String, CachedStylesheet, Orientation>(loader, new ConcurrentFIFOExoCache<String, CachedStylesheet>(200));
+ FutureExoCache<String, CachedStylesheet, Orientation> rtCache = new FutureExoCache<String, CachedStylesheet, Orientation>(loader, new ConcurrentFIFOExoCache<String, CachedStylesheet>(200));
+
+
+ //
this.compressor = compressor;
portalSkins_ = new LinkedHashMap<SkinKey, SkinConfig>();
skinConfigs_ = new LinkedHashMap<SkinKey, SkinConfig>(20);
availableSkins_ = new HashSet<String>(5);
- ltCache = new ConcurrentHashMap<String, CachedStylesheet>();
- rtCache = new ConcurrentHashMap<String, CachedStylesheet>();
+ this.ltCache = ltCache;
+ this.rtCache = rtCache;
portletThemes_ = new HashMap<String, Set<String>>();
portalContainerName = context.getPortalContainerName();
mainResolver = new MainResourceResolver(portalContainerName, skinConfigs_);
@@ -242,18 +275,10 @@
log.debug("Adding Portal skin : Bind " + key + " to " + skinConfig);
}
}
- try
- {
- StringWriter output = new StringWriter();
- compressor.compress(new StringReader(cssData), output, ResourceType.STYLESHEET);
- cssData = output.toString();
- }
- catch (Exception e)
- {
- log.debug("Error when compressing CSS, will use normal CSS instead", e);
- }
- ltCache.put(cssPath, new CachedStylesheet(cssData));
- rtCache.put(cssPath, new CachedStylesheet(cssData));
+
+ //
+ ltCache.remove(cssPath);
+ rtCache.remove(cssPath);
}
@@ -329,17 +354,12 @@
/**
*
- * Register the Skin for available portal Skins. Do not replace existed Skin
+ * Register the Skin for available portal Skins. Do not replace existing skin.
*
- * @param module
- * skin module identifier
- * @param skinName
- * skin name
- * @param cssPath
- * path uri to the css file. This is relative to the root context,
- * use leading '/'
- * @param scontext
- * the webapp's {@link javax.servlet.ServletContext}
+ * @param module skin module identifier
+ * @param skinName skin name
+ * @param cssPath path uri to the css file. This is relative to the root context, use leading '/'
+ * @param cssData the data
*/
public void addSkin(String module, String skinName, String cssPath, String cssData)
{
@@ -350,8 +370,10 @@
{
skinConfigs_.put(key, new SimpleSkin(this, module, skinName, cssPath));
}
- ltCache.put(cssPath, new CachedStylesheet(cssData));
- rtCache.put(cssPath, new CachedStylesheet(cssData));
+
+ // Evict
+ ltCache.remove(cssPath);
+ rtCache.remove(cssPath);
}
/**
@@ -441,28 +463,8 @@
if (!PropertyManager.isDevelopping())
{
//
- Map<String, CachedStylesheet> cache = orientation == Orientation.LT ? ltCache : rtCache;
- CachedStylesheet cachedCss = cache.get(path);
- if (cachedCss == null)
- {
- StringBuffer sb = new StringBuffer();
- processCSS(sb, path, orientation, true);
- String css;
- try
- {
- StringWriter output = new StringWriter();
- compressor.compress(new StringReader(sb.toString()), output, ResourceType.STYLESHEET);
- css = output.toString();
- }
- catch (Exception e)
- {
- log.debug("Error when compressing CSS, will use normal CSS instead", e);
- css = sb.toString();
- }
-
- cachedCss = new CachedStylesheet(css);
- cache.put(path, cachedCss);
- }
+ FutureExoCache<String, CachedStylesheet, Orientation> cache = orientation == Orientation.LT ? ltCache : rtCache;
+ CachedStylesheet cachedCss = cache.get(orientation, path);
if (path.startsWith("/" + portalContainerName + "/resource"))
{
@@ -492,7 +494,7 @@
*/
public String getMergedCSS(String cssPath)
{
- CachedStylesheet stylesheet = ltCache.get(cssPath);
+ CachedStylesheet stylesheet = ltCache.get(null, cssPath);
return stylesheet != null ? stylesheet.getText() : null;
}
@@ -561,7 +563,7 @@
throw new IllegalArgumentException("path must not be null");
}
- Map<String, CachedStylesheet> cache = ltCache;
+ FutureExoCache<String, CachedStylesheet, Orientation> cache = ltCache;
Orientation orientation = Orientation.LT;
if (path.endsWith("-lt.css"))
{
@@ -573,7 +575,7 @@
orientation = Orientation.RT;
}
- CachedStylesheet cachedCSS = cache.get(path);
+ CachedStylesheet cachedCSS = cache.get(orientation, path);
if (cachedCSS == null)
{
return Long.MAX_VALUE;
@@ -814,7 +816,7 @@
/**
* Get Suffix of Orientation
- * @param orientation
+ * @param orientation the orientation
* @return Suffix of Orientation
*/
String getSuffix(Orientation orientation)
Copied: epp/portal/branches/EPP_5_2_Branch/component/web/security/src/main/java/org/exoplatform/web/security/PortalLoginController.java (from rev 5822, portal/trunk/component/web/security/src/main/java/org/exoplatform/web/security/PortalLoginController.java)
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/component/web/security/src/main/java/org/exoplatform/web/security/PortalLoginController.java (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/component/web/security/src/main/java/org/exoplatform/web/security/PortalLoginController.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -0,0 +1,85 @@
+/*
+* Copyright (C) 2003-2009 eXo Platform SAS.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+
+package org.exoplatform.web.security;
+
+import org.exoplatform.web.login.InitiateLoginServlet;
+import org.exoplatform.web.security.security.AbstractTokenService;
+import org.exoplatform.web.security.security.CookieTokenService;
+import org.gatein.common.logging.Logger;
+import org.gatein.common.logging.LoggerFactory;
+import org.gatein.wci.security.WCILoginController;
+
+import javax.servlet.ServletException;
+import javax.servlet.http.Cookie;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
+
+/**
+ * @author <a href="mailto:alain.defrance@exoplatform.com">Alain Defrance</a>
+ * @version $Revision$
+ */
+public class PortalLoginController extends WCILoginController {
+
+ /** . */
+ private static final Logger log = LoggerFactory.getLogger(PortalLoginController.class);
+
+ @Override
+ protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
+ super.doGet(req, resp);
+
+ // Obtain initial URI
+ String uri = req.getParameter("initialURI");
+
+ // otherwise compute one
+ if (uri == null || uri.length() == 0)
+ {
+ uri = req.getContextPath();
+ log.debug("No initial URI found, will use default " + uri + " instead ");
+ }
+ else
+ {
+ log.debug("Found initial URI " + uri);
+ }
+
+ // if we do have a remember me
+ String rememberme = req.getParameter("rememberme");
+ if ("true".equals(rememberme))
+ {
+ boolean isRemember = "true".equals(req.getParameter(InitiateLoginServlet.COOKIE_NAME));
+ if (isRemember)
+ {
+ //Create token
+ AbstractTokenService tokenService = AbstractTokenService.getInstance(CookieTokenService.class);
+ String cookieToken = tokenService.createToken(credentials);
+
+ log.debug("Found a remember me request parameter, created a persistent token " + cookieToken + " for it and set it up " +
+ "in the next response");
+ Cookie cookie = new Cookie(InitiateLoginServlet.COOKIE_NAME, cookieToken);
+ cookie.setPath(req.getContextPath());
+ cookie.setMaxAge((int)tokenService.getValidityTime());
+ resp.addCookie(cookie);
+ }
+ }
+
+ //
+ resp.sendRedirect(uri);
+ }
+}
Modified: epp/portal/branches/EPP_5_2_Branch/examples/extension/war/src/main/webapp/templates/groovy/webui/component/UIHomePagePortlet.gtmpl
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/extension/war/src/main/webapp/templates/groovy/webui/component/UIHomePagePortlet.gtmpl 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/examples/extension/war/src/main/webapp/templates/groovy/webui/component/UIHomePagePortlet.gtmpl 2011-06-28 12:48:20 UTC (rev 6770)
@@ -1,98 +1,98 @@
-<%
- String initialURI = _ctx.getRequestContext().getParentAppRequestContext().getRequestContextPath() + "/private/" + _ctx.getRequestContext().getParentAppRequestContext().getPortalOwner();
-%>
-<div class="UIHomePagePortlet" id="$uicomponent.id">
- <div class="TRContainer">
- <div class="PortletDecoration">
- <div class="GuideText">GateIn is the new generation of Open Source portal, jointly led by Red Hat and eXo Platform who partner to gather the best portal experts and communities around a robust and intuitive portal that brings rich administration functionalities to IT systems. <br /> This is the Home Page of the "sample-ext" (skin has changed, new pages, customized resource bundles) :</div>
- <a class="VersionIcon" href="http://www.jboss.org/gatein/" target="_blank"></a>
- <div class="DotLine"><span></span></div>
- <div class="GuideText"><%=_ctx.appRes("UIHomePagePortlet.Label.GuideText")%></div>
- <a class="ContactIcon" href="http://community.jboss.org/en/gatein?view=discussions" target="_blank"></a>
-
- </div>
- </div>
- <div class="TLContainer">
- <div class="PortletDecoration">
-
- <div class="HomePortletAdBackround">
- <div class="AdImageLeft">
- <div class="AdImageRight">
- <div class="EmptyBlock"><%=_ctx.appRes("UIHomePagePortlet.Label.Slogan")%></div>
- </div>
- </div>
- </div>
-
- <div class="HomePortletContent">
- <div class="LeftAccountsContainer">
- <div class="RightAccountsContainer">
- <div class="MiddleAccountsContainer">
- <div class="InstructionTitle"><%=_ctx.appRes("UIHomePagePortlet.Label.Title")%></div>
- <div class="AccountsContainerDeco">
- <div class="AccountBlock AdministratorUser">
- <div class="AccountInfos">
- <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=root&password=gtn"><%=_ctx.appRes("UIHomePagePortlet.Label.Administrator")%></a></div>
- <div class="Username">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>root</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- <div class="Passwords">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- <div class="SeparatorLine"><span></span></div>
- <div class="AccountBlock ManagerUser">
- <div class="AccountInfos">
- <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=john&password=gtn"><%=_ctx.appRes("UIHomePagePortlet.Label.Manager")%></a></div>
- <div class="Username">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>john</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- <div class="Passwords">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- <div class="SeparatorLine"><span></span></div>
- <div class="AccountBlock NormalUser">
- <div class="AccountInfos">
- <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=mary&password=gtn"><%=_ctx.appRes("UIHomePagePortlet.Label.User")%></a></div>
- <div class="Username">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>mary</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- <div class="Passwords">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- <div class="SeparatorLine"><span></span></div>
- <div class="AccountBlock DemoUser" style="margin-right: 0px;">
- <div class="AccountInfos">
- <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=demo&password=gtn"><%=_ctx.appRes("UIHomePagePortlet.Label.Demo")%></a></div>
- <div class="Username">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>demo</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- <div class="Passwords">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- </div>
- </div>
- <div class="ClearBoth"><span></span></div>
-</div>
-
+<%
+ String initialURI = _ctx.getRequestContext().getParentAppRequestContext().getRequestContextPath() + "/private/" + _ctx.getRequestContext().getParentAppRequestContext().getPortalOwner();
+%>
+<div class="UIHomePagePortlet" id="$uicomponent.id">
+ <div class="TRContainer">
+ <div class="PortletDecoration">
+ <div class="GuideText">GateIn is the new generation of Open Source portal, jointly led by Red Hat and eXo Platform who partner to gather the best portal experts and communities around a robust and intuitive portal that brings rich administration functionalities to IT systems. <br /> This is the Home Page of the "sample-ext" (skin has changed, new pages, customized resource bundles) :</div>
+ <a class="VersionIcon" href="http://www.jboss.org/gatein/" target="_blank"></a>
+ <div class="DotLine"><span></span></div>
+ <div class="GuideText"><%=_ctx.appRes("UIHomePagePortlet.Label.GuideText")%></div>
+ <a class="ContactIcon" href="http://community.jboss.org/en/gatein?view=discussions" target="_blank"></a>
+
+ </div>
+ </div>
+ <div class="TLContainer">
+ <div class="PortletDecoration">
+
+ <div class="HomePortletAdBackround">
+ <div class="AdImageLeft">
+ <div class="AdImageRight">
+ <div class="EmptyBlock"><%=_ctx.appRes("UIHomePagePortlet.Label.Slogan")%></div>
+ </div>
+ </div>
+ </div>
+
+ <div class="HomePortletContent">
+ <div class="LeftAccountsContainer">
+ <div class="RightAccountsContainer">
+ <div class="MiddleAccountsContainer">
+ <div class="InstructionTitle"><%=_ctx.appRes("UIHomePagePortlet.Label.Title")%></div>
+ <div class="AccountsContainerDeco">
+ <div class="AccountBlock AdministratorUser">
+ <div class="AccountInfos">
+ <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=root&password=gtn&initialURI=<%=initialURI%>"><%=_ctx.appRes("UIHomePagePortlet.Label.Administrator")%></a></div>
+ <div class="Username">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>root</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ <div class="Passwords">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ <div class="SeparatorLine"><span></span></div>
+ <div class="AccountBlock ManagerUser">
+ <div class="AccountInfos">
+ <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=john&password=gtn&initialURI=<%=initialURI%>"><%=_ctx.appRes("UIHomePagePortlet.Label.Manager")%></a></div>
+ <div class="Username">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>john</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ <div class="Passwords">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ <div class="SeparatorLine"><span></span></div>
+ <div class="AccountBlock NormalUser">
+ <div class="AccountInfos">
+ <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=mary&password=gtn&initialURI=<%=initialURI%>"><%=_ctx.appRes("UIHomePagePortlet.Label.User")%></a></div>
+ <div class="Username">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>mary</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ <div class="Passwords">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ <div class="SeparatorLine"><span></span></div>
+ <div class="AccountBlock DemoUser" style="margin-right: 0px;">
+ <div class="AccountInfos">
+ <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=demo&password=gtn&initialURI=<%=initialURI%>"><%=_ctx.appRes("UIHomePagePortlet.Label.Demo")%></a></div>
+ <div class="Username">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>demo</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ <div class="Passwords">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </div>
+ </div>
+ <div class="ClearBoth"><span></span></div>
+</div>
+
Modified: epp/portal/branches/EPP_5_2_Branch/examples/portal/war/src/main/webapp/templates/groovy/webui/component/UIHomePagePortlet.gtmpl
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/examples/portal/war/src/main/webapp/templates/groovy/webui/component/UIHomePagePortlet.gtmpl 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/examples/portal/war/src/main/webapp/templates/groovy/webui/component/UIHomePagePortlet.gtmpl 2011-06-28 12:48:20 UTC (rev 6770)
@@ -1,109 +1,109 @@
-<%
- String initialURI = _ctx.getRequestContext().getParentAppRequestContext().getRequestContextPath() + "/private/" + _ctx.getRequestContext().getParentAppRequestContext().getPortalOwner();
-%>
-<div class="UIHomePagePortlet" id="$uicomponent.id">
- <div class="TRContainer">
- <div class="PortletDecoration">
- <div class="GuideText">This is the Home Page of the "sample-portal" contained in gatein-sample-extension.ear/war, as you can see the skin has changed, we added new pages, we use our customized resource bundles as you can see below:
- <ul>
- <li><b><%=_ctx.appRes("UIHomePagePortlet.Label.SampleKey")%></b></li>
- <li><b><%=_ctx.appRes("UIHomePagePortlet.Label.SampleRB.SampleKey")%></b></li>
- </ul>
- </div>
- <a class="VersionIcon" href="http://www.jboss.org/gatein/" target="_blank"></a>
- <div class="DotLine"><span></span></div>
- <div class="GuideText"><%=_ctx.appRes("UIHomePagePortlet.Label.GuideText")%></div>
- <a class="ContactIcon" href="http://community.jboss.org/en/gatein?view=discussions" target="_blank"></a>
-
- </div>
- </div>
- <div class="TLContainer">
- <div class="PortletDecoration">
-
- <div class="HomePortletAdBackround">
- <div class="AdImageLeft">
- <div class="AdImageRight">
- <div class="EmptyBlock"><%=_ctx.appRes("UIHomePagePortlet.Label.Slogan")%></div>
- </div>
- </div>
- </div>
-
- <div class="HomePortletContent">
- <div class="LeftAccountsContainer">
- <div class="RightAccountsContainer">
- <div class="MiddleAccountsContainer">
- <div class="InstructionTitle"><%=_ctx.appRes("UIHomePagePortlet.Label.Title")%></div>
- <div class="AccountsContainerDeco">
- <div class="AccountBlock AdministratorUser">
- <div class="AccountInfos">
- <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=root&password=gtn"><%=_ctx.appRes("UIHomePagePortlet.Label.Administrator")%></a></div>
- <div class="Username">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>root</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- <div class="Passwords">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- <div class="SeparatorLine"><span></span></div>
- <div class="AccountBlock ManagerUser">
- <div class="AccountInfos">
- <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=john&password=gtn"><%=_ctx.appRes("UIHomePagePortlet.Label.Manager")%></a></div>
- <div class="Username">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>john</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- <div class="Passwords">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- <div class="SeparatorLine"><span></span></div>
- <div class="AccountBlock NormalUser">
- <div class="AccountInfos">
- <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=mary&password=gtn"><%=_ctx.appRes("UIHomePagePortlet.Label.User")%></a></div>
- <div class="Username">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>mary</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- <div class="Passwords">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- <div class="SeparatorLine"><span></span></div>
- <div class="AccountBlock DemoUser" style="margin-right: 0px;">
- <div class="AccountInfos">
- <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=demo&password=gtn"><%=_ctx.appRes("UIHomePagePortlet.Label.Demo")%></a></div>
- <div class="Username">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>demo</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- <div class="Passwords">
- <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- <div class="ClearBoth"><span></span></div>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- </div>
- </div>
- <div class="ClearBoth"><span></span></div>
-</div>
-<div class="BottomDecoratorHome">
- <div class="BottomDecoratorLeft">
- <div class="BottomDecoratorRight">
- <div class="BottomDecoratorMiddle"><span></span></div>
- </div>
- </div>
-</div>
+<%
+ String initialURI = _ctx.getRequestContext().getParentAppRequestContext().getRequestContextPath() + "/private/" + _ctx.getRequestContext().getParentAppRequestContext().getPortalOwner();
+%>
+<div class="UIHomePagePortlet" id="$uicomponent.id">
+ <div class="TRContainer">
+ <div class="PortletDecoration">
+ <div class="GuideText">This is the Home Page of the "sample-portal" contained in gatein-sample-extension.ear/war, as you can see the skin has changed, we added new pages, we use our customized resource bundles as you can see below:
+ <ul>
+ <li><b><%=_ctx.appRes("UIHomePagePortlet.Label.SampleKey")%></b></li>
+ <li><b><%=_ctx.appRes("UIHomePagePortlet.Label.SampleRB.SampleKey")%></b></li>
+ </ul>
+ </div>
+ <a class="VersionIcon" href="http://www.jboss.org/gatein/" target="_blank"></a>
+ <div class="DotLine"><span></span></div>
+ <div class="GuideText"><%=_ctx.appRes("UIHomePagePortlet.Label.GuideText")%></div>
+ <a class="ContactIcon" href="http://community.jboss.org/en/gatein?view=discussions" target="_blank"></a>
+
+ </div>
+ </div>
+ <div class="TLContainer">
+ <div class="PortletDecoration">
+
+ <div class="HomePortletAdBackround">
+ <div class="AdImageLeft">
+ <div class="AdImageRight">
+ <div class="EmptyBlock"><%=_ctx.appRes("UIHomePagePortlet.Label.Slogan")%></div>
+ </div>
+ </div>
+ </div>
+
+ <div class="HomePortletContent">
+ <div class="LeftAccountsContainer">
+ <div class="RightAccountsContainer">
+ <div class="MiddleAccountsContainer">
+ <div class="InstructionTitle"><%=_ctx.appRes("UIHomePagePortlet.Label.Title")%></div>
+ <div class="AccountsContainerDeco">
+ <div class="AccountBlock AdministratorUser">
+ <div class="AccountInfos">
+ <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=root&password=gtn&initialURI=<%=initialURI%>"><%=_ctx.appRes("UIHomePagePortlet.Label.Administrator")%></a></div>
+ <div class="Username">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>root</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ <div class="Passwords">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ <div class="SeparatorLine"><span></span></div>
+ <div class="AccountBlock ManagerUser">
+ <div class="AccountInfos">
+ <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=john&password=gtn&initialURI=<%=initialURI%>"><%=_ctx.appRes("UIHomePagePortlet.Label.Manager")%></a></div>
+ <div class="Username">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>john</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ <div class="Passwords">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ <div class="SeparatorLine"><span></span></div>
+ <div class="AccountBlock NormalUser">
+ <div class="AccountInfos">
+ <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=mary&password=gtn&initialURI=<%=initialURI%>"><%=_ctx.appRes("UIHomePagePortlet.Label.User")%></a></div>
+ <div class="Username">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>mary</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ <div class="Passwords">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ <div class="SeparatorLine"><span></span></div>
+ <div class="AccountBlock DemoUser" style="margin-right: 0px;">
+ <div class="AccountInfos">
+ <div class="AccountTitle"><a href="${_ctx.getPortalContextPath()}/login?username=demo&password=gtn&initialURI=<%=initialURI%>"><%=_ctx.appRes("UIHomePagePortlet.Label.Demo")%></a></div>
+ <div class="Username">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Username")%></div><span>demo</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ <div class="Passwords">
+ <div class="Lable"><%=_ctx.appRes("UIHomePagePortlet.Label.Password")%></div><span>gtn</span>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ <div class="ClearBoth"><span></span></div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </div>
+ </div>
+ <div class="ClearBoth"><span></span></div>
+</div>
+<div class="BottomDecoratorHome">
+ <div class="BottomDecoratorLeft">
+ <div class="BottomDecoratorRight">
+ <div class="BottomDecoratorMiddle"><span></span></div>
+ </div>
+ </div>
+</div>
Modified: epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js 2011-06-28 12:48:20 UTC (rev 6770)
@@ -43,7 +43,7 @@
if (isNaN(B)) {
return "an indeterminate amount of time ago"
}
- time = (new Date().getTime() - B) / 1000;
+ time = (new Date().getTime()*1000 - B) / 1000;
if (time < 60) {
return "less than a minute ago"
} else {
Modified: epp/portal/branches/EPP_5_2_Branch/packaging/profiles.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/packaging/profiles.xml 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/packaging/profiles.xml 2011-06-28 12:48:20 UTC (rev 6770)
@@ -48,6 +48,10 @@
<!--
Replace with the name of the directory containing Jetty 6
-->
+ <exo.projects.app.tomcat7.version>apache-tomcat-7.0.2</exo.projects.app.tomcat7.version>
+ <!--
+ Replace with the name of the directory containing Jetty 6
+ -->
<exo.projects.app.jetty.version>jetty-6.1.25/jetty-6.1.25</exo.projects.app.jetty.version>
<!--
Replace with the name of the directory containing JBoss AS 5
Modified: epp/portal/branches/EPP_5_2_Branch/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/pom.xml 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/pom.xml 2011-06-28 12:48:20 UTC (rev 6770)
@@ -10,9 +10,9 @@
This software is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
+ Lesser General Public License for more detail
- You should have received a copy of the GNU Lesser General Public
+ You should have received a copy of the GNU Lesser General Public/
License along with this software; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA, or see the FSF site: http://www.fsf.org.
@@ -950,6 +950,15 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
</plugins>
</build>
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/GroupManagement.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/GroupManagement.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/organization/webui/component/GroupManagement.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -33,7 +33,7 @@
* Created by The eXo Platform SAS
* Author : Huu-Dung Kieu
* kieuhdung(a)gmail.com
- * 22 d�c. 08
+ * 22 d�c. 08
*/
public class GroupManagement
{
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component/UIUserToolBarGroupPortlet.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component/UIUserToolBarGroupPortlet.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component/UIUserToolBarGroupPortlet.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -55,7 +55,7 @@
{
if (navigation.getOwnerType().equals(PortalConfig.GROUP_TYPE))
{
- navigations.add(PageNavigationUtils.filter(navigation, remoteUser));
+ navigations.add(PageNavigationUtils.filterNavigation(navigation, remoteUser, false, true));
}
}
return navigations;
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component/UIUserToolBarSitePortlet.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component/UIUserToolBarSitePortlet.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/toolbar/webui/component/UIUserToolBarSitePortlet.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -19,6 +19,7 @@
package org.exoplatform.toolbar.webui.component;
+import org.exoplatform.portal.config.DataStorage;
import org.exoplatform.portal.config.UserPortalConfigService;
import org.exoplatform.portal.config.model.PageNavigation;
import org.exoplatform.portal.config.model.PageNode;
@@ -52,6 +53,19 @@
UserPortalConfigService dataStorage = getApplicationComponent(UserPortalConfigService.class);
return dataStorage.getAllPortalNames();
}
+
+ public String getPortalLabel(String portalName) throws Exception
+ {
+ DataStorage storage_ = getApplicationComponent(DataStorage.class);
+ PortalConfig portalConfig = storage_.getPortalConfig(portalName);
+ String label = portalConfig.getLabel();
+ if (label != null && label.trim().length() > 0)
+ {
+ return label;
+ }
+
+ return portalName;
+ }
public String getCurrentPortal()
{
@@ -68,7 +82,7 @@
{
PageNavigation navi = getPageNavigation(PortalConfig.PORTAL_TYPE + "::" + getCurrentPortal());
String remoteUser = Util.getPortalRequestContext().getRemoteUser();
- return PageNavigationUtils.filter(navi, remoteUser);
+ return PageNavigationUtils.filterNavigation(navi, remoteUser, false, true);
}
private PageNavigation getPageNavigation(String owner) throws Exception
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component/UIUserToolBarSitePortlet.gtmpl
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component/UIUserToolBarSitePortlet.gtmpl 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component/UIUserToolBarSitePortlet.gtmpl 2011-06-28 12:48:20 UTC (rev 6770)
@@ -35,12 +35,13 @@
if(isCurrent && nodes.size() > 0) clazz = "class='ArrowIcon'";
else clazz = "";
href = uicomponent.getPortalURI(portal);
+ label = uicomponent.getPortalLabel(portal);
EntityEncoder entityEncoder = EntityEncoder.FULL;
portal = entityEncoder.encode(portal);
print """
<div class="MenuItem">
<div $clazz>
- <a href="$href" class="ItemIcon SiteIcon">$portal</a>
+ <a href="$href" class="ItemIcon SiteIcon">$label</a>
</div>
""";
if(isCurrent) {
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/applicationregistry/webui/component/UIGadgetInfo.gtmpl
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/applicationregistry/webui/component/UIGadgetInfo.gtmpl 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/applicationregistry/webui/component/UIGadgetInfo.gtmpl 2011-06-28 12:48:20 UTC (rev 6770)
@@ -11,6 +11,9 @@
if(gadgetThumbnail == null || gadgetThumbnail.length() == 0){
gadgetThumbnail = srcBGError ;
}
+ def viewURL = uicomponent.getViewUrl();
+ def editURL = uicomponent.getEditUrl();
+ def refURL = gadget.getReferenceUrl();
%>
<div class="UIGadgetInfo" id="$uicomponent.id">
<div class="UIBreadcumb">
@@ -41,12 +44,12 @@
<table>
<tr>
<td class="LeftLabel"><%=_ctx.appRes("UIGadgetInfo.label.viewUrl")%></td>
- <td class="RightLabel" title=" <%= uicomponent.getViewUrl() %> "><%= uicomponent.getViewUrl() %></td>
+ <td class="RightLabel" title=" <%=viewURL %> "><a href="<%=viewURL %>" target="_blank">$viewURL</a></td>
</tr>
<% if(gadget.isLocal()) {%>
<tr>
<td class="LeftLabel"><%=_ctx.appRes("UIGadgetInfo.label.editUrl")%></td>
- <td class="RightLabel"><%= uicomponent.getEditUrl() %></td>
+ <td class="RightLabel"><a href="<%=editURL %>" target="_blank">$editURL</a></td>
</tr>
<% } %>
</table>
@@ -54,7 +57,7 @@
<tr>
<td class="LeftLabel"><%=_ctx.appRes("UIGadgetInfo.label.reference")%></td>
<td class="RightLabel">
- <%= gadget.getReferenceUrl() %>
+ <a href="<%=refURL %>" target="_blank">$refURL</a>
</td>
</tr>
</table>
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/navigation/webui/component/UISiteManagement.gtmpl
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/navigation/webui/component/UISiteManagement.gtmpl 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/navigation/webui/component/UISiteManagement.gtmpl 2011-06-28 12:48:20 UTC (rev 6770)
@@ -19,9 +19,20 @@
<tr>
<td class="Image"><img src="/exoadmin/skin/navigation/webui/component/background/PlImg.gif" alt=""/></td>
<td class="Content">
- <div class="Label"><%=uicomponent.getFieldValue(portalConfig, 'name') %></div>
-
- </td>
+ <div class="Label"><%=uicomponent.getFieldValue(portalConfig, 'name') %></div>
+ <%
+ def siteLabel = uicomponent.getFieldValue(portalConfig, 'label');
+ def siteDescription = uicomponent.getFieldValue(portalConfig, 'description');
+ if (siteLabel != null && siteLabel.trim().length() > 0)
+ {
+ print """<div>$siteLabel</div>""";
+ }
+ if (siteDescription != null && siteDescription.trim().length() > 0)
+ {
+ print """<div>$siteDescription</div>""";
+ }
+ %>
+ </td>
<td class="ActionBlock">
<a href="<%=uicomponent.event("EditPortalLayout", portalConfig.getName());%>" class="EditLayoutIcon"><%=_ctx.appRes("UISiteManagement.label.editLayout")%></a>
<a href="<%=uicomponent.event("EditNavigation", portalConfig.getName());%>" class="EditNavIcon"><%=_ctx.appRes("UISiteManagement.label.editNav")%></a>
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet/DefaultStylesheet.css
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet/DefaultStylesheet.css 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/skin/organization/webui/component/UIOrganizationPortlet/DefaultStylesheet.css 2011-06-28 12:48:20 UTC (rev 6770)
@@ -150,6 +150,7 @@
float: left; /* orientation=lt */
float: right; /* orientation=rt */
height: auto;
+ width: 100%;
}
.UIOrganizationPortlet .UISearch .UISearchForm .QuickSet {
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/web/src/main/webapp/groovy/portal/webui/component/UIPortalNavigation.gtmpl
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/web/src/main/webapp/groovy/portal/webui/component/UIPortalNavigation.gtmpl 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/web/src/main/webapp/groovy/portal/webui/component/UIPortalNavigation.gtmpl 2011-06-28 12:48:20 UTC (rev 6770)
@@ -95,7 +95,7 @@
<div class="MenuItem $tabStyleNavigation">
<div class="$arrowIcon" title="$title">
<div class="ItemIcon $icon">
- <a href="$pageURI">$label</a>
+ <a href="#">$label</a>
</div>
</div>
""";
Modified: epp/portal/branches/EPP_5_2_Branch/settings.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/settings.xml 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/settings.xml 2011-06-28 12:48:20 UTC (rev 6770)
@@ -1,14 +1,80 @@
-<?xml version="1.0"?>
-<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ User-specific configuration for maven. Includes things that should not
+ be distributed with the pom.xml file, such as developer identity, along with
+ local settings, like proxy information. The default location for the
+ settings file is ~/.m2/settings.xml
+-->
+<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
+ <!--proxies>
+ <proxy>
+ <host>my.proxy.host</host>
+ </proxy>
+ </proxies-->
+
+ <!--pluginGroups>
+ <pluginGroup>org.codehaus.mojo</pluginGroup>
+ </pluginGroups-->
+<localRepository>${env.HOME}/.m2_EPP</localRepository>
- <localRepository>${env.HOME}/.m2_EPP</localRepository>
-
- <mirrors>
- <mirror>
- <id>internal-repository</id>
- <name>Maven Repository Manager running on repo.mycompany.com</name>
- <url>http://download.devel.redhat.com/brewroot/repos/jboss-epp-5-build/latest/...</url>
- <mirrorOf>*</mirrorOf>
- </mirror>
- </mirrors>
+ <profiles>
+ <profile>
+ <id>my-jboss-maven2</id>
+ <repositories>
+ <repository>
+ <id>jboss-maven2-brew</id>
+ <name>JBoss Maven 2 Brew Repository</name>
+ <url>http://download.devel.redhat.com/brewroot/repos/jboss-epp-5-build/latest/...</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>jboss-maven2-nexus</id>
+ <name>JBoss Maven 2 nexus Repository</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>jboss-maven2-deprecated</id>
+ <name>JBoss Maven 2 deprecated Repository</name>
+ <url>https://repository.jboss.org/nexus/content/repositories/deprecated/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+ </profile>
+
+ </profiles>
+ <activeProfiles>
+ <activeProfile>my-jboss-maven2</activeProfile>
+ </activeProfiles>
+<!-- <mirrors>
+ <mirror>
+ <id>internal-repository</id>
+ <name>Maven Repository Manager running on repo.mycompany.com</name>
+ <url>http://download.devel.redhat.com/brewroot/repos/jboss-epp-5-build/latest/...</url>
+ <url>http://repository.jboss.org/nexus/content/groups/public</url>
+ <mirrorOf>*</mirrorOf>
+ </mirror>
+ </mirrors>-->
</settings>
Modified: epp/portal/branches/EPP_5_2_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageBrowser/Stylesheet.css
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageBrowser/Stylesheet.css 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/web/eXoResources/src/main/webapp/skin/DefaultSkin/portal/webui/component/customization/UIPageBrowser/Stylesheet.css 2011-06-28 12:48:20 UTC (rev 6770)
@@ -11,7 +11,7 @@
.UIPageBrowser .UIGrid {
width: 99.7%;
!width: 98%;
- margin: auto;
+ margin: 0px;
}
.UIPageBrowser .UIGrid .Text {
Modified: epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_en.properties
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_en.properties 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_en.properties 2011-06-28 12:48:20 UTC (rev 6770)
@@ -355,6 +355,8 @@
UIPortalForm.msg.sameName=This portal name already exists.
UIPortalForm.msg.notExistAnymore=This portal is not existed or may be deleted.
UIPortalForm.label.name=Portal Name :
+UIPortalForm.label.label=Label :
+UIPortalForm.label.description=Description :
UIPortalForm.label.locale=#{word.locale} :
UIPortalForm.label.date=#{word.date} :
UIPortalForm.label.factoryId=Portal Types
Modified: epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml 2011-06-28 12:48:20 UTC (rev 6770)
@@ -49,6 +49,11 @@
</component>
<component>
+ <key>org.exoplatform.services.jcr.ext.distribution.DataDistributionManager</key>
+ <type>org.exoplatform.services.jcr.ext.distribution.impl.DataDistributionManagerImpl</type>
+ </component>
+
+ <component>
<key>org.exoplatform.services.jcr.ext.hierarchy.NodeHierarchyCreator</key>
<type>org.exoplatform.services.jcr.ext.hierarchy.impl.NodeHierarchyCreatorImpl</type>
</component>
Modified: epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/portal/application-registry-configuration.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/portal/application-registry-configuration.xml 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/portal/application-registry-configuration.xml 2011-06-28 12:48:20 UTC (rev 6770)
@@ -526,11 +526,11 @@
<component-plugin>
<name>chromattic</name>
<set-method>addLifeCycle</set-method>
- <type>org.exoplatform.application.registry.impl.ApplicationRegistryChromatticLifeCycle</type>
+ <type>org.exoplatform.application.registry.mop.ApplicationRegistryChromatticLifeCycle</type>
<init-params>
<value-param>
- <name>domain-name</name>
- <value>app</value>
+ <name>name</name>
+ <value>registry</value>
</value-param>
<value-param>
<name>workspace-name</name>
@@ -538,24 +538,13 @@
</value-param>
<values-param>
<name>entities</name>
- <value>org.exoplatform.application.registry.impl.ContentRegistry</value>
- <value>org.exoplatform.application.registry.impl.CategoryDefinition</value>
- <value>org.exoplatform.application.registry.impl.ContentDefinition</value>
- <value>org.exoplatform.application.gadget.impl.GadgetRegistry</value>
- <value>org.exoplatform.application.gadget.impl.GadgetDefinition</value>
- <value>org.exoplatform.application.gadget.impl.LocalGadgetData</value>
- <value>org.exoplatform.application.gadget.impl.RemoteGadgetData</value>
- <value>org.chromattic.ext.ntdef.NTFile</value>
- <value>org.chromattic.ext.ntdef.NTFolder</value>
- <value>org.chromattic.ext.ntdef.NTResource</value>
+ <value>org.exoplatform.application.registry.mop.ContentRegistry</value>
+ <value>org.exoplatform.application.registry.mop.CategoryDefinition</value>
+ <value>org.exoplatform.application.registry.mop.ContentDefinition</value>
</values-param>
- <properties-param>
- <name>options</name>
- <property name="org.chromattic.api.Option.root_node.path" value="/production"/>
- <property name="org.chromattic.api.Option.root_node.create" value="true"/>
- </properties-param>
</init-params>
</component-plugin>
</external-component-plugins>
-</configuration>
\ No newline at end of file
+
+</configuration>
Modified: epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/portal/portal-configuration.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/portal/portal-configuration.xml 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/WEB-INF/conf/portal/portal-configuration.xml 2011-06-28 12:48:20 UTC (rev 6770)
@@ -262,9 +262,6 @@
<value>org.exoplatform.portal.pom.spi.portlet.PreferenceState</value>
<value>org.exoplatform.portal.pom.spi.gadget.GadgetState</value>
<value>org.exoplatform.portal.pom.spi.wsrp.WSRPState</value>
- <value>org.exoplatform.portal.mop.ProtectedResource</value>
- <value>org.exoplatform.portal.mop.Described</value>
- <value>org.exoplatform.portal.mop.Visible</value>
</values-param>
<properties-param>
<name>options</name>
Modified: epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/groovy/portal/webui/UILoginForm.gtmpl
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/groovy/portal/webui/UILoginForm.gtmpl 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/groovy/portal/webui/UILoginForm.gtmpl 2011-06-28 12:48:20 UTC (rev 6770)
@@ -7,7 +7,7 @@
jsmanager.addCustomizedOnLoadScript('document.getElementById("UIPortalComponentLogin").username.focus();');
HttpSession session = rcontext.getRequest().getSession();
String requestPath = rcontext.getRequestContextPath() + "/private/" + rcontext.getPortalOwner();
- session.setAttribute("initialURI", requestPath);
+ //session.setAttribute("initialURI", requestPath);
%>
<div class="UILoginForm">
<div class="LoginDecorator">
@@ -25,7 +25,7 @@
<% uiform.begin(); %>
<!--<form class="UIForm" id="$uicomponent.id" name="loginForm" action="<%= rcontext.getRequestContextPath() + "/login"%>" method="post" style="margin: 0px;">
<input type="hidden" name="<%= uiform.ACTION %>" value=""/>-->
- <input type="hidden" name="initialURI" value="<%=session.getAttribute("initialURI"); %>"/>
+ <input type="hidden" name="initialURI" value="<%=requestPath %>"/>
<div class="VerticalLayout">
<table class="UIFormGrid">
<tr class="UserNameField">
Modified: epp/portal/branches/EPP_5_2_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/account/UIUserSelector.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/account/UIUserSelector.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/eXo/src/main/java/org/exoplatform/webui/organization/account/UIUserSelector.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -412,7 +412,9 @@
uiSelectUserForm.setSelectedGroup(groupId);
OrganizationService service = uiSelectGroupForm.getApplicationComponent(OrganizationService.class);
PageList users = uiSelectUserForm.removeDuplicate(service.getUserHandler().findUsersByGroup(groupId));
+ users.setPageSize(10);
uiSelectUserForm.uiIterator_.setPageList(users);
+ uiSelectUserForm.setKeyword(null);
event.getRequestContext().addUIComponentToUpdateByAjax(uiSelectUserForm);
}
}
@@ -423,17 +425,23 @@
{
UIUserSelector uiSelectUserForm = event.getSource();
String groupId = uiSelectUserForm.getSelectedGroup();
- uiSelectUserForm.setSelectedGroup(groupId);
OrganizationService service = uiSelectUserForm.getApplicationComponent(OrganizationService.class);
+
+ PageList users = PageList.EMPTY_LIST;
if (groupId != null && groupId.trim().length() != 0)
{
- PageList users = uiSelectUserForm.removeDuplicate(service.getUserHandler().findUsersByGroup(groupId));
- uiSelectUserForm.uiIterator_.setPageList(users);
+ if (service.getGroupHandler().findGroupById(groupId) != null)
+ {
+ users = uiSelectUserForm.removeDuplicate(service.getUserHandler().findUsersByGroup(groupId));
+ }
}
else
{
- uiSelectUserForm.uiIterator_.setPageList(service.getUserHandler().findUsers(new Query()));
+ users = service.getUserHandler().findUsers(new Query());
}
+ users.setPageSize(10);
+ uiSelectUserForm.uiIterator_.setPageList(users);
+ uiSelectUserForm.setKeyword(null);
event.getRequestContext().addUIComponentToUpdateByAjax(uiSelectUserForm);
}
}
Modified: epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIComponentDecorator.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIComponentDecorator.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/framework/src/main/java/org/exoplatform/webui/core/UIComponentDecorator.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -48,14 +48,22 @@
return uicomponent_;
}
- public void setUIComponent(UIComponent uicomponent)
+ public UIComponent setUIComponent(UIComponent uicomponent)
{
+ UIComponent oldOne = uicomponent_;
if (uicomponent_ != null)
- uicomponent_.setRendered(false);
+ uicomponent_.setParent(null);
uicomponent_ = uicomponent;
- if (uicomponent_ == null)
- return;
- uicomponent_.setParent(this);
+ if (uicomponent_ != null)
+ {
+ UIComponent oldParent = uicomponent_.getParent();
+ if (oldParent != null && oldParent != this && oldParent instanceof UIComponentDecorator)
+ {
+ ((UIComponentDecorator)oldParent).setUIComponent(null);
+ }
+ uicomponent_.setParent(this);
+ }
+ return oldOne;
}
@SuppressWarnings("unchecked")
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortletActionListener.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -854,8 +854,7 @@
{
public void execute(Event<UIPortlet> event) throws Exception
{
- UIPortal uiPortal = Util.getUIPortal();
- UIPortalApplication uiApp = uiPortal.getAncestorOfType(UIPortalApplication.class);
+ UIPortalApplication uiApp = Util.getUIPortalApplication();
UIMaskWorkspace uiMaskWS = uiApp.getChildById(UIPortalApplication.UI_MASK_WS_ID);
uiMaskWS.setUpdated(true);
UIPortlet uiPortlet = event.getSource();
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/container/UIContainerActionListener.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/container/UIContainerActionListener.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/container/UIContainerActionListener.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -39,8 +39,7 @@
{
UIContainer uiContainer = event.getSource();
- UIPortal uiPortal = Util.getUIPortal();
- UIPortalApplication uiApp = uiPortal.getAncestorOfType(UIPortalApplication.class);
+ UIPortalApplication uiApp = Util.getUIPortalApplication();
UIMaskWorkspace uiMaskWS = uiApp.getChildById(UIPortalApplication.UI_MASK_WS_ID);
UIContainerForm containerForm = uiMaskWS.createUIComponent(UIContainerForm.class, null, null);
containerForm.setValues(uiContainer);
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/container/UIContainerForm.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/container/UIContainerForm.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/container/UIContainerForm.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -141,7 +141,7 @@
event.getRequestContext().addUIComponentToUpdateByAjax(uiMaskWorkspace);
- UIPortalApplication uiPortalApp = uiForm.getAncestorOfType(UIPortalApplication.class);
+ UIPortalApplication uiPortalApp = Util.getUIPortalApplication();
UIWorkingWorkspace uiWorkingWS = uiPortalApp.getChildById(UIPortalApplication.UI_WORKING_WS_ID);
pcontext.addUIComponentToUpdateByAjax(uiWorkingWS);
pcontext.setFullRender(true);
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/PageNavigationUtils.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/PageNavigationUtils.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/PageNavigationUtils.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -367,6 +367,12 @@
}
PageNode cloneStartNode = startNode.clone();
+
+ // Check if page reference isn't existing, page reference value of node is setted null too.
+ if (pageReference != null && userService.getPage(pageReference) == null)
+ {
+ cloneStartNode.setPageReference(null);
+ }
ArrayList<PageNode> filteredChildren = new ArrayList<PageNode>();
List<PageNode> children = startNode.getChildren();
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/UIPortalNavigation.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/UIPortalNavigation.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation/UIPortalNavigation.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -113,7 +113,7 @@
if (context.getRemoteUser() != null)
{
- result.add(PageNavigationUtils.filter(getSelectedNavigation(), context.getRemoteUser()));
+ result.add(PageNavigationUtils.filterNavigation(getSelectedNavigation(), context.getRemoteUser(), false, true));
}
else
{
@@ -121,7 +121,7 @@
{
if (!showUserNavigation && nav.getOwnerType().equals("user"))
continue;
- result.add(PageNavigationUtils.filter(nav, null));
+ result.add(PageNavigationUtils.filterNavigation(nav, null, false, true));
}
}
return result;
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/page/UIPageActionListener.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/page/UIPageActionListener.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/page/UIPageActionListener.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -59,7 +59,7 @@
public void execute(Event<UIPortal> event) throws Exception
{
UIPortal showedUIPortal = event.getSource();
- UIPortalApplication uiPortalApp = showedUIPortal.getAncestorOfType(UIPortalApplication.class);
+ UIPortalApplication uiPortalApp = Util.getUIPortalApplication();
//This code snippet is to make sure that Javascript/Skin is fully loaded at the first request
UIWorkingWorkspace uiWorkingWS = uiPortalApp.getChildById(UIPortalApplication.UI_WORKING_WS_ID);
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/page/UIPageBrowser.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/page/UIPageBrowser.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/page/UIPageBrowser.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -309,6 +309,12 @@
if(page.getOwnerType().equals(PortalConfig.USER_TYPE)){
removePageNode(page, event);
}
+
+ UIWorkingWorkspace uiWorkingWorkspace = uiPortalApp.getChild(UIWorkingWorkspace.class);
+ uiWorkingWorkspace.updatePortletsByName("UserToolbarSitePortlet");
+ uiWorkingWorkspace.updatePortletsByName("UserToolbarGroupPortlet");
+ uiWorkingWorkspace.updatePortletsByName("UserToolbarDashboardPortlet");
+ uiWorkingWorkspace.updatePortletsByName("NavigationPortlet");
}
/**
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortal.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortal.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortal.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -89,6 +89,10 @@
private String ownerType;
private String locale;
+
+ private String label;
+
+ private String description;
private String editPermission;
@@ -378,6 +382,26 @@
setProperty(PortalProperties.SESSION_ALIVE, type);
}
+ public String getLabel()
+ {
+ return label;
+ }
+
+ public void setLabel(String label)
+ {
+ this.label = label;
+ }
+
+ public String getDescription()
+ {
+ return description;
+ }
+
+ public void setDescription(String description)
+ {
+ this.description = description;
+ }
+
private void localizePageNavigation(PageNavigation nav,Locale locale)
{
ResourceBundleManager mgr = getApplicationComponent(ResourceBundleManager.class);
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortalForm.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortalForm.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/portal/UIPortalForm.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -96,6 +96,10 @@
private static final String FIELD_LOCALE = "locale";
private static final String FIELD_SESSION_ALIVE = "sessionAlive";
+
+ private static final String FIELD_LABEL = "label";
+
+ private static final String FIELD_DESCRIPTION = "description";
private String portalOwner_;
@@ -181,7 +185,6 @@
setActions(new String[]{"Save", "Close"});
}
- @SuppressWarnings("unchecked")
private class LanguagesComparator implements Comparator<SelectItemOption>
{
public int compare(SelectItemOption o1, SelectItemOption o2)
@@ -237,7 +240,10 @@
StringLengthValidator.class, 3, 30).addValidator(IdentifierValidator.class).setEditable(false))
.addUIFormInput(
new UIFormSelectBox(FIELD_LOCALE, FIELD_LOCALE, languages).addValidator(MandatoryValidator.class));
-
+
+ uiSettingSet.addUIFormInput(new UIFormStringInput(FIELD_LABEL, FIELD_LABEL, null));
+ uiSettingSet.addUIFormInput(new UIFormStringInput(FIELD_DESCRIPTION, FIELD_DESCRIPTION, null));
+
List<SelectItemOption<String>> listSkin = new ArrayList<SelectItemOption<String>>();
SkinService skinService = getApplicationComponent(SkinService.class);
for (String skin : skinService.getAvailableSkinNames())
@@ -317,6 +323,11 @@
dataService.save(portalConfig);
prContext.setAttribute(UserPortalConfig.class, service.getUserPortalConfig(uiForm.getPortalOwner(), prContext.getRemoteUser()));
uiPortalApp.reloadSkinPortal(prContext);
+
+ // We should use IPC to update some portlets in the future instead of
+ UIWorkingWorkspace uiWorkingWS = uiPortalApp.getChild(UIWorkingWorkspace.class);
+ uiWorkingWS.updatePortletsByName("PortalNavigationPortlet");
+ uiWorkingWS.updatePortletsByName("UserToolbarSitePortlet");
}
else
{
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/util/PortalDataMapper.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/util/PortalDataMapper.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/util/PortalDataMapper.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -197,6 +197,8 @@
PortalConfig model = new PortalConfig(uiPortal.getOwnerType(), uiPortal.getName(), uiPortal.getStorageId());
model.setAccessPermissions(uiPortal.getAccessPermissions());
model.setEditPermission(uiPortal.getEditPermission());
+ model.setLabel(uiPortal.getLabel());
+ model.setDescription(uiPortal.getDescription());
model.setLocale(uiPortal.getLocale());
model.setSkin(uiPortal.getSkin());
model.setModifiable(uiPortal.isModifiable());
@@ -346,6 +348,8 @@
uiPortal.setOwner(model.getName());
uiPortal.setModifiable(model.isModifiable());
+ uiPortal.setLabel(model.getLabel());
+ uiPortal.setDescription(model.getDescription());
uiPortal.setLocale(model.getLocale());
uiPortal.setSkin(model.getSkin());
uiPortal.setAccessPermissions(model.getAccessPermissions());
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/UIMaskWorkspace.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/UIMaskWorkspace.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/UIMaskWorkspace.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -93,10 +93,11 @@
return createUIComponent(clazz, null, null);
}
- public void setUIComponent(UIComponent uicomponent)
+ public UIComponent setUIComponent(UIComponent uicomponent)
{
- super.setUIComponent(uicomponent);
+ UIComponent oldOne = super.setUIComponent(uicomponent);
setShow(uicomponent != null);
+ return oldOne;
}
static public class CloseActionListener extends EventListener<UIComponent>
Modified: epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/UIPortalApplicationLifecycle.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/UIPortalApplicationLifecycle.java 2011-06-28 08:00:46 UTC (rev 6769)
+++ epp/portal/branches/EPP_5_2_Branch/webui/portal/src/main/java/org/exoplatform/portal/webui/workspace/UIPortalApplicationLifecycle.java 2011-06-28 12:48:20 UTC (rev 6770)
@@ -44,7 +44,12 @@
return;
UIComponent uiTarget = uicomponent.findComponentById(componentId);
if (uiTarget == null)
+ {
+ context.addUIComponentToUpdateByAjax(uicomponent.<UIComponent>getChildById(UIPortalApplication.UI_WORKING_WS_ID));
+ context.addUIComponentToUpdateByAjax(uicomponent.getChild(UIMaskWorkspace.class));
+ ((PortalRequestContext)context).setFullRender(true);
return;
+ }
if (uiTarget == uicomponent)
super.processDecode(uicomponent, context);
uiTarget.processDecode(context);
13 years, 6 months
gatein SVN: r6769 - epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-06-28 04:00:46 -0400 (Tue, 28 Jun 2011)
New Revision: 6769
Modified:
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Book_Info.xml
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Revision_History.xml
Log:
Incremented for push to stage for 5.1.1 Release
Modified: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Book_Info.xml 2011-06-28 07:37:02 UTC (rev 6768)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Book_Info.xml 2011-06-28 08:00:46 UTC (rev 6769)
@@ -8,8 +8,8 @@
<subtitle>A guide to using the JBoss Enterprise Portal Platform Site Publisher &VZ; (powered by eXo) extension</subtitle>
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.1</productnumber>
- <edition>1</edition>
- <pubsnumber>5.5</pubsnumber>
+ <edition>2</edition>
+ <pubsnumber>5.1.1</pubsnumber>
<abstract>
<para>
This document provides an easy to follow guide to the functions and options available in the Enterprise Portal Platform Site Publisher extension. It is intended to be accessible and useful to both experienced and novice portal users.
Modified: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Revision_History.xml 2011-06-28 07:37:02 UTC (rev 6768)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Revision_History.xml 2011-06-28 08:00:46 UTC (rev 6769)
@@ -7,6 +7,20 @@
<title>Revision History</title>
<simpara>
<revhistory>
+ <revision>
+ <revnumber>2-5.1.1</revnumber>
+ <date>Monday June 27 2011</date>
+ <author>
+ <firstname>Scott</firstname>
+ <surname>Mumford</surname>
+ <email>smumford(a)redhat.com</email>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Updated for 5.1.1 Release.</member>
+ </simplelist>
+ </revdescription>
+ </revision>
<revision>
<revnumber>1-5.5</revnumber>
<date>Wed June 01 2011</date>
13 years, 6 months
gatein SVN: r6768 - in epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US: fallback_content and 1 other directories.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-06-28 03:37:02 -0400 (Tue, 28 Jun 2011)
New Revision: 6768
Added:
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Conventions.xml
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Feedback.xml
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Legal_Notice.xml
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/book_ent
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/1.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/1.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/10.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/10.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/11.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/11.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/12.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/12.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/13.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/13.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/14.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/14.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/15.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/15.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/16.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/16.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/17.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/17.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/18.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/18.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/19.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/19.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/2.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/2.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/20.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/20.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/21.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/21.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/22.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/22.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/23.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/23.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/3.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/3.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/4.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/4.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/5.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/5.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/6.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/6.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/7.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/7.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/8.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/8.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/9.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/9.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/dot.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/dot2.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/h1-bg.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/image_left.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/image_right.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/important.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/important.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/note.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/note.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/shine.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-go-back.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-go-forward.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-go-up.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-home.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/title_logo.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/title_logo.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/warning.png
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/warning.svg
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/watermark-draft.png
Log:
Turns out the fallback_content was needed after all.
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Conventions.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Conventions.xml (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Conventions.xml 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,167 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "../Installation_Guide.ent">
+%BOOK_ENTITIES;
+]>
+<section>
+ <title>Document Conventions</title>
+ <para>
+ This manual uses several conventions to highlight certain words and phrases and draw attention to specific pieces of information.
+ </para>
+ <para>
+ In PDF and paper editions, this manual uses typefaces drawn from the <ulink url="https://fedorahosted.org/liberation-fonts/">Liberation Fonts</ulink> set. The Liberation Fonts set is also used in HTML editions if the set is installed on your system. If not, alternative but equivalent typefaces are displayed. Note: Red Hat Enterprise Linux 5 and later includes the Liberation Fonts set by default.
+ </para>
+ <section>
+ <title>Typographic Conventions</title>
+ <para>
+ Four typographic conventions are used to call attention to specific words and phrases. These conventions, and the circumstances they apply to, are as follows.
+ </para>
+ <para>
+ <literal>Mono-spaced Bold</literal>
+ </para>
+ <para>
+ Used to highlight system input, including shell commands, file names and paths. Also used to highlight keycaps and key combinations. For example:
+ </para>
+ <blockquote>
+ <para>
+ To see the contents of the file <filename>my_next_bestselling_novel</filename> in your current working directory, enter the <command>cat my_next_bestselling_novel</command> command at the shell prompt and press <keycap>Enter</keycap> to execute the command.
+ </para>
+ </blockquote>
+ <para>
+ The above includes a file name, a shell command and a keycap, all presented in mono-spaced bold and all distinguishable thanks to context.
+ </para>
+ <para>
+ Key combinations can be distinguished from keycaps by the hyphen connecting each part of a key combination. For example:
+ </para>
+ <blockquote>
+ <para>
+ Press <keycap>Enter</keycap> to execute the command.
+ </para>
+ <para>
+ Press <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>F1</keycap></keycombo> to switch to the first virtual terminal. Press <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>F7</keycap></keycombo> to return to your X-Windows session.
+ </para>
+ </blockquote>
+ <para>
+ The first paragraph highlights the particular keycap to press. The second highlights two key combinations (each a set of three keycaps with each set pressed simultaneously).
+ </para>
+ <para>
+ If source code is discussed, class names, methods, functions, variable names and returned values mentioned within a paragraph will be presented as above, in <literal>mono-spaced bold</literal>. For example:
+ </para>
+ <blockquote>
+ <para>
+ File-related classes include <classname>file system</classname> for file systems, <classname>file</classname> for files, and <classname>dir</classname> for directories. Each class has its own associated set of permissions.
+ </para>
+ </blockquote>
+ <para>
+ <application>Proportional Bold</application>
+ </para>
+ <para>
+ This denotes words or phrases encountered on a system, including application names; dialog box text; labeled buttons; check-box and radio button labels; menu titles and sub-menu titles. For example:
+ </para>
+ <blockquote>
+ <para>
+ Choose <menuchoice><guimenu>System</guimenu><guisubmenu>Preferences</guisubmenu><guimenuitem>Mouse</guimenuitem></menuchoice> from the main menu bar to launch <application>Mouse Preferences</application>. In the <guilabel>Buttons</guilabel> tab, click the <guilabel>Left-handed mouse</guilabel> check box and click <guibutton>Close</guibutton> to switch the primary mouse button from the left to the right (making the mouse suitable for use in the left hand).
+ </para>
+ <para>
+ To insert a special character into a <application>gedit</application> file, choose <menuchoice><guimenu>Applications</guimenu><guisubmenu>Accessories</guisubmenu><guimenuitem>Character Map</guimenuitem></menuchoice> from the main menu bar. Next, choose <menuchoice><guimenu>Search</guimenu><guimenuitem>Find…</guimenuitem></menuchoice> from the <application>Character Map</application> menu bar, type the name of the character in the <guilabel>Search</guilabel> field and click <guibutton>Next</guibutton>. The character you sought will be highlighted in the <guilabel>Character Table</guilabel>. Double-click this highlighted character to place it in the <guilabel>Text to copy</guilabel> field and then click the <guibutton>Copy</guibutton> button. Now switch back to your document and choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Paste</guimenuitem></menuchoice> from the <application>gedit</application> menu bar.
+ </para>
+ </blockquote>
+ <para>
+ The above text includes application names; system-wide menu names and items; application-specific menu names; and buttons and text found within a GUI interface, all presented in proportional bold and all distinguishable by context.
+ </para>
+ <para>
+ <command><replaceable>Mono-spaced Bold Italic</replaceable></command> or <application><replaceable>Proportional Bold Italic</replaceable></application>
+ </para>
+ <para>
+ Whether mono-spaced bold or proportional bold, the addition of italics indicates replaceable or variable text. Italics denotes text you do not input literally or displayed text that changes depending on circumstance. For example:
+ </para>
+ <blockquote>
+ <para>
+ To connect to a remote machine using ssh, type <command>ssh <replaceable>username</replaceable>@<replaceable>domain.name</replaceable></command> at a shell prompt. If the remote machine is <filename>example.com</filename> and your username on that machine is john, type <command>ssh john(a)example.com</command>.
+ </para>
+ <para>
+ The <command>mount -o remount <replaceable>file-system</replaceable></command> command remounts the named file system. For example, to remount the <filename>/home</filename> file system, the command is <command>mount -o remount /home</command>.
+ </para>
+ <para>
+ To see the version of a currently installed package, use the <command>rpm -q <replaceable>package</replaceable></command> command. It will return a result as follows: <command><replaceable>package-version-release</replaceable></command>.
+ </para>
+ </blockquote>
+ <para>
+ Note the words in bold italics above — username, domain.name, file-system, package, version and release. Each word is a placeholder, either for text you enter when issuing a command or for text displayed by the system.
+ </para>
+ <para>
+ Aside from standard usage for presenting the title of a work, italics denotes the first use of a new and important term. For example:
+ </para>
+ <blockquote>
+ <para>
+ Publican is a <firstterm>DocBook</firstterm> publishing system.
+ </para>
+ </blockquote>
+ </section>
+
+ <section>
+ <title>Pull-quote Conventions</title>
+ <para>
+ Terminal output and source code listings are set off visually from the surrounding text.
+ </para>
+ <para>
+ Output sent to a terminal is set in <computeroutput>mono-spaced roman</computeroutput> and presented thus:
+ </para>
+
+<screen>books Desktop documentation drafts mss photos stuff svn
+books_tests Desktop1 downloads images notes scripts svgs
+</screen>
+ <para>
+ Source-code listings are also set in <computeroutput>mono-spaced roman</computeroutput> but add syntax highlighting as follows:
+ </para>
+
+<programlisting language="Java">package org.jboss.book.jca.ex1;
+
+import javax.naming.InitialContext;
+
+public class ExClient
+{
+ public static void main(String args[])
+ throws Exception
+ {
+ InitialContext iniCtx = new InitialContext();
+ Object ref = iniCtx.lookup("EchoBean");
+ EchoHome home = (EchoHome) ref;
+ Echo echo = home.create();
+
+ System.out.println("Created Echo");
+
+ System.out.println("Echo.echo('Hello') = " + echo.echo("Hello"));
+ }
+}
+</programlisting>
+ </section>
+
+ <section>
+ <title>Notes and Warnings</title>
+ <para>
+ Finally, we use three visual styles to draw attention to information that might otherwise be overlooked.
+ </para>
+ <note>
+ <title>Note</title>
+ <para>
+ Notes are tips, shortcuts or alternative approaches to the task at hand. Ignoring a note should have no negative consequences, but you might miss out on a trick that makes your life easier.
+ </para>
+ </note>
+ <important>
+ <title>Important</title>
+ <para>
+ Important boxes detail things that are easily missed: configuration changes that only apply to the current session, or services that need restarting before an update will apply. Ignoring a box labeled 'Important' will not cause data loss but may cause irritation and frustration.
+ </para>
+ </important>
+ <warning>
+ <title>Warning</title>
+ <para>
+ Warnings should not be ignored. Ignoring warnings will most likely cause data loss.
+ </para>
+ </warning>
+ </section>
+
+</section>
+
+
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Feedback.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Feedback.xml (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Feedback.xml 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,23 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "../Installation_Guide.ent">
+%BOOK_ENTITIES;
+]>
+<section>
+ <title>We Need Feedback!</title>
+ <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+ </indexterm>
+ <para>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a support ticket with your comments via the JBoss Customer Support Portal available at <ulink url="http://support.redhat.com">http://support.redhat.com</ulink> against the product <application>JBoss Enterprise Portal Platform</application>.
+ </para>
+ <para>
+ When submitting a bug report, be sure to mention the manual's identifier: <citetitle>&BOOKID;</citetitle>
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+ </para>
+</section>
+
+
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Legal_Notice.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Legal_Notice.xml (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/Legal_Notice.xml 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,11 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE legalnotice PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "../Installation_Guide.ent">
+%BOOK_ENTITIES;
+]>
+<legalnotice>
+ <para>
+ Copyright <trademark class="copyright"></trademark> &YEAR; &HOLDER; This material may only be distributed subject to the terms and conditions set forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest version is presently available at <ulink url="http://www.gnu.org/licenses/fdl.txt">http://www.gnu.org/licenses/fdl.txt</ulink>).
+ </para>
+</legalnotice>
+
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/book_ent
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/book_ent (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/book_ent 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+for file in *.xml; do
+ sed -i -e 's/docbookx.dtd" \[/docbookx.dtd" \[\n<!ENTITY % BOOK_ENTITIES SYSTEM "'${1}'.ent">\n%BOOK_ENTITIES\;/' ${file}; \
+done
+
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/book_ent
___________________________________________________________________
Added: svn:executable
+ *
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/1.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/1.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/1.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/1.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 17.993,22.013004 L 17.993,10.113004 L 15.239,10.113004 C 14.899001,11.218003 14.286999,11.643004 12.757,11.728004 L 12.757,13.819004 L 14.763,13.819004 L 14.763,22.013004 L 17.993,22.013004"
+ id="text2207"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/10.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/10.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/10.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/10.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/10.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.252562,22 L 12.252562,10.1 L 9.4985624,10.1 C 9.1585628,11.204999 8.5465609,11.63 7.0165624,11.715 L 7.0165624,13.806 L 9.0225624,13.806 L 9.0225624,22 L 12.252562,22 M 24.983438,16.033 C 24.983438,12.072004 22.705435,9.913 19.611438,9.913 C 16.517441,9.913 14.205438,12.106004 14.205438,16.067 C 14.205438,20.027996 16.483441,22.187 19.577438,22.187 C 22.671435,22.187 24.983438,19.993996 24.983438,16.033 M 21.600438,16.067 C 21.600438,18.242998 20.886437,19.348 19.611438,19.348 C 18.336439,19.348 17.588438,18.208998 17.588438,16.033 C 17.588438,13.857002 18.302439,12.752 19.577438,12.752 C 20.852437,12.752 21.600438,13.891002 21.600438,16.067"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/11.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/11.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/11.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/11.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/11.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 14.623052,22 L 14.623052,10.1 L 11.869052,10.1 C 11.529053,11.204999 10.917051,11.63 9.3870527,11.715 L 9.3870527,13.806 L 11.393052,13.806 L 11.393052,22 L 14.623052,22 M 21.794928,22 L 21.794928,10.1 L 19.040928,10.1 C 18.700928,11.204999 18.088926,11.63 16.558928,11.715 L 16.558928,13.806 L 18.564928,13.806 L 18.564928,22 L 21.794928,22"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/12.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/12.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/12.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/12.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/12.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.677562,22 L 12.677562,10.1 L 9.9235624,10.1 C 9.5835628,11.204999 8.9715609,11.63 7.4415624,11.715 L 7.4415624,13.806 L 9.4475624,13.806 L 9.4475624,22 L 12.677562,22 M 24.558438,22 L 24.558438,19.314 L 18.353438,19.314 C 18.608438,18.600001 19.27144,17.936999 21.651438,16.832 C 23.929436,15.778001 24.473438,14.825998 24.473438,13.262 C 24.473438,11.103002 22.926435,9.913 19.968438,9.913 C 17.92844,9.913 16.381436,10.491001 14.868438,11.46 L 16.381438,13.891 C 17.571437,13.092001 18.727439,12.684 19.917438,12.684 C 20.869437,12.684 21.243438,12.973001 21.243438,13.5 C 21.243438,13.976 21.056437,14.163001 19.798438,14.724 C 16.823441,16.049999 14.936438,17.988004 14.834438,22 L 24.558438,22"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/13.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/13.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/13.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/13.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/13.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.550062,22 L 12.550062,10.1 L 9.7960624,10.1 C 9.4560628,11.204999 8.8440609,11.63 7.3140624,11.715 L 7.3140624,13.806 L 9.3200624,13.806 L 9.3200624,22 L 12.550062,22 M 24.685938,18.226 C 24.685938,16.713002 23.716937,15.914 22.611938,15.659 C 23.427937,15.268 24.192938,14.638999 24.192938,13.33 C 24.192938,10.814003 22.288935,9.913 19.432938,9.913 C 17.35894,9.913 15.930937,10.610001 14.825938,11.46 L 16.389938,13.602 C 17.307937,12.939001 18.191939,12.582 19.347938,12.582 C 20.520937,12.582 20.996938,12.922001 20.996938,13.551 C 20.996938,14.332999 20.656937,14.554 19.619938,14.554 L 18.089938,14.554 L 18.089938,17.121 L 19.806938,17.121 C 21.013937,17.121 21.489938,17.427001 21.489938,18.26 C 21.489938,19.075999 20.911937,19.467 19.534938,19.467 C 18.225939,19.467 17.120937,18.973999 16.151938,18.226 L 14.451938,20.368 C 15.726937,21.489999 17.44394,22.187 19.466938,22.187 C 22.696935,22.187 24.685938,20.979997 24.685938,18.226"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/14.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/14.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/14.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/14.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/14.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.040062,22 L 12.040062,10.1 L 9.2860624,10.1 C 8.9460628,11.204999 8.3340609,11.63 6.8040624,11.715 L 6.8040624,13.806 L 8.8100624,13.806 L 8.8100624,22 L 12.040062,22 M 25.195938,19.96 L 25.195938,17.172 L 23.665938,17.172 L 23.665938,10.1 L 20.401938,10.1 L 13.992938,17.461 L 13.992938,19.875 L 20.707938,19.875 L 20.707938,22 L 23.665938,22 L 23.665938,19.96 L 25.195938,19.96 M 20.758938,13.432 C 20.724938,13.992999 20.707938,15.302001 20.707938,15.999 L 20.707938,17.172 L 19.823938,17.172 C 19.007939,17.172 18.191937,17.189 17.596938,17.223 C 18.038938,16.798 18.531939,16.253999 19.160938,15.489 L 19.330938,15.285 C 20.112937,14.350001 20.435938,13.925 20.758938,13.432"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/15.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/15.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/15.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/15.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/15.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.388562,22 L 12.388562,10.1 L 9.6345624,10.1 C 9.2945628,11.204999 8.6825609,11.63 7.1525624,11.715 L 7.1525624,13.806 L 9.1585624,13.806 L 9.1585624,22 L 12.388562,22 M 24.847438,17.852 C 24.847438,15.200003 23.164435,13.908 20.597438,13.908 C 19.407439,13.908 18.693437,14.112 18.030438,14.435 L 18.132438,12.786 L 24.133438,12.786 L 24.133438,10.1 L 15.463438,10.1 L 15.055438,16.271 L 17.877438,17.223 C 18.472437,16.798 19.067439,16.543 20.070438,16.543 C 21.090437,16.543 21.668438,17.019001 21.668438,17.937 C 21.668438,18.888999 21.107436,19.45 19.577438,19.45 C 18.302439,19.45 16.891437,18.956999 15.752438,18.277 L 14.409438,20.742 C 15.871436,21.625999 17.43544,22.187 19.492438,22.187 C 22.875435,22.187 24.847438,20.622997 24.847438,17.852"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/16.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/16.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/16.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/16.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/16.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.405562,22 L 12.405562,10.1 L 9.6515624,10.1 C 9.3115628,11.204999 8.6995609,11.63 7.1695624,11.715 L 7.1695624,13.806 L 9.1755624,13.806 L 9.1755624,22 L 12.405562,22 M 24.830438,17.903 C 24.830438,15.387003 23.096435,14.214 20.631438,14.214 C 19.203439,14.214 18.336437,14.486 17.571438,14.911 C 18.472437,13.534001 20.104441,12.616 23.215438,12.616 L 23.215438,9.913 C 16.415445,9.913 14.341438,14.112003 14.341438,17.257 C 14.341438,20.537997 16.415441,22.187 19.407438,22.187 C 22.773435,22.187 24.830438,20.588997 24.830438,17.903 M 21.651438,18.124 C 21.651438,19.075999 20.818437,19.586 19.577438,19.586 C 18.132439,19.586 17.486438,18.990999 17.486438,18.141 C 17.486438,17.206001 18.183439,16.645 19.645438,16.645 C 20.903437,16.645 21.651438,17.206001 21.651438,18.124"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/17.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/17.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/17.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/17.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/17.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.652062,22 L 12.652062,10.1 L 9.8980624,10.1 C 9.5580628,11.204999 8.9460609,11.63 7.4160624,11.715 L 7.4160624,13.806 L 9.4220624,13.806 L 9.4220624,22 L 12.652062,22 M 24.583938,12.48 L 24.583938,10.1 L 14.740938,10.1 L 14.740938,12.786 L 20.656938,12.786 C 18.36194,15.131998 17.239938,17.920004 17.205938,22 L 20.435938,22 C 20.435938,18.141004 21.098941,15.675997 24.583938,12.48"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/18.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/18.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/18.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/18.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/18.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.176062,22 L 12.176062,10.1 L 9.4220624,10.1 C 9.0820628,11.204999 8.4700609,11.63 6.9400624,11.715 L 6.9400624,13.806 L 8.9460624,13.806 L 8.9460624,22 L 12.176062,22 M 25.059938,18.294 C 25.059938,16.764002 23.971937,15.948 23.206938,15.642 C 23.954937,15.166 24.549938,14.519999 24.549938,13.449 C 24.549938,11.171002 22.526935,9.913 19.653938,9.913 C 16.780941,9.913 14.723938,11.171002 14.723938,13.449 C 14.723938,14.519999 15.352939,15.251 16.066938,15.676 C 15.301939,15.982 14.213938,16.764002 14.213938,18.294 C 14.213938,20.707998 16.287941,22.187 19.619938,22.187 C 22.951935,22.187 25.059938,20.707998 25.059938,18.294 M 21.387938,13.5 C 21.387938,14.094999 20.945937,14.639 19.653938,14.639 C 18.361939,14.639 17.885938,14.094999 17.885938,13.5 C 17.885938,12.905001 18.327939,12.31 19.619938,12.31 C 20.911937,12.31 21.387938,12.905001 21.387938,13.5 M 21.897938,18.26 C 21.897938,19.075999 21.149936,19.688 19.653938,19.688 C 18.157939,19.688 17.375938,19.0759!
99 17.375938,18.26 C 17.375938,17.444001 18.106939,16.849 19.619938,16.849 C 21.115936,16.849 21.897938,17.444001 21.897938,18.26"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/19.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/19.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/19.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/19.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/19.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 12.414062,22 L 12.414062,10.1 L 9.6600624,10.1 C 9.3200628,11.204999 8.7080609,11.63 7.1780624,11.715 L 7.1780624,13.806 L 9.1840624,13.806 L 9.1840624,22 L 12.414062,22 M 24.821938,14.843 C 24.821938,11.562003 22.747935,9.913 19.755938,9.913 C 16.389941,9.913 14.332938,11.511003 14.332938,14.197 C 14.332938,16.712997 16.06694,17.886 18.531938,17.886 C 19.959937,17.886 20.826939,17.614 21.591938,17.189 C 20.690939,18.565999 19.058935,19.484 15.947938,19.484 L 15.947938,22.187 C 22.747931,22.187 24.821938,17.987997 24.821938,14.843 M 21.676938,13.959 C 21.676938,14.893999 20.979936,15.455 19.517938,15.455 C 18.259939,15.455 17.511938,14.893999 17.511938,13.976 C 17.511938,13.024001 18.344939,12.514 19.585938,12.514 C 21.030936,12.514 21.676938,13.109001 21.676938,13.959"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/2.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/2.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/2.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/2.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 20.862,22.013004 L 20.862,19.327004 L 14.657,19.327004 C 14.912,18.613005 15.575003,17.950003 17.955,16.845004 C 20.232998,15.791005 20.777,14.839003 20.777,13.275004 C 20.777,11.116006 19.229997,9.9260043 16.272,9.9260043 C 14.232002,9.9260043 12.684999,10.504005 11.172,11.473004 L 12.685,13.904004 C 13.874999,13.105005 15.031001,12.697004 16.221,12.697004 C 17.172999,12.697004 17.547,12.986005 17.547,13.513004 C 17.547,13.989004 17.359999,14.176005 16.102,14.737004 C 13.127003,16.063003 11.24,18.001008 11.138,22.013004 L 20.862,22.013004"
+ id="text2207"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/20.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/20.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/20.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/20.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/20.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 14.685,22 L 14.685,19.314 L 8.4799999,19.314 C 8.7349997,18.600001 9.3980023,17.936999 11.778,16.832 C 14.055998,15.778001 14.6,14.825998 14.6,13.262 C 14.6,11.103002 13.052997,9.913 10.095,9.913 C 8.055002,9.913 6.5079984,10.491001 4.9949999,11.46 L 6.5079999,13.891 C 7.6979988,13.092001 8.8540011,12.684 10.044,12.684 C 10.995999,12.684 11.37,12.973001 11.37,13.5 C 11.37,13.976 11.182999,14.163001 9.9249999,14.724 C 6.9500029,16.049999 5.0629998,17.988004 4.9609999,22 L 14.685,22 M 27.421719,16.033 C 27.421719,12.072004 25.143716,9.913 22.049719,9.913 C 18.955722,9.913 16.643719,12.106004 16.643719,16.067 C 16.643719,20.027996 18.921722,22.187 22.015719,22.187 C 25.109716,22.187 27.421719,19.993996 27.421719,16.033 M 24.038719,16.067 C 24.038719,18.242998 23.324717,19.348 22.049719,19.348 C 20.77472,19.348 20.026719,18.208998 20.026719,16.033 C 20.026719,13.857002 20.74072,12.752 22.015719,12.752 C 23.290717,12.752 24.038719,13.891002 24.038719,16.067"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/21.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/21.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/21.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/21.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/21.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 16.648141,22 L 16.648141,19.314 L 10.44314,19.314 C 10.69814,18.600001 11.361143,17.936999 13.741141,16.832 C 16.019139,15.778001 16.563141,14.825998 16.563141,13.262 C 16.563141,11.103002 15.016138,9.913 12.058141,9.913 C 10.018143,9.913 8.471139,10.491001 6.9581405,11.46 L 8.4711405,13.891 C 9.661139,13.092001 10.817142,12.684 12.007141,12.684 C 12.95914,12.684 13.333141,12.973001 13.333141,13.5 C 13.333141,13.976 13.14614,14.163001 11.88814,14.724 C 8.9131435,16.049999 7.0261404,17.988004 6.9241405,22 L 16.648141,22 M 23.82586,22 L 23.82586,10.1 L 21.07186,10.1 C 20.73186,11.204999 20.119858,11.63 18.58986,11.715 L 18.58986,13.806 L 20.59586,13.806 L 20.59586,22 L 23.82586,22"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/22.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/22.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/22.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/22.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/22.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 14.685,22 L 14.685,19.314 L 8.4799999,19.314 C 8.7349997,18.600001 9.3980023,17.936999 11.778,16.832 C 14.055998,15.778001 14.6,14.825998 14.6,13.262 C 14.6,11.103002 13.052997,9.913 10.095,9.913 C 8.055002,9.913 6.5079984,10.491001 4.9949999,11.46 L 6.5079999,13.891 C 7.6979988,13.092001 8.8540011,12.684 10.044,12.684 C 10.995999,12.684 11.37,12.973001 11.37,13.5 C 11.37,13.976 11.182999,14.163001 9.9249999,14.724 C 6.9500029,16.049999 5.0629998,17.988004 4.9609999,22 L 14.685,22 M 26.571719,22 L 26.571719,19.314 L 20.366719,19.314 C 20.621718,18.600001 21.284721,17.936999 23.664719,16.832 C 25.942716,15.778001 26.486719,14.825998 26.486719,13.262 C 26.486719,11.103002 24.939716,9.913 21.981719,9.913 C 19.941721,9.913 18.394717,10.491001 16.881719,11.46 L 18.394719,13.891 C 19.584718,13.092001 20.74072,12.684 21.930719,12.684 C 22.882718,12.684 23.256719,12.973001 23.256719,13.5 C 23.256719,13.976 23.069717,14.163001 21.811719,14.724 C 18.836722,16.049999 16.9497!
19,17.988004 16.847719,22 L 26.571719,22"
+ id="number"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/23.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/23.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/23.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/23.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/23.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 15.32239,22.013004 L 15.32239,19.327004 L 9.1173907,19.327004 C 9.3723904,18.613005 10.035393,17.950003 12.41539,16.845004 C 14.693388,15.791005 15.23739,14.839003 15.23739,13.275004 C 15.23739,11.116006 13.690387,9.9260043 10.73239,9.9260043 C 8.6923927,9.9260043 7.1453891,10.504005 5.6323906,11.473004 L 7.1453906,13.904004 C 8.3353896,13.105005 9.4913919,12.697004 10.68139,12.697004 C 11.633389,12.697004 12.00739,12.986005 12.00739,13.513004 C 12.00739,13.989004 11.820389,14.176005 10.56239,14.737004 C 7.5873937,16.063003 5.7003905,18.001008 5.5983906,22.013004 L 15.32239,22.013004 M 26.401609,18.239004 C 26.401609,16.726006 25.432608,15.927004 24.327609,15.672004 C 25.143608,15.281005 25.908609,14.652003 25.908609,13.343004 C 25.908609,10.827007 24.004606,9.9260043 21.148609,9.9260043 C 19.074611,9.9260043 17.646608,10.623005 16.541609,11.473004 L 18.105609,13.615004 C 19.023608,12.952005 19.90761,12.595004 21.063609,12.595004 C 22.236608,12.595004 22.712609,12!
.935005 22.712609,13.564004 C 22.712609,14.346004 22.372608,14.567004 21.335609,14.567004 L 19.805609,14.567004 L 19.805609,17.134004 L 21.522609,17.134004 C 22.729608,17.134004 23.205609,17.440005 23.205609,18.273004 C 23.205609,19.089003 22.627608,19.480004 21.250609,19.480004 C 19.94161,19.480004 18.836608,18.987004 17.867609,18.239004 L 16.167609,20.381004 C 17.442608,21.503003 19.159611,22.200004 21.182609,22.200004 C 24.412606,22.200004 26.401609,20.993002 26.401609,18.239004"
+ id="text2207"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/3.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/3.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/3.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/3.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 21.117,18.239004 C 21.117,16.726006 20.147999,15.927004 19.043,15.672004 C 19.858999,15.281005 20.624,14.652003 20.624,13.343004 C 20.624,10.827007 18.719997,9.9260043 15.864,9.9260043 C 13.790002,9.9260043 12.361999,10.623005 11.257,11.473004 L 12.821,13.615004 C 13.738999,12.952005 14.623001,12.595004 15.779,12.595004 C 16.951999,12.595004 17.428,12.935005 17.428,13.564004 C 17.428,14.346004 17.087999,14.567004 16.051,14.567004 L 14.521,14.567004 L 14.521,17.134004 L 16.238,17.134004 C 17.444999,17.134004 17.921,17.440005 17.921,18.273004 C 17.921,19.089003 17.342999,19.480004 15.966,19.480004 C 14.657002,19.480004 13.551999,18.987004 12.583,18.239004 L 10.883,20.381004 C 12.157999,21.503003 13.875002,22.200004 15.898,22.200004 C 19.127997,22.200004 21.117,20.993002 21.117,18.239004"
+ id="text2207"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/4.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/4.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/4.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/4.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/4.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 20.573772,19.96 L 20.573772,17.172 L 19.043772,17.172 L 19.043772,10.1 L 15.779772,10.1 L 9.3707718,17.461 L 9.3707718,19.875 L 16.085772,19.875 L 16.085772,22 L 19.043772,22 L 19.043772,19.96 L 20.573772,19.96 M 16.136772,13.432 C 16.102772,13.992999 16.085772,15.302001 16.085772,15.999 L 16.085772,17.172 L 15.201772,17.172 C 14.385773,17.172 13.569771,17.189 12.974772,17.223 C 13.416772,16.798 13.909773,16.253999 14.538772,15.489 L 14.708772,15.285 C 15.490771,14.350001 15.813772,13.925 16.136772,13.432"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/5.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/5.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/5.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/5.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/5.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 21.219,17.852 C 21.219,15.200003 19.535997,13.908 16.969,13.908 C 15.779001,13.908 15.064999,14.112 14.402,14.435 L 14.504,12.786 L 20.505,12.786 L 20.505,10.1 L 11.835,10.1 L 11.427,16.271 L 14.249,17.223 C 14.843999,16.798 15.439001,16.543 16.442,16.543 C 17.461999,16.543 18.04,17.019001 18.04,17.937 C 18.04,18.888999 17.478998,19.45 15.949,19.45 C 14.674001,19.45 13.262999,18.956999 12.124,18.277 L 10.781,20.742 C 12.242999,21.625999 13.807002,22.187 15.864,22.187 C 19.246997,22.187 21.219,20.622997 21.219,17.852"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/6.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/6.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/6.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/6.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/6.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 21.2445,17.903 C 21.2445,15.387003 19.510497,14.214 17.0455,14.214 C 15.617501,14.214 14.750499,14.486 13.9855,14.911 C 14.886499,13.534001 16.518503,12.616 19.6295,12.616 L 19.6295,9.913 C 12.829507,9.913 10.7555,14.112003 10.7555,17.257 C 10.7555,20.537997 12.829503,22.187 15.8215,22.187 C 19.187497,22.187 21.2445,20.588997 21.2445,17.903 M 18.0655,18.124 C 18.0655,19.075999 17.232499,19.586 15.9915,19.586 C 14.546501,19.586 13.9005,18.990999 13.9005,18.141 C 13.9005,17.206001 14.597501,16.645 16.0595,16.645 C 17.317499,16.645 18.0655,17.206001 18.0655,18.124"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/7.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/7.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/7.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/7.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/7.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 20.9215,12.48 L 20.9215,10.1 L 11.0785,10.1 L 11.0785,12.786 L 16.9945,12.786 C 14.699502,15.131998 13.5775,17.920004 13.5435,22 L 16.7735,22 C 16.7735,18.141004 17.436503,15.675997 20.9215,12.48"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/8.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/8.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/8.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/8.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/8.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 21.423,18.294 C 21.423,16.764002 20.334999,15.948 19.57,15.642 C 20.317999,15.166 20.913,14.519999 20.913,13.449 C 20.913,11.171002 18.889997,9.913 16.017,9.913 C 13.144003,9.913 11.087,11.171002 11.087,13.449 C 11.087,14.519999 11.716001,15.251 12.43,15.676 C 11.665001,15.982 10.577,16.764002 10.577,18.294 C 10.577,20.707998 12.651003,22.187 15.983,22.187 C 19.314997,22.187 21.423,20.707998 21.423,18.294 M 17.751,13.5 C 17.751,14.094999 17.308999,14.639 16.017,14.639 C 14.725001,14.639 14.249,14.094999 14.249,13.5 C 14.249,12.905001 14.691001,12.31 15.983,12.31 C 17.274999,12.31 17.751,12.905001 17.751,13.5 M 18.261,18.26 C 18.261,19.075999 17.512998,19.688 16.017,19.688 C 14.521001,19.688 13.739,19.075999 13.739,18.26 C 13.739,17.444001 14.470002,16.849 15.983,16.849 C 17.478998,16.849 18.261,17.444001 18.261,18.26"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/9.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/9.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/9.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/9.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/9.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="32"
+ height="32"
+ id="svg2">
+ <defs
+ id="defs15" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ id="circle"
+ style="fill:#aa0000" />
+ <path
+ d="M 22.128383,14.843 C 22.128383,11.562003 20.05438,9.913 17.062383,9.913 C 13.696386,9.913 11.639383,11.511003 11.639383,14.197 C 11.639383,16.712997 13.373385,17.886 15.838383,17.886 C 17.266382,17.886 18.133384,17.614 18.898383,17.189 C 17.997384,18.565999 16.36538,19.484 13.254383,19.484 L 13.254383,22.187 C 20.054376,22.187 22.128383,17.987997 22.128383,14.843 M 18.983383,13.959 C 18.983383,14.893999 18.286381,15.455 16.824383,15.455 C 15.566384,15.455 14.818383,14.893999 14.818383,13.976 C 14.818383,13.024001 15.651384,12.514 16.892383,12.514 C 18.337381,12.514 18.983383,13.109001 18.983383,13.959"
+ id="text2219"
+ style="fill:#ffffff" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/dot.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/dot.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/dot2.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/dot2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/h1-bg.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/h1-bg.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/image_left.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/image_left.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/image_right.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/image_right.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/important.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/important.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/important.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/important.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/important.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="48"
+ height="48"
+ id="svg2">
+ <defs
+ id="defs5" />
+ <path
+ d="M 255.25,-411.29002 L 261.86798,-400.85887 L 273.83367,-397.7882 L 265.95811,-388.27072 L 266.73534,-375.94179 L 255.25,-380.49082 L 243.76466,-375.94179 L 244.54189,-388.27072 L 236.66633,-397.7882 L 248.63202,-400.85887 L 255.25,-411.29002 z "
+ transform="matrix(1.1071323,0,0,1.1071323,-258.4137,459.98052)"
+ style="fill:#2e3436;fill-opacity:1;stroke:#2e3436;stroke-width:4.25880718;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4450" />
+ <path
+ d="M 255.25,-411.29002 L 261.86798,-400.85887 L 273.83367,-397.7882 L 265.95811,-388.27072 L 266.73534,-375.94179 L 255.25,-380.49082 L 243.76466,-375.94179 L 244.54189,-388.27072 L 236.66633,-397.7882 L 248.63202,-400.85887 L 255.25,-411.29002 z "
+ transform="matrix(1.1071323,0,0,1.1071323,-258.4137,459.98052)"
+ style="fill:#fac521;fill-opacity:1;stroke-width:3.4070456;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4452" />
+ <path
+ d="M 24.175987,4.476098 L 16.980534,16.087712 L 3.9317841,19.443104 L 16.980534,20.076901 L 24.175987,10.383543 L 31.408721,20.076901 L 44.457471,19.443104 L 31.468862,16.027571 L 24.175987,4.476098 z "
+ style="fill:#feeaab;fill-opacity:1;stroke-width:3.4070456;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4531" />
+ <path
+ d="M 12.456856,24.055852 C 11.65845,24.299685 14.436112,29.177769 14.436112,32.041127 C 14.436112,37.343117 13.010825,39.831516 15.971742,37.364645 C 18.711008,35.08244 21.184735,34.873512 24.195894,34.873512 C 27.207053,34.873512 29.646656,35.08244 32.38592,37.364645 C 35.346837,39.831516 33.921551,37.343117 33.92155,32.041127 C 33.92155,28.223316 38.868232,20.827013 33.682674,25.591482 C 31.458295,27.635233 27.413886,29.481744 24.195894,29.481744 C 20.977903,29.481744 16.933493,27.635233 14.709113,25.591482 C 13.412724,24.400365 12.722992,23.974574 12.456856,24.055852 z "
+ style="fill:#fcd867;fill-opacity:1;stroke-width:3.4070456;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path2185" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/note.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/note.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/note.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/note.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/note.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="48"
+ height="48"
+ id="svg2">
+ <defs
+ id="defs5" />
+ <path
+ d="M 30.27396,4.1232594 L 18.765811,4.1232594 C 11.476786,4.1232594 5.5574109,10.546411 5.5574109,19.960741 C 5.5574109,24.746615 7.0844878,29.075948 9.5403943,32.177328 C 9.4616811,32.681104 9.414455,33.200619 9.414455,33.720144 C 9.414455,39.308917 13.554865,43.591015 18.891751,44.267966 C 17.506371,42.693663 16.656245,40.914707 16.656245,38.616218 C 16.656245,38.01799 16.719219,37.419752 16.82942,36.837262 C 17.459135,36.963202 18.104599,37.026176 18.750063,37.026176 L 30.258211,37.026176 C 37.547237,37.026176 43.466612,29.39081 43.466612,19.960741 C 43.466612,10.530672 37.578724,4.1232594 30.27396,4.1232594 z "
+ style="fill:#2e3436;fill-opacity:1;stroke:#2e3436;stroke-width:4.7150631;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path4317" />
+ <path
+ d="M 30.27396,4.1232594 L 18.765811,4.1232594 C 11.476786,4.1232594 5.5574109,10.546411 5.5574109,19.960741 C 5.5574109,24.746615 7.0844878,29.075948 9.5403943,32.177328 C 9.4616811,32.681104 9.414455,33.200619 9.414455,33.720144 C 9.414455,39.308917 13.554865,43.591015 18.891751,44.267966 C 17.506371,42.693663 16.656245,40.914707 16.656245,38.616218 C 16.656245,38.01799 16.719219,37.419752 16.82942,36.837262 C 17.459135,36.963202 18.104599,37.026176 18.750063,37.026176 L 30.258211,37.026176 C 37.547237,37.026176 43.466612,29.39081 43.466612,19.960741 C 43.466612,10.530672 37.578724,4.1232594 30.27396,4.1232594 z "
+ style="fill:#bfdce8;fill-opacity:1"
+ id="path142" />
+ <path
+ d="M 19.200879,5.5648899 C 12.490241,5.5648899 7.0622987,11.295775 7.0622987,19.690323 C 7.0622987,22.890926 7.8418023,25.879852 9.1910836,28.332288 C 8.6113289,26.599889 8.2852163,24.667826 8.2852163,22.673336 C 8.2852163,14.629768 13.495502,9.1620492 19.925575,9.1620492 L 30.071259,9.1620492 C 36.515213,9.1620492 41.711609,14.616311 41.711609,22.673336 C 41.864688,21.709218 41.983366,20.710908 41.983366,19.690323 C 41.983366,11.281743 36.524624,5.5648899 29.799492,5.5648899 L 19.200879,5.5648899 z "
+ style="fill:#ffffff"
+ id="path2358" />
+ <path
+ d="M 28.241965,33.725087 L 20.792252,33.725087 C 16.073756,33.725087 12.241894,32.944782 12.241894,26.850486 C 12.241894,25.10387 12.368512,23.572125 15.515722,23.567487 L 33.508301,23.540969 C 36.182481,23.537028 36.782127,24.950794 36.782127,26.850486 C 36.782127,32.95497 32.970649,33.725087 28.241965,33.725087 z "
+ style="fill:#d0ecf9;fill-opacity:1"
+ id="path2173" />
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/shine.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/shine.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-go-back.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-go-back.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-go-forward.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-go-forward.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-go-up.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-go-up.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-home.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/stock-home.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/title_logo.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/title_logo.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/title_logo.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/title_logo.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/title_logo.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.0"
+ width="111.52"
+ height="100"
+ id="svg3017">
+ <defs
+ id="defs3019" />
+ <g
+ transform="matrix(0.4523862,0,0,0.4523862,-28.009996,-24.300704)"
+ id="g6039">
+ <path
+ d="M 192.86534,56.061481 C 192.36173,56.001958 177.04791,71.601258 169.88288,78.655471 C 176.27757,76.632509 187.258,72.858149 188.75784,73.035772 C 190.25845,73.213382 198.81453,79.323493 203.90158,82.70395 C 200.45634,74.408167 193.36963,56.121106 192.86534,56.061481 z M 256.56564,75.679414 C 256.19703,75.470177 226.37543,82.344843 212.67149,85.374045 C 220.32408,85.916589 233.75821,86.605813 234.85605,87.228257 C 235.95576,87.851868 236.78146,95.293021 237.53092,99.511345 C 243.45051,92.092902 256.93475,75.888665 256.56564,75.679414 z M 125.42293,59.592937 C 124.97638,59.705437 130.08281,78.06997 132.18928,86.449319 C 134.88117,82.633972 139.1244,75.81667 140.45346,75.481547 C 141.78428,75.14601 154.86419,77.615692 162.3432,78.86324 C 150.84856,72.862022 125.86977,59.480312 125.42293,59.592937 z M 290.22827,111.27313 C 290.13546,110.99458 257.1852,106.5389 242.18642,104.38604 C 248.17919,107.28669 258.97529,112.18749 259.25143,113.01669 C 259.52792,113.84738 252.2!
6311,119.75777 248.38968,123.20613 C 261.40772,119.49699 290.32106,111.5521 290.22827,111.27313 z M 125.48113,90.005528 C 110.30347,88.587271 77.076206,85.20923 76.857612,85.45104 C 76.63901,85.692911 100.20589,99.814697 110.77468,106.3235 C 108.73772,102.17566 104.66761,94.929258 105.31915,94.208612 C 105.96936,93.48931 118.45677,91.365927 125.48113,90.005528 z M 247.14367,128.41486 C 249.1807,132.56293 253.25058,139.80912 252.59919,140.52974 C 251.94886,141.24904 239.46162,143.37243 232.43729,144.7328 C 247.61504,146.15105 280.8422,149.52911 281.06077,149.2873 C 281.27943,149.04544 257.71247,134.92365 247.14367,128.41486 z M 107.57689,111.87714 C 94.559095,115.58622 65.645568,123.53114 65.738468,123.81028 C 65.83118,124.08875 98.781509,128.54433 113.78023,130.6972 C 107.78763,127.79653 96.991334,122.89566 96.715376,122.06653 C 96.438807,121.23574 103.70368,115.32544 107.57689,111.87714 z M 225.72916,148.289 C 223.03722,152.10435 218.79412,158.92166 217.46494,159.2568 C 21!
6.13407,159.59235 203.05422,157.12265 195.57518,155.87511 C 20!
7.06981,
161.87632 232.0487,175.2581 232.49567,175.14539 C 232.94189,175.03294 227.83555,156.66839 225.72916,148.289 z M 118.43579,135.57189 C 112.51623,142.99034 99.032017,159.19458 99.401191,159.40382 C 99.769581,159.61299 129.59124,152.73839 143.29535,149.70918 C 135.64251,149.16662 122.20862,148.4774 121.11055,147.85492 C 120.01096,147.23135 119.18522,139.79024 118.43579,135.57189 z M 186.08383,156.42778 C 179.68914,158.45076 168.70875,162.2251 167.2089,162.04747 C 165.70846,161.86983 157.15205,155.75978 152.06515,152.37921 C 155.51037,160.67499 162.59724,178.96218 163.10148,179.02172 C 163.6049,179.08114 178.91889,163.48205 186.08383,156.42778 z"
+ id="path3766"
+ style="opacity:1;fill:#fcc917;fill-opacity:1" />
+ <g
+ transform="matrix(1.2433595,-5.6480692e-2,-8.5186357e-3,1.1425318,-55.4332,-219.33549)"
+ id="g3512"
+ style="enable-background:new">
+ <g
+ transform="matrix(0.7599177,-1.1926916e-2,0,0.7500728,246.58115,378.18196)"
+ id="g3514">
+ <g
+ transform="matrix(2.8294915,-0.5196682,1.922722,2.7658074,-1390.7458,-622.14861)"
+ id="g3516">
+ <path
+ d="M 281.53626,237.15326 L 309.04792,236.5462 C 309.33518,236.5462 309.59444,236.6623 309.78189,236.8505 C 309.96933,237.03871 310.08496,237.29903 310.08496,237.58747 L 315.59103,256.77195 C 315.59103,257.06038 315.4754,257.32069 315.28796,257.5089 C 315.10051,257.69711 314.84125,257.81322 314.55399,257.81322 L 287.42625,257.85531 C 286.85174,257.85531 286.38922,257.3909 286.38922,256.81404 L 280.49923,238.19453 C 280.49923,237.61766 280.96175,237.15326 281.53626,237.15326 z"
+ id="path3518"
+ style="fill:#8d0000;fill-opacity:1" />
+ <path
+ d="M 293.04884,250.57475 L 317.14147,250.11423 C 315.07369,251.81667 313.3993,254.18879 313.41979,256.35148 L 288.81484,256.43251 C 286.0145,256.29145 290.73785,250.22017 293.04884,250.57475 z"
+ id="path3520"
+ style="fill:#e9e9e9;fill-opacity:1" />
+ <g
+ transform="matrix(0.4446532,4.8226295e-2,-0.1333755,0.1962764,116.26445,175.89592)"
+ id="g3522">
+ <path
+ d="M 473.62579,276.25731 L 523.62044,263.93981"
+ id="path3524"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c5c5c5;stroke-width:1.61703646;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M 473.62579,279.2625 L 523.62044,266.945"
+ id="path3526"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c5c5c5;stroke-width:1.61703646;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M 473.62579,282.26769 L 523.62044,269.95019"
+ id="path3528"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c5c5c5;stroke-width:1.61703646;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M 473.62579,285.27287 L 523.62044,272.95537"
+ id="path3530"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c5c5c5;stroke-width:1.61703646;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <path
+ d="M 297.97117,252.53831 C 301.52552,259.77574 299.81365,262.75273 299.81365,262.75273 C 302.15674,261.43854 303.80178,259.85198 304.40731,257.85976 C 306.10363,259.91709 307.68732,262.00721 311.02425,263.58697 C 311.02425,263.58697 308.17102,256.67636 306.99795,252.72547 L 297.97117,252.53831 z"
+ id="path3532"
+ style="fill:#0093d9;fill-opacity:1;stroke-width:2" />
+ <path
+ d="M 284.57789,231.78049 L 311.35381,231.98057 C 312.03942,231.98057 312.59137,232.53252 312.59137,233.21812 L 319.65855,249.0056 C 319.65855,249.6912 319.1066,250.24315 318.42099,250.24315 L 291.3756,249.90132 L 283.34033,233.01804 C 283.34033,232.33244 283.89228,231.78049 284.57789,231.78049 z"
+ id="path3534"
+ style="fill:#dd0000;fill-opacity:1" />
+ <path
+ d="M 561.28654,723.79839 L 568.34651,724.74078 L 583.86424,755.94328 C 577.11681,751.41241 569.71648,751.11691 576.70523,757.59052 C 574.88729,756.03795 574.18932,755.15392 573.89566,754.38642 L 559.19631,724.60166 C 558.59129,723.42343 559.45336,723.55616 561.28654,723.79839 z"
+ transform="matrix(0.499065,-0.866565,0,1,0,0)"
+ id="path3536"
+ style="fill:#bc0000;fill-opacity:1" />
+ <path
+ d="M 284.81403,231.70142 L 310.76827,231.67318 C 311.23825,231.67318 311.61659,232.05154 311.61659,232.52151 C 311.84112,239.11592 297.48249,247.99953 290.73174,248.61015 L 283.9657,232.54975 C 283.9657,232.07978 284.34405,231.70142 284.81403,231.70142 z"
+ id="path3538"
+ style="opacity:1;fill:#eb2f1a;fill-opacity:1" />
+ <path
+ d="M 319.47279,249.25686 C 319.47279,249.94246 319.11267,250.24441 318.42706,250.24441 L 291.96418,250.69265 L 291.35826,249.84959 C 298.49858,249.63625 310.11914,249.64123 319.47279,249.25686 z"
+ id="path3542"
+ style="fill:#a70000;fill-opacity:1" />
+ </g>
+ </g>
+ </g>
+ <text
+ x="292.86414"
+ y="248.91431"
+ id="text2432"
+ xml:space="preserve"
+ style="font-size:16.76550293px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#888a85;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"><tspan
+ x="292.86414"
+ y="248.91431"
+ id="tspan2434"
+ style="font-size:16.76550293px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0.55818075;writing-mode:lr-tb;text-anchor:end;fill:#888a85;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans">BOOK PUBLISHING TOOL</tspan></text>
+ <path
+ d="M 94.901514,193.09946 C 94.901487,191.45943 94.757983,190.07564 94.470999,188.94807 C 94.183964,187.82056 93.712448,186.91853 93.056451,186.24198 C 92.420905,185.54499 91.570127,185.04272 90.504114,184.73517 C 89.458557,184.4277 88.167015,184.27395 86.629482,184.27391 L 84.20015,184.27391 L 84.20015,202.57078 L 86.752487,202.57078 C 88.310519,202.5708 89.602062,202.37605 90.627119,201.98651 C 91.672631,201.57652 92.513158,200.982 93.148704,200.20295 C 93.7842,199.40345 94.235215,198.41941 94.501751,197.25085 C 94.768233,196.06184 94.901487,194.67804 94.901514,193.09946 M 84.20015,205.9534 L 84.20015,219.05334 L 91.057633,219.88362 L 91.057633,222.12845 L 69.593402,222.12845 L 69.593402,219.88362 L 74.482819,219.05334 L 74.482819,183.93565 L 69.193638,183.13612 L 69.193638,180.89129 L 87.367507,180.89129 C 90.811602,180.89133 93.650946,181.2091 95.885548,181.84458 C 98.140594,182.45964 99.924153,183.32067 101.23623,184.42766 C 102.56874,185.51424 103.49127,186.7955!
3 104.00382,188.27155 C 104.53681,189.74763 104.80331,191.33643 104.80335,193.03796 C 104.80331,194.71904 104.57781,196.3386 104.12683,197.89662 C 103.69628,199.4547 102.907,200.82824 101.759,202.01726 C 100.63143,203.20632 99.093876,204.1596 97.146341,204.87711 C 95.198747,205.59465 92.728416,205.95341 89.735338,205.9534 L 84.20015,205.9534 M 126.8165,219.60686 C 126.18095,219.93488 125.48393,220.29364 124.72543,220.68315 C 123.96688,221.07266 123.16736,221.43143 122.32684,221.75944 C 121.4863,222.08745 120.61502,222.35396 119.71301,222.55896 C 118.81096,222.78447 117.89868,222.89722 116.97616,222.89722 C 115.80761,222.89722 114.73133,222.74347 113.7473,222.43596 C 112.76326,222.12845 111.91248,221.63643 111.19497,220.95991 C 110.49794,220.28339 109.95467,219.40186 109.56516,218.31532 C 109.17564,217.22879 108.98089,215.91674 108.98089,214.37918 L 108.98089,195.99006 L 106.09029,195.25203 L 106.09029,193.22246 L 117.86794,193.22246 L 117.86794,213.17989 C 117.86793,214.901!
96 118.22669,216.24475 118.94423,217.20828 C 119.68224,218.171!
82 120.7
2777,218.65358 122.08084,218.65358 C 123.63887,218.65358 125.19692,218.30507 126.755,217.60804 L 126.755,195.99006 L 124.11041,195.25203 L 124.11041,193.22246 L 135.64205,193.22246 L 135.64205,219.36085 L 138.47114,220.09888 L 138.47114,222.12845 L 127.24701,222.12845 L 126.8165,219.60686 M 161.28124,206.84518 C 161.28122,204.75412 161.14797,203.01157 160.88148,201.6175 C 160.61495,200.20297 160.22544,199.07544 159.71294,198.23488 C 159.2004,197.37388 158.56488,196.76911 157.80638,196.42057 C 157.06833,196.05159 156.2278,195.86708 155.28479,195.86705 C 154.50575,195.86708 153.65497,195.95933 152.73245,196.14381 C 151.80991,196.30784 151.05138,196.5641 150.45688,196.91259 L 150.45688,219.02259 C 151.11289,219.1866 151.87141,219.30961 152.73245,219.39161 C 153.61397,219.47361 154.46475,219.51461 155.28479,219.51461 C 156.39181,219.51461 157.32459,219.23785 158.08314,218.68433 C 158.84164,218.13082 159.45666,217.32104 159.9282,216.255 C 160.42019,215.16847 160.7687,213.83592 16!
0.97373,212.25736 C 161.17872,210.67882 161.28122,208.87476 161.28124,206.84518 M 141.56982,181.1373 L 138.61772,180.43003 L 138.61772,178.43121 L 150.45688,178.43121 L 150.45688,189.04032 C 150.45686,189.79888 150.42611,190.71116 150.36462,191.77716 C 150.32361,192.84323 150.25186,193.86826 150.14937,194.85227 C 150.60037,194.48328 151.13339,194.15527 151.74842,193.86824 C 152.38393,193.58125 153.06045,193.33525 153.77799,193.13021 C 154.516,192.90473 155.26427,192.74073 156.02282,192.63819 C 156.78132,192.51522 157.51935,192.45372 158.23689,192.45369 C 160.38944,192.45372 162.22425,192.75098 163.74133,193.34547 C 165.25835,193.91952 166.49864,194.80104 167.46221,195.99006 C 168.44621,197.17912 169.16373,198.67567 169.61478,200.47971 C 170.06576,202.28379 170.29127,204.41586 170.2913,206.87593 C 170.29127,209.21302 169.99401,211.35534 169.39952,213.3029 C 168.82547,215.22997 167.95419,216.90078 166.78568,218.31532 C 165.61711,219.70937 164.14107,220.7959 162.35753,221.5749!
3 C 160.59445,222.35396 158.52388,222.74347 156.14582,222.7434!
7 C 154.
17774,222.74347 151.93291,222.53846 149.41134,222.12845 C 146.91025,221.73894 144.29641,221.24692 141.56982,220.6524 L 141.56982,181.1373 M 183.63008,219.36085 L 186.79744,220.09888 L 186.79744,222.12845 L 171.60642,222.12845 L 171.60642,220.09888 L 174.74303,219.36085 L 174.74303,181.1988 L 171.79093,180.46078 L 171.79093,178.43121 L 183.63008,178.43121 L 183.63008,219.36085 M 200.78714,219.36085 L 203.9545,220.09888 L 203.9545,222.12845 L 188.76348,222.12845 L 188.76348,220.09888 L 191.90008,219.36085 L 191.90008,195.99006 L 188.94798,195.25203 L 188.94798,193.22246 L 200.78714,193.22246 L 200.78714,219.36085 M 191.59257,183.13612 C 191.59257,182.48014 191.71557,181.86512 191.96159,181.29106 C 192.20759,180.71708 192.54585,180.22506 192.97637,179.81501 C 193.40688,179.38453 193.90915,179.04627 194.48317,178.80022 C 195.05718,178.55426 195.6722,178.43125 196.32824,178.43121 C 196.98425,178.43125 197.59927,178.55426 198.1733,178.80022 C 198.74731,179.04627 199.23932,179.3845!
3 199.64935,179.81501 C 200.07985,180.22506 200.41811,180.71708 200.66413,181.29106 C 200.91013,181.86512 201.03313,182.48014 201.03315,183.13612 C 201.03313,183.79218 200.91013,184.4072 200.66413,184.98118 C 200.41811,185.55524 200.07985,186.05751 199.64935,186.48798 C 199.23932,186.91853 198.74731,187.2568 198.1733,187.50277 C 197.59927,187.74881 196.98425,187.87182 196.32824,187.87178 C 195.6722,187.87182 195.05718,187.74881 194.48317,187.50277 C 193.90915,187.2568 193.40688,186.91853 192.97637,186.48798 C 192.54585,186.05751 192.20759,185.55524 191.96159,184.98118 C 191.71557,184.4072 191.59257,183.79218 191.59257,183.13612 M 228.53149,220.37564 C 228.03945,220.76515 227.45518,221.10341 226.77868,221.39042 C 226.12263,221.67743 225.39486,221.92344 224.59536,222.12845 C 223.81631,222.31295 223.00653,222.45646 222.16602,222.55896 C 221.32548,222.66147 220.4952,222.71272 219.67519,222.71272 C 216.92808,222.71272 214.58075,222.37446 212.6332,221.69793 C 210.68562,221.00091 !
209.09682,220.00663 207.86679,218.71508 C 206.63674,217.42354 !
205.7347
1,215.84499 205.16069,213.97942 C 204.58667,212.11387 204.29966,209.99205 204.29966,207.61395 C 204.29966,204.96938 204.67892,202.69381 205.43745,200.78722 C 206.19597,198.86018 207.22101,197.28163 208.51256,196.05156 C 209.82459,194.82155 211.34165,193.91952 213.06371,193.34547 C 214.78576,192.75098 216.60007,192.45372 218.50665,192.45369 C 220.26969,192.45372 221.93025,192.56647 223.48832,192.79195 C 225.06685,192.99699 226.53265,193.24299 227.88572,193.52997 L 227.88572,202.07877 L 225.67164,202.07877 L 224.3801,197.00484 C 224.05207,196.75886 223.72405,196.55385 223.39606,196.38982 C 223.08853,196.20534 222.75027,196.06184 222.38128,195.95931 C 222.01225,195.83633 221.60223,195.75433 221.15124,195.7133 C 220.72071,195.65182 220.21844,195.62107 219.64444,195.62105 C 218.84489,195.62107 218.06587,195.85683 217.30736,196.32832 C 216.54882,196.77936 215.86204,197.48663 215.24704,198.45014 C 214.6525,199.3932 214.17074,200.61299 213.80174,202.10952 C 213.43271,203.60609 213.2!
4821,205.37939 213.24822,207.42945 C 213.24821,209.15152 213.36096,210.71982 213.58648,212.13436 C 213.83248,213.54891 214.25274,214.75845 214.84727,215.76298 C 215.44178,216.76752 216.26181,217.54655 217.30736,218.10006 C 218.35288,218.63308 219.67517,218.89959 221.27424,218.89959 C 222.60677,218.89959 223.91881,218.81759 225.21038,218.65358 C 226.5224,218.48958 227.62943,218.27432 228.53149,218.00781 L 228.53149,220.37564 M 244.03693,192.57669 C 245.61546,192.57672 247.07101,192.70998 248.40357,192.97646 C 249.7361,193.24299 250.88413,193.69401 251.84769,194.3295 C 252.8112,194.94455 253.55947,195.76458 254.09252,196.78959 C 254.62551,197.81464 254.89202,199.07544 254.89204,200.57196 L 254.89204,219.36085 L 257.78264,220.09888 L 257.78264,222.12845 L 247.14278,222.12845 L 246.46626,219.91437 C 246.07673,220.18088 245.61546,220.47814 245.08246,220.80615 C 244.56993,221.13417 243.97541,221.44168 243.2989,221.72868 C 242.62236,222.01569 241.86384,222.25145 241.02332,222.4359!
6 C 240.18278,222.64097 239.25,222.74347 238.22498,222.74347 C!
236.543
91,222.74347 235.12936,222.52821 233.98133,222.0977 C 232.85379,221.66718 231.94151,221.07266 231.24449,220.31414 C 230.54746,219.53511 230.0452,218.62283 229.73769,217.57729 C 229.43018,216.51126 229.27642,215.36322 229.27642,214.13318 C 229.27642,212.14462 229.62493,210.55582 230.32196,209.36676 C 231.01898,208.17774 231.95176,207.26546 233.1203,206.62992 C 234.30934,205.97391 235.68288,205.5434 237.24094,205.33838 C 238.81949,205.13339 240.49029,205.01038 242.25336,204.96936 L 246.00499,204.87711 L 246.00499,200.66422 C 246.00497,198.96268 245.65646,197.67114 244.95946,196.78959 C 244.26242,195.88758 243.18613,195.43657 241.7306,195.43654 C 240.60304,195.43657 239.56776,195.60057 238.62474,195.92856 C 237.7022,196.23609 236.81042,196.6051 235.9494,197.03559 L 234.78086,200.63347 L 232.75129,200.63347 L 232.75129,193.65298 C 233.69432,193.5095 234.5861,193.37625 235.42663,193.25321 C 236.28765,193.13024 237.15893,193.01749 238.04047,192.91495 C 238.92199,192.81248 239.8445!
2,192.73048 240.80807,192.66894 C 241.79208,192.60747 242.86837,192.57672 244.03693,192.57669 M 246.00499,207.61395 L 243.4219,207.70621 C 242.51986,207.74722 241.74083,207.87023 241.08482,208.07522 C 240.42879,208.28024 239.87527,208.62875 239.42427,209.12076 C 238.99374,209.59228 238.66573,210.21755 238.44023,210.99657 C 238.23522,211.77561 238.13271,212.75964 238.13272,213.94867 C 238.13271,215.69124 238.44022,216.97253 239.05526,217.79255 C 239.67026,218.61258 240.46979,219.0226 241.45384,219.02259 C 242.43786,219.0226 243.27838,218.92009 243.97542,218.71508 C 244.67243,218.48958 245.34895,218.23332 246.00499,217.94631 L 246.00499,207.61395 M 271.49558,195.74405 C 272.13109,195.41607 272.82811,195.0573 273.58665,194.66776 C 274.34516,194.27828 275.14469,193.91952 275.98523,193.59148 C 276.82574,193.26349 277.69702,192.99699 278.59907,192.79195 C 279.50108,192.56647 280.41336,192.45372 281.33591,192.45369 C 282.50443,192.45372 283.58071,192.60747 284.56477,192.91495 C 28!
5.54878,193.22249 286.38931,193.71451 287.08636,194.391 C 287.!
80385,19
5.06755 288.35737,195.94908 288.74692,197.03559 C 289.1364,198.12215 289.33116,199.4342 289.33119,200.97173 L 289.33119,219.36085 L 292.22178,220.09888 L 292.22178,222.12845 L 277.86105,222.12845 L 277.86105,220.09888 L 280.44413,219.36085 L 280.44413,202.17102 C 280.44411,200.44898 280.0751,199.10619 279.3371,198.14263 C 278.61955,197.17912 277.58427,196.69736 276.23124,196.69733 C 274.67317,196.69736 273.11512,197.04587 271.55708,197.74287 L 271.55708,219.36085 L 274.20167,220.09888 L 274.20167,222.12845 L 259.84093,222.12845 L 259.84093,220.09888 L 262.67003,219.36085 L 262.67003,195.99006 L 259.84093,195.25203 L 259.84093,193.22246 L 271.06506,193.22246 L 271.49558,195.74405"
+ id="text5541"
+ style="font-size:62.9781456px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Liberation Serif;-inkscape-font-specification:Liberation Serif" />
+ </g>
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/warning.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/warning.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/warning.svg
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/warning.svg (rev 0)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/warning.svg 2011-06-28 07:37:02 UTC (rev 6768)
@@ -0,0 +1,130 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.0"
+ width="48"
+ height="48"
+ id="svg5921"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ sodipodi:docname="warning.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <metadata
+ id="metadata11">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ inkscape:window-height="975"
+ inkscape:window-width="1680"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ guidetolerance="10.0"
+ gridtolerance="10.0"
+ objecttolerance="10.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base"
+ showgrid="false"
+ inkscape:zoom="1"
+ inkscape:cx="49.390126"
+ inkscape:cy="6.0062258"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:current-layer="svg5921" />
+ <defs
+ id="defs5923">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2400">
+ <stop
+ style="stop-color:#fac521;stop-opacity:1;"
+ offset="0"
+ id="stop2402" />
+ <stop
+ style="stop-color:#fde7a3;stop-opacity:1"
+ offset="1"
+ id="stop2404" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 20 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="40 : 20 : 1"
+ inkscape:persp3d-origin="20 : 13.333333 : 1"
+ id="perspective13" />
+ <inkscape:perspective
+ id="perspective2396"
+ inkscape:persp3d-origin="24 : 16 : 1"
+ inkscape:vp_z="48 : 24 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 24 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective2394"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2400"
+ id="linearGradient2406"
+ x1="-2684.8242"
+ y1="1639.8413"
+ x2="-2684.8242"
+ y2="1587.1559"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <g
+ transform="matrix(0.4536635,0,0,0.4536635,-5.1836431,-4.6889387)"
+ id="layer1">
+ <g
+ transform="translate(2745.6887,-1555.5977)"
+ id="g8304"
+ style="enable-background:new" />
+ </g>
+ <g
+ id="g3189"
+ transform="matrix(1.2987724,0,0,1.2987724,-1.4964485,-1.8271549)">
+ <path
+ style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-opacity:1;enable-background:new"
+ id="path8034"
+ transform="matrix(0.3735251,4.0822414e-3,-4.0822414e-3,0.3735251,605.96125,-374.33682)"
+ d="M -1603,1054.4387 L -1577.0919,1027.891 L -1540,1027.4387 L -1513.4523,1053.3468 L -1513,1090.4387 L -1538.9081,1116.9864 L -1576,1117.4387 L -1602.5477,1091.5306 L -1603,1054.4387 z" />
+ <path
+ style="opacity:1;fill:url(#linearGradient2406);fill-opacity:1;stroke:none;stroke-width:0.72954363000000000;stroke-opacity:1;enable-background:new"
+ id="path8036"
+ d="M -2723.6739,1596.2775 L -2704.5623,1577.1175 L -2677.5001,1577.0833 L -2658.3401,1596.1949 L -2658.3059,1623.257 L -2677.4175,1642.417 L -2704.4797,1642.4513 L -2723.6396,1623.3396 L -2723.6739,1596.2775 z"
+ transform="matrix(0.4536635,0,0,0.4536635,1240.4351,-710.40684)" />
+ <path
+ transform="translate(6.7837002e-6,-8.8630501e-6)"
+ id="path3178"
+ d="M 13.46875,5.0625 L 4.8125,13.78125 L 4.8125,16.625 L 13.46875,7.9375 L 25.75,7.90625 L 34.4375,16.59375 L 34.4375,13.71875 L 25.75,5.0625 L 13.46875,5.0625 z"
+ style="opacity:1;fill:#fde8a6;fill-opacity:1;stroke:none;stroke-width:0.72954363;stroke-opacity:1;enable-background:new" />
+ <path
+ id="path4412"
+ style="fill:#fef2cb;fill-opacity:1;stroke:#fef2cb;stroke-width:0.9430126;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+ d="M 23.308501,28.806303 C 23.308501,30.239154 22.087319,31.313792 20.231121,31.313792 L 20.198559,31.313792 C 18.358657,31.313792 17.121188,30.239154 17.121188,28.806303 C 17.121188,27.308327 18.391219,26.282537 20.231121,26.282537 C 22.054757,26.282537 23.27593,27.308327 23.308501,28.806303 z M 22.982851,24.507759 L 24.057489,11.351592 L 16.355915,11.351592 L 17.430553,24.507759 L 22.982851,24.507759 z" />
+ <path
+ id="path4414"
+ style="fill:#2e3436"
+ d="M 22.732962,27.86025 C 22.732962,29.293101 21.51178,30.36774 19.655592,30.36774 L 19.623029,30.36774 C 17.783118,30.36774 16.545659,29.293101 16.545659,27.86025 C 16.545659,26.362275 17.81568,25.336485 19.655592,25.336485 C 21.479218,25.336485 22.7004,26.362275 22.732962,27.86025 z M 22.407312,23.561697 L 23.48195,10.40553 L 15.780385,10.40553 L 16.855023,23.561697 L 22.407312,23.561697 z" />
+ </g>
+</svg>
Added: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/watermark-draft.png
===================================================================
(Binary files differ)
Property changes on: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/images/watermark-draft.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
13 years, 6 months
gatein SVN: r6767 - in epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US: modules/Basics and 1 other directory.
by do-not-reply@jboss.org
Author: smumford
Date: 2011-06-28 03:26:30 -0400 (Tue, 28 Jun 2011)
New Revision: 6767
Removed:
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/fallback_content/
Modified:
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Book_Info.xml
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Introduction.xml
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Next.xml
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Revision_History.xml
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/modules/Basics/Newsletters.xml
epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/modules/Basics/Sites.xml
Log:
Removed unnecessary fallback_content.
Modified: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Book_Info.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Book_Info.xml 2011-06-27 19:37:14 UTC (rev 6766)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Book_Info.xml 2011-06-28 07:26:30 UTC (rev 6767)
@@ -9,7 +9,7 @@
<productname>JBoss Enterprise Portal Platform</productname>
<productnumber>5.1</productnumber>
<edition>1</edition>
- <pubsnumber>5.6</pubsnumber>
+ <pubsnumber>5.5</pubsnumber>
<abstract>
<para>
This document provides an easy to follow guide to the functions and options available in the Enterprise Portal Platform Site Publisher extension. It is intended to be accessible and useful to both experienced and novice portal users.
Modified: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Introduction.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Introduction.xml 2011-06-27 19:37:14 UTC (rev 6766)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Introduction.xml 2011-06-28 07:26:30 UTC (rev 6767)
@@ -11,7 +11,7 @@
<section id="sect-User_Guide-Product_Introduction-Site_Content_Structure">
<title>Site Content Structure</title>
<para>
- While creating a site is a quick process, deciding what content to put into it and how to organize that content can take some time. Therefore, to make managing a site as easy and effective as possible, a site created with &PRODUCT; will always adhere to a specific structure:
+ While creating a site is a quick process, deciding what content to put into it and how to organize that content can take some time. Therefore, to make managing a site as easy and effective as possible, a site created with Site Publisher will always adhere to a specific structure:
</para>
<mediaobject>
<imageobject role="html">
@@ -402,4 +402,4 @@
</section>
-</chapter>
\ No newline at end of file
+</chapter>
Modified: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Next.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Next.xml 2011-06-27 19:37:14 UTC (rev 6766)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Next.xml 2011-06-28 07:26:30 UTC (rev 6767)
@@ -1,34 +1,80 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!-- This document was created with Syntext Serna Free. -->
+<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "User_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter id="chap-User_Guide-Next_Steps">
- <title>Next Steps</title>
- <para>
- While this User Guide is intended to provide a thorough explanation of features and terminologies within &PRODUCT; you may have more questions or want to get involved, the following links can connect you with resources to learn more and contribute to the open source development process:
- </para>
- <itemizedlist>
- <listitem>
- <para>
- <ulink url="http://www.exoplatform.com/company/public/website/platform" type="http">Learn more about eXo Platform 3.0</ulink>
- </para>
- </listitem>
- <listitem>
- <para>
- <ulink url="http://www.exoplatform.com/company/public/website/resource-center" type="http">Video demos, tutorial and more in the eXo Resource Center</ulink>
- </para>
- </listitem>
- <listitem>
- <para>
- <ulink url="http://wiki.exoplatform.com/xwiki/bin/view/Main/WebHome/" type="http">Access another eXo documents in the eXo Wiki</ulink>
- </para>
- </listitem>
- <listitem>
- <para>
- <ulink url="http://forums.exoplatform.org/portal/public/classic/forum" type="http">Ask question about eXo Content in the Forums</ulink>
- </para>
- </listitem>
- </itemizedlist>
+ <title>Support</title>
+ <para>
+ Although this document is intended to provide a thorough explanation of JBoss Enterprise Portal Platform Site Publisher features and terminologies, you may have more questions. The following links will assist you with information about Red Hat's support processes and services.
+ </para>
+ <section id="sect-User_Guide-Next_Steps-Product_Support_and_License_Website_Links">
+ <title>Product Support and License Website Links</title>
+ <formalpara id="form-User_Guide-Next_Steps-Product_Support_and_License_Website_Links-Red_Hat_JBoss_Customer_Support">
+ <title>Red Hat JBoss Customer Support</title>
+ <para>
+ <ulink type="http" url="https://access.redhat.com/home " />
+ </para>
+
+ </formalpara>
+ <formalpara id="form-User_Guide-Next_Steps-Product_Support_and_License_Website_Links-JBoss_Customer_Suport_Portal_Downloads">
+ <title>JBoss Customer Suport Portal Downloads</title>
+ <para>
+ <ulink type="http" url="https://access.redhat.com/jbossnetwork/restricted/listSoftware.html?produ..." />
+ </para>
+
+ </formalpara>
+ <formalpara id="form-User_Guide-Next_Steps-Product_Support_and_License_Website_Links-Support_Processes">
+ <title>Support Processes</title>
+ <para>
+ <ulink url="https://access.redhat.com/support/policy/support_process.html" />
+ </para>
+
+ </formalpara>
+ <formalpara id="form-User_Guide-Next_Steps-Product_Support_and_License_Website_Links-_Production_Support_Scope_of_Coverage_">
+ <title> Production Support Scope of Coverage </title>
+ <para>
+ <ulink url="https://access.redhat.com/support/offerings/production/soc.html" />
+ </para>
+
+ </formalpara>
+ <formalpara id="form-User_Guide-Next_Steps-Product_Support_and_License_Website_Links-_Production_Support_Service_Level_Agreement_">
+ <title> Production Support Service Level Agreement </title>
+ <para>
+ <ulink url="https://access.redhat.com/support/offerings/production/sla.html" />
+ </para>
+
+ </formalpara>
+ <formalpara id="form-User_Guide-Next_Steps-Product_Support_and_License_Website_Links-_Developer_Support_Scope_of_Coverage">
+ <title> Developer Support Scope of Coverage</title>
+ <para>
+ <ulink url="https://access.redhat.com/support/offerings/developer/soc.html" />
+ </para>
+
+ </formalpara>
+ <formalpara id="form-User_Guide-Next_Steps-Product_Support_and_License_Website_Links-_Developer_Support_Service_Level_Agreement">
+ <title> Developer Support Service Level Agreement</title>
+ <para>
+ <ulink url="https://access.redhat.com/support/offerings/developer/sla.html" />
+ </para>
+
+ </formalpara>
+ <formalpara id="form-User_Guide-Next_Steps-Product_Support_and_License_Website_Links-_Product_Update_and_Support_Policy">
+ <title> Product Update and Support Policy</title>
+ <para>
+ <ulink url="https://access.redhat.com/support/policy/updates/jboss_notes/" />
+ </para>
+
+ </formalpara>
+ <formalpara id="form-User_Guide-Next_Steps-Product_Support_and_License_Website_Links-_JBoss_End_User_License_Agreement">
+ <title> JBoss End User License Agreement</title>
+ <para>
+ <ulink url="http://www.redhat.com/licenses/jboss_eula.html" />
+ </para>
+
+ </formalpara>
+
+ </section>
+
</chapter>
+
Modified: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Revision_History.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Revision_History.xml 2011-06-27 19:37:14 UTC (rev 6766)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/Revision_History.xml 2011-06-28 07:26:30 UTC (rev 6767)
@@ -7,22 +7,6 @@
<title>Revision History</title>
<simpara>
<revhistory>
- <revision>
- <revnumber>1-5.6</revnumber>
- <date>Wed June 22 2011</date>
- <author>
- <firstname>Scott</firstname>
- <surname>Mumford</surname>
- <email>smumford(a)redhat.com</email>
- </author>
- <revdescription>
- <simplelist>
- <member>Incorporated new Bugzilla feedback link.</member>
- <member>Corrected minor typographical errors.</member>
- <member>Re-brewed for 5.1.1 Release.</member>
- </simplelist>
- </revdescription>
- </revision>
<revision>
<revnumber>1-5.5</revnumber>
<date>Wed June 01 2011</date>
Modified: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/modules/Basics/Newsletters.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/modules/Basics/Newsletters.xml 2011-06-27 19:37:14 UTC (rev 6766)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/modules/Basics/Newsletters.xml 2011-06-28 07:26:30 UTC (rev 6767)
@@ -7,7 +7,7 @@
<section id="sect-User_Guide-Newsletters">
<title>Newsletters</title>
<para>
- &PRODUCT; provides a newsletter service aimed at helping users quickly get updated news from a website.
+ Site Publisher provides a newsletter service aimed at helping users quickly get updated news from a website.
</para>
<section id="sect-User_Guide-Newsletters-Newsletter_Viewer">
<title>Newsletter Viewer</title>
@@ -82,7 +82,7 @@
<section id="sect-User_Guide-Newsletters-Manage_Newsletters">
<title>Manage Newsletters</title>
<para>
- &PRODUCT; allows administrators to easily and quickly manage newsletters. Go to <menuchoice>
+ Site Publisher allows administrators to easily and quickly manage newsletters. Go to <menuchoice>
<guimenu>Group</guimenu>
<guimenuitem>Newsletters</guimenuitem>
</menuchoice> on the administration bar to access the Newsletters functionality.
@@ -782,7 +782,7 @@
<section id="sect-User_Guide-Manage_Newsletters-Newsletters">
<title>Newsletters</title>
<para>
- Each subscription consists of many newsletters. &PRODUCT; helps you easily create newsletters by following these steps.
+ Each subscription consists of many newsletters. Site Publisher helps you easily create newsletters by following these steps.
</para>
<procedure id="proc-User_Guide-Newsletters-Creating_Newsletters">
<title>Creating Newsletters</title>
Modified: epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/modules/Basics/Sites.xml
===================================================================
--- epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/modules/Basics/Sites.xml 2011-06-27 19:37:14 UTC (rev 6766)
+++ epp/docs/branches/5.1/Site_Publisher/User_Guide/en-US/modules/Basics/Sites.xml 2011-06-28 07:26:30 UTC (rev 6767)
@@ -11,11 +11,11 @@
</para>
<note>
<para>
- Only administrators have the authorization rights required to create a new site in &PRODUCT;.
+ Only administrators have the authorization rights required to create a new site in Site Publisher.
</para>
</note>
<para>
- &PRODUCT; administrators can create a site (portal) to meet their specific needs.
+ Site Publisher administrators can create a site (portal) to meet their specific needs.
</para>
<para>
Do the following:
13 years, 6 months
gatein SVN: r6766 - in epp/portal/branches/EPP_5_1_RH_Branch: component and 79 other directories.
by do-not-reply@jboss.org
Author: theute
Date: 2011-06-27 15:37:14 -0400 (Mon, 27 Jun 2011)
New Revision: 6766
Modified:
epp/portal/branches/EPP_5_1_RH_Branch/component/application-registry/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/common/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/identity/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/management/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/pc/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/portal/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/resources/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/scripting/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/test/core/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/test/jcr/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/test/organization/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/test/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/api/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/controller/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/resources/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/security/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/server/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/wsrp/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/config/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/jar/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/config/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/jar/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/rest-war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/api/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsfhellouser/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsphellouser/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/simplesthelloworld/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/struts-jpetstore/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/simpleskin/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/gadgets/core/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/gadgets/eXoGadgets/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/gadgets/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/gadgets/server/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/integration.war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pkg/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/module/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/pkg/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/product/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/reports/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/portlet/dashboard/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/portlet/exoadmin/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/portlet/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/portlet/web/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/plugin/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/starter/ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/starter/jar/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/starter/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/starter/war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/testsuite/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/testsuite/selenium-snifftests/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/testsuite/webuibasedsamples/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/web/eXoResources/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/web/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/web/portal/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/web/rest/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/core/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/dashboard/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/eXo/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/framework/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/portal/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/portlet/pom.xml
Log:
Prepare for next release
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/application-registry/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/application-registry/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/application-registry/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/common/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/common/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/identity/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/identity/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/identity/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/management/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/management/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/pc/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/pc/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/portal/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/portal/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/resources/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/resources/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/scripting/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/scripting/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/scripting/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/test/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/test/core/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/test/core/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/test/jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/test/jcr/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/test/jcr/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/test/organization/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/test/organization/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/test/organization/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/test/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/test/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/test/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/api/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/api/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/controller/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/controller/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/controller/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/resources/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/resources/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/security/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/security/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/security/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/server/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/server/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/wsrp/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/wsrp/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/config/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/config/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/ear/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/ear/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,23 +37,23 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/jar/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/jar/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/war/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/war/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/config/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/config/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/ear/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/ear/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,29 +37,29 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/jar/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/jar/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/rest-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/rest-war/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/rest-war/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/war/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/war/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/api/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/api/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>gatein-api</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsfhellouser/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsfhellouser/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsphellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsphellouser/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsphellouser/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/simplesthelloworld/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/simplesthelloworld/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/struts-jpetstore/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/struts-jpetstore/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/simpleskin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/simpleskin/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/simpleskin/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>skins-parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/gadgets/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/gadgets/core/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/gadgets/core/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/gadgets/eXoGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/gadgets/eXoGadgets/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/gadgets/eXoGadgets/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/gadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/gadgets/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/gadgets/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/gadgets/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/gadgets/server/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/gadgets/server/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/ear/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/ear/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.ear</artifactId>
<packaging>ear</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/integration.war/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/integration.war/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.integration</artifactId>
<packaging>war</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pkg/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pkg/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pkg/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.pkg</artifactId>
<packaging>pom</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as</artifactId>
<packaging>pom</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/module/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/module/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/module/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/pkg/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/pkg/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/pkg/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>js</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/product/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/product/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/product/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/reports/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/reports/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/reports/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -362,166 +362,166 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.controller</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.security</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.server</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.resources</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.management</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.framework</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portlet</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.dashboard</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>gatein.portal.component.wsrp</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.plugin</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat.plugin</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
<!-- Chromattic -->
Modified: epp/portal/branches/EPP_5_1_RH_Branch/portlet/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/portlet/dashboard/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/portlet/dashboard/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/portlet/exoadmin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/portlet/exoadmin/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/portlet/exoadmin/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/portlet/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/portlet/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/portlet/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/portlet/web/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/portlet/web/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.integration</artifactId>
<packaging>war</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/plugin/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/plugin/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/starter/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/starter/ear/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/starter/ear/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/starter/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/starter/jar/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/starter/jar/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/starter/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/starter/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/starter/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/starter/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/starter/war/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/starter/war/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.jar</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/testsuite/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/testsuite/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/testsuite/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/testsuite/selenium-snifftests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/testsuite/selenium-snifftests/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/testsuite/selenium-snifftests/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/testsuite/webuibasedsamples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/testsuite/webuibasedsamples/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/testsuite/webuibasedsamples/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/web/eXoResources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/web/eXoResources/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/web/eXoResources/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/web/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/web/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/web/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/web/portal/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/web/portal/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/web/rest/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/web/rest/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/web/rest/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/core/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/core/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/dashboard/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/dashboard/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/eXo/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/eXo/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/eXo/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/framework/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/framework/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/framework/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/portal/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/portal/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/portlet/pom.xml 2011-06-27 19:23:58 UTC (rev 6765)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/portlet/pom.xml 2011-06-27 19:37:14 UTC (rev 6766)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH03</version>
+ <version>5.1.0-epp-RH04-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
13 years, 6 months
gatein SVN: r6765 - epp/portal/tags.
by do-not-reply@jboss.org
Author: theute
Date: 2011-06-27 15:23:58 -0400 (Mon, 27 Jun 2011)
New Revision: 6765
Added:
epp/portal/tags/EPP_5_1_0_RH03/
Log:
Tagging RH03
13 years, 6 months
gatein SVN: r6764 - in epp/portal/branches/EPP_5_1_RH_Branch: component and 79 other directories.
by do-not-reply@jboss.org
Author: theute
Date: 2011-06-27 15:23:08 -0400 (Mon, 27 Jun 2011)
New Revision: 6764
Modified:
epp/portal/branches/EPP_5_1_RH_Branch/component/application-registry/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/common/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/identity/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/management/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/pc/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/portal/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/resources/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/scripting/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/test/core/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/test/jcr/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/test/organization/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/test/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/api/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/controller/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/resources/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/security/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/web/server/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/component/wsrp/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/config/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/jar/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/config/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/jar/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/rest-war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/api/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsfhellouser/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsphellouser/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/simplesthelloworld/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/struts-jpetstore/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/simpleskin/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/gadgets/core/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/gadgets/eXoGadgets/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/gadgets/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/gadgets/server/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/integration.war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pkg/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/module/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/pkg/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/product/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/packaging/reports/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/portlet/dashboard/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/portlet/exoadmin/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/portlet/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/portlet/web/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/plugin/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/server/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/starter/ear/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/starter/jar/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/starter/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/starter/war/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/testsuite/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/testsuite/selenium-snifftests/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/testsuite/webuibasedsamples/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/web/eXoResources/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/web/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/web/portal/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/web/rest/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/core/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/dashboard/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/eXo/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/framework/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/portal/pom.xml
epp/portal/branches/EPP_5_1_RH_Branch/webui/portlet/pom.xml
Log:
Prepare for RH03 release
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/application-registry/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/application-registry/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/application-registry/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/common/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/common/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/identity/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/identity/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/identity/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/management/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/management/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/pc/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/pc/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/portal/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/portal/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/resources/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/resources/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/scripting/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/scripting/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/scripting/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/test/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/test/core/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/test/core/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/test/jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/test/jcr/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/test/jcr/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/test/organization/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/test/organization/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/test/organization/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/test/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/test/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/test/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/api/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/api/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/controller/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/controller/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/controller/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/resources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/resources/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/resources/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/security/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/security/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/security/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/web/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/web/server/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/web/server/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/component/wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/component/wsrp/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/component/wsrp/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/config/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/config/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/ear/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/ear/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,23 +37,23 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/jar/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/jar/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/war/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/extension/war/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/config/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/config/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/config/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/ear/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/ear/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,29 +37,29 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/jar/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/jar/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/rest-war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/rest-war/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/rest-war/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/war/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portal/war/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/api/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/api/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/api/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>gatein-api</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsfhellouser/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsfhellouser/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsphellouser/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsphellouser/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/jsphellouser/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/simplesthelloworld/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/simplesthelloworld/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/struts-jpetstore/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/struts-jpetstore/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/portlets/struts-jpetstore/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>portlets-parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>struts-jpetstore</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<groupId>org.gatein.portal.examples.skins</groupId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/simpleskin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/simpleskin/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/examples/skins/simpleskin/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.portal.examples.skins</groupId>
<artifactId>skins-parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>gatein-sample-skin</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/gadgets/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/gadgets/core/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/gadgets/core/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/gadgets/eXoGadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/gadgets/eXoGadgets/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/gadgets/eXoGadgets/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/gadgets/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/gadgets/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/gadgets/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/gadgets/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/gadgets/server/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/gadgets/server/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/ear/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/ear/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.ear</artifactId>
<packaging>ear</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/integration.war/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/integration.war/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.integration</artifactId>
<packaging>war</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pkg/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pkg/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pkg/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.pkg</artifactId>
<packaging>pom</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/jboss-as/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as</artifactId>
<packaging>pom</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/module/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/module/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/module/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/pkg/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/pkg/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/pkg/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>js</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/product/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/product/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/product/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/packaging/reports/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/packaging/reports/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/packaging/reports/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -362,166 +362,166 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.controller</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.security</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.server</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.api</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web.resources</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.management</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.framework</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portlet</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.dashboard</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>gatein.portal.component.wsrp</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss.plugin</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat.plugin</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
<!-- Chromattic -->
Modified: epp/portal/branches/EPP_5_1_RH_Branch/portlet/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/portlet/dashboard/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/portlet/dashboard/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/portlet/exoadmin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/portlet/exoadmin/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/portlet/exoadmin/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/portlet/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/portlet/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/portlet/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/portlet/web/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/portlet/web/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.integration</artifactId>
<packaging>war</packaging>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/plugin/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/plugin/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/plugin/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/jboss/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/server/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/server/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/server/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/starter/ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/starter/ear/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/starter/ear/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
<type>war</type>
</dependency>
</dependencies>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/starter/jar/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/starter/jar/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/starter/jar/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/starter/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/starter/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/starter/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/starter/war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/starter/war/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/starter/war/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.jar</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</dependency>
</dependencies>
</project>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/testsuite/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/testsuite/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/testsuite/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.testsuite</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/testsuite/selenium-snifftests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/testsuite/selenium-snifftests/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/testsuite/selenium-snifftests/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.selenium.snifftests</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/testsuite/webuibasedsamples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/testsuite/webuibasedsamples/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/testsuite/webuibasedsamples/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.webui.based.samples</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/web/eXoResources/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/web/eXoResources/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/web/eXoResources/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/web/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/web/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/web/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/web/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/web/portal/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/web/portal/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/web/rest/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/web/rest/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/web/rest/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/core/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/core/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/dashboard/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/dashboard/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/dashboard/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/eXo/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/eXo/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/eXo/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/framework/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/framework/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/framework/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/portal/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/portal/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: epp/portal/branches/EPP_5_1_RH_Branch/webui/portlet/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_1_RH_Branch/webui/portlet/pom.xml 2011-06-27 19:08:09 UTC (rev 6763)
+++ epp/portal/branches/EPP_5_1_RH_Branch/webui/portlet/pom.xml 2011-06-27 19:23:08 UTC (rev 6764)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>5.1.0-epp-RH04-SNAPSHOT</version>
+ <version>5.1.0-epp-RH03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
13 years, 6 months
gatein SVN: r6763 - epp/portal/tags.
by do-not-reply@jboss.org
Author: theute
Date: 2011-06-27 15:08:09 -0400 (Mon, 27 Jun 2011)
New Revision: 6763
Removed:
epp/portal/tags/EPP_5_1_0_RH03/
Log:
Oups
13 years, 6 months
gatein SVN: r6762 - epp/portal/tags.
by do-not-reply@jboss.org
Author: theute
Date: 2011-06-27 14:45:06 -0400 (Mon, 27 Jun 2011)
New Revision: 6762
Added:
epp/portal/tags/EPP_5_1_0_RH03/
Log:
Tagging RH03
13 years, 6 months