Index: openacs-4/packages/richtext-xinha/richtext-xinha.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/richtext-xinha/richtext-xinha.info,v diff -u -r1.2.2.2 -r1.2.2.3 --- openacs-4/packages/richtext-xinha/richtext-xinha.info 15 Sep 2021 16:12:15 -0000 1.2.2.2 +++ openacs-4/packages/richtext-xinha/richtext-xinha.info 11 Feb 2022 17:17:27 -0000 1.2.2.3 @@ -8,20 +8,21 @@ t f f - - + + Gustaf Neumann Richtext editor plugin for integrating Xinha with acs-templating 2 - - - + + + - + + Index: openacs-4/packages/richtext-xinha/tcl/richtext-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/richtext-xinha/tcl/richtext-procs.tcl,v diff -u -r1.4 -r1.4.2.1 --- openacs-4/packages/richtext-xinha/tcl/richtext-procs.tcl 9 May 2018 15:33:33 -0000 1.4 +++ openacs-4/packages/richtext-xinha/tcl/richtext-procs.tcl 11 Feb 2022 17:17:28 -0000 1.4.2.1 @@ -5,27 +5,41 @@ This script defines the following two procs: ::richtext-xinha::initialize_widget - ::richtext-xinha::render_widgets - + ::richtext-xinha::render_widgets + @author Gustaf Neumann @creation-date 1 Jan 2016 @cvs-id $Id$ } namespace eval ::richtext::xinha { - + + set package_id [apm_package_id_from_key "richtext-xinha"] + + # + # The Xinha configuration can be tailored via the NaviServer + # config file: + # + # ns_section ns/server/${server}/acs/richtext-ckeditor + # ns_param XinhaVersion 1.5.6 + # ns_param StandardPlugins TableOperations + # + set ::richtext::xinha::version [parameter::get \ + -package_id $package_id \ + -parameter XinhaVersion \ + -default 1.5.6] + + set ::richtext::xinha::standard_plugins [parameter::get \ + -package_id $package_id \ + -parameter XinhaDefaultPlugins \ + -default ""] + ad_proc initialize_widget { -form_id -text_id {-options {}} } { - Initialize an Xinha richtext editor widget. - This proc defines finally the global variables - - ::acs_blank_master(xinha.options) - ::acs_blank_master(xinha.plugins) - } { ns_log debug "initialize XINHA instance with <$options>" @@ -41,72 +55,74 @@ if {[dict exists $options plugins]} { set plugins [dict get $options plugins] } else { - set plugins [parameter::get \ - -package_id [apm_package_id_from_key "richtext-xinha"] \ - -parameter "XinhaDefaultPlugins" \ - -default ""] - set pluginsLegacy [parameter::get \ - -package_id [apm_package_id_from_key "acs-templating"] \ - -parameter "XinhaDefaultPlugins" \ - -default ""] - - if {$pluginsLegacy ne ""} { - if {$plugins eq ""} { - # - # We have no per-package config, but got a legacy - # config. - # - set plugins $pluginsLegacy - ns_log warning "richtext-xinha uses legacy parameters from acs-templating;\ - XinhaDefaultPlugins should be set in the package parameters of richtext-xinha, not in acs-templating." - } else { - # - # Config for this package and legacy config in - # acs-templating is set, ignore config from - # acs-templating. - # - ns_log warning "richtext-xinha ignores legacy parameters from acs-templating;\ - XinhaDefaultPlugins should be set in the package parameters of richtext-xinha, not in acs-templating;\ - when done, empty parameter setting for XinhaDefaultPlugins in acs-templating." - } + set plugins $::richtext::xinha::standard_plugins + } + + set xinha_plugins [list] + set oacs_plugins [list] + foreach e $plugins { + if {$e in {OacsFs OacsAttach}} { + lappend oacs_plugins '$e' + } else { + lappend xinha_plugins '$e' } } + if {[llength $oacs_plugins] > 0} { + lappend xinha_plugins \ + [subst {{ from: '/resources/richtext-xinha/openacs-plugins', load: \[[join $oacs_plugins ,]\] }}] + } + set xinha_plugins [join $xinha_plugins ,] - set quoted [list] - foreach e $plugins {lappend quoted '$e'} - set ::acs_blank_master(xinha.plugins) [join $quoted ", "] - set xinha_options "" foreach e {width height folder_id fs_package_id script_dir file_types attach_parent_id wiki_p} { if {[dict exists $options $e]} { append xinha_options "xinha_config.$e = '[dict get $options $e]';\n" } } - # - # Pass as well the actual package_id to xinha (for e.g. plugins) - # - append xinha_options "xinha_config.package_id = '[ad_conn package_id]';\n" - # DAVEB find out if there is a key datatype in the form + # DAVEB find out if there is a key datatype in the form. + # We look for a key element in the form and use it e.g. as the + # possible parent_id of a potential attachment. if {[info exists ::af_key_name($form_id)]} { set key [template::element get_value $form_id $::af_key_name($form_id)] append xinha_options "xinha_config.key = '$key';\n" } - + + # + # Pass as well the actual package_id to xinha (for e.g. plugins) + # + append xinha_options "xinha_config.package_id = '[ad_conn package_id]';\n" + if {[dict exists $options javascript]} { append xinha_options [dict get $options javascript] \n } - #ns_log notice "final ::acs_blank_master(xinha.options):\n$xinha_options" - set ::acs_blank_master(xinha.options) $xinha_options + set htmlarea_ids '[join $::acs_blank_master__htmlareas "','"]' # - # add required directives for content security policies + # Add the configuration via body script # - security::csp::require script-src 'unsafe-eval' - security::csp::require script-src 'unsafe-inline' + set conf [subst { + xinha_options = + { + _editor_lang: "[lang::conn::language]", + xinha_editors: \[ $htmlarea_ids \], + xinha_plugins: \[ $xinha_plugins \], + xinha_config: function(xinha_config) + { + $xinha_options + } + } + }] - + # + # Load the editor and everything necessary to the current page. + # + ::richtext::xinha::add_editor -conf $conf + + # + # do we need render_widgets? + # return "" } @@ -115,72 +131,168 @@ Render the xinha rich-text widgets. This function is created at a time when all rich-text widgets of this page are already - initialized. The function is controlled via the global variables + initialized. The function is controlled via the global + variable ::acs_blank_master(xinha) - ::acs_blank_master(xinha) - ::acs_blank_master(xinha.options) - ::acs_blank_master(xinha.plugins) - ::acs_blank_master(xinha.params) - ::acs_blank_master__htmlareas - } { # - # In case no xinha instances are created, or we are on a - # mobile browser, which is not supported via xinha, nothing - # has to be done (i.e. the plain text area will be shown) + # In case no xinha instances are created, nothing has to be + # done (i.e. the plain text area will be shown) # - if {![info exists ::acs_blank_master(xinha)] || [ad_conn mobile_p]} { + if {![info exists ::acs_blank_master(xinha)]} { return } - set ::xinha_dir /resources/richtext-xinha/xinha-nightly/ - set ::xinha_lang [lang::conn::language] # - # Xinha localization covers 33 languages, removing - # the following restriction should be fine. + # Since "template::head::add_javascript -src ..." prevents + # loading the same resource multiple times, we can perform the + # load in the per-widget initialization and we are done here. # - #if {$::xinha_lang ne "en" && $::xinha_lang ne "de"} { - # set ::xinha_lang en - #} + } - # We could add site wide Xinha configurations (.js code) into xinha_params - set xinha_params "" - if {[info exists ::acs_blank_master(xinha.params)]} { - set xinha_params $::acs_blank_master(xinha.params) + ad_proc ::richtext::xinha::resource_info { + {-version ""} + } { + + Get information about available version(s) of Xinha, either + from the local filesystem, or from CDN. + + } { + # + # If no version or Xinha package are specified, use the + # namespaced variables as default. + # + if {$version eq ""} { + set version ${::richtext::xinha::version} } - # Per call configuration - set xinha_plugins $::acs_blank_master(xinha.plugins) - set xinha_options $::acs_blank_master(xinha.options) + # + # Setup variables for access via CDN vs. local resources. + # + set resourceDir [acs_package_root_dir richtext-xinha/www/resources] + set resourceUrl /resources/richtext-xinha + set cdn //s3-us-west-1.amazonaws.com/xinha - # HTML ids of the textareas used for Xinha - set htmlarea_ids '[join $::acs_blank_master__htmlareas "','"]' - - template::head::add_script -type text/javascript -script " - xinha_editors = null; - xinha_init = null; - xinha_config = null; - xinha_plugins = null; - xinha_init = xinha_init ? xinha_init : function() { - xinha_plugins = xinha_plugins ? xinha_plugins : - \[$xinha_plugins\]; + if {[file exists $resourceDir/$version]} { + set prefix $resourceUrl/$version/xinha + set cdnHost "" + } else { + set prefix $cdn/xinha-$version + set cdnHost s3-us-west-1.amazonaws.com + } - // THIS BIT OF JAVASCRIPT LOADS THE PLUGINS, NO TOUCHING - if(!Xinha.loadPlugins(xinha_plugins, xinha_init)) return; + # + # Return the dict with at least the required fields + # + lappend result \ + resourceName "Xinha $version" \ + resourceDir $resourceDir \ + cdn $cdn \ + cdnHost $cdnHost \ + prefix $prefix \ + cssFiles {} \ + jsFiles {} \ + extraFiles {} \ + downloadURLs https://s3-us-west-1.amazonaws.com/xinha/releases/xinha-$version.zip \ + urnMap {} - xinha_editors = xinha_editors ? xinha_editors :\[ $htmlarea_ids \]; - xinha_config = xinha_config ? xinha_config() : new Xinha.Config(); - $xinha_params - $xinha_options - xinha_editors = - Xinha.makeEditors(xinha_editors, xinha_config, xinha_plugins); - Xinha.startEditors(xinha_editors); - } - //window.onload = xinha_init; - " - template::add_body_script -src ${::xinha_dir}XinhaCore.js - template::add_body_script -script "xinha_init();" + return $result } + ad_proc ::richtext::xinha::add_editor { + {-conf ""} + {-version ""} + {-order 10} + } { + + Add the necessary JavaScript and other files to the current + page. The naming is modeled after "add_script", "add_css", + ... but is intended to care about everything necessary, + including the content security policies. Similar naming + conventions should be used for other editors as well. + + This function can be as well used from other packages, such + e.g. from the xowiki form-fields, which provide a much higher + customization. + + } { + if {$version eq ""} { + set version ${::richtext::xinha::version} + } + + set resource_info [::richtext::xinha::resource_info \ + -version $version] + + set prefix [dict get $resource_info prefix] + + if {[dict exists $resource_info cdnHost] && [dict get $resource_info cdnHost] ne ""} { + security::csp::require script-src [dict get $resource_info cdnHost] + security::csp::require style-src [dict get $resource_info cdnHost] + security::csp::require img-src [dict get $resource_info cdnHost] + } + + template::add_body_script -src $prefix/XinhaEasy.js -script $conf + } + + ad_proc -private ::richtext::xinha::download { + {-version ""} + } { + + Download the Xinha package in the specified version and put + it into a directory structure similar to the CDN structure to + allow installation of multiple versions. When the local + structure is available, it will be used by initialize_widget. + + Notice, that for this automated download, the "unzip" program + must be installed and $::acs::rootdir/packages/www must be + writable by the web server. + + } { + # + # If no version is specified, use the namespaced variables as + # default. + # + if {$version eq ""} { + set version ${::richtext::xinha::version} + } + + set resource_info [::richtext::xinha::resource_info \ + -version $version] + + ::util::resources::download \ + -resource_info $resource_info \ + -version_dir $version + + set resourceDir [dict get $resource_info resourceDir] + + # + # Do we have unzip installed? + # + set unzip [::util::which unzip] + if {$unzip eq ""} { + error "can't install Xinha locally; no unzip program found on PATH" + } + + # + # Do we have a writable output directory under resourceDir? + # + if {![file isdirectory $resourceDir/$version]} { + file mkdir $resourceDir/$version + } + if {![file writable $resourceDir/$version]} { + error "directory $resourceDir/$version is not writable" + } + + # + # So far, everything is fine, unpack the editor package. + # + foreach url [dict get $resource_info downloadURLs] { + set fn [file tail $url] + util::unzip -overwrite \ + -source $resourceDir/$version/$fn \ + -destination $resourceDir/$version + } + } + } # Local variables: Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/Xinha.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/XinhaConfig.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/XinhaCore.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/XinhaLoader.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/XinhaLoader_readme.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/compression_readme.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/dialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/functionsIE.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/functionsMozilla.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/getHTML.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/htmlarea.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/htmlarea.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/inline-dialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/license.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/panel-dialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popupdiv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popupwin.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/release-notes.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/contrib/compress.bat'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/contrib/compress.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/contrib/compress_yui.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/contrib/compression_readme.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/contrib/lc_merge_strings.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/contrib/lc_parse_strings.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/contrib/php-xinha.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/contrib/test_server.py'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/Extended.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/ExtendedDemo.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/Newbie.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/XinhaConfig.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/custom.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/dynamic.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/ext_example-body.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/ext_example-dest.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/ext_example-menu.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/ext_example.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/ext_example.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/full_example-body.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/full_example-menu.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/full_example.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/full_example.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/full_example.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/simple_example.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/stylist.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/testbed.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/files/Extended.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/files/custom.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/files/dynamic.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/files/ext_example-body.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/files/ext_example-dest.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/files/ext_example-menu.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/files/full_example.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/examples/files/stylist.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/iconsets/Classic/iconset.xml'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/iconsets/Crystal/LICENSE'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/iconsets/Crystal/README'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/iconsets/Crystal/iconset.xml'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/iconsets/Tango/LICENSE'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/iconsets/Tango/README'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/iconsets/Tango/iconset.xml'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/images/tango/COPYING'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/b5.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/ch.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/cz.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/da.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/ee.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/el.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/eu.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/fa.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/fi.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/gb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/he.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/hu.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/it.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/lt.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/lv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/ro.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/se.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/sh.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/si.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/sr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/th.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/lang/vn.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/AboutBox/AboutBox.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/AboutBox/about.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/AboutBox/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/ColorPicker/ColorPicker.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/ColorPicker/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/CreateLink/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/CreateLink/link.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/CreateLink/link.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/CreateLink/pluginMethods.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/CreateLink/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Dialogs/DetachedDialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Dialogs/XinhaDialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Dialogs/dialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Dialogs/div-dialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Dialogs/inline-dialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Dialogs/panel-dialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Dialogs/popupwin.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/full-screen.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/FullScreen/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Gecko/Gecko.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Gecko/paraHandlerBest.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Gecko/paraHandlerDirty.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Gecko/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/GetHtml/DOMwalk.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/GetHtml/TransformInnerHTML.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/GetHtml/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InlineStyler/InlineStyler.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InsertImage/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InsertImage/insert_image.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InsertImage/insert_image.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InsertImage/pluginMethods.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InsertTable/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InsertTable/insert_table.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InsertTable/insert_table.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InsertTable/pluginMethods.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/InternetExplorer/InternetExplorer.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/Opera/Opera.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/modules/WebKit/WebKit.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/Abbreviation.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/abbreviation.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/abbr/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/abbr/en.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Abbreviation/popups/abbreviation.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/BackgroundImage/background-image.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/BackgroundImage/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/BackgroundImage/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/BackgroundImage/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/BackgroundImage/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/BackgroundImage/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/BackgroundImage/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/BackgroundImage/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/BackgroundImage/popups/bgimage.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CSS/CSS.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CSSDropdowns/CSSDropdowns.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CSSPicker/CSSPicker.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharCounter/CharCounter.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharCounter/char-counter.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharCounter/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharCounter/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharCounter/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharCounter/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharCounter/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharCounter/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharCounter/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/CharacterMap.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/CharacterMap.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/character-map.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/it.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/CharacterMap/popups/select_character.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ClientsideSpellcheck/clientside-spellcheck.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ClientsideSpellcheck/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ClientsideSpellcheck/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ClientsideSpellcheck/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ClientsideSpellcheck/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ClientsideSpellcheck/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/1.pl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/ContextMenu.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/context-menu.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/menu.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/el.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/he.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ContextMenu/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DefinitionList/DefinitionList.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DefinitionList/definition-list.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DefinitionList/definition-list.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DefinitionList/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DefinitionList/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DefinitionList/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DefinitionList/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DoubleClick/DoubleClick.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DoubleClick/double-click.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DynamicCSS/DynamicCSS.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DynamicCSS/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DynamicCSS/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DynamicCSS/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DynamicCSS/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DynamicCSS/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DynamicCSS/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/DynamicCSS/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/EditTag.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/edit-tag.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EditTag/popups/edit_tag.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/EnterParagraphs/enter-paragraphs.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/ASCIIMathML.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/Equation.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/example.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/readme.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/popups/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Equation/popups/operations.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/ExtendedFileManager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/Readme.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/backend.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/config.inc.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/editor.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/editorFrame.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/extended-file-manager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/file-picker.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/images.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/manager.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/prompt.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/resizer.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/thumbs.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/Classes/ExtendedFileManager.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/EditorContent.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/ImageEditor.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/dialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/dragTableCols.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/editor.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/editor.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/editorFrame.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/editorFrame.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/hover.htc'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/imagelist.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/images.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/manager.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/manager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/popup.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/slider.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/assets/wz_jsgraphics.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/demo_images/.htaccess'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/lang/da.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ExtendedFileManager/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Filter/filter.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Filter/filters/paragraph.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Filter/filters/word.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Filter/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Filter/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Filter/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/FindReplace.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/find-replace.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/fr_engine.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FindReplace/popups/find_replace.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/FormOperations.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/README'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/default_form.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/form-operations.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/formmail.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/iframe.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/panel.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FormOperations/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/Forms.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/forms.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/popups/fieldset.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/popups/form.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/popups/input.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/popups/label.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/popups/select.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Forms/popups/textarea.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/FullPage.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/full-page.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/test.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/he.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/lang/ro.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullPage/popups/docprop.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/full-screen.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/FullScreen/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/GenericPlugin/GenericPlugin.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/GenericPlugin/generic-plugin.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/GetHtml/GetHtml.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/GetHtml/get-html.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/HorizontalRule.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/horizontal-rule.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HorizontalRule/popups/edit_horizontal_rule.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlEntities/Entities.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlEntities/HtmlEntities.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlEntities/html-entities.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlEntities/iso-8859-1.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/README'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/html-tidy-config.cfg'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/html-tidy-logic.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/html-tidy.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/HtmlTidy/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/ImageManager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/README.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/backend.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/config.inc.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/ddt.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/editor.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/editorFrame.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/flickr.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/image-manager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/image-picker.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/images.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/manager.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/newFolder.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/resizer.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/smart-image.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/thumbs.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/youtube.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/Files.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/Flickr.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/GD.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/IM.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/ImageEditor.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/ImageManager.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/JSON.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/JSON_Compat.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/NetPBM.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/Thumbnail.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/Classes/Transform.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/EditorContent.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/ImageEditor.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/dialog.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/editor.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/editor.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/editorFrame.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/editorFrame.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/hover.htc'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/imagelist.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/images.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/manager.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/manager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/popup.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/slider.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/assets/wz_jsgraphics.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/demo_images/.htaccess'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/demo_images/linux/.htaccess'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/swfobject/expressinstall.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/swfobject/swfobject.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ImageManager/swfobject/swfobject_source.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/InsertAnchor.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/insert-anchor.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/insert-anchor.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertAnchor/popups/insert_anchor.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/insert-marquee.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/lang/it.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertMarquee/popups/insert_marquee.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertNote/InsertNote.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertNote/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPagebreak/InsertPagebreak.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPagebreak/insert-pagebreak.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPagebreak/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPagebreak/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPagebreak/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPagebreak/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPagebreak/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPagebreak/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPagebreak/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/InsertPicture.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/insert-picture.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/viewpicture.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertPicture/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/InsertSmiley.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/README.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/dialog.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/insert-smiley.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/smileys.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/popups/insertsmiley.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/smileys/smileys.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSmiley/smileys/smileys.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/InsertSnippet.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/InsertSnippet.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/demosnippets.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/insert-snippet.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/readme.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/snippets.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/snippets.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/snippets.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet/popups/insertsnippet.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet2/InsertSnippet.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet2/InsertSnippet2.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet2/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet2/readme.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet2/snippets.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet2/snippets.xml'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertSnippet2/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertWords/InsertWords.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/InsertWords/insert-words.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/LangMarks.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang-marks.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang-marks.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/LangMarks/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/Linker.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/link-picker.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/pluginMethods.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/scan.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/dTree/api.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/dTree/dtree.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/dTree/dtree.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/dTree/example01.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Linker/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/ListType.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/ListType.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/list-type.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/ListType/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/MootoolsFileManager.FileManager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/MootoolsFileManager.ImageManager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/MootoolsFileManager.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/MootoolsFileManager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/README.DEVELOPERS'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/backend.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/config.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/LICENSE'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/README.md'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/package.yml'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/FileManager.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Image.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/MimeTypes.ini'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Upload.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/getid3.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.archive.gzip.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.archive.szip.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.archive.tar.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.archive.zip.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio-video.asf.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio-video.flv.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio-video.mpeg.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio-video.nsv.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio-video.quicktime.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio-video.real.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio-video.riff.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio-video.swf.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.aac_adif.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.aac_adts.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.ac3.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.au.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.avr.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.bonk.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.dts.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.la.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.lpac.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.midi.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.monkey.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.mp3.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.mpc.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.mpc_old.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.optimfrog.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.rkau.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.shorten.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.tta.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.voc.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.vqf.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.wavpack.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.audio.xiph.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.graphic.bmp.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.graphic.gif.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.graphic.jpeg.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.graphic.pcd.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.graphic.png.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.graphic.tiff.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.lib.data_hash.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.lib.iconv_replacement.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.lib.image_size.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.misc.iso.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.tag.apetag.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.tag.id3v1.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.tag.id3v2.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Backend/Assets/getid3/module.tag.lyrics3.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Css/Additions.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Css/FileManager.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Demos/index.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Demos/manager.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Demos/mootools-core.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Demos/mootools-more.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Demos/selectImage.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Demos/tinymce.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.cs.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.da.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.en.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.fi.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.it.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.pt.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Language/Language.se.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Source/Additions.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Source/FileManager.TinyMCE.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Source/FileManager.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Source/Gallery.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Source/Uploader.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Source/Uploader/Fx.ProgressBar.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/MootoolsFileManager/mootools-filemanager/Source/Uploader/Swiff.Uploader.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/NoteServer/note-server.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/NoteServer/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/NoteServer/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/NoteServer/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/NoteServer/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/NoteServer/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/NoteServer/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/NoteServer/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/NoteServer/popups/codenote.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsAttach/oacs-attach.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsAttach/oacs-attach.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/OacsFs.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/fullscreen.adp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/fullscreen.tcl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/oacs-fs.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/lang/empty'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/lang/en.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/popups/blank.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/popups/file-selector.adp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.4.2.2 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/popups/file-selector.tcl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/popups/insert-ilink.adp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/popups/insert-ilink.tcl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3.2.2 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/popups/insert-image.adp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/OacsFs/popups/insert-image.tcl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PSFixed/PSFixed.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PSLocal/PSLocal.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PSLocal/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PSLocal/gears_init.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PSServer/PSServer.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PSServer/backend.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PSServer/config.inc.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PSServer/demo_images/.htaccess'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/PasteText.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/paste-text.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PasteText/popups/paste_text.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PersistentStorage/PersistentStorage.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PersistentStorage/dialog.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PersistentStorage/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PreserveScripts/PreserveScripts.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PreserveScripts/php.svg'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/PreserveScripts/preserve-scripts.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/QuickTag.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/quick-tag.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/tag-lib.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/QuickTag/popups/quicktag.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveOnBlur/SaveOnBlur.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveSubmit/README.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveSubmit/SaveSubmit.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveSubmit/save-submit.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveSubmit/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveSubmit/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveSubmit/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveSubmit/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveSubmit/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SaveSubmit/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/SetId.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/set-id.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/set-id.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SetId/popups/set_id.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/SmartReplace.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/readme.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/smart-replace.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/img/SmartReplace.svg'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SmartReplace/popups/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/README'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/SpellChecker.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/aspell_setup.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/readme-tech.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/spell-check-logic.cgi'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/spell-check-logic.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/spell-check-savedicts.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/spell-check-style.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/spell-check-ui.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/spell-check-ui.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/spell-checker.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/cz.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/da.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/he.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/hu.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SpellChecker/lang/ro.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/Stylist.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Stylist/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/SuperClean.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/pluginMethods.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/super-clean.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/tidy.php'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/filters/paragraph.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/filters/word.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/lang/da.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/SuperClean/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/TableOperations.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/table-operations.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/cz.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/da.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/el.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/fi.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/he.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/it.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/ro.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/popups/dialogMergeCells.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/popups/dialogRowCell.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/popups/dialogTable.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/TableOperations/popups/merge_cells.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/template.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/template.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/lang/it.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/Template/popups/template.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/UnFormat.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/dialog.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/un-format.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/lang/pt_br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnFormat/popups/unformat.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnsavedChanges/UnsavedChanges.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnsavedChanges/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnsavedChanges/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/UnsavedChanges/lang/fr_ca.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/plugins/WysiwygWrap/WysiwygWrap.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/about.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/blank.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/color_picker.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/custom2.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/editor_help.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/insert_image.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/insert_image.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/insert_table.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/link.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/link.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/old_insert_image.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/popup.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/popup.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/popups/select_color.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/blue-look/skin.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/blue-look/skin.xml'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/blue-metallic/skin.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/green-look/skin.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/inditreuse/README'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/inditreuse/skin.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/silva/skin.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/silva/skin.xml'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/titan/README'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/titan/skin.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/xp-blue/skin.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/resources/xinha-nightly/skins/xp-green/skin.css'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/sitewide-admin/download.tcl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/sitewide-admin/index.adp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/richtext-xinha/www/sitewide-admin/index.tcl'. Fisheye: No comparison available. Pass `N' to diff?