Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.2.3

Bug #927 two bugs with paragraphs
Submitted: 2004-02-29 15:38 UTC
From: h_wendel at cojobo dot net Assigned: pmjones
Status: Closed Package: Text_Wiki
PHP Version: 4.3.4 OS: gentoo
Roadmaps: (Not assigned)    
Subscription  
Comments Add Comment Add patch


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 33 - 24 = ?

 
 [2004-02-29 15:38 UTC] h_wendel at cojobo dot net
Description: ------------ I found three bugs (at least i think they are bugs), this are bugs that make Text_Wiki really useless for me, otherwise it's just great, any help is welcome :) the first one: Code: ----- Text Text Text * list * list ----- Result: ----- Text Text Text <ul> <li>list</li> <li>list</li> </ul> ----- Expected Result: ----- <p>Text Text Text</p> <ul> <li>list</li> <li>list</li> </ul> ----- the second one: Code: ----- Text Text Text. Text Text Text. Text Text Text. ----- Result: ----- Text Text Text. <p>Text Text Text.</p> <p>Text Text Text.</p> ----- Expected Result: ----- <p>Text Text Text.<br/>Text Text Text.</p> <p>Text Text Text.</p> and the third one: Code: ----- Text Text Text. Text Text Text. ----- Result: ----- <p>Text Text Text.</p> Text Text Text. ----- Expected Result: ----- <p>Text Text Text.</p> <p>Text Text Text.</p>

Comments

 [2004-02-29 15:40 UTC] h_wendel at cojobo dot net
I found three bugs (at least i think they are bugs), this are bugs that make Text_Wiki really useless for me, otherwise it's just great, any help is welcome :) the first one: Code: ----- Text Text Text * list * list ----- Result: ----- Text Text Text <ul> <li>list</li> <li>list</li> </ul> ----- Expected Result: ----- <p>Text Text Text</p> <ul> <li>list</li> <li>list</li> </ul> ----- the second one: Code: ----- Text Text Text. Text Text Text. ----- Result: ----- <p>Text Text Text.</p> Text Text Text. ----- Expected Result: ----- <p>Text Text Text.</p> <p>Text Text Text.</p> ----- and the third one: Code: ----- Text Text Text. Text Text Text. Text Text Text. ----- Result: ----- Text Text Text. <p>Text Text Text.</p> <p>Text Text Text.</p> ----- Expected Result: ----- <p>Text Text Text.<br/>Text Text Text.</p> <p>Text Text Text.</p> -----
 [2004-03-01 20:53 UTC] User who submitted this comment has not confirmed identity
If you submitted this note, check your email.If you do not have a message, click here to re-send
MANUAL CONFIRMATION IS NOT POSSIBLE.  Write a message to pear-dev@lists.php.net
to request the confirmation link.  All bugs/comments/patches associated with this

email address will be deleted within 48 hours if the account request is not confirmed!
 [2004-03-02 21:43 UTC] User who submitted this comment has not confirmed identity
If you submitted this note, check your email.If you do not have a message, click here to re-send
MANUAL CONFIRMATION IS NOT POSSIBLE.  Write a message to pear-dev@lists.php.net
to request the confirmation link.  All bugs/comments/patches associated with this

email address will be deleted within 48 hours if the account request is not confirmed!
 [2004-03-03 14:08 UTC] h_wendel at cojobo dot net
Thanks for your quick reply and fix :) Although I said it were two bugs in the Subject, it were three that i posted. You forgot this one (a workaround is two add two newlines between the paragraph and the list, but it works this way for tables, etc.): Code: ----- Text Text Text * list * list ----- Result: ----- Text Text Text <ul> <li>list</li> <li>list</li> </ul> ----- Expected Result: ----- <p>Text Text Text</p> <ul> <li>list</li> <li>list</li> </ul> ----- I see that the <br/> thing is not a bug, but do you have any idea how to implement it, it is very important for me. mfg, heinrich
 [2004-03-13 23:06 UTC] User who submitted this comment has not confirmed identity
If you submitted this note, check your email.If you do not have a message, click here to re-send
MANUAL CONFIRMATION IS NOT POSSIBLE.  Write a message to pear-dev@lists.php.net
to request the confirmation link.  All bugs/comments/patches associated with this

email address will be deleted within 48 hours if the account request is not confirmed!
 [2004-03-14 10:41 UTC] h_wendel at cojobo dot net
sorry for bugging you again, but it still doesn't work :/
 [2004-03-14 12:17 UTC] User who submitted this comment has not confirmed identity
If you submitted this note, check your email.If you do not have a message, click here to re-send
MANUAL CONFIRMATION IS NOT POSSIBLE.  Write a message to pear-dev@lists.php.net
to request the confirmation link.  All bugs/comments/patches associated with this

email address will be deleted within 48 hours if the account request is not confirmed!
 [2004-03-14 12:21 UTC] h_wendel at cojobo dot net
You rock guy :) Now i'm only waiting for the <br/> rule ;)