Difference between revisions of "PG language enhancements"

From WeBWorK_wiki
Jump to navigation Jump to search
(Created page with '* PGalias.pm -- finding external resources for a question ** (PGload.pm does something similar searching for macro files) ** findAppletCodebase() also does something similar **…')
 
m (added tag)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
  +
=== alias() -- locating external resources ===
  +
  +
 
* PGalias.pm -- finding external resources for a question
 
* PGalias.pm -- finding external resources for a question
 
** (PGload.pm does something similar searching for macro files)
 
** (PGload.pm does something similar searching for macro files)
Line 7: Line 10:
 
** if applets are referenced they should be indexed in a similar manner.
 
** if applets are referenced they should be indexed in a similar manner.
   
  +
  +
=== Answer blanks ===
   
 
* Answer blank handling -- PGanswergroup.pm, PGresponsegroup.pm
 
* Answer blank handling -- PGanswergroup.pm, PGresponsegroup.pm
   
  +
=== Matrices ===
 
* Update and consolidate the handling of matrices
 
* Update and consolidate the handling of matrices
  +
** There are currently at least two types.
  +
*** MathObject matrices -- which are essentially Matrix valued Formulas -- they do at best simple calculating but their input output mechanisms are pretty good.
  +
*** A subclass (Matrix) of RealMatrices.pm from CPAN. The subclass handles complex numbers, and does a good deal of matrix numerical analysis (LR decomposition and so forth)
  +
*** The namespaces of the two types of matrices interfere with each other so they are hard to use together -- that would be the first order of business -- disambiguate the two.
 
** Fix the coloring of answer blanks so that works with matrices as well.
 
** Fix the coloring of answer blanks so that works with matrices as well.
  +
  +
  +
  +
=== Graphic commands and objects ===
  +
  +
  +
  +
  +
  +
* JavaScript options for graphics (including HTML5)
  +
** investigate JSXgraphics.js and create an API for WW questions: http://jsxgraph.uni-bayreuth.de/wp/
  +
** other options: Process.js
  +
  +
  +
* Implement tizk() graphics command (see Paul Pearson's design)
  +
  +
  +
=== Ongoing adjustments to Applet API ===
  +
  +
  +
[[Category:Authors]]

Latest revision as of 19:24, 22 June 2021

alias() -- locating external resources

  • PGalias.pm -- finding external resources for a question
    • (PGload.pm does something similar searching for macro files)
    • findAppletCodebase() also does something similar
    • use unique ID file names -- so you can't snoop things like psvn numbers, login names and so forth
    • factor code so that a greater variety of resource types can be added easily currently we have .html, .png, .gif -- I think svg, jpeg, could be added and ???
    • save the paths to resources used so that we can add some facility to download the resources as well as the question on export -- this will facilitate sharing problems.
    • if applets are referenced they should be indexed in a similar manner.


Answer blanks

  • Answer blank handling -- PGanswergroup.pm, PGresponsegroup.pm

Matrices

  • Update and consolidate the handling of matrices
    • There are currently at least two types.
      • MathObject matrices -- which are essentially Matrix valued Formulas -- they do at best simple calculating but their input output mechanisms are pretty good.
      • A subclass (Matrix) of RealMatrices.pm from CPAN. The subclass handles complex numbers, and does a good deal of matrix numerical analysis (LR decomposition and so forth)
      • The namespaces of the two types of matrices interfere with each other so they are hard to use together -- that would be the first order of business -- disambiguate the two.
    • Fix the coloring of answer blanks so that works with matrices as well.


Graphic commands and objects


  • Implement tizk() graphics command (see Paul Pearson's design)


Ongoing adjustments to Applet API