Author: keith
Date: Sun Dec  2 22:30:25 2007
New Revision: 10398

Modified:
   trunk/mashup/java/modules/www/org/ajax_profile.jsp
   trunk/mashup/java/modules/www/org/ajax_rating.jsp
   trunk/mashup/java/modules/www/org/ajax_tag.jsp
   trunk/mashup/java/modules/www/org/ajax_userQuery.jsp
   trunk/mashup/java/modules/www/org/blank.html
   trunk/mashup/java/modules/www/org/css/styles.css
   trunk/mashup/java/modules/www/org/default.jsp
   trunk/mashup/java/modules/www/org/footer.jsp
   trunk/mashup/java/modules/www/org/header.jsp
   trunk/mashup/java/modules/www/org/index.jsp
   trunk/mashup/java/modules/www/org/infocard.html
   trunk/mashup/java/modules/www/org/infocardaccept.jsp
   trunk/mashup/java/modules/www/org/js/common.js
   trunk/mashup/java/modules/www/org/mashup.jsp
   trunk/mashup/java/modules/www/org/register_self.jsp
   trunk/mashup/java/modules/www/org/registration_result.jsp
   trunk/mashup/java/modules/www/org/search.jsp
   trunk/mashup/java/modules/www/org/searchbox.jsp
   trunk/mashup/java/modules/www/org/signin.jsp
   trunk/mashup/java/modules/www/org/signout.jsp
   trunk/mashup/java/modules/www/org/tag_cloud.jsp
   trunk/mashup/java/modules/www/org/user.jsp
   trunk/mashup/java/modules/www/org/validate.jsp
Log:
Adding missing license headers



Modified: trunk/mashup/java/modules/www/org/ajax_profile.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/ajax_profile.jsp  (original)
+++ trunk/mashup/java/modules/www/org/ajax_profile.jsp  Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="org.wso2.mashup.MashupConstants" %>
 <%@ page import="org.wso2.mashup.webapp.userprofile.User" %>
 <%@ page import="org.wso2.mashup.webapp.utils.RegistryUtils" %>
@@ -7,13 +22,6 @@
 <%@ page import="org.wso2.registry.secure.RegistryUserManager" %>
 <%@ page import="org.wso2.usermanager.Realm" %>
 <%@ page import="java.util.Map" %>
-<%--
-  Created by IntelliJ IDEA.
-  User: Jonathan
-  Date: Nov 12, 2007
-  Time: 1:44:59 PM
-  To change this template use File | Settings | File Templates.
---%>
 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
 <%
     boolean success = false;

Modified: trunk/mashup/java/modules/www/org/ajax_rating.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/ajax_rating.jsp   (original)
+++ trunk/mashup/java/modules/www/org/ajax_rating.jsp   Sun Dec  2 22:30:25 2007
@@ -1,12 +1,20 @@
-<%@ page import="org.wso2.mashup.webapp.utils.RegistryUtils" %>
-<%@ page import="org.wso2.registry.Registry" %>
 <%--
-  Created by IntelliJ IDEA.
-  User: Jonathan
-  Date: Nov 12, 2007
-  Time: 1:44:59 PM
-  To change this template use File | Settings | File Templates.
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
 --%>
+<%@ page import="org.wso2.mashup.webapp.utils.RegistryUtils" %>
+<%@ page import="org.wso2.registry.Registry" %>
 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
 <%
     String path = request.getParameter("path");

Modified: trunk/mashup/java/modules/www/org/ajax_tag.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/ajax_tag.jsp      (original)
+++ trunk/mashup/java/modules/www/org/ajax_tag.jsp      Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="org.wso2.mashup.MashupConstants" %>
 <%@ page import="org.wso2.mashup.utils.QueryResults" %>
 <%@ page import="org.wso2.mashup.webapp.utils.RegistryUtils" %>
@@ -5,13 +20,6 @@
 <%@ page import="org.wso2.registry.RegistryException" %>
 <%@ page import="org.wso2.registry.Resource" %>
 <%@ page import="org.wso2.registry.Tag" %>
