Talk:MediaWiki

From Jmol
Revision as of 19:56, 8 April 2006 by NicolasVervelle (talk | contribs) (TODO)
Jump to navigation Jump to search

Please, post your suggestions concerning the Jmol extension here.



Use a single <jmol> tag

Suggestion

The idea is to use a single tag (<jmol>) instead of one tag for each component (<jmol>, <jmolButton>, ...).

The current version :

<jmol>
  Applet definition
</jmol>
<jmolButton>
  Button definition
</jmolButton>

The next version :

<jmol>
  <jmolApplet>
    Applet definition
  </jmolApplet>
  <jmolButton>
    Button definition
  </jmolButton>
</jmol>

Comments

Adding other components

Suggestion

List of components to add (feel free to add other components) :

  • Checkbox
  • Radio button

Comments

Reading files

Suggestion

Currently, the only way of giving a datafile to the applet is directly through the <contents>.

Other ways need to be available:

  • Accessing a file previously uploaded in MediaWiki (how can we do ?)
  • Accessing a file through an URL. That may require several other modifications:
    • Possibility to disable this feature in LocalSettings.php
    • Possibility to use the signed applet to access a remote file (configurable in LocalSettings.php)

Comments