svn commit: r1030868 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java
Author: isurues Date: Thu Nov 4 09:34:28 2010 New Revision: 1030868 URL: http://svn.apache.org/viewvc?rev=1030868&view=rev Log: When searching for services in deployment folders, we have to skip hidden folders which starts with '.'. we have done this for aar services in method findServicesInDirectory. But we haven't done it for other deployment folders. fixed it.. Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java?rev=1030868&r1=1030867&r2=1030868&view=diff == --- axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java (original) +++ axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java Thu Nov 4 09:34:28 2010 @@ -301,7 +301,7 @@ public class RepositoryListener implemen Deployer deployer = deploymentEngine.getDeployer(dir, extension); deployer.setDirectory(dir); addFileToDeploy(file, deployer, WSInfo.TYPE_CUSTOM); -} else if (file.isDirectory()) { +} else if (file.isDirectory() && !file.getName().startsWith(".")) { //look in the child directory also findFileForGivenDirectory(file, extension, dir); }
svn commit: r1031175 - /axis/axis2/java/core/tags/v0.93/
Author: veithen Date: Thu Nov 4 19:37:01 2010 New Revision: 1031175 URL: http://svn.apache.org/viewvc?rev=1031175&view=rev Log: Moving Axis2 v0.93 tag to the new Axis TLP. Added: axis/axis2/java/core/tags/v0.93/ - copied from r1031174, webservices/axis2/tags/v0.93/
svn commit: r1031177 - /axis/axis2/java/core/tags/v0.92/
Author: veithen Date: Thu Nov 4 19:38:36 2010 New Revision: 1031177 URL: http://svn.apache.org/viewvc?rev=1031177&view=rev Log: Moving Axis2 v0.92 tag to the new Axis TLP. Added: axis/axis2/java/core/tags/v0.92/ - copied from r1031176, webservices/axis2/tags/v0.92/
svn commit: r1031178 - /axis/axis2/java/core/tags/v0.91/
Author: veithen Date: Thu Nov 4 19:39:26 2010 New Revision: 1031178 URL: http://svn.apache.org/viewvc?rev=1031178&view=rev Log: Moving Axis2 v0.91 tag to the new Axis TLP. Added: axis/axis2/java/core/tags/v0.91/ - copied from r1031177, webservices/axis2/tags/v0.91/
svn commit: r1031179 - /axis/axis2/java/core/tags/v0.9/
Author: veithen Date: Thu Nov 4 19:40:09 2010 New Revision: 1031179 URL: http://svn.apache.org/viewvc?rev=1031179&view=rev Log: Moving Axis2 v0.9 tag to the new Axis TLP. Added: axis/axis2/java/core/tags/v0.9/ - copied from r1031178, webservices/axis2/tags/v0.9/
svn commit: r1031182 - /axis/axis2/java/core/tags/v2-M1/
Author: veithen Date: Thu Nov 4 19:44:08 2010 New Revision: 1031182 URL: http://svn.apache.org/viewvc?rev=1031182&view=rev Log: Moving Axis2 v2-M1 tag to the new Axis TLP, stripping the additional java component from the path. Added: axis/axis2/java/core/tags/v2-M1/ - copied from r1031181, webservices/axis2/tags/v2-M1/java/
svn commit: r1031183 - /axis/axis2/java/core/tags/v2-M2/
Author: veithen Date: Thu Nov 4 19:45:38 2010 New Revision: 1031183 URL: http://svn.apache.org/viewvc?rev=1031183&view=rev Log: Moving Axis2 v2-M2 tag to the new Axis TLP. Added: axis/axis2/java/core/tags/v2-M2/ - copied from r1031182, webservices/axis2/tags/v2-M2/
svn commit: r1031198 - /axis/axis2/java/core/site/
Author: veithen Date: Thu Nov 4 20:00:13 2010 New Revision: 1031198 URL: http://svn.apache.org/viewvc?rev=1031198&view=rev Log: Moving the generated Axis2 site files to its new home. Added: axis/axis2/java/core/site/ - copied from r1031197, webservices/axis2/site/
svn commit: r1031272 - /axis/axis2/java/core/branches/1_5/modules/parent/pom.xml
Author: veithen Date: Thu Nov 4 21:50:48 2010 New Revision: 1031272 URL: http://svn.apache.org/viewvc?rev=1031272&view=rev Log: Switching Axiom version to 1.2.10 on the 1.5 branch. Modified: axis/axis2/java/core/branches/1_5/modules/parent/pom.xml Modified: axis/axis2/java/core/branches/1_5/modules/parent/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/modules/parent/pom.xml?rev=1031272&r1=1031271&r2=1031272&view=diff == --- axis/axis2/java/core/branches/1_5/modules/parent/pom.xml (original) +++ axis/axis2/java/core/branches/1_5/modules/parent/pom.xml Thu Nov 4 21:50:48 2010 @@ -68,7 +68,7 @@ 1.7.0 2.7.7 -1.2.9 +1.2.10 2.4.0 1.3 1.2
svn commit: r1031350 - /axis/axis2/java/core/trunk/src/site/resources/css/site.css
Author: veithen Date: Thu Nov 4 23:33:57 2010 New Revision: 1031350 URL: http://svn.apache.org/viewvc?rev=1031350&view=rev Log: Integrated some of Chanaka's design elements (see AXIS2-4773) into the Maven site. Modified: axis/axis2/java/core/trunk/src/site/resources/css/site.css Modified: axis/axis2/java/core/trunk/src/site/resources/css/site.css URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/src/site/resources/css/site.css?rev=1031350&r1=1031349&r2=1031350&view=diff == --- axis/axis2/java/core/trunk/src/site/resources/css/site.css (original) +++ axis/axis2/java/core/trunk/src/site/resources/css/site.css Thu Nov 4 23:33:57 2010 @@ -62,32 +62,74 @@ Generic element styles --- */ body { color: #111; -font: 11px / 1.5 verdana, arial; -margin: 10; +font-family: "Trebuchet MS", Verdana, sans-serif; +font-size: 1em; padding: 5; border-width: 0; outline-width: 0; list-style-position: outside; display: block; + +margin: 0 auto; /* center, not in IE5 */ +height: auto !important; /* real browsers */ +height: 100%; /* IE6: treaded as min-height*/ + +min-height: 100%; /* real browsers */ +width: 980px; +} + +#leftColumn { +border: none; +background-color: transparent; +margin: 0; +} + +#navcolumn { +padding: 0; +} + +#navcolumn h5 { +background-color: #e8f4ff; +border-left: solid 1px #ff2700; +border-bottom: none; +font-size: 0.9em; +padding: 5px; +color: #33; +font-weight: normal; +} + +#navcolumn li { +font-size: 0.9em; +margin-top: 0.5em; +margin-bottom: 0.5em; } -p { +#bodyColumn { +margin-left: 190px; +margin-right: 0; } -a, a:link { +#contentBox { +color: #33; +} + +#contentBox p { +line-height: 1.5em; +font-size: 0.94em; +} + +a:link { color: #039; -font-size: 11px; } a:hover { color: #03c; -font-size: 11px; text-decoration: none; } -a:visited { -font-size: 11px; /* color: #969; */ -/* No need to discolour visited links as this is a system */ +a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover { +background: none; +padding: 0; } ul, ol { @@ -107,24 +149,27 @@ table td { } h1 { -color: #000; -font-size: 16px; -font-weight: bold; -background-color: #dcdcdc; -padding-left: 10px; +color: #4f4f4f; +font-size: 2.5em; +font-weight: normal; } h2 { -font-size: 15px; -padding-left: 10px; -border-bottom: 1px solid #a9a9a9; -border-left-color: black; +color: #646b71; +font-size: 1.7em; +background-color: transparent; +border: none; +padding: 0; +font-weight: normal; } h3 { -font-size: 14px; -padding-left: 10px; -border-bottom: 1px solid #d3d3d3; +color: #7d858d; + font-weight: bold; +font-size: 1.2em; +background-color: transparent; +border: none; +padding: 0; } h4 { @@ -150,4 +195,12 @@ table { background-repeat: no-repeat; background-attachment: scroll; background-position: left top; +} + +pre { +border: 1px dotted; +background-color: #e2ecf6; +padding: 0.8em; +overflow: auto; +font-size: 0.9em; } \ No newline at end of file
svn commit: r1031352 - /axis/axis2/java/core/trunk/src/site/xdoc/docs/servlet-transport.xml
Author: veithen Date: Thu Nov 4 23:42:42 2010 New Revision: 1031352 URL: http://svn.apache.org/viewvc?rev=1031352&view=rev Log: Added a title to the servlet-transport page. Modified: axis/axis2/java/core/trunk/src/site/xdoc/docs/servlet-transport.xml Modified: axis/axis2/java/core/trunk/src/site/xdoc/docs/servlet-transport.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/src/site/xdoc/docs/servlet-transport.xml?rev=1031352&r1=1031351&r2=1031352&view=diff == --- axis/axis2/java/core/trunk/src/site/xdoc/docs/servlet-transport.xml (original) +++ axis/axis2/java/core/trunk/src/site/xdoc/docs/servlet-transport.xml Thu Nov 4 23:42:42 2010 @@ -24,6 +24,7 @@ HTTP servlet transport +HTTP servlet transport The servlet transport processes HTTP requests received through the servlet