-<%--
-  Created by IntelliJ IDEA.
-  User: Jonathan
-  Date: Nov 12, 2007
-  Time: 1:44:59 PM
-  To change this template use File | Settings | File Templates.
---%>
 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
 <%
     boolean success = true;

Modified: trunk/mashup/java/modules/www/org/ajax_userQuery.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/ajax_userQuery.jsp        (original)
+++ trunk/mashup/java/modules/www/org/ajax_userQuery.jsp        Sun Dec  2 
22:30:25 2007
@@ -1,16 +1,24 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="org.wso2.mashup.webapp.userprofile.User" %>
 <%@ page import="org.wso2.mashup.webapp.userprofile.UserQuery" %>
 <%@ page import="org.wso2.mashup.webapp.utils.QueryParamUtils" %>
 <%@ page import="org.wso2.mashup.webapp.utils.RegistryUtils" %>
 <%@ page import="org.wso2.registry.Registry" %>
 <%@ page import="org.wso2.registry.RegistryException" %>
-<%--
-  Created by IntelliJ IDEA.
-  User: Jonathan
-  Date: Nov 12, 2007
-  Time: 1:44:59 PM
-  To change this template use File | Settings | File Templates.
---%>
 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
 <%
     boolean success = true;

Modified: trunk/mashup/java/modules/www/org/blank.html
==============================================================================
--- trunk/mashup/java/modules/www/org/blank.html        (original)
+++ trunk/mashup/java/modules/www/org/blank.html        Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<!--
+  ~ Copyright 2007 WSO2, Inc. (http://wso2.com)
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
 <html>
 <head></head>
 

Modified: trunk/mashup/java/modules/www/org/css/styles.css
==============================================================================
--- trunk/mashup/java/modules/www/org/css/styles.css    (original)
+++ trunk/mashup/java/modules/www/org/css/styles.css    Sun Dec  2 22:30:25 2007
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 body {
     margin-top: 0px;
     margin-left: 0px;

Modified: trunk/mashup/java/modules/www/org/default.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/default.jsp       (original)
+++ trunk/mashup/java/modules/www/org/default.jsp       Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="org.wso2.mashup.MashupConstants"
 %><%@ page import="org.wso2.mashup.utils.QueryResult"
 %><%@ page import="org.wso2.mashup.utils.QueryResults"

Modified: trunk/mashup/java/modules/www/org/footer.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/footer.jsp        (original)
+++ trunk/mashup/java/modules/www/org/footer.jsp        Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <div id="ft">
     <p>Mashups.wso2.org<br/>Copyrights 2007 WSO2 "Oxygenating the Web Service 
Platform.</p>
 </div>

Modified: trunk/mashup/java/modules/www/org/header.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/header.jsp        (original)
+++ trunk/mashup/java/modules/www/org/header.jsp        Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="java.net.URLEncoder" %>
 <div id="banner">
     <table width="100%" border="0" cellpadding="3" cellspacing="0">

Modified: trunk/mashup/java/modules/www/org/index.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/index.jsp (original)
+++ trunk/mashup/java/modules/www/org/index.jsp Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <html>
 <head>
 <meta http-equiv="refresh" content="0;URL=default.jsp">

Modified: trunk/mashup/java/modules/www/org/infocard.html
==============================================================================
--- trunk/mashup/java/modules/www/org/infocard.html     (original)
+++ trunk/mashup/java/modules/www/org/infocard.html     Sun Dec  2 22:30:25 2007
@@ -1,4 +1,19 @@
 <DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<!--
+  ~ Copyright 2007 WSO2, Inc. (http://wso2.com)
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->        
 <html>
 <head>
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

Modified: trunk/mashup/java/modules/www/org/infocardaccept.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/infocardaccept.jsp        (original)
+++ trunk/mashup/java/modules/www/org/infocardaccept.jsp        Sun Dec  2 
22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="org.wso2.mashup.webapp.identity.InfoCardSignIn" %>
 <%@ page import="org.wso2.mashup.webapp.utils.RegistryUtils" %>
 <%@ page import="org.wso2.registry.Registry" %>

Modified: trunk/mashup/java/modules/www/org/js/common.js
==============================================================================
--- trunk/mashup/java/modules/www/org/js/common.js      (original)
+++ trunk/mashup/java/modules/www/org/js/common.js      Sun Dec  2 22:30:25 2007
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 var userLoggedOn = false;
 function previewRating(ratingDivId, value) {
     if (userLoggedOn) {

Modified: trunk/mashup/java/modules/www/org/mashup.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/mashup.jsp        (original)
+++ trunk/mashup/java/modules/www/org/mashup.jsp        Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="com.sun.syndication.feed.synd.SyndContent"
 %><%@ page import="com.sun.syndication.feed.synd.SyndContentImpl"
 %>

Modified: trunk/mashup/java/modules/www/org/register_self.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/register_self.jsp (original)
+++ trunk/mashup/java/modules/www/org/register_self.jsp Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
 <%@ page import="com.sun.syndication.feed.synd.SyndContent" %>
 <%@ page import="com.sun.syndication.feed.synd.SyndContentImpl" %>

Modified: trunk/mashup/java/modules/www/org/registration_result.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/registration_result.jsp   (original)
+++ trunk/mashup/java/modules/www/org/registration_result.jsp   Sun Dec  2 
22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
 <%@ page import="com.sun.syndication.feed.synd.SyndContent" %>
 <%@ page import="com.sun.syndication.feed.synd.SyndContentImpl" %>

Modified: trunk/mashup/java/modules/www/org/search.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/search.jsp        (original)
+++ trunk/mashup/java/modules/www/org/search.jsp        Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="com.sun.syndication.feed.synd.SyndContent"
 %><%@ page import="com.sun.syndication.feed.synd.SyndContentImpl"
 %><%@ page import="com.sun.syndication.feed.synd.SyndEntry"

Modified: trunk/mashup/java/modules/www/org/searchbox.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/searchbox.jsp     (original)
+++ trunk/mashup/java/modules/www/org/searchbox.jsp     Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <div class="search">
     <form id="Search" name="formSearch" action="search.jsp" method="get">
         Search

Modified: trunk/mashup/java/modules/www/org/signin.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/signin.jsp        (original)
+++ trunk/mashup/java/modules/www/org/signin.jsp        Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="com.sun.syndication.feed.synd.SyndContent"
 %>
 <%@ page import="com.sun.syndication.feed.synd.SyndContentImpl" %>

Modified: trunk/mashup/java/modules/www/org/signout.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/signout.jsp       (original)
+++ trunk/mashup/java/modules/www/org/signout.jsp       Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="com.sun.syndication.feed.synd.SyndContent" %>
 <%@ page import="com.sun.syndication.feed.synd.SyndContentImpl" %>
 <%@ page import="com.sun.syndication.feed.synd.SyndEntry" %>

Modified: trunk/mashup/java/modules/www/org/tag_cloud.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/tag_cloud.jsp     (original)
+++ trunk/mashup/java/modules/www/org/tag_cloud.jsp     Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="com.sun.syndication.feed.synd.SyndContent"
 %><%@ page import="com.sun.syndication.feed.synd.SyndContentImpl"
 %>

Modified: trunk/mashup/java/modules/www/org/user.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/user.jsp  (original)
+++ trunk/mashup/java/modules/www/org/user.jsp  Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="com.sun.syndication.feed.synd.SyndContent"
 %><%@ page import="com.sun.syndication.feed.synd.SyndContentImpl"
 %><%@ page import="com.sun.syndication.feed.synd.SyndEntry"

Modified: trunk/mashup/java/modules/www/org/validate.jsp
==============================================================================
--- trunk/mashup/java/modules/www/org/validate.jsp      (original)
+++ trunk/mashup/java/modules/www/org/validate.jsp      Sun Dec  2 22:30:25 2007
@@ -1,3 +1,18 @@
+<%--
+ * Copyright 2006,2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
 <%@ page import="org.wso2.mashup.webapp.utils.RegistryUtils" %>
 <%@ page import="org.wso2.registry.Registry" %>
 <%@ page import="org.wso2.usermanager.UserManagerException" %>

_______________________________________________
Mashup-dev mailing list
[email protected]
http://www.wso2.org/cgi-bin/mailman/listinfo/mashup-dev

Reply via email to