Auteur :
|
Sujet : Upgrade package 1.1 | ||||
Woo HooDernière visite: 04/11/13 Administrator Dev Joined: 05/26/06 Posts de forums : 2289 |
I think Web-APP should implement this module.
0 but true |
||||
| Connecté |
| ||||
FlexDernière visite: 11/27/10 Level 1 Joined: 09/16/10 Posts de forums : 17 |
my next version would be the one you would want to use it has a bug fix. v4.01 - 11/xx/2010 Fixed - Found a bug that converts the true text typed to the HTML code name. All parts of the module where effected by this bug, in the code tag if the author ment & #59 ; it would show ; . This also caused a long standing bug with typing any HTML code name and saving it to a backend. this fix removes the HTML code name regex in do_unicode and had to add/move two filters in "script_escape to conver the & to an amp and ; to #59;" and "html_to_text to conver amp to & and #59 to ;". This fix also helped in allowing the regex's for highlighting subroutines to be made. Addition/Fixed - had to add a null byte marker to escape_aubbc so the code tag's highlighter can detect the escaped character and change it back. Addition - Perl subroutine highlighting for the code tag highlighter I was testing it and wrighting the doc's My generic signature. |
||||
| Connecté |
| ||||
OnDernière visite: 04/18/13 ![]() Administrator Dev Joined: 06/19/03 Posts de forums : 5018 |
Thanks for reporting this. 1. where is the bug 2. what is the fix? On [user:On] on@web-app.net GC/CS/E/H/IT/L/M/MU/PA/P/S/SS/TW/O d(+++)>+ s: a+>++>+++$ C++++$ UBAHS*++++$ P+++++(--)$ L !E? W+>++ N+++@ K+++>++++++@ w$ !O M->+ V--() PS+(-) PE(++) Y+ PGP->+ t+() 5 X? R>* tv@ b++>+++ DI+++ D? G(-) e++>+++@ h----() r+++ y++++ (Words of wisdom from Larry Wall, 1993) |
||||
| Connecté |
| ||||
OnDernière visite: 04/18/13 ![]() Administrator Dev Joined: 06/19/03 Posts de forums : 5018 |
Can you make it working "in situ" without jumping the page to a new page every time a vote s submitted? [user:On] on@web-app.net GC/CS/E/H/IT/L/M/MU/PA/P/S/SS/TW/O d(+++)>+ s: a+>++>+++$ C++++$ UBAHS*++++$ P+++++(--)$ L !E? W+>++ N+++@ K+++>++++++@ w$ !O M->+ V--() PS+(-) PE(++) Y+ PGP->+ t+() 5 X? R>* tv@ b++>+++ DI+++ D? G(-) e++>+++@ h----() r+++ y++++ (Words of wisdom from Larry Wall, 1993) |
||||
| Connecté |
| ||||
FlexDernière visite: 11/27/10 Level 1 Joined: 09/16/10 Posts de forums : 17 |
Web-app has the same bug in the code tag and most likely the exact same for the rest of the bbcode tags. code: For Test 1 I ment with no space's in "" "[ [ b ] ]sdfsdfds[ [/ b ] ]" . Test 2: Why this bug happens is not converting ; with &. those 2 are kinda hard to convert if you try to convert one at a time in the script_escape method of aubbc, this is why the regex for those two are in the same regex. This bug you will be fighting the bbcode if you try to edit a post with this stuff in it! http://search.cpan.org... v4.01 - 11/08/2010 Fixed - Bug that converts the true text typed to the HTML code name. All parts of the module where effected by this bug, in the code tag if the author ment & #59 ; it would show ; . This also caused a long standing bug with typing any HTML code name and saving it to a backend. this fix removes the HTML code name regex in do_unicode and had to add/move two filters in "script_escape to conver the & to an amp and ; to #59;" and "html_to_text to conver amp to & and #59 to ;". This fix also helped in allowing the regex's for highlighting subroutines to be made. Fixed - had to add a null byte marker to escape_aubbc so the code tag's highlighter can detect the escaped character and change it back. In do_all_ubbc All markers get removed before the message is returned because FireFox can see the null bytes as an error. Addition - Perl subroutine highlighting for the code tag highlighter. Had a problem making this till this version because a HTML code name can look like &TheName; and a Perl subroutine looked the same till ; got converted. Addition - AUBBC::make_image($align,$src,$width,$height,$alt) this is useful enough to mention once. My generic signature. |
||||
| Connecté |
| ||||
FlexDernière visite: 11/27/10 Level 1 Joined: 09/16/10 Posts de forums : 17 |
The escaping bug that web-app has is differnt and I'm kinda supprised web-app has a bug there too.
The other bug is actualy very commen for BBcode's and some BBcode's never find it. I knew about the bug for a long time but haven't done anything till I did more testing on the code tag and wanted to make a subroutine highlighter.
My generic signature. |
||||
| Connecté |
| ||||
Woo HooDernière visite: 04/11/13 Administrator Dev Joined: 05/26/06 Posts de forums : 2289 |
Some missing tags for AUBBC?
I was just looking at your ubbc module and really think it's great but couldn't find a few extras that I think would make it more complete. For my ubbc routine I like to include: teletype text (tt) text-align: justify (justify) font-family: Courier New (fixed) as well as other font faces marquee (move) I also use a highlight ubbc but that works with a css class :p These are just suggestions. Other than that I think you got a pretty solid ubbc module. 0 but true |
||||
| Connecté |
| ||||
FlexDernière visite: 11/27/10 Level 1 Joined: 09/16/10 Posts de forums : 17 |
Some of those are tags you can just add-in through "Build your own tags" the "marquee (move)" would have to be secured but I bet AUBBC is one of the most secure BBcodes since I convert Back-slash \ to \ . Hackers like to convert javascript to unicode and bypass BBcode security. The "text-align:" is done with left, right and center tags but I do see some what of a need to make a tag that combines "font-family:", font-size: and Font-color. It would reduce the text the database holds since those three would be in one tag. I think AUBBC is the best BBcode you can find on CPAN but I made it and most will see that comment as bias although it does have more settings, more built-in tags, faster then the others and security I cant hack to this day.... At the end of the day there isn't another module I would want to use to do BBcode but I made it for myself then released it to CPAN for others to use if they want. My generic signature. |
||||
| Connecté |
| ||||
Jack DethDernière visite: 01/31/13 ![]() Administrator Dev Joined: 02/13/05 Posts de forums : 3712 |
Finally found some free time to get back and reply on this topic... Upgrade Package 1...
I installed it on themeapp.com and it looks like its working fine... there is some issue with the theme sometimes on some machines where it loads the older theme files... not sure why but if you select standard from the theme menu it fixes the bugs... makes no logical sense to me why unless I had the site set to use another theme which is still installed in the themes folder and that was never updated to standard... even though all other themes are not accessible. Another issue... there is code in the package that is specific to the morsmals site that the upgrade came off of... this package in its own is not very useful for anyone but testers as it is branded in the code... so once all the branding is removed... it might be of use... there seem so be some other issues here and there... but the most important thing I believe is that it actually makes the site "FEEL" more stable and run quicker... hopefully this could turn into a complete full package clean from branding and including the installer plus an old-school standard install file... or 2 package... classic install... or quick install package. Has anyone else tried this package out on a site? UPDATE: I seem to have fixed the standard theme bug I found on my site by resetting the standard theme to standard, which is what it was set to in the first place... so obviously somewhere there was an error still set to some other theme... not sure if the left and right blocks are loading correctly as I get a morsmal facebook bock on the right side which I CANT FIND IN THE SITE MEANING CORE CODED CRAP... CMON ON... CLEAN A BITCH UP BEFORE RELEASING IT FOR TESTING :P :) Beta-Tester Extraordinaire. Testing on various platforms and operating systems... http://www.2xlnt.com... http://www.themeapp.com... |
||||
| Connecté |
| ||||
Woo HooDernière visite: 04/11/13 Administrator Dev Joined: 05/26/06 Posts de forums : 2289 |
Maybe we should call it morsmal-APP.
0 but true |
||||
| Connecté |
| ||||
OnDernière visite: 04/18/13 ![]() Administrator Dev Joined: 06/19/03 Posts de forums : 5018 |
Sorry.. was sure I deleted all the morsmal hardcoded stuff
[user:On] on@web-app.net GC/CS/E/H/IT/L/M/MU/PA/P/S/SS/TW/O d(+++)>+ s: a+>++>+++$ C++++$ UBAHS*++++$ P+++++(--)$ L !E? W+>++ N+++@ K+++>++++++@ w$ !O M->+ V--() PS+(-) PE(++) Y+ PGP->+ t+() 5 X? R>* tv@ b++>+++ DI+++ D? G(-) e++>+++@ h----() r+++ y++++ (Words of wisdom from Larry Wall, 1993) |
||||
| Connecté |
| ||||
OnDernière visite: 04/18/13 ![]() Administrator Dev Joined: 06/19/03 Posts de forums : 5018 |
Do you have a clean upgrade package?
I want to update it and: 1. release it 2. Change the site here [user:On] on@web-app.net GC/CS/E/H/IT/L/M/MU/PA/P/S/SS/TW/O d(+++)>+ s: a+>++>+++$ C++++$ UBAHS*++++$ P+++++(--)$ L !E? W+>++ N+++@ K+++>++++++@ w$ !O M->+ V--() PS+(-) PE(++) Y+ PGP->+ t+() 5 X? R>* tv@ b++>+++ DI+++ D? G(-) e++>+++@ h----() r+++ y++++ (Words of wisdom from Larry Wall, 1993) |
||||
| Connecté |
| ||||
Jack DethDernière visite: 01/31/13 ![]() Administrator Dev Joined: 02/13/05 Posts de forums : 3712 |
a Clean Upgrade package? only the one you linked to here which is probably the first post on this thread...
I also need this upgrade package for another site... they need the forums cache fixes ASAP!!!! They are running 1.0 and still lose their forum.tmp file regularly... This upgrade also needs to be compatible with all 1.0 versions from the first release as well... once its finalised, should just make it official 1.1 and we can move on from there... but it needs a classic installer as well!!! as well as a final 1.1 package and we can build off of it... or just sit here with our thumbs up our butts remembering what Web-App used to be... Beta-Tester Extraordinaire. Testing on various platforms and operating systems... http://www.2xlnt.com... http://www.themeapp.com... |
||||
| Connecté |
| ||||
Woo HooDernière visite: 04/11/13 Administrator Dev Joined: 05/26/06 Posts de forums : 2289 |
Yes, get rid of the new installer crap and just go with the good old one.
0 but true |
||||
| Connecté |
| ||||
Jack DethDernière visite: 01/31/13 ![]() Administrator Dev Joined: 02/13/05 Posts de forums : 3712 |
Any news on this???
time for a clean fresh install pack... a simple upgrade package and more!!! My websites are temporarily down as I transition to a new host in the near future... once that happens the fun begins!!!! :) Beta-Tester Extraordinaire. Testing on various platforms and operating systems... http://www.2xlnt.com... http://www.themeapp.com... |
||||
| Connecté |
|
| Pages : 1 [2] | ||