Index: openacs-4/packages/acs-templating/tcl/richtext-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/richtext-procs.tcl,v diff -u -N -r1.47.2.5 -r1.47.2.6 --- openacs-4/packages/acs-templating/tcl/richtext-procs.tcl 10 Jun 2009 17:00:58 -0000 1.47.2.5 +++ openacs-4/packages/acs-templating/tcl/richtext-procs.tcl 20 Jul 2009 21:29:51 -0000 1.47.2.6 @@ -439,17 +439,19 @@ set user_agent [string tolower [ns_set get [ns_conn headers] User-Agent]] - if {[string first "chrome" $user_agent] != -1} { + if {[string first "chrome" $user_agent] != -1} { # vguerra: google chrome browser # needs more testing in order to check if chrome fully # supports xinha - # roc: this check has to go first since safari use applewebkit, so the agent always contain safari word - # once xinha officially support chrome (already supports safari), we can remove this if and add the check at the next if. - } elseif {[string first "safari" $user_agent] != -1} { + # roc: this check has to go first since safari use applewebkit, + # so the agent always contain safari word + # once xinha officially support chrome (already supports safari), we + # can remove this if and add the check at the next if. + } elseif {[string first "safari" $user_agent] != -1} { regexp {version/([0-9]+)[.]} $user_agent _ user_agent_version - if {$user_agent_version < 3} { - set element(htmlarea_p) false - } + if {$user_agent_version < 3} { + set element(htmlarea_p) false + } } elseif {[string first "opera" $user_agent] != -1} { regexp {^[^/]+/([0-9]+)[.]} $user_agent _ user_agent_version if {$user_agent_version < 9} { @@ -469,6 +471,10 @@ set format_menu [menu $element(id).format [template::util::richtext::format_options] $format {}] set output [textarea_internal $element(id) attributes $contents] + # Spell-checker + array set spellcheck [template::util::spellcheck::spellcheck_properties \ + -element_ref element] + if { $htmlarea_p } { # figure out, which rich text editor to use set richtextEditor [expr {[info exists options(editor)] ? @@ -481,8 +487,6 @@ set ::acs_blank_master($richtextEditor) 1 if {$richtextEditor eq "xinha"} { - append output "\n" - append output "\n" # we have a xinha richtext widget, specified by "options {editor xinha}" # The following options are supported: @@ -525,10 +529,8 @@ } elseif {$richtextEditor eq "tinymce"} { - append output "\n" - append output "\n" lappend ::acs_blank_master__htmlareas $attributes(id) - + # get default configs set tinymce_default_config { {mode "exact" } @@ -560,7 +562,8 @@ -parameter "TinyMCEDefaultConfig" \ -default $tinymce_default_config] set pairslist [list] - ns_log notice "options [array get options]" + ns_log debug "tinymce: options [array get options]" + foreach config_pair $tinymce_configs_list { set config_key [lindex $config_pair 0] if {[info exists options($config_key)]} { @@ -571,39 +574,44 @@ } else { set config_value [lindex $config_pair 1] } - ns_log notice "key $config_key value $config_value" + ns_log debug "tinymce: key $config_key value $config_value" lappend pairslist "${config_key}:\"${config_value}\"" } + foreach name [array names options] { - ns_log notice "NAME $name" + ns_log debug "tinymce: NAME $name" # add any additional options not specified in the # default config lappend pairslist "${name}:\"$options($name)\"" } + lappend pairslist "elements : \"[join $::acs_blank_master__htmlareas ","]\"" set tinymce_configs_js [join $pairslist ","] set ::acs_blank_master(tinymce.config) $tinymce_configs_js } + + append output "\n\n" + append output "" + + if { $spellcheck(render_p) } { + append output "\n\n