You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2005/10/18 09:09:32 UTC

svn commit: r326041 - in /directory/network: branches/0.7/xdocs/index.xml branches/0.7/xdocs/navigation.xml branches/0.7/xdocs/testimonials.xml trunk/xdocs/index.xml trunk/xdocs/navigation.xml trunk/xdocs/testimonials.xml

Author: trustin
Date: Tue Oct 18 00:08:30 2005
New Revision: 326041

URL: http://svn.apache.org/viewcvs?rev=326041&view=rev
Log:
Resolved issue: DIRMINA-88 - Testimonials web page
* Added Testimonials
* Updated navigation and index page



Added:
    directory/network/branches/0.7/xdocs/testimonials.xml
    directory/network/trunk/xdocs/testimonials.xml
Modified:
    directory/network/branches/0.7/xdocs/index.xml
    directory/network/branches/0.7/xdocs/navigation.xml
    directory/network/trunk/xdocs/index.xml
    directory/network/trunk/xdocs/navigation.xml

Modified: directory/network/branches/0.7/xdocs/index.xml
URL: http://svn.apache.org/viewcvs/directory/network/branches/0.7/xdocs/index.xml?rev=326041&r1=326040&r2=326041&view=diff
==============================================================================
--- directory/network/branches/0.7/xdocs/index.xml (original)
+++ directory/network/branches/0.7/xdocs/index.xml Tue Oct 18 00:08:30 2005
@@ -14,7 +14,11 @@
         
         <ul>
           <li><a href="features.html">Feature List</a></li>
+          <li><a href="testimonials.html">Testimonials</a></li>
           <li><a href="getting_started.html">Getting Started</a></li>
+          <li><a href="http://svn.apache.org/repository/directory-network/">Downloads</a></li>
+          <li><a href="apidocs/index.html">JavaDocs</a></li>
+          <li><a href="faq.html">F.A.Q</a></li>
         </ul>
       </p>
     </section>

Modified: directory/network/branches/0.7/xdocs/navigation.xml
URL: http://svn.apache.org/viewcvs/directory/network/branches/0.7/xdocs/navigation.xml?rev=326041&r1=326040&r2=326041&view=diff
==============================================================================
--- directory/network/branches/0.7/xdocs/navigation.xml (original)
+++ directory/network/branches/0.7/xdocs/navigation.xml Tue Oct 18 00:08:30 2005
@@ -19,9 +19,10 @@
    <menu name="MINA">
      <item name="Overview" href="/index.html"/>
      <item name="Features" href="/features.html"/>
+     <item name="Testimonials" href="/testimonials.html"/>
      <item name="Getting Started" href="/getting_started.html"/>
+     <item name="Downloads" href="http://svn.apache.org/repository/directory-network/"/>
      <item name="F.A.Q" href="/faq.html"/>
-     <item name="Downloads" href="http://cvs.apache.org/repository/directory-network/"/>
      <item name="Roadmap" href="/roadmap.html"/>
      <item name="Changes" href="http://issues.apache.org/jira/browse/DIRMINA?report=com.atlassian.jira.plugin.system.project:changelog-panel"/>
      <item name="History" href="/history.html"/>

Added: directory/network/branches/0.7/xdocs/testimonials.xml
URL: http://svn.apache.org/viewcvs/directory/network/branches/0.7/xdocs/testimonials.xml?rev=326041&view=auto
==============================================================================
--- directory/network/branches/0.7/xdocs/testimonials.xml (added)
+++ directory/network/branches/0.7/xdocs/testimonials.xml Tue Oct 18 00:08:30 2005
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document>
+  <properties>
+    <author email="trustin@apache.org">Trustin Lee</author>
+    <title>Testimonials</title>
+  </properties>
+
+  <body>
+    <section name="Testimonials">
+      <p>
+        Alex Burmester says:
+        <blockquote>
+          <p>
+            We are using MINA at a telco to route low level protocol packets
+            to a third party.  We already had a SOAP and also a CORBA interface
+            but for speed purposes we are trying out a lower level protocol and
+            we needed a gateway of sorts to route messages between our cluster of
+            servers and the third party's servers.
+          </p>
+          <p>
+            I had been planning on using NIO and some aspects of
+            <a href="http://www.eecs.harvard.edu/~mdw/proj/seda/">SEDA</a> but
+            finding MINA was a real treat as it saved a lot of time, is well
+            written and gets more testing than our in house QA would be able to
+            cover.
+          </p>
+          <p>
+            The speed and stability of our app on top of MINA has been excellent.
+          </p>
+        </blockquote>
+      </p>
+      
+      <p>Thomas Muller says:
+        <blockquote>
+          What a fantastic API! Definately the best I've seen since
+          <a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html">Doug Lea's Concurrency API</a>.
+        </blockquote>
+      </p>
+      
+      <p>Luke Hubbard says:
+        <blockquote>
+          We are using it for the network layer of
+          <a href="http://www.osflash.org/red5">Red5</a>, an open source flash
+          server. At the moment we have RTMP and AMF working and hope to add
+          more protocols in the future.  MINA's design and ease of use has
+          helped us get a prototype up and running quickly.
+        </blockquote>
+      </p>
+      
+      <p>Jean-François Daune says:
+        <blockquote>
+          <p>
+            We use MINA to communicate with
+            <a href="http://www.banksys.com/">Banksys</a> 'point of sale'
+            terminals (Visa, Mastercard...) for technical management operations.
+            (software upgrade, remote monitoring, log transfer...)
+          </p>
+          <p>
+            So far, MINA has worked really well for us. We used
+            <a href="http://gleamynode.net/dev/tl-netty2/docs/">Netty2</a>,
+            and clearly saw the improvements in MINA. I like the MINA API
+            more. MINA really makes it easier to write applications using NIO.
+          </p>
+        </blockquote>
+      </p>
+    </section>
+  </body>
+</document>

