On Wed, 2002-07-03 at 13:08, [EMAIL PROTECTED] wrote:
> What's the current status of the RichText project?
XML-database type added and working. 
Generator in bridge for output converion.
Working on input

> Since the 1.5.1 release notes don't mention it, I assume it is not part of
> that release. Also, the project homepage provide a link to an example that
> doesn't work and a dtd that can not be viewed.That leaves me with the project 
>proposal (dated October 2001) as the only
> documentation.
on http://www.mmbase.org/mmbasenew/project.shtml?development+452+7520

> Can someone please provide me an update on the current status?
Here it is...

The "Conversion will start when the string in the field doesnt start
with an '<'. This way, it is possible to convert also old values in the
database, into the new format." is still under review.

To see something working, try the attached jsp(dont use it on a big
cloud!!!!), also documentation some documentation about the formatter
tag can be found at:
http://www.mmbase.org:8070/testing/mmdocs/taglib/formatter.jsp
We have a working example of text with images and url's in the text, but
the server running this is currently not available. (would be something
like http://mihxil.komputilo.org/mm/mmexamples/)

What would you like to do with it? Would you like to participate in this
project?

-- 
Eduard Witteveen Systeem Ontwikkelaar
NOS Internet,  Gateway C Kamer 107
+31(0)356772910 http://www.omroep.nl/

Sed quis custodiet ipsos custodes? : The sixth Satire from Juvenal
<%@ taglib uri="http://www.mmbase.org/mmbase-taglib-1.0"; prefix="mm" 
%><%@ page import="org.mmbase.bridge.*"
%><html><body>
<mm:cloud jspvar="cloud" method="http">
Name: <%= cloud.getName() %>
Description: <%= cloud.getDescription() %>
<p>Builders without the config thingie</p>
<mm:listnodes type="typedef">
    <b><mm:field name="number" /></b>
    <pre><mm:formatter format="escapexmlpretty">
        <mm:field name="name" />
        <mm:field name="description" />
        <mm:field name="owner" />
    </mm:formatter></pre>
    <hr />
</mm:listnodes>
<p>Everything!</p>
<pre>
<mm:formatter format="escapexmlpretty">
<%
    NodeManagerList l = cloud.getNodeManagers();
    java.util.Collections.sort(l); // MMCI doesn't sort, do it ourselves.
    for (int i=0; i<l.size(); i++) {
%>
        <mm:listnodes type="<%= ((NodeManager)l.get(i)).getName() %>" />
<% } %>
</mm:formatter></pre>
</mm:cloud></body></html>

Reply via email to