From: Jon M. <jo...@te...> - 2006-06-23 14:59:33
|
Many thanks to the people who very promptly fixed problems that I identified in the putative Bodington 2.8. Now, there are quite a large number of issues that arose out of the testing which need some very prompt action to fix by the target release date which is very very very soon. Who knows what influential and powerful people will download the 2.8 release so let's make it a reliable and glitch free experience for one and all. I have reserved some of the time that I have left to do further testing after the next round of bug fixing. Keep up the good work. Jon |
From: Sean M. <se...@sm...> - 2006-06-23 15:22:52
|
Jon, thanks for all the work here. And thanks to those who got the fixes = in. If you haven't seen it, there is a detailed set of comments and BUGS / RFCs at http://www.bodington.org/wiki/index.php?title=3DTestRel2.8#Outline It appears unlikely to me that we will make a Monday release, which is a shame, as there are other people out there who are watching us at this point and making judgements about the professionality of releases, qa, etc. I ask that those of you with new code in 2.8 please visit the above url and respond if not fix the stuff. If it is a feature, not a bug, then it would take a wee bit of editing on the template to make it explicit behaviour and jon and others would be less likely to be confused. thanks s <quote who=3D"Jon Maber"> > Many thanks to the people who very promptly fixed problems that I > identified in the putative Bodington 2.8. > > Now, there are quite a large number of issues that arose out of the > testing which need some very prompt action to fix by the target release > date which is very very very soon. Who knows what influential and > powerful people will download the 2.8 release so let's make it a > reliable and glitch free experience for one and all. > > I have reserved some of the time that I have left to do further testing > after the next round of bug fixing. > > Keep up the good work. > > Jon > > > Using Tomcat but need to do more? Need to support web services, securit= y? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geron= imo > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > --=20 Sean Mehan Head of e-Frameworks Learning and Information Services UHI |
From: Matthew B. <mat...@ou...> - 2006-06-26 08:06:24
|
Sean Mehan wrote: > Jon, thanks for all the work here. And thanks to those who got the fixes in. > > If you haven't seen it, there is a detailed set of comments and BUGS / > RFCs at > > http://www.bodington.org/wiki/index.php?title=TestRel2.8#Outline * Niggle - initial site and demo resources dont have metadata so arent searchable. We have a fix for this in WebLearn that creates a Metadata rebuild job that runs once and rebuilds the metadata for all resources (even if they already have metadata). org.bodington.installation.MetadataBuilder On WebLearn this gets called from BuildingContextListener which means the metadata gets rebuild the first time the context is reloaded. Ok? -- -- Matthew Buckett, VLE Developer -- Learning Technologies Group, Oxford University Computing Services -- Tel: +44 (0)1865 283660 http://www.oucs.ox.ac.uk/ltg/ |
From: Jon M. <jo...@te...> - 2006-06-26 11:06:28
|
Matthew Buckett wrote: > Sean Mehan wrote: > >> Jon, thanks for all the work here. And thanks to those who got the fixes in. >> >> If you haven't seen it, there is a detailed set of comments and BUGS / >> RFCs at >> >> http://www.bodington.org/wiki/index.php?title=TestRel2.8#Outline >> > > * Niggle - initial site and demo resources dont have metadata so > arent searchable. > > We have a fix for this in WebLearn that creates a Metadata rebuild job > that runs once and rebuilds the metadata for all resources (even if they > already have metadata). > > org.bodington.installation.MetadataBuilder > > On WebLearn this gets called from BuildingContextListener which means > the metadata gets rebuild the first time the context is reloaded. > > Ok? > What does it do if someone has uploaded full metadata via the resource management page? |
From: Matthew B. <mat...@ou...> - 2006-06-26 11:14:04
|
Jon Maber wrote: > Matthew Buckett wrote: >> Sean Mehan wrote: >> >>> Jon, thanks for all the work here. And thanks to those who got the fixes in. >>> >>> If you haven't seen it, there is a detailed set of comments and BUGS / >>> RFCs at >>> >>> http://www.bodington.org/wiki/index.php?title=TestRel2.8#Outline >>> >> * Niggle - initial site and demo resources dont have metadata so >> arent searchable. >> >> We have a fix for this in WebLearn that creates a Metadata rebuild job >> that runs once and rebuilds the metadata for all resources (even if they >> already have metadata). >> >> org.bodington.installation.MetadataBuilder >> >> On WebLearn this gets called from BuildingContextListener which means >> the metadata gets rebuild the first time the context is reloaded. >> >> Ok? >> > > What does it do if someone has uploaded full metadata via the resource > management page? If the uploaded metadata resulted in the title and description being set correctly it should be ok. Basically it calls: > BuildingSession session = BuildingSessionManagerImpl.getSession(resource); > session.updateBasicMetadata(resource.getTitle(), resource.getDescription()); for every resource in the tree. -- -- Matthew Buckett, VLE Developer -- Learning Technologies Group, Oxford University Computing Services -- Tel: +44 (0)1865 283660 http://www.oucs.ox.ac.uk/ltg/ |
From: Matthew B. <mat...@ou...> - 2006-06-26 08:57:27
|
Sean Mehan wrote: > Jon, thanks for all the work here. And thanks to those who got the fixes in. > > If you haven't seen it, there is a detailed set of comments and BUGS / > RFCs at > > http://www.bodington.org/wiki/index.php?title=TestRel2.8#Outline From the Wiki: Problem with 'URL Fix' as specified in release notes. The URL is resolved by checking that the resource exists but then referencing the parent resource. This is unlikely to be the resource that the user wanted to access. I would suggest instead that a permanently moved response is returned with the URL corrected by adding a slash to the end. That would be closer to what users expect and if the URL was found via a search engine it is possible that the engine will correct the URL. Does the release notes refer to the 2.8 release notes? If so the trailing URL fix only applies to /site being redirected to /site/ we could redirect other resources but the problem is that at the moment you can have an uploaded files named: /site/building/floor/example and a suite named: /site/building/floor/example/ and they both work as the trailing URL is used to distinguish them. We have two namespaces overlapping (files and resources) and we never check for clashes. There are methods in the API that are designed for this (nice one Jon) but currently they don't do checking. -- -- Matthew Buckett, VLE Developer -- Learning Technologies Group, Oxford University Computing Services -- Tel: +44 (0)1865 283660 http://www.oucs.ox.ac.uk/ltg/ |
From: Colin T. <col...@ou...> - 2006-06-28 10:33:40
|
Jon Maber wrote: > Many thanks to the people who very promptly fixed problems that I > identified in the putative Bodington 2.8. > > Now, there are quite a large number of issues that arose out of the > testing which need some very prompt action to fix by the target release > date which is very very very soon. At Adam's request I've tried to allocate a name (or comment) to all of the issues raised in Jon's testing. I've used a convention of putting initials in brackets to indicate who is most likely to be addressing the issue (as opposed to initials and a colon to indicate a comment by someone...) http://www.bodington.org/wiki/index.php?title=TestRel2.8 I've also added the funny icon colours bug (which I think is a show stopper) to: http://www.bodington.org/wiki/index.php?title=TestRel2.8#Site_wide_functionality (It also affects big icon in menu setting, and attached/detached menu styles. I think it's related to some session data/prefs?) Colin -- ____________________________________ Colin Tatham VLE Team Oxford University Computing Services http://www.oucs.ox.ac.uk/ltg/vle/ http://bodington.org |
From: Sean M. <se...@sm...> - 2006-06-28 10:41:02
|
Thanks, Colin. Has anyone else verified Colin's problem? -s On 28 Jun 2006, at 11:33, Colin Tatham wrote: > Jon Maber wrote: >> Many thanks to the people who very promptly fixed problems that I >> identified in the putative Bodington 2.8. >> >> Now, there are quite a large number of issues that arose out of the >> testing which need some very prompt action to fix by the target >> release >> date which is very very very soon. > > At Adam's request I've tried to allocate a name (or comment) to all > of the issues raised in Jon's > testing. I've used a convention of putting initials in brackets to > indicate who is most likely to be > addressing the issue (as opposed to initials and a colon to > indicate a comment by someone...) > > http://www.bodington.org/wiki/index.php?title=TestRel2.8 > > I've also added the funny icon colours bug (which I think is a show > stopper) to: > http://www.bodington.org/wiki/index.php? > title=TestRel2.8#Site_wide_functionality > > (It also affects big icon in menu setting, and attached/detached > menu styles. I think it's related > to some session data/prefs?) > > Colin > > -- > ____________________________________ > Colin Tatham > VLE Team > Oxford University Computing Services > > http://www.oucs.ox.ac.uk/ltg/vle/ > http://bodington.org > > Using Tomcat but need to do more? Need to support web services, > security? > Get stuff done quickly with pre-integrated technology to make your > job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > |
From: Colin T. <col...@ou...> - 2006-06-28 10:44:08
|
Sean Mehan wrote: > Thanks, Colin. > > Has anyone else verified Colin's problem? Which problem is that then? :-) ... or should I say !-) Colin -- ____________________________________ Colin Tatham VLE Team Oxford University Computing Services http://www.oucs.ox.ac.uk/ltg/vle/ http://bodington.org |
From: Colin T. <col...@ou...> - 2006-06-28 10:50:44
|
Sean Mehan wrote: > Thanks, Colin. > > Has anyone else verified Colin's problem? Michael, Jon's screenshots, dev.clan (last time I looked!) Colin > On 28 Jun 2006, at 11:33, Colin Tatham wrote: > > >>Jon Maber wrote: >> >>>Many thanks to the people who very promptly fixed problems that I >>>identified in the putative Bodington 2.8. >>> >>>Now, there are quite a large number of issues that arose out of the >>>testing which need some very prompt action to fix by the target >>>release >>>date which is very very very soon. >> >>At Adam's request I've tried to allocate a name (or comment) to all >>of the issues raised in Jon's >>testing. I've used a convention of putting initials in brackets to >>indicate who is most likely to be >>addressing the issue (as opposed to initials and a colon to >>indicate a comment by someone...) >> >>http://www.bodington.org/wiki/index.php?title=TestRel2.8 >> >>I've also added the funny icon colours bug (which I think is a show >>stopper) to: >>http://www.bodington.org/wiki/index.php? >>title=TestRel2.8#Site_wide_functionality >> >>(It also affects big icon in menu setting, and attached/detached >>menu styles. I think it's related >>to some session data/prefs?) >> >>Colin >> >>-- >>____________________________________ >>Colin Tatham >>VLE Team >>Oxford University Computing Services >> >>http://www.oucs.ox.ac.uk/ltg/vle/ >>http://bodington.org >> >>Using Tomcat but need to do more? Need to support web services, >>security? >>Get stuff done quickly with pre-integrated technology to make your >>job easier >>Download IBM WebSphere Application Server v.1.0.1 based on Apache >>Geronimo >>http://sel.as-us.falkag.net/sel? >>cmd=lnk&kid=120709&bid=263057&dat=121642 >>_______________________________________________ >>Bodington-developers mailing list >>Bod...@li... >>https://lists.sourceforge.net/lists/listinfo/bodington-developers >> > > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > > -- ____________________________________ Colin Tatham VLE Team Oxford University Computing Services http://www.oucs.ox.ac.uk/ltg/vle/ http://bodington.org |