Tags:
deployment1Add my vote for this tag installation1Add my vote for this tag upgrade1Add my vote for this tag create new tag
, view all tags

Beta Releases of TWiki

  • Relatively stable new features
  • Intended for testing and test driving, new code
  • The package contains the complete distribution
  • The latest Beta is announced in DevelopersNews, SourceForge's TWiki project, WikiMatrix

Recent Beta releases

Release topic Date Stable? Download Rev Type Code Name
TWikiRelease05x01x00rc1 2011-07-17 indifferent download.gif zip, tgz, md5 5.1.0-rc1 (r21777) RC Istanbul Release
TWikiRelease05x00x02rc1 2011-04-21 indifferent download.gif zip, tgz, md5 5.0.2-rc1 (r21061) RC HelsinkiRelease
TWikiRelease05x00x01rc1 2010-10-03 indifferent download.gif zip, tgz, md5 5.0.1-rc1 (r19556) RC HelsinkiRelease
TWikiRelease05x00x00rc3 2010-05-17 indifferent download.gif zip , tgz 5.0.0-rc3 (r18715) RC HelsinkiRelease
TWikiRelease05x00x00rc2 2010-05-09 indifferent download.gif zip , tgz 5.0.0-rc2 (r18615) RC HelsinkiRelease
TWikiRelease05x00x00rc1 2010-05-03 indifferent download.gif zip , tgz 5.0.0-rc1 (r18580) RC HelsinkiRelease
TWikiRelease04x03x02rc2 2009-08-31 indifferent download.gif zip , tgz 4.3.2-rc2 (r18125) RC GeorgetownRelease
TWikiRelease04x03x02rc1 2009-08-27 frown download.gif zip , tgz 4.3.2-rc1 (r18121) RC GeorgetownRelease
TWikiRelease04x03x00rc1 2009-03-07 indifferent download.gif zip , tgz 4.3.0-rc1 (r17878) RC GeorgetownRelease
TWikiRelease04x02x01beta1 2008-07-27 smile zip, tgz 4.2.1 beta1 (r16277) Beta FreetownRelease

See also TWikiAlphaReleases and TWikiProductionReleases

Comments

New Beta release topics should be based on TWikiBetaReleaseTemplate (ideally automated by a script), and follow the TWikiReleaseNamingConvention.

-- PeterThoeny - 02 Nov 2005

TWikiRelease2005x11x06x7338beta? can not support UTF-8(Japanese,Chinese) correctly that supported by TWiki20040904.
Edit view in textarea display chinese(eg.奇数页) by code (eg.&# 22855;&# 25968;&# 39029; ) the same problem occur in relase2001 is again occuring in TWikiRelease2005x11x06x7338beta (HowToEditChineseCharacters) -- DylanYin - 03 Dec 2005

If you think you discovered a bug: Please file a bug report.

-- PeterThoeny - 03 Dec 2005

It's worth getting the latest alpha from SVN, as some bug fixes have gone in recently since that beta. Note that UnicodeSupport is not a real feature of Dakar - one recent fix was to disable conversion of UTF-8 bytes into Perl's internal Unicode characters, which might help.

As always, it's a lot more helpful if you log all the details mentioned in SupportGuidelines, but in particular the HTML output of configure and the LocalSite.cfg file. Guessing your configuration is not a very productive way to diagnose bugs.

-- RichardDonkin - 04 Dec 2005

Thank you for your quickly reply. I have want to report a bug for Beta release. but i can not [Create New Item] in the beta bug report page by my wikiname(DylanYin). the error message is "Unrecognised user and/or password " . may be a beta tester QUALIFICATION is need. would you like get me a QUALIFICATION let me report the bug for beta release?

-- DylanYin - 08 Dec 2005

Dylan, we periodically copy the password file from twiki.org to develop.twiki.org. My apologies for the trouble.

SvenDowideit: Could you do the sync?

-- PeterThoeny - 08 Dec 2005

Hi Dylan, did you read HowToEditChineseCharacters ? It looks like you didn't set UTF-8 as your {SiteCharset}.

-- AntonioTerceiro - 17 Dec 2005

TWikiRelease2005x12x17x7873beta solved the problem(the detail of bug) that can not edit UTF-8(Chinese 0r Japanese) in TWikiRelease2005x11x06x7338beta. Thank you.

-- DylanYin - 18 Dec 2005

Hi, I had an error in my installation in twiki/lib/LocalSite.cfg in the line with the parameter NameFilter. This caused an internal Apache Server Error - So I commented the line out and then my Installation of 2005x12x17x7873 beta worked. I guess it is not the right thing to do, but I did not what should be the right code. Maybe it helps to enhance the beta. Regards.

-- HelmutRother - 26 Dec 2005

I installed the beta release from Jan-17. I am able to read index.html and its 4 documents. the script configure only complains about 2 warnings and this is because I dont have CGI::Session installed. Permissions on all directories are ok and everything else seems ok. However when I try and view a TWiki document I get a apche server error. The error log complains about line 1222 on TWiki.pm. Any suggestions?

-- PeterJones - 26 Jan 2006

Please consider providing a stable and sane URL to tarballs. That would greatly help us maintain TWiki on Gentoo. The current URL ( http://twiki.org/p/pub/Codev/TWikiRelease04x00x00rc01/TWiki-4.0.0-rc1.tgz ) is unnecessarily difficult to include in automatic install scripts. Would it be possible to use something like http://twiki.org/p/pub/Codev/downloads/TWiki-4.0.0-rc1.tgz instead? thanks.

-- RenatLumpau - 27 Jan 2006

I'm not sure if this is fixed in a newer beta release but here's a patch against TWikiRelease2005x12x17x7873beta that allows new users to register if you've made it so that only certain groups can modify the Main web:

--- lib/TWiki/UI/Register.pm.orig       2006-01-04 01:34:48.968947681 -0600
+++ lib/TWiki/UI/Register.pm    2006-01-04 01:35:48.999652157 -0600
@@ -828,11 +828,12 @@
 
     my $userName = $data->{remoteUser} || $data->{WikiName};
     my $user = $session->{users}->findUser( $userName );
+    my $agent = $session->{users}->findUser( $twikiRegistrationAgent );
     $text = $session->expandVariablesOnTopicCreation( $text, $user );
 
     $meta->put( 'TOPICPARENT', { 'name' => $TWiki::cfg{UsersTopicName}} );
 
-    $session->{store}->saveTopic($user, $data->{webName},
+    $session->{store}->saveTopic($agent, $data->{webName},
                                  $data->{WikiName}, $text, $meta );
     return $log;
 }

-- TiLeggett - 28 Jan 2006

 
Topic revision: r76 - 2010-05-20 - PeterThoeny
 
Twitter Delicious Facebook Digg Google Bookmarks E-mail LinkedIn Reddit StumbleUpon    
  • Download TWiki
TWiki logo Powered by Perl Hosted by OICcam.com Ideas, requests, problems regarding TWiki? Send feedback. Ask community in the support forum.
Copyright © 1999-2012 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.