You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@roller.apache.org by Thomas-W Hofmann <th...@db.com> on 2006/12/01 10:28:02 UTC

Roller 3.1 RC 1 bugs

1       Roller : Unable to create directory in UploadFile.jsp

/roller-ui/ is hardcoded in form action of createSubDir. The webapp 
directory is missing in fornt of the path.

<%-- --------------------------
Create directory form
--%>
<c:if test="${model.showingRoot}">
<form name="createSubdir" method="post" 
action="/roller-ui/authoring/uploadFiles.do">
    <input type="hidden" name="method" value="createSubdir" />
    <input type="hidden" name="weblog" value='<c:out 
value="${model.website.handle}"/>'>
    <input type="hidden" name="path" value='<c:out 
value="${model.path}"/>'>
 
    <b><fmt:message key="uploadFiles.createDir" /></b> <input type="text" 
name="newDir" size="20" />&nbsp;
    <input type="submit" value='<fmt:message 
key="uploadFiles.createDirButton" />' /> 
 
    <br />
    <br />

</form>
</c:if>

2       Planet Admin - Subscriptions - There is a duplicate INSERT INTO 
RAG_GROUP_SUBSCRIPTONS statement  with switched parameters causing 
problems. (ORACLE db)

Hibernate: insert into rag_subscription (feed_url, last_updated, site_url, 
title, author, inbound_links, inbound_blogs, id) values (?, ?, ?, ?, ?, ?, 
?, ?)
Hibernate: insert into rag_group_subscription (group_id, subscription_id) 
values (?, ?)
Hibernate: insert into rag_group_subscription (subscription_id, group_id) 
values (?, ?)


3       (all versions) someone should update the documentation that a 10g 
JDBC driver is needed to create the first user using ORACLE !

4       (all versions) someone should update the documentation to include 
username.allowedChars() parameter !

5       (all versions) There are still a lot of errors if ORACLE is used 
caused by empty form fields (i.e. description empty in Create new Weblog) 
resulting in ORACLE ERROR 14xx  - (cannot insert null value into table 
xxxx)


so far ...

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
Thomas Hofmann




--

Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.

This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.

Antwort: Re: Roller 3.1 RC 1 bugs (Here reg_group_subscription)

Posted by Thomas-W Hofmann <th...@db.com>.
I have no clue about hibernate and the related pojos - but could the 
problem of duplicate entries come from the 
* @hibernate.collection-many-to-many column="subscription_id" 
I dont think thats true here. it is a one-to many column (if such thing 
exists)

    /** 
     * @hibernate.set table="rag_group_subscription" lazy="true" 
invert="true" cascade="save-update"
     * @hibernate.collection-key column="group_id"
     * @hibernate.collection-many-to-many column="subscription_id" 
class="org.apache.roller.planet.pojos.PlanetSubscriptionData"
     */
    public Set getSubscriptions()
    {
        return subscriptions;
    }
    public void setSubscriptions(Set subscriptions)
    {
        this.subscriptions = subscriptions;
    }
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
Thomas Hofmann

Dave <sn...@gmail.com> schrieb am 01/12/2006 20:42:22:

> Thanks, I've added those to the wiki and we'll do our best to address 
them.
> http://rollerweblogger.org/wiki/Wiki.jsp?page=Roller31Testing
> >
> > 2       Planet Admin - Subscriptions - There is a duplicate INSERT 
INTO
> > RAG_GROUP_SUBSCRIPTONS statement  with switched parameters causing
> > problems. (ORACLE db)
> >
> > Hibernate: insert into rag_subscription (feed_url, last_updated, 
site_url,
> > title, author, inbound_links, inbound_blogs, id) values (?, ?, ?, ?, 
?, ?,
> > ?, ?)
> > Hibernate: insert into rag_group_subscription (group_id, 
subscription_id)
> > values (?, ?)
> > Hibernate: insert into rag_group_subscription (subscription_id, 
group_id)
> > values (?, ?)
> >
> >




--

Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.

This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.

Re: Roller 3.1 RC 1 bugs

Posted by Dave <sn...@gmail.com>.
Thanks, I've added those to the wiki and we'll do our best to address them.
http://rollerweblogger.org/wiki/Wiki.jsp?page=Roller31Testing

- Dave



On 12/1/06, Thomas-W Hofmann <th...@db.com> wrote:
> 1       Roller : Unable to create directory in UploadFile.jsp
>
> /roller-ui/ is hardcoded in form action of createSubDir. The webapp
> directory is missing in fornt of the path.
>
> <%-- --------------------------
> Create directory form
> --%>
> <c:if test="${model.showingRoot}">
> <form name="createSubdir" method="post"
> action="/roller-ui/authoring/uploadFiles.do">
>     <input type="hidden" name="method" value="createSubdir" />
>     <input type="hidden" name="weblog" value='<c:out
> value="${model.website.handle}"/>'>
>     <input type="hidden" name="path" value='<c:out
> value="${model.path}"/>'>
>
>     <b><fmt:message key="uploadFiles.createDir" /></b> <input type="text"
> name="newDir" size="20" />&nbsp;
>     <input type="submit" value='<fmt:message
> key="uploadFiles.createDirButton" />' />
>
>     <br />
>     <br />
>
> </form>
> </c:if>
>
> 2       Planet Admin - Subscriptions - There is a duplicate INSERT INTO
> RAG_GROUP_SUBSCRIPTONS statement  with switched parameters causing
> problems. (ORACLE db)
>
> Hibernate: insert into rag_subscription (feed_url, last_updated, site_url,
> title, author, inbound_links, inbound_blogs, id) values (?, ?, ?, ?, ?, ?,
> ?, ?)
> Hibernate: insert into rag_group_subscription (group_id, subscription_id)
> values (?, ?)
> Hibernate: insert into rag_group_subscription (subscription_id, group_id)
> values (?, ?)
>
>
> 3       (all versions) someone should update the documentation that a 10g
> JDBC driver is needed to create the first user using ORACLE !
>
> 4       (all versions) someone should update the documentation to include
> username.allowedChars() parameter !
>
> 5       (all versions) There are still a lot of errors if ORACLE is used
> caused by empty form fields (i.e. description empty in Create new Weblog)
> resulting in ORACLE ERROR 14xx  - (cannot insert null value into table
> xxxx)
>
>
> so far ...
>
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> Thomas Hofmann
>
>
>
>
> --
>
> Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
>
> This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.
>