[system] / trunk / webwork-modperl / lib / WeBWorK / ContentGenerator / Login.pm Repository:
ViewVC logotype

Log of /trunk/webwork-modperl/lib/WeBWorK/ContentGenerator/Login.pm

Parent Directory Parent Directory


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

Revision 1684 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Dec 24 00:59:25 2003 UTC (9 years, 4 months ago) by sh002i
File length: 3967 byte(s)
Diff to previous 1683
added automatic guest logins:

With the presence of a "login_practice_user" paramter, Authen.pm will
log the user in using the first unused practice user account. Login.pm
now displays a "Guest Login" button that sends the above parameter, but
only when the course has practice users. Currently, cookies are not sent
for practice users.

Revision 1683 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Dec 23 06:03:33 2003 UTC (9 years, 4 months ago) by sh002i
File length: 3364 byte(s)
Diff to previous 1663
added cookie support for authenticaion. the "WeBWorKAuthentication"
cookie is used to retrieve the "user" and "key" parameters. the cookie
is sent if a "send_cookie" parameter is present, and persists for 30
days unless canceled by an explicit "logout".

Revision 1663 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Dec 9 01:12:32 2003 UTC (9 years, 5 months ago) by sh002i
File length: 3148 byte(s)
Diff to previous 1469
Normalized headers. All files now contain the text below as a header.
This is important since all files now (a) use the full name of the
package, (b) assign copyright to "The WeBWorK Project", (c) give the
full path of the file (relative to CVSROOT) instead of simply the file
name, and (d) include license and warranty information.

Here is the new header:

################################################################################
# WeBWorK Online Homework Delivery System
# Copyright © 2000-2003 The WeBWorK Projcct, http://openwebwork.sf.net/
# $CVSHeader$
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of either: (a) the GNU General Public License as published by the
# Free Software Foundation; either version 2, or (at your option) any later
# version, or (b) the "Artistic License" which comes with this package.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See either the GNU General Public License or the
# Artistic License for more details.
################################################################################

Revision 1469 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 16 01:32:10 2003 UTC (9 years, 9 months ago) by gage
File length: 2491 byte(s)
Diff to previous 1464
Login reads material from
login_info(.txt) in the top
directory of the course and places
on the right side of the page.

ProblemSets does the same from
a file called course_info.txt
--Mike

Revision 1464 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Aug 15 18:12:32 2003 UTC (9 years, 9 months ago) by gage
File length: 2142 byte(s)
Diff to previous 825
Added a note alerting the login user to the existence of practice1,
practice2 accounts.  This is a temporary fix for the bug report asking
for a login_info.txt window.
--Mike

Revision 825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon May 12 23:49:50 2003 UTC (10 years ago) by malsyned
File length: 1991 byte(s)
Diff to previous 818
Fixed BUG #16:
"Logging out from a practice user and logging back in doesn't work
right"
http://webwork3/bugzilla/show_bug.cgi?id=16
--Dennis

Revision 818 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Apr 25 04:51:37 2003 UTC (10 years ago) by sh002i
File length: 1971 byte(s)
Diff to previous 809
modev more content generators over to the new WWDBv2 API. fixed some
bugs.
-sam

Revision 809 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 17 21:30:57 2003 UTC (10 years, 1 month ago) by sh002i
File length: 2290 byte(s)
Diff to previous 748
changed the name of the "courseEnvironment" field in the
ContentGenerator object to "ce", to match the style and conciesness of
the existing "r" and new "db" fields.
-sam

Revision 748 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Feb 26 18:39:07 2003 UTC (10 years, 2 months ago) by malsyned
File length: 2305 byte(s)
Diff to previous 646
Added the <!--#if loggedin="1"--> template escape.  It evaluates to true
on every content generator except Login.pm and Logout.pm.  Used it to
make the barebones template look cleaner on the login page.
-Dennis

Revision 646 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Nov 23 00:25:40 2002 UTC (10 years, 5 months ago) by sh002i
File length: 2194 byte(s)
Diff to previous 494
added REAL logout support. keys now get invalidated at logout.
also, fixed a bug in classlist (see the diff).
also, added a sub to Utils (see the diff).
-sam

Revision 494 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Aug 21 18:31:20 2002 UTC (10 years, 8 months ago) by sh002i
File length: 2167 byte(s)
Diff to previous 455
updated copyright header.
-sam

Revision 455 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Aug 5 21:34:18 2002 UTC (10 years, 9 months ago) by sh002i
File length: 2189 byte(s)
Diff to previous 449
"normalized" files:
- (c) header on all files
- standard order of preamble lines:
	1. (c) header
	2. package PACKAGENAME;
	3. short summary of the package (pod's NAME section)
	4. use - pragmatic modules
	5. use - standard perl modules
	6. use - CPAN modules
	7. use - webwork modules
- ALWAYS use strict and use warnings
- use "use base" rather than "our @ISA"
so now we can be happy.
-sam

Revision 449 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Aug 1 20:23:22 2002 UTC (10 years, 9 months ago) by sh002i
File length: 1873 byte(s)
Diff to previous 444
more CGI fixes, started playing around with ProblemSets.
-sam

Revision 444 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jul 31 19:32:00 2002 UTC (10 years, 9 months ago) by sh002i
File length: 1909 byte(s)
Diff to previous 443
fixed some cgi stuff. apparently, it doesn't like the "CGI->" style very
much (it prints "CGI" all over the place), so i switched to "CGI::"
style.
-sam

Revision 443 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jul 31 18:14:05 2002 UTC (10 years, 9 months ago) by sh002i
File length: 1856 byte(s)
Diff to previous 441
converted CGI calls to "CGI->" style to avoid import conflicts with
&title and &body.
-sam

Revision 441 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 25 21:58:22 2002 UTC (10 years, 9 months ago) by malsyned
File length: 1794 byte(s)
Diff to previous 353
Added use strict and use warnings, then cleaned up much of the mess that
revealed.
--Dennis

Revision 353 - (view) (download) (as text) (annotate) - [select for diffs]
Added Fri Jun 7 23:35:59 2002 UTC (10 years, 11 months ago) by malsyned
File length: 1764 byte(s)
All of the content generators now work with the template system
Moved the content generators into the WeBWorK::ContentGenerator namespace
Added the default template and a few global.conf entries

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