Version 4 of Tcl/Tk plugin

Updated 2014-10-23 02:55:59 by LAM

The Tcl/Tk plugin was made to display in a web browser some widgets and functionalities usually found in desktop-based Tcl/Tk applications. As of March 2010, it is compatible with Tcl 8.4.

See also:


LAM - 2014-10-23 02:55:59

IMPORTANT

To someone who can modify the xpi file ...

The "install.js" was deprecated long time ago in favor of an "install.rdf" file manifesto.

Since the plugin (at least in Win7) is working ok, would be easy to fix the xpi file:

  • Delete the install.js
  • Create a subdirectory "plugins" and move there all the files.
  • Add a install.rdf file like that ...
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#">
  <Description about="urn:mozilla:install-manifest">
        <em:id>[email protected]</em:id>
        <em:version>3.1</em:version>
        <em:targetApplication>
         <Description>
          <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
          <em:minVersion>1.5</em:minVersion>
          <em:maxVersion>33.5</em:maxVersion>
         </Description>
        </em:targetApplication>
        <em:name>Tcl Plugin</em:name>
        <em:unpack>true</em:unpack>
        <em:description>TCL-TK Plugin 3.1</em:description>
        <em:homepageURL>http:/http://www.tcl.tk/software/plugin</em:homepageURL>
  </Description>
</RDF>

Work for me on Win7-FF 33.*

Note: maxVersion could be the most problematic item.