Modified: directory/network/trunk/xdocs/index.xml
URL: http://svn.apache.org/viewcvs/directory/network/trunk/xdocs/index.xml?rev=326041&r1=326040&r2=326041&view=diff
==============================================================================
--- directory/network/trunk/xdocs/index.xml (original)
+++ directory/network/trunk/xdocs/index.xml Tue Oct 18 00:08:30 2005
@@ -14,7 +14,11 @@
         
         <ul>
           <li><a href="features.html">Feature List</a></li>
+          <li><a href="testimonials.html">Testimonials</a></li>
           <li><a href="getting_started.html">Getting Started</a></li>
+          <li><a href="http://svn.apache.org/repository/directory-network/">Downloads</a></li>
+          <li><a href="apidocs/index.html">JavaDocs</a></li>
+          <li><a href="faq.html">F.A.Q</a></li>
         </ul>
       </p>
     </section>

Modified: directory/network/trunk/xdocs/navigation.xml
URL: http://svn.apache.org/viewcvs/directory/network/trunk/xdocs/navigation.xml?rev=326041&r1=326040&r2=326041&view=diff
==============================================================================
--- directory/network/trunk/xdocs/navigation.xml (original)
+++ directory/network/trunk/xdocs/navigation.xml Tue Oct 18 00:08:30 2005
@@ -19,9 +19,10 @@
    <menu name="MINA">
      <item name="Overview" href="/index.html"/>
      <item name="Features" href="/features.html"/>
+     <item name="Testimonials" href="/testimonials.html"/>
      <item name="Getting Started" href="/getting_started.html"/>
+     <item name="Downloads" href="http://svn.apache.org/repository/directory-network/"/>
      <item name="F.A.Q" href="/faq.html"/>
-     <item name="Downloads" href="http://cvs.apache.org/repository/directory-network/"/>
      <item name="Roadmap" href="/roadmap.html"/>
      <item name="Changes" href="http://issues.apache.org/jira/browse/DIRMINA?report=com.atlassian.jira.plugin.system.project:changelog-panel"/>
      <item name="History" href="/history.html"/>

Added: directory/network/trunk/xdocs/testimonials.xml
URL: http://svn.apache.org/viewcvs/directory/network/trunk/xdocs/testimonials.xml?rev=326041&view=auto
==============================================================================
--- directory/network/trunk/xdocs/testimonials.xml (added)
+++ directory/network/trunk/xdocs/testimonials.xml Tue Oct 18 00:08:30 2005
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document>
+  <properties>
+    <author email="trustin@apache.org">Trustin Lee</author>
+    <title>Testimonials</title>
+  </properties>
+
+  <body>
+    <section name="Testimonials">
+      <p>
+        Alex Burmester says:
+        <blockquote>
+          <p>
+            We are using MINA at a telco to route low level protocol packets
+            to a third party.  We already had a SOAP and also a CORBA interface
+            but for speed purposes we are trying out a lower level protocol and
+            we needed a gateway of sorts to route messages between our cluster of
+            servers and the third party's servers.
+          </p>
+          <p>
+            I had been planning on using NIO and some aspects of
+            <a href="http://www.eecs.harvard.edu/~mdw/proj/seda/">SEDA</a> but
+            finding MINA was a real treat as it saved a lot of time, is well
+            written and gets more testing than our in house QA would be able to
+            cover.
+          </p>
+          <p>
+            The speed and stability of our app on top of MINA has been excellent.
+          </p>
+        </blockquote>
+      </p>
+      
+      <p>Thomas Muller says:
+        <blockquote>
+          What a fantastic API! Definately the best I've seen since
+          <a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html">Doug Lea's Concurrency API</a>.
+        </blockquote>
+      </p>
+      
+      <p>Luke Hubbard says:
+        <blockquote>
+          We are using it for the network layer of
+          <a href="http://www.osflash.org/red5">Red5</a>, an open source flash
+          server. At the moment we have RTMP and AMF working and hope to add
+          more protocols in the future.  MINA's design and ease of use has
+          helped us get a prototype up and running quickly.
+        </blockquote>
+      </p>
+      
+      <p>Jean-François Daune says:
+        <blockquote>
+          <p>
+            We use MINA to communicate with
+            <a href="http://www.banksys.com/">Banksys</a> 'point of sale'
+            terminals (Visa, Mastercard...) for technical management operations.
+            (software upgrade, remote monitoring, log transfer...)
+          </p>
+          <p>
+            So far, MINA has worked really well for us. We used
+            <a href="http://gleamynode.net/dev/tl-netty2/docs/">Netty2</a>,
+            and clearly saw the improvements in MINA. I like the MINA API
+            more. MINA really makes it easier to write applications using NIO.
+          </p>
+        </blockquote>
+      </p>
+    </section>
+  </body>
+</document>