Author: keith
Date: Sat Jan 26 00:13:46 2008
New Revision: 12952

Log:

updating references that used mashups.wso2.org to pick mooshup.com instead



Modified:
   trunk/mashup/java/release_note.txt
   trunk/mashup/java/xdocs/community.html
   trunk/mashup/java/xdocs/downloading.html
   trunk/mashup/java/xdocs/feedhostobject.html
   trunk/mashup/java/xdocs/introduction.html
   trunk/mashup/java/xdocs/toc.html

Modified: trunk/mashup/java/release_note.txt
==============================================================================
--- trunk/mashup/java/release_note.txt  (original)
+++ trunk/mashup/java/release_note.txt  Sat Jan 26 00:13:46 2008
@@ -44,7 +44,7 @@
 * Support for recurring and longer-running tasks
 * Management console to easily manage the mashups
 * Simple sharing of deployed mashups with other WSO2 Mashup Servers
-* Mashup sharing community portal (http://mashups.wso2.org) to share and host 
your 
+* Mashup sharing community portal (http://mooshup.com) to share and host your 
   mashups
 
 

Modified: trunk/mashup/java/xdocs/community.html
==============================================================================
--- trunk/mashup/java/xdocs/community.html      (original)
+++ trunk/mashup/java/xdocs/community.html      Sat Jan 26 00:13:46 2008
@@ -13,10 +13,10 @@
 
     <h2>WSO2 Mashup Sharing Community Portal</h2>
 
-    <p><a href="http://mashups.wso2.org";>Mashup Sharing Community 
Portal</a>&nbsp;supports the
+    <p><a href="http://mooshup.com";>Mashup Sharing Community 
Portal</a>&nbsp;supports the
         sharing and hosting of mashups developed using
         WSO2 Mashup Server. Mashup developers can upload their mashups in to
-        the <a href="http://mashups.wso2.org";>mashup sharing portal</a> with 
the click of a button
+        the <a href="http://mooshup.com";>mashup sharing portal</a> with the 
click of a button
         from
         the <a href="adminguide.html#sharing">WSO2 Mashup Server admin 
console</a>. This will enable
         the
@@ -24,7 +24,7 @@
         their
         own mashup server.</p>
 
-    <p> You may also check the <a href="http://mashups.wso2.org";>Mashup 
Sharing Community Portal</a>
+    <p> You may also check the <a href="http://mooshup.com";>Mashup Sharing 
Community Portal</a>
         regularly for new exiting samples.</p>
     <br/>
 

Modified: trunk/mashup/java/xdocs/downloading.html
==============================================================================
--- trunk/mashup/java/xdocs/downloading.html    (original)
+++ trunk/mashup/java/xdocs/downloading.html    Sat Jan 26 00:13:46 2008
@@ -1,6 +1,6 @@
 <html>
 <head>
-    <title>Downloading Mashups from mashups.wso2.org</title>
+    <title>Downloading Mashups from mooshup.com</title>
     <link href="styles.css" rel="stylesheet" type="text/css" media="all">
 </head>
 
@@ -10,7 +10,7 @@
     <h1>Downloading Mashups from the Online Community Portal</h1>
 
     <p>A collection of community contributed Mashups is available at <a
-            href="http://mashups.wso2.org";>mashups.wso2.org</a>. You can 
download these
+            href="http://mooshup.com";>mooshup.com</a>. You can download these
         Mashups directly to your local WSO2 Mashup Server in a few easy 
steps.</p>
 
     <p></p>

Modified: trunk/mashup/java/xdocs/feedhostobject.html
==============================================================================
--- trunk/mashup/java/xdocs/feedhostobject.html (original)
+++ trunk/mashup/java/xdocs/feedhostobject.html Sat Jan 26 00:13:46 2008
@@ -62,7 +62,7 @@
 
 
     <div class="code">
-<pre>//Creating an RSS 2.0 feed and writing it to file.<br><br>//Creating the 
Feed<br>var feed = new Feed();<br>feed.feedType = "rss_2.0";<br>feed.title = 
"This is a test Feed";<br>feed.description = "This feed demonsrates the use of 
Feed host object to create an RSS 2.0 feed.";<br>feed.link = 
"http://mashups.wso2.org/rss20.xml";;<br><br>//Creating Entries in the Feed 
<br>var entry = new Entry();<br>entry.title = "This is a test 
entry.";<br>entry.description = "This is a sample entry demonstrating the use 
of the Entry host object.";<br>feed.insertEntry(entry);<br><br>var entry2 = new 
Entry();<br>entry2.title = "This is another test entry.";<br>entry2.description 
= "This is a sample entry demonstrating the use of the Entry host 
object.";<br><br>//Adding a Media Module to the entry<br>var mediaModule = new 
MediaModule("http://www.earthshots.org/photos/387.jpg";);<br>mediaModule.copyright
 = "2007 Tad Bowman";<br>mediaModule.type = 
"image/jpeg";<br>mediaModule.thumbnail = 
"http://www.earthshots.org/photos/387.thumb.jpg";;<br>entry2.addMediaModule(mediaModule);<br><br>feed.insertEntry(entry2);<br><br>//
 Writing the newly created Feed to a File<br>var result = 
feed.writeTo("test-created-rss-feed.xml");<br></pre>
+<pre>//Creating an RSS 2.0 feed and writing it to file.<br><br>//Creating the 
Feed<br>var feed = new Feed();<br>feed.feedType = "rss_2.0";<br>feed.title = 
"This is a test Feed";<br>feed.description = "This feed demonsrates the use of 
Feed host object to create an RSS 2.0 feed.";<br>feed.link = 
"http://mooshup.com/rss20.xml";;<br><br>//Creating Entries in the Feed <br>var 
entry = new Entry();<br>entry.title = "This is a test 
entry.";<br>entry.description = "This is a sample entry demonstrating the use 
of the Entry host object.";<br>feed.insertEntry(entry);<br><br>var entry2 = new 
Entry();<br>entry2.title = "This is another test entry.";<br>entry2.description 
= "This is a sample entry demonstrating the use of the Entry host 
object.";<br><br>//Adding a Media Module to the entry<br>var mediaModule = new 
MediaModule("http://www.earthshots.org/photos/387.jpg";);<br>mediaModule.copyright
 = "2007 Tad Bowman";<br>mediaModule.type = 
"image/jpeg";<br>mediaModule.thumbnail = 
"http://www.earthshots.org/photos/387.thumb.jpg";;<br>entry2.addMediaModule(mediaModule);<br><br>feed.insertEntry(entry2);<br><br>//
 Writing the newly created Feed to a File<br>var result = 
feed.writeTo("test-created-rss-feed.xml");<br></pre>
 
 
     </div>

Modified: trunk/mashup/java/xdocs/introduction.html
==============================================================================
--- trunk/mashup/java/xdocs/introduction.html   (original)
+++ trunk/mashup/java/xdocs/introduction.html   Sat Jan 26 00:13:46 2008
@@ -17,7 +17,7 @@
 get started using Web service technology. <br/>
 You will find more useful information in from the following resources:
 <ul>
-    <li><a href="http://mashups.wso2.org";>mashups.wso2.org</a></li>
+    <li><a href="http://mooshup.com";>mooshup.com</a></li>
     <li><a href="http://wso2.org/forum/226"; target="blank">Community 
Forum</a></li>
 </ul>
 <h2>Web Services and Mashups</h2>

Modified: trunk/mashup/java/xdocs/toc.html
==============================================================================
--- trunk/mashup/java/xdocs/toc.html    (original)
+++ trunk/mashup/java/xdocs/toc.html    Sat Jan 26 00:13:46 2008
@@ -30,7 +30,7 @@
 <li><a href="wsrequesthostobject.html" target="mainFrame">WSRequest</a></li> 
</ul>
 </li>
 </ul><h3>Other References</h3>
-<ul> <li><a href="http://mashups.wso2.org"; 
target="blank">mashups.wso2.org</a></li> <li><a 
href="http://www.wso2.org/wiki/display/mashup/WSO2+Mashup+Server+Reference"; 
target="blank">WSO2 Mashup Server Reference</a></li>
+<ul> <li><a href="http://mooshup.com"; target="blank">mooshup.com</a></li> 
<li><a 
href="http://www.wso2.org/wiki/display/mashup/WSO2+Mashup+Server+Reference"; 
target="blank">WSO2 Mashup Server Reference</a></li>
 <li><a href="http://www.wso2.org/taxonomy/term/303/all"; target="blank">The 
WSO2 Oxygen Tank Library</a></li>
 <li><a href="http://wso2.org/forum/226"; target="blank">WSO2
 Mashup Server Community Forum</a></li>

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

Reply via email to