You are not logged in.
I’d like to collect a list of plugins that are not working out of the box with 4.3.0: I think that many images and authos-related ones will be redundant, won’t they?
I know that 4.3.0 has not be officially released yet baut I’d like to know how much work I have to expect before upgrading…
Offline
Broken
Fixed
Possibly redundant
<txp:author /> tag. But if you want to get at any other info or prefer the plugin, then stick with itUnknown
They’re the only casualties I know of. There may be more.
Last edited by Bloke (2010-11-15 15:46:59)
The smd plugin menagerie — for when you need one more gribble of power from Textpattern.
Txp Builders – finely-crafted code, design and Txp
Offline
I’m certainly looking forward to seeing if I can thin out soo_image, getting rid of some basic stuff that the new core tags should handle nicely. But I won’t consider it redundant just yet ;)
Txp tags not doing what you expect? Learn to use a tag trace. And the Tag Reference.
Offline
Have all the upm_image features been replicated now in the core image tags? I use that plugin all the time at the moment. I’ll wait until there is some documentation on the new tags before scrapping that plugin.
Offline
[OT] In case you use social media to spread the news, etc.:
#Textpattern It might be pretty useful to use #hashtag #TXP430 for issues, questions, etc. regarding the spreading #TXP 4.3.0 :)
Get all online mentions of Textpattern via OPML subscription: TXP Info Sources: Textpattern RSS feeds as dynamic OPML
Offline
MLP: so far found two three issues, #32, #33 and #36.
Last edited by Els (2010-11-19 00:02:14)
<txp:Els /> ;)
Tag Reference | Unexpected behaviour? Check the tag trace | Still no clue? Check the names of your custom fields
Offline
Bloke wrote:
Unknown
- cnk_versioning
Yup, reading/writing css is a mess. But I guess this could be easily fixed with proper encoding?
Last edited by jelle (2010-09-27 21:03:08)
Offline
jelle wrote:
Yup, reading/writing css is a mess. But I guess this could be easily fixed with proper encoding?
Thanks for the report. Yes, just ditching the base64_encode/decode step and storing the data as raw (well doSlash()ed) CSS will get it going again. It’s probably only two lines of code that need changing. I’ve never used it so I don’t know where that might be at present. Someone else will.
The smd plugin menagerie — for when you need one more gribble of power from Textpattern.
Txp Builders – finely-crafted code, design and Txp
Offline
Hi!
jelle wrote:
Unknown
- cnk_versioning
Yup, reading/writing css is a mess. But I guess this could be easily fixed with proper encoding?
I think that changing line 272 from:
$css = doSlash(base64_encode(file_get_contents($filename)));
to:
$css = doSlash(file_get_contents($filename));
And line 465 from:
if (@file_put_contents('../'.$CNK_VER_OUTPUT_PATH.'css/'.$r['name'].'.'.$CNK_VER_EXT_CSS, base64_decode($r['css'])) === false) return false;
to:
if (@file_put_contents('../'.$CNK_VER_OUTPUT_PATH.'css/'.$r['name'].'.'.$CNK_VER_EXT_CSS, $r['css']) === false) return false;
should do the trick!
Please, report back if so. Thanks :)
*EDIT: fixed typo (there was a remaining unclosed ( that was a left over)
Last edited by maniqui (2010-09-28 18:20:06)
Offline
maniqui wrote:
should do the trick!
Please, report back if so. Thanks :)
Hi maniqui. Yes. That got it working. Thanks!
Offline