Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2007-06-23 19:31:07

Sencer
Archived Developer
From: cgn, de
Registered: 2004-03-23
Posts: 1,803
Website

Feedback to: Help us test the release candidate for the upcoming 4.0.5

See weblog post: http://textpattern.com/weblog/283/testing-upcoming-405-rc1

(Duplicated here for your convenience ;))

We’re aiming for a release in the course of the next week. And we’re looking for people that will help us make sure, that we didn’t miss any regressions, didn’t introduce new bugs, or break backwards-compatibility. We’re looking forward to your comments. :)

Make sure that if you use this download, you also update to 4.0.5 final when it comes out.

Download:
textpattern-4.0.5-rc1.zip
textpattern-4.0.5-rc1.tar.gz

Discuss:
Feedback in the forum thread

Note: The included HISTORY.txt-file lists some of the changes since 4.0.4, we’ll be updating/completing that list for the final release. Also be aware that this download advertises itself as 4.0.4(r244x) in diagnostics, because we haven’t yet bumped the version number up.

Last edited by Sencer (2007-06-23 19:32:52)

Offline

#2 2007-06-23 21:08:06

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

So far so good – thanks for the release! In my testing so far I do not encounter any problems, apart from immediately after the update, when I was taken to the language update screen. On top of that, TXP was showing some errors connecting to plugins, something like that.

I updated English GB, and the error notices went away. No problems after that. The site I am using is set to “Live”.

Plugins:
cbs_category_list
cbs_live_search
ebl_BatchUpload
pap_contact_cleaner tranquillo
rss_admin_db_manager
rss_pluginstaller
smd_lib
smd_slimbox
srh_file_icon
stm_javascript
upm_file
upm_file_popper
upm_image
upm_img_popper
wet_for_each_image
wet_slimpattern
zem_contact_lang

Offline

#3 2007-06-23 22:03:19

FireFusion
Member
Registered: 2005-05-10
Posts: 698

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

After updating I also got a plugin error coming from upm image popper. There was about 10 statements like the following…

A problem occured while loading the plugin: upm_img_popper -> User_Warning: Duplicate entry '1-upm_img_popper_show_width' for key 1
insert into txp_prefs set 
				name = 'upm_img_popper_show_width',
				val = '1',
				html = 'yesnoradio',
				prefs_id = 1, type = 2, event = 'admin', position = 0
			 on line 84

Went away when I updated the language file.

Apart from that all else seems fine.

Offline

#4 2007-06-23 22:03:27

The-Exit
Member
From: Berlin
Registered: 2005-07-16
Posts: 175
Website

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

Looks great!

In the comments-tab I have some presentational remarks
the show spam checkbox moves around, depending if the details are displayed or not.
the website and e-mail column can get rather wide, squeezing the comment tooo much
website and e-mail content contains mysterious symbols: e.g. www.holyfruitsalad.blogspot.co​m​

solved with current svn version.

Last edited by The-Exit (2007-06-25 21:20:13)

Offline

#5 2007-06-23 22:06:16

The-Exit
Member
From: Berlin
Registered: 2005-07-16
Posts: 175
Website

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

Is there a chance to have multiple categories and exclude categories for txp:article_custom, as discussed here in the 4.0.5 release?

Offline

#6 2007-06-23 22:07:23

The-Exit
Member
From: Berlin
Registered: 2005-07-16
Posts: 175
Website

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

@FireFusion: The problem with the upm-popper occured also in my two intallations. but after klicking another tab, the issue solved.

Offline

#7 2007-06-23 22:26:06

Walker
Plugin Author
From: Boston, MA
Registered: 2004-02-24
Posts: 592
Website

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

The “Comments” listing when “show detail” is checked puts this ​ at the end of every “email” and “website” result.

Offline

#8 2007-06-23 22:35:36

Walker
Plugin Author
From: Boston, MA
Registered: 2004-02-24
Posts: 592
Website

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

I’m pretty certain the string … is getting added in by this function:

	function soft_wrap($text, $width, $break='​')
	{
		return chunk_split($text, $width, $break);
	}

(that’s at line 1972 of txplib_misc.php)

….and then somewhere along the line it gets htmlencoded, perhaps?

Offline

#9 2007-06-23 22:44:54

