[system] / branches / rel-2-3-dev / pg / lib / WeBWorK / PG / Translator.pm Repository:
ViewVC logotype

Log of /branches/rel-2-3-dev/pg/lib/WeBWorK/PG/Translator.pm

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 4721 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Dec 9 00:18:00 2006 UTC (6 years, 5 months ago) by sh002i
File length: 56796 byte(s)
Diff to previous 4402
backport (sh002i): SECURITY: tighter constraints on which macro files
can be loaded without restriction. Previously, any file that *contained*
the strings PG.pl, dangerousMacros.pl, or IO.pl would be loaded with an
empty opmask.

This is the second attempt to close this hole. The previous attempt
assumed that | binds tighter than ^ and $, which is not true. (Noticed
by dpvc). It also failed to escape metacharacters in the file names.

Revision 4402 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Aug 24 21:42:16 2006 UTC (6 years, 9 months ago) by sh002i
File length: 56639 byte(s)
Diff to previous 4396
backport (dpvc): Fixed the problem I pointed out at MathFest where some
errors were not being reported in the traditional num_cmp() function.
(Things like 'x+3' in a numeric field would not be reported as an error
and x would be treated as 0).  This is due to a change in version 1.14
when Sam was normalizing the error reporting code; he didn't notice that
warn had been rerouted to die in PG_answer_eval().  I have replaced it.

Revision 4396 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Aug 24 21:07:52 2006 UTC (6 years, 9 months ago) by
File length: 56582 byte(s)
Diff to previous 4134
This commit was manufactured by cvs2svn to create branch 'rel-2-3-dev'.

Revision 4134 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 19 15:13:33 2006 UTC (6 years, 11 months ago) by dpvc
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 56582 byte(s)
Diff to previous 3426
Fixed grade_problem so taht is uses the safe compartment.  (This is
important because the problem can supply its own grader, and that code
shoudl be run in the safe compartment, just like the answer checkers
are.  Without this, graders could call PG_restricted_eval() and
actually get access to the full WW environment rather than the safe
compartment.)

Revision 3426 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jul 29 19:44:04 2005 UTC (7 years, 9 months ago) by sh002i
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 56509 byte(s)
Diff to previous 3214
Fix use of $SIG{__WARN__} and $SIG{__DIE__}.

* Each change to $SIG{__WARN__} and $SIG{__DIE__} is now dynamically
scoped with "local", rather than changing globally and then restoring at
the end of the block.

* The special value "DEFAULT" is used instead of sub {CORE::die(@_)} or
sub {CORE::warn(@_)} when preparing to eval STRING code.

* Where $SIG{__WARN__} and $SIG{__DIE__} are overridden to do
preprocessing with PG_errorMessage, the previously installed handlers
will be called instead of the built-in warn or die functions after
preprocessing occurs. (For example, the warn and die handlers defined in
Apache::WeBWorK or the warn handler defined in WeBWorK::PG will be
called.)

* The behavior in process_answers is modified so that the custom
handlers are installed once before the answer evaluation loop. This
causes them to be in effect during the setup/teardown code, but I don't
think this will be a problem.

Revision 3214 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Apr 9 18:33:07 2005 UTC (8 years, 1 month ago) by gage
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 56463 byte(s)
Diff to previous 3187
Provide a default warning subroutine if none has been defined.

Revision 3187 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Feb 26 23:03:12 2005 UTC (8 years, 2 months ago) by gage
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 56273 byte(s)
Diff to previous 3093
Allow subclasses of AnswerEvalutor to be used.  Check for a match
with a substring AnswerEvaluator instead of equality.

Revision 3093 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Jan 16 00:52:49 2005 UTC (8 years, 4 months ago) by gage
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 56273 byte(s)
Diff to previous 3071
Undoing some of the temporary changes I made to the warn message.

This may break what happens with xmlrpc however. (sigh)

Revision 3071 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Jan 1 22:29:41 2005 UTC (8 years, 4 months ago) by gage
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 56145 byte(s)
Diff to previous 2698
Temporary modifications which allow the Warning mechanisms to work when
using the XML access methods.

This needs to be looked at again.  There is also a problem with defining
permissions for creating directories.  There is a temporary #FIXME
that seems to work.

Revision 2698 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 28 13:52:33 2004 UTC (8 years, 8 months ago) by dpvc
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 57635 byte(s)
Diff to previous 2167
Add better error reporting in PG translator.  In particular, these
changes add two new features:

	1)  produce a full stack trace when a .pg file dies, and
	2)  convert (eval nnn) references to filenames, when
	    possible, in warn and die messages while processing a
	    .pg file.

There is also a change in the webwork tree that is needed to make this
all work, so be sure to apply updates in both trees.

Revision 2167 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat May 22 22:32:43 2004 UTC (9 years ago) by gage
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 53297 byte(s)
Diff to previous 2158
Moved be_strict after package main;

Revision 2158 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat May 22 20:48:51 2004 UTC (9 years ago) by gage
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 53298 byte(s)
Diff to previous 2157
We are now using ww_strict.pm instead of strict.pm in be_strict;

Revision 2157 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat May 22 20:46:20 2004 UTC (9 years ago) by gage
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 53303 byte(s)
Diff to previous 2142
We are using our own version of strict.pm that has a require Carp;  commented out.
This is included in be_strict which is used to implement strict within PG macro files
which need to be evaluted inside the Safe compartment

Revision 2142 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri May 21 23:54:00 2004 UTC (9 years ago) by apizer
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 53295 byte(s)
Diff to previous 2057
Replaced PGsort with a version that uses quick sort.  This fixes the
problem the old PGsort had with Perl compiled with ithreads.

Arnie

Revision 2057 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat May 8 22:53:03 2004 UTC (9 years ago) by gage
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 52568 byte(s)
Diff to previous 1759
Preliminary changes that may eventually allow us to solve the be_strict problem for 5.8.0

Revision 1759 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jan 26 16:59:30 2004 UTC (9 years, 4 months ago) by gage
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 51690 byte(s)
Diff to previous 1556
Minor change to the definition of the timer

Revision 1556 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Oct 1 02:40:09 2003 UTC (9 years, 7 months ago) by sh002i
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 51680 byte(s)
Diff to previous 1553
changed the way the IO modules work: shared subroutines are in IO now,
and IO has a hash %WeBWorK::PG::IO::SHARE which can be added to
Translator's %shared_subroutine_hash directly.

Revision 1553 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue Sep 30 01:20:55 2003 UTC (9 years, 7 months ago) by sh002i
Original Path: trunk/pg/lib/WeBWorK/PG/Translator.pm
File length: 51738 byte(s)
added files from WW2

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

aubreyja at gmail dot com
ViewVC Help
Powered by ViewVC 1.0.9