Thread: [Coursework-devl] 2.5 RC2
Brought to you by:
ianeboston,
john765367
From: Ian B. <ie...@tf...> - 2003-10-30 21:49:10
|
Dear All, I am aware that we have had a RC1 download available now for some time, and that CVS contains some significant departures from the RC1 release. So my questions to this list are, 1. Are we ready for a RC2 ? 2. Are their any fixes bugs that need resolution in the RC2 release that should delay the RC2 release ? please shout now! Ian |
From: Sam O. <sa...@lo...> - 2003-10-30 21:58:49
|
Ian, I just started looking at the Lets-Talk files put into CVS. I will holler if I run into any problems. Thanks for integrating these, BTW. The rest of the package looks ready for an RC2. A few loose ends maybe: It looks like build and build.xml were taken out of CVS.... Is there any harm in getting rid of the deprecated HttpUtils? This is the code that is getting deprecation warnings: HttpUtils.getRequestURL(req).toString () I changed my code to: req.getRequestURL().toString() to get rid of the deprecation warnings. Sam Ian Boston wrote: > Dear All, > > I am aware that we have had a RC1 download available now for some > time, and that CVS contains some significant departures from the RC1 > release. > > So my questions to this list are, > > 1. Are we ready for a RC2 ? > > 2. Are their any fixes bugs that need resolution in the RC2 release > that should delay the RC2 release ? > > please shout now! > > Ian > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Coursework-devl mailing list > Cou...@li... > https://lists.sourceforge.net/lists/listinfo/coursework-devl |
From: Ian B. <ie...@tf...> - 2003-10-30 22:10:33
|
Sam Ottenhoff wrote: > Ian, > > I just started looking at the Lets-Talk files put into CVS. I will > holler if I run into any problems. Thanks for integrating these, BTW. > > The rest of the package looks ready for an RC2. A few loose ends maybe: > > It looks like build and build.xml were taken out of CVS.... oops' I will check there is a valid one there > > Is there any harm in getting rid of the deprecated HttpUtils? This is > the code that is getting deprecation warnings: > > HttpUtils.getRequestURL(req).toString () > > I changed my code to: req.getRequestURL().toString() to get rid of the > deprecation warnings. Yes, no problem I'll grep the code and replace. > > Sam > > Ian Boston wrote: > >> Dear All, >> >> I am aware that we have had a RC1 download available now for some >> time, and that CVS contains some significant departures from the RC1 >> release. >> >> So my questions to this list are, >> >> 1. Are we ready for a RC2 ? >> >> 2. Are their any fixes bugs that need resolution in the RC2 release >> that should delay the RC2 release ? >> >> please shout now! >> >> Ian >> >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: SF.net Giveback Program. >> Does SourceForge.net help you be more productive? Does it >> help you create better code? SHARE THE LOVE, and help us help >> YOU! Click Here: http://sourceforge.net/donate/ >> _______________________________________________ >> Coursework-devl mailing list >> Cou...@li... >> https://lists.sourceforge.net/lists/listinfo/coursework-devl > > > > |
From: Jason C. <jr...@sf...> - 2003-10-30 22:26:09
|
I'm of the release early, release often camp. The only serious bug that I see on the list is the session timeout issue, but that can wait for RC3. Jason Jason R. Cole, Ph.D. Online Teaching Support Specialist The Center for the Enhancement of Teaching San Francisco State University (415) 405-3536 jr...@sf... The study of history does not make things shiny -- Brain |
From: Sam O. <sa...@lo...> - 2003-10-30 22:41:08
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"> <title></title> </head> <body> Jason,<br> <br> Are you referring to the bug I posted about viewing "My Profile" after a session is expired? I think I posted a pretty simple fix in the bug tracker that takes care of that one.<br> <br> Also, does anyone know why a user's course listing data (on the MyCourses servlet) is stored in the session? I was trying to debug this while modifying some departments in the database and finally discovered that I couldn't see my changes until I started a new session. <br> <br> sam<br> <br> Jason Cole wrote:<br> <blockquote type="cite" cite="mid...@sf...">I'm of the release early, release often camp. The only serious bug that I see on the list is the session timeout issue, but that can wait for RC3. <br> <br> Jason <br> <br> Jason R. Cole, Ph.D. <br> Online Teaching Support Specialist <br> The Center for the Enhancement of Teaching <br> San Francisco State University <br> (415) 405-3536 <br> <a class="moz-txt-link-abbreviated" href="mailto:jr...@sf...">jr...@sf...</a> <br> <br> <center><!-- Geneva -->The study of history does not make things shiny -- Brain</center> </blockquote> </body> </html> |
From: Jason C. <jr...@sf...> - 2003-10-30 22:51:53
|
I must have missed that fix. I'll take a look. Thanks. J On Thursday, October 30, 2003, at 02:40 PM, Sam Ottenhoff wrote: > Jason, > > Are you referring to the bug I posted about viewing "My Profile" after=20= > a session is expired?=A0 I think I posted a pretty simple fix in the = bug=20 > tracker that takes care of that one. > > Also, does anyone know why a user's course listing data (on the=20 > MyCourses servlet) is stored in the session?=A0 I was trying to debug=20= > this while modifying some departments in the database and finally=20 > discovered that I couldn't see my changes until I started a new=20 > session.=A0 > > sam > > Jason Cole wrote: > > I'm of the release early, release often camp. The only serious bug=20 > that I see on the list is the session timeout issue, but that can wait=20= > for RC3. > > Jason > > Jason R. Cole, Ph.D. > Online Teaching Support Specialist > The Center for the Enhancement of Teaching > San Francisco State University > (415) 405-3536 > jr...@sf... > > The study of history does not make things shiny -- Brain > > Jason R. Cole, Ph.D. Online Teaching Support Specialist The Center for the Enhancement of Teaching San Francisco State University (415) 405-3536 jr...@sf... The study of history does not make things shiny -- Brain |
From: Ian B. <ie...@tf...> - 2003-10-31 15:35:31
|
Sam Thanks, The fix will work but I think that the same problem can happen in about 30 other places, so I've implemented a fix in SessionController.update that handles all of them. I think its robust and safe. Ian Sam Ottenhoff wrote: > Jason, > > Are you referring to the bug I posted about viewing "My Profile" after a > session is expired? I think I posted a pretty simple fix in the bug > tracker that takes care of that one. > > Also, does anyone know why a user's course listing data (on the > MyCourses servlet) is stored in the session? I was trying to debug this > while modifying some departments in the database and finally discovered > that I couldn't see my changes until I started a new session. > > sam > > Jason Cole wrote: > >> I'm of the release early, release often camp. The only serious bug >> that I see on the list is the session timeout issue, but that can wait >> for RC3. >> >> Jason >> >> Jason R. Cole, Ph.D. >> Online Teaching Support Specialist >> The Center for the Enhancement of Teaching >> San Francisco State University >> (415) 405-3536 >> jr...@sf... >> >> The study of history does not make things shiny -- Brain >> > ------------------------------------------------------- This SF.net > email is sponsored by: SF.net Giveback Program. Does SourceForge.net > help you be more productive? Does it help you create better code? SHARE > THE LOVE, and help us help YOU! Click Here: > http://sourceforge.net/donate/ > _______________________________________________ Coursework-devl mailing > list Cou...@li... > https://lists.sourceforge.net/lists/listinfo/coursework-devl |
From: Sam O. <sa...@lo...> - 2003-10-31 17:49:39
|
Yeah, I thought it might be the case that I wasn't looking far enough. Thanks for the better fix. sam Ian Boston wrote: > Sam > Thanks, > The fix will work but I think that the same problem can happen in > about 30 other places, so I've implemented a fix in > SessionController.update that handles all of them. I think its robust > and safe. > > Ian > > Sam Ottenhoff wrote: > >> Jason, >> >> Are you referring to the bug I posted about viewing "My Profile" >> after a session is expired? I think I posted a pretty simple fix in >> the bug tracker that takes care of that one. >> >> Also, does anyone know why a user's course listing data (on the >> MyCourses servlet) is stored in the session? I was trying to debug >> this while modifying some departments in the database and finally >> discovered that I couldn't see my changes until I started a new session. >> sam >> >> Jason Cole wrote: >> >>> I'm of the release early, release often camp. The only serious bug >>> that I see on the list is the session timeout issue, but that can >>> wait for RC3. >>> >>> Jason >>> >>> Jason R. Cole, Ph.D. >>> Online Teaching Support Specialist >>> The Center for the Enhancement of Teaching >>> San Francisco State University >>> (415) 405-3536 >>> jr...@sf... >>> >>> The study of history does not make things shiny -- Brain >>> >> > |
From: Ian B. <ie...@tf...> - 2003-10-31 09:41:16
|
Sam, and others, Just to warn anyone getting out from CVS head at the moment, there are some problems with stray files at the moment. I am in the process of fixing and will let you all know when CVS head is safe again. Ian (related to build.xml below, thanks Sam for letting me know) Sam Ottenhoff wrote: > Ian, > > I just started looking at the Lets-Talk files put into CVS. I will > holler if I run into any problems. Thanks for integrating these, BTW. > > The rest of the package looks ready for an RC2. A few loose ends maybe: > > It looks like build and build.xml were taken out of CVS.... > > Is there any harm in getting rid of the deprecated HttpUtils? This is > the code that is getting deprecation warnings: > > HttpUtils.getRequestURL(req).toString () > > I changed my code to: req.getRequestURL().toString() to get rid of the > deprecation warnings. > > Sam > > Ian Boston wrote: > >> Dear All, >> >> I am aware that we have had a RC1 download available now for some >> time, and that CVS contains some significant departures from the RC1 >> release. >> >> So my questions to this list are, >> >> 1. Are we ready for a RC2 ? >> >> 2. Are their any fixes bugs that need resolution in the RC2 release >> that should delay the RC2 release ? >> >> please shout now! >> >> Ian >> >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: SF.net Giveback Program. >> Does SourceForge.net help you be more productive? Does it >> help you create better code? SHARE THE LOVE, and help us help >> YOU! Click Here: http://sourceforge.net/donate/ >> _______________________________________________ >> Coursework-devl mailing list >> Cou...@li... >> https://lists.sourceforge.net/lists/listinfo/coursework-devl > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Coursework-devl mailing list > Cou...@li... > https://lists.sourceforge.net/lists/listinfo/coursework-devl > |
From: Ian B. <ie...@tf...> - 2003-11-03 22:36:50
|
CVS HEAD is now safe to use. Until I can get SF to remove them there will be 2 rouge directories. coursework2_5/discuss and coursework2_5/WEB-INF, these should be ignored and if you are developing, DONT put anything in them, I'm going to get SF to remove them. (after a backup ;)) Ian Ian Boston wrote: > Sam, and others, > Just to warn anyone getting out from CVS head at the moment, there are > some problems with stray files at the moment. I am in the process of > fixing and will let you all know when CVS head is safe again. > > Ian > > (related to build.xml below, thanks Sam for letting me know) > > Sam Ottenhoff wrote: > >> Ian, >> >> I just started looking at the Lets-Talk files put into CVS. I will >> holler if I run into any problems. Thanks for integrating these, BTW. >> >> The rest of the package looks ready for an RC2. A few loose ends maybe: >> >> It looks like build and build.xml were taken out of CVS.... >> >> Is there any harm in getting rid of the deprecated HttpUtils? This is >> the code that is getting deprecation warnings: >> >> HttpUtils.getRequestURL(req).toString () >> >> I changed my code to: req.getRequestURL().toString() to get rid of the >> deprecation warnings. >> >> Sam >> >> Ian Boston wrote: >> >>> Dear All, >>> >>> I am aware that we have had a RC1 download available now for some >>> time, and that CVS contains some significant departures from the RC1 >>> release. >>> >>> So my questions to this list are, >>> >>> 1. Are we ready for a RC2 ? >>> >>> 2. Are their any fixes bugs that need resolution in the RC2 release >>> that should delay the RC2 release ? >>> >>> please shout now! >>> >>> Ian >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.net email is sponsored by: SF.net Giveback Program. >>> Does SourceForge.net help you be more productive? Does it >>> help you create better code? SHARE THE LOVE, and help us help >>> YOU! Click Here: http://sourceforge.net/donate/ >>> _______________________________________________ >>> Coursework-devl mailing list >>> Cou...@li... >>> https://lists.sourceforge.net/lists/listinfo/coursework-devl >> >> >> >> >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: SF.net Giveback Program. >> Does SourceForge.net help you be more productive? Does it >> help you create better code? SHARE THE LOVE, and help us help >> YOU! Click Here: http://sourceforge.net/donate/ >> _______________________________________________ >> Coursework-devl mailing list >> Cou...@li... >> https://lists.sourceforge.net/lists/listinfo/coursework-devl >> > > |