updating tinymce to 1.43 and fixed some bugs

This commit is contained in:
JT Smith 2005-03-09 00:51:58 +00:00
parent 98dc54e16d
commit 914f29b169
209 changed files with 2183 additions and 1506 deletions

View file

@ -1,5 +1,6 @@
6.5.0
- Added content prototypes.
- Updated TinyMCE to 1.43.
- Fixed a bug in the Collaboration post where the post end date was set to
the start date.
- fix [ 1157202 ] users can add themselves to Admins group
@ -8,6 +9,10 @@
- fix [ 1158117 ] Help Index Unavailable from RWG
- fix [ 1157453 ] Error on Edit Template / Save and Cancel
- fix [ 1157434 ] [CVS 6.5]edit question controls have incorrect URL in Survey
- fix [ 1157418 ] "Display the title?" not shown in Layout tab
- fix [ 1157210 ] users added notification e-mail doesn't show correct url
- Fixed a bug that wouldn't allow the HTTP Proxy wobject to rewrite the URLs
of SSL enabled sites.
- Using the International Macro in Help to simplify management and translation.

View file

@ -0,0 +1,41 @@
#!/usr/bin/perl
use lib "../../lib";
use FileHandle;
use File::Path;
use File::Copy;
use Getopt::Long;
use strict;
use WebGUI::Group;
use WebGUI::HTML;
use WebGUI::Id;
use WebGUI::Session;
use WebGUI::SQL;
use WebGUI::URL;
my $configFile;
my $quiet;
GetOptions(
'configFile=s'=>\$configFile,
'quiet'=>\$quiet
);
WebGUI::Session::open("../..",$configFile);
#--------------------------------------------
print "\tUpdating config file.\n" unless ($quiet);
my $pathToConfig = '../../etc/'.$configFile;
my $conf = Parse::PlainConfig->new('DELIM' => '=', 'FILE' => $pathToConfig);
my $macros = $conf->get("macros");
$macros->{"International"} = "International";
$conf->set("macros"=>$macros);
$conf->write;
WebGUI::Session::close();