Walker
Plugin Author
From: Boston, MA
Registered: 2004-02-24
Posts: 592
Website

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

Yup, it’s getting done on line’s 278 & 279 of txp_discuss.php

td(htmlspecialchars(soft_wrap($email, 30)), 100, 'discuss_detail').
td(htmlspecialchars(soft_wrap($web, 30)), 100, 'discuss_detail').

Offline

#10 2007-06-23 22:48:24

Walker
Plugin Author
From: Boston, MA
Registered: 2004-02-24
Posts: 592
Website

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

why not do this on line’s 278 & 279 in txp_discuss.php:

td(soft_wrap(htmlspecialchars($email), 30), 100, 'discuss_detail').
td(soft_wrap(htmlspecialchars($web), 30), 100, 'discuss_detail').

edit: yup…works perfectly now.

Last edited by Walker (2007-06-23 22:59:45)

Offline

#11 2007-06-23 23:14:56

ruud
Developer Emeritus
From: a galaxy far far away
Registered: 2006-06-04
Posts: 5,068
Website

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

Walker, Matthias, those weird chars on the comments tab should be fixed in revision 2248

Matthias,

Is there a chance to have multiple categories and exclude categories for txp:article_custom, as discussed here in the 4.0.5 release?

Adding such new attributes/features is not possible so late in the release cycle. The risk of introducing new bugs is too high, because there is not a lot of time left to test before release.

  • the show spam checkbox moves around, depending if the details are displayed or not.

Confirmed.

  • the website and e-mail column can get rather wide, squeezing the comment tooo much [

Since website and email use softwrap, we probably don’t have to use a fixed width on those columns. That might help a bit.

One other thing I noticed myself:

  • the width of the articles tab is smaller when checking the details box. Similar to the comments tab, perhaps it should be full width?

Last edited by ruud (2007-06-23 23:25:21)

Offline

#12 2007-06-24 04:36:14

rsilletti
Moderator
From: Spokane WA
Registered: 2004-04-28
Posts: 707

Re: Feedback to: Help us test the release candidate for the upcoming 4.0.5

This is not pretty. I’ve turned off all the plugins that alter the DOM on the admin side, but I haven’t found a reason for this yet. It looks the same on all the tabs.

Screengrab

Diagnostics:

Textpattern version: 4.0.4 (r2446)
Last Update: 2007-06-24 02:40:13/2006-11-17 22:38:55
Document root: /Library/Apache2/htdocs
$path_to_site: /Library/Apache2/htdocs/castle
Textpattern path: /Library/Apache2/htdocs/castle/textpattern
Permanent link mode: messy
Temporary directory path: /Library/Apache2/htdocs/castle/textpattern/tmp
Site URL: localhost/castle
PHP version: 4.3.2
GD Image Library: 2.0 or higher; supported formats: JPG, PNG.
Server Local Time: 2007-06-23 22:26:39
MySQL: 4.0.15
Locale: C
Server: Apache/2.0.47 (Unix) DAV/2 PHP/4.3.2
Apache version: Apache/2.0.47 (Unix) DAV/2 PHP/4.3.2
PHP Server API: apache2handler
RFC 2616 headers:
Server OS: Darwin 8.6.0
Active plugins: testing interface-0.3m, downloads stats-0.04.2m, stb_if_article_image_category-0.1, ied_plugin_composer-0.4, wet_recent_comments-0.4, cbs_live_search-0.3m, ras_page_of-0.03, zem_redirect-1.2-beta, zem_cache-0.3, ajw_admin_workflow-0.3, ras_plugin_credits-4.0.4.1m, aaa_dates-0.12, ras_if_dates-4.0.4.3m, ras_if_links_today-4.0.4.1m, rvm_plugin_diff-0.1, smd_lib-0.23, smd_fuzzy_find-0.01, chh_if_data-0.10, ras_linklist-4.0.4.1m, ras_if_article_keywords-4.0.4.2m, zem_paginate-0.1m, zem_event-0.34m, ras_alt_article_status-0.1m

Pre-flight check:
————————————
Temporary directory path is not writable: /Library/Apache2/htdocs/castle/textpattern/tmp
/Library/Apache2/htdocs/castle/textpattern/setup/ still exists
————————————

Offline

Board footer

Powered by FluxBB