Difference between revisions of "Jmol JavaScript Object/Legacy"
AngelHerraez (talk | contribs) (→Table of equivalence old vs. new functions) |
AngelHerraez (talk | contribs) (→Table of equivalence old vs. new functions) |
||
Line 18: | Line 18: | ||
=== Table of equivalence old vs. new functions === | === Table of equivalence old vs. new functions === | ||
− | The main | + | The main methods formerly implemented in {{file|Jmol.js}} (and more!) have now [[Jmol_JavaScript_Object/Functions|equivalent functions]] that can be found in [{{SVN JSmol Trunk}}jsmoljs/JSmolApi.js JSmolApi.js] |
-- also included in the distribution: {{file|jsmol.zip}} > {{folder|js}} > {{file|JSmolApi.js}} | -- also included in the distribution: {{file|jsmol.zip}} > {{folder|js}} > {{file|JSmolApi.js}} | ||
Line 24: | Line 24: | ||
|- | |- | ||
! Legacy (Jmol.js) !! New (JSmol.min.js) | ! Legacy (Jmol.js) !! New (JSmol.min.js) | ||
+ | |- style="text-align:center; font-style:italic;" | ||
+ | | [[Jmol_JavaScript_Object/Legacy/Jmol_Js|documentation]] || [[Jmol_JavaScript_Object/Functions|documentation]] | ||
|- | |- | ||
| jmolInitialize || properties of the <code>Info</code> variable | | jmolInitialize || properties of the <code>Info</code> variable |
Revision as of 09:57, 22 November 2019
Converting legacy web pages to JSmol
Contents
Overview
It is not hard to convert pages that used the Jmol Applet to use the HTML5 versions of JSmol. The basic sequence includes:
- Switching from Jmol.js to JSmol.min.js
- Adding the j2s folder/directory to your website.
- Setting parameters in the
Info
variable. - Modifying function calls from the format
jmolXxxx(..., appletExtension)
toJmol.jmolXxxx(appletID, ...)
(see below). Depending upon the magnitude of the problem, you may want to write (but read the next section first!) a set of JavaScript functions that allow you to keep your page source code unchanged. For example, if you use the simplest form of jmolButton, the converting function would be:
function jmolButton(script, label) { Jmol.jmolButton(myJmol, script, label) }
Or you can modify your page source code to use the new format. Or, easiest solution, use the 'adapter' library described below.
Table of equivalence old vs. new functions
The main methods formerly implemented in Jmol.js (and more!) have now equivalent functions that can be found in JSmolApi.js -- also included in the distribution: jsmol.zip > js > JSmolApi.js
Legacy (Jmol.js) | New (JSmol.min.js) |
---|---|
documentation | documentation |
jmolInitialize | properties of the Info variable
|
jmolApplet | Jmol.getApplet or Jmol.getAppletHtml |
jmolButton | Jmol.jmolButton |
jmolLink | Jmol.jmolLink |
jmolCheckbox | Jmol.jmolCheckbox |
jmolRadioGroup | Jmol.jmolRadioGroup or Jmol.jmolRadio |
jmolMenu | Jmol.jmolMenu |
jmolSetAppletColor | color property of the Info variable, or use the background command in a script
|
jmolResizeApplet | Jmol.resizeApplet |
jmolHtml | Jmol.jmolHtml |
jmolBr | Jmol.jmolBr |
jmolScript | Jmol.script |
jmolScriptWait | Jmol.scriptWait, but you should consider using Jmol.evaluateVar instead |
jmolScriptWaitAsArray | Jmol.scriptWaitAsArray |
jmolCommandInput | Jmol.jmolCommandInput |
jmolSaveOrientation | use Jmol.script with save orientation command
|
jmolRestoreOrientation | use Jmol.script with restore orientation command
|
jmolRestoreOrientationDelayed | use Jmol.script with restore orientation command
|
jmolSetDocument | Jmol.setDocument, usually in combination with Jmol.getAppletHtml |
Conversion using the Jmol2.js 'adapter' library
What has been just described (i.e., writing custom functions that allow to keep using the old calls as used with Jmol.js) has been implemented in a special new Jmol2.js 'adapter' library. If you use this, you can leave your existing calls to jmolApplet(), jmolButton(), jmolLink() etc. You just need to:
method A: | method B: |
---|---|
|
|
(†) That is described in the Installation and Initialization sections of this page.
For more details, read inside the Jmol2.js file itself.
- In the Jmol download, Jmol-14.x.x-binary.zip > jsmol.zip > jsmol\js\Jmol2.js
- In the JSmol repository
- at StOlaf
Upgrading Jmol without using JSmol
Note: since suport for Java applets is being removed from all major browsers, this procedure will most likely not work any more.
If you have a legacy site that uses Jmol.js, and you would prefer to stick with Java and just upgrade your site so that it still works, then all you have to do is the following:
- Download the latest Jmol ZIP file distribution.
- Extract all the JmolAppletSigned0*.jar files in the applet directory (you should not be using the JmolApplet0*.jar files any more, unless you are certain what you are doing, since the unsigned applet will be blocked in browsers).
- Use the most recent version of Jmol.js that you have, or retrieve it from St. Olaf.
- Upgrade your site's Jmol.js and your JAR files with the files you have extracted.
Everything should work as before, but users will see a much kinder, more welcoming warning message the first time they access the new applet. Of course they will still have to give permission for the applet to be run, maybe in several dialogs. Please be aware that most users will not be able to see Jmol applets in their browser.