[system] / trunk / webwork2 / lib / WeBWorK / ContentGenerator / Instructor / ProblemSetDetail.pm Repository:
ViewVC logotype

Log of /trunk/webwork2/lib/WeBWorK/ContentGenerator/Instructor/ProblemSetDetail.pm

Parent Directory Parent Directory


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

Revision 3102 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jan 25 21:22:35 2005 UTC (8 years, 4 months ago) by toenail
File length: 45756 byte(s)
Diff to previous 3061
display mode was inadvertently reset with other problem/set elements
that are safe to reset (rather than keep sticky) since they will be updated
from the newly saved database record or thrown away as expected

Revision 3061 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Dec 21 17:47:57 2004 UTC (8 years, 5 months ago) by toenail
File length: 45730 byte(s)
Diff to previous 3046
Fixed minor display problem where empty (not-overriden) date values
were being displayed as 12/31/1969

Closes #748

Revision 3046 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Dec 18 21:22:20 2004 UTC (8 years, 5 months ago) by gage
File length: 45476 byte(s)
Diff to previous 3036
Modifications to make sure that problems with weight 0
print weight as 0 rather than as a blank.

This addresses bug  #730

Revision 3036 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Dec 17 17:03:43 2004 UTC (8 years, 5 months ago) by gage
File length: 45363 byte(s)
Diff to previous 2966
Added a link which allows one to add a blank problem to an existing set.

Revision 2966 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Oct 27 17:48:05 2004 UTC (8 years, 6 months ago) by toenail
File length: 44898 byte(s)
Diff to previous 2952
Every problem after one that was marked as a repeat was being marked as a repeat

closes #725

Revision 2952 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 21 23:56:21 2004 UTC (8 years, 7 months ago) by gage
File length: 44876 byte(s)
Diff to previous 2948
Adjusted the headers for the dates

Revision 2948 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 21 01:44:14 2004 UTC (8 years, 7 months ago) by sh002i
File length: 44822 byte(s)
Diff to previous 2913
added "User Value" and "Global Value" headers (bug #719)

Revision 2913 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Oct 13 01:55:15 2004 UTC (8 years, 7 months ago) by sh002i
File length: 44698 byte(s)
Diff to previous 2904
optimizations in database access (makes a big difference).

My notes:

Here's the initial timing data for a set with 10 problems:

TIMING 57300 2 1097622363.881851 (16.734902) mth162: END (assumed)

$mergedRecord is never used in FieldHTML(). However, it is populated
with a merged set or problem, which requires two database calls and a
merge operation. It appears to be OK to get rid of these calls
altogether.

TIMING 57582 0 1097624803.340321 (11.219321) mth162: END (assumed)

i'm not as worried about the several DB calls in
handle_problem_numbers(), since that only happens when "Save Changes" is
clicked. not looking at those for now...

in initialize(), the global set is fetched from the database at the
beginning (and put into $setRecord). then it is fetched again in two
places, first in a conditional if the "submit_changes" param is defined,
and then in the following conditional, when "submit_changes" is defined
and there was no error. taking this out...

(those conditionals are pretty weird to begin with. i would have
expected something more like "if (submit_changes) { ... unless (error) {
... } }". probably from grafting code together?)

ok, the big one is getting pre-fetched records into FieldHTML. I added
$setRecord and $problemRecord parameters to FieldHTML (and $Set and
$Problem parameters to FieldTable to pass through to FieldHTML), and
pre-fetch GlobalProblems, UserProblems, and MergedProblems en masse
before going through the problem IDs in body().

TIMING 58456 0 1097632191.012939 (4.516615) mth162: END (assumed)

And it's only a little more than that when viewing for a particular
user:

TIMING 58453 0 1097632169.074723 (6.513201) mth162: END (assumed)

Revision 2904 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 12 18:13:58 2004 UTC (8 years, 7 months ago) by gage
File length: 43078 byte(s)
Diff to previous 2901
Changed "refresh" to "refresh display" as name for button in
ProblemSetDetail
Added link to the
File Manager

Revision 2901 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 12 01:02:36 2004 UTC (8 years, 7 months ago) by toenail
File length: 43062 byte(s)
Diff to previous 2841
Added Mark Correct? option
Added date checking
fixed some issues with sticky values

Revision 2841 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 29 15:26:28 2004 UTC (8 years, 7 months ago) by toenail
File length: 39676 byte(s)
Diff to previous 2838
Make sure that all request param data defaults to at least ""
Fixed Try it links

Closes #695, 697

Revision 2838 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 28 21:07:53 2004 UTC (8 years, 7 months ago) by apizer
File length: 39384 byte(s)
Diff to previous 2834
Increase size of boxes for editing open date, etc. so that time zones
show up.

Arnie

Revision 2834 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 27 19:08:47 2004 UTC (8 years, 7 months ago) by toenail
File length: 39384 byte(s)
Diff to previous 2817
Preserves sticky values on all form submissions
Added reset form button to delete any unsaved changes
Added file error messgaes for headers and problems with
non-existant, invalid, or duplicate filenames

Revision 2817 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 23 13:09:33 2004 UTC (8 years, 8 months ago) by toenail
File length: 37000 byte(s)
Diff to previous 2816
undefined value was causing unnecessary warns

Revision 2816 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 23 12:59:53 2004 UTC (8 years, 8 months ago) by toenail
File length: 36994 byte(s)
Diff to previous 2807
Added ComboBoxes for header information
Allows user to enter a user specified value
or to select from currently existing header files

Revision 2807 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 21 20:01:25 2004 UTC (8 years, 8 months ago) by toenail
File length: 35002 byte(s)
Diff to previous 2794
Added new setCountMessage so that ProblemSetDetail can say:
"User toenail has been assigned x sets"

Revision 2794 - (view) (download) (as text) (annotate) - [select for diffs]
Added Fri Sep 17 19:40:42 2004 UTC (8 years, 8 months ago) by toenail
File length: 34559 byte(s)
Replaces ProblemSetEditor.pm and ProblemList.pm as primary form of editing
set/problem information.

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