Difference between revisions of "Changes in global.conf.dist from Release 2.4.5 to 2.4.7"

From WeBWorK_wiki
Jump to navigation Jump to search
(New page: There are only a few additions to global.conf.dist for release 2.4.7. Add standard locations to search for macros in the NationalProblemLibrary # # The macro file search path. Each...)
 
m (marked as historical, added tags)
 
Line 1: Line 1:
  +
{{Historical}}
  +
 
There are only a few additions to global.conf.dist for release 2.4.7.
 
There are only a few additions to global.conf.dist for release 2.4.7.
   
Line 27: Line 29:
   
 
Some minor spelling errors were corrected and comments were added.
 
Some minor spelling errors were corrected and comments were added.
  +
  +
  +
[[Category:Release_Notes]]

Latest revision as of 20:48, 16 June 2021

This article has been retained as a historical document. It is not up-to-date and the formatting may be lacking. Use the information herein with caution.

There are only a few additions to global.conf.dist for release 2.4.7.

Add standard locations to search for macros in the NationalProblemLibrary

#
#  The macro file search path.  Each directory in this list is seached
#  (in this order) by loadMacros() when it looks for a .pl file.
#
$pg{directories}{macrosPath} = [
   ".",                     # search the problem file's directory
   $courseDirs{macros},
   $pg{directories}{macros},
   "$courseDirs{templates}/Library/macros/Dartmouth",
   "$courseDirs{templates}/Library/macros/Union",
   "$courseDirs{templates}/Library/macros/NAU",
   "$courseDirs{templates}/Library/macros/Michigan",
];

Added JavaApplet module to list of modules to be loaded

# The first item of each list is the module to load. The remaining items are
# additional packages to import.
${pg}{modules} = [
..............
	[qw(Applet FlashApplet JavaApplet)],
];

Some minor spelling errors were corrected and comments were added.