You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
(41) |
May
(353) |
Jun
(133) |
Jul
(534) |
Aug
(401) |
Sep
(219) |
Oct
(86) |
Nov
(144) |
Dec
(61) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(200) |
Feb
(130) |
Mar
(345) |
Apr
(153) |
May
(247) |
Jun
(338) |
Jul
(222) |
Aug
(70) |
Sep
(39) |
Oct
(27) |
Nov
(76) |
Dec
(30) |
2007 |
Jan
(81) |
Feb
(44) |
Mar
(9) |
Apr
|
May
(3) |
Jun
(2) |
Jul
(34) |
Aug
(2) |
Sep
(1) |
Oct
|
Nov
|
Dec
(6) |
2008 |
Jan
|
Feb
|
Mar
(5) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(7) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Alistair Y. <ali...@sm...> - 2005-05-24 12:36:55
|
It seems that when you pre-compile the templates, it breaks i18n. This is due to the local build path being used to initialise the resource file paths: WEB-INF/template_classes/working/style_default_default/ template_useroptions.java: String resourceFile = "/Users/alistair/dev/sourceforge/Bodington/build/bodington/templates/ style_default/default/lang/null/useroptions.properties"; this is never going to work as resourceFile as defined above doesn't exist when you deploy. it works if you don't compile the templates and let bodington compile them itself as and when needed. There are two ways round this: 1) Don't pre-compile templates - bod can do it anyway 2) I change i18n to put resource files in the classpath so the full path isn't required. That means the resource files will be separate from the templates and we'll need a new WEB-INF/classes directory where one didn't exist before. anyone got any opinions? Alistair |
From: Alistair Y. <ali...@sm...> - 2005-05-24 12:06:55
|
committed this lot: http://www.weblogs.uhi.ac.uk/sm00ay/?p=85 Alistair |
From: Alistair Y. <ali...@sm...> - 2005-05-24 10:47:50
|
I'm about to commit: XmlTemplate - removed language selection list, fixed bug where processor wasn't changed when language was changed Facility - created new <call> displayLanguageSelectionList BuildingServlet - optimised bodington properties interactions useroptions.html - changed to use new Facility <call>, added default localise IDs for examples style_default/default/lang/en/useroptions.properties style_default/default/lang/gd/useroptions.properties is it ok to go ahead? Alistair |
From: Matthew B. <mat...@co...> - 2005-05-24 09:48:54
|
Matthew Buckett wrote: > Matthew Buckett wrote: > >> Alistair Young wrote: >> >>> I'm sorting the localise thingy problem when building head but I'm >>> also getting this error: >>> >>> build.xml:407: Class >>> org.apache.tools.ant.types.selectors.DateSelector doesn't support the >>> "pattern" attribute > > > This feature is only supported in ant 1.6.2 and later. It would be nice to be able to warn people running with old versions that they should upgrade but it seems that this isn't very easy/pretty: http://marc.theaimsgroup.com/?l=ant-user&m=109845559503586&w=2 -- +--Matthew Buckett-----------------------------------------+ | VLE Developer, Learning Technologies Group | | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | +------------Computing Services, University of Oxford------+ |
From: Matthew B. <mat...@co...> - 2005-05-24 09:27:06
|
Alistair Young wrote: > WEB-INF/lib > > -rw-r--r-- 1 alistair staff 350115 24 May 09:49 log4j-1.2.5.jar > -rw-r--r-- 1 alistair staff 352291 24 May 09:49 log4j.jar > > two get copied by the build but only log4j.jar has the required method. > > I deleted log4j-1.2.5.jar from lib and it now works. > > Will I remove log4j-1.2.5.jar from head? This one comes from the old shib files (/shibbadd). They were going to be removed before 2.6. Building with shibb off should fix this. -- +--Matthew Buckett-----------------------------------------+ | VLE Developer, Learning Technologies Group | | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | +------------Computing Services, University of Oxford------+ |
From: Alistair Y. <ali...@sm...> - 2005-05-24 09:17:55
|
WEB-INF/lib -rw-r--r-- 1 alistair staff 350115 24 May 09:49 log4j-1.2.5.jar -rw-r--r-- 1 alistair staff 352291 24 May 09:49 log4j.jar two get copied by the build but only log4j.jar has the required method. I deleted log4j-1.2.5.jar from lib and it now works. Will I remove log4j-1.2.5.jar from head? Alistair On 24 May 2005, at 10:11, Matthew Buckett wrote: > Alistair Young wrote: >> I built head, deployed, started the setup but forgot to add the >> posgtres jar. So I stopped tomcat to add the jar. >> When I restarted tomcat I couldn't access bod again. I just get this >> error: >> 2005-05-24 10:01:16 StandardContext[/bodhead]Exception sending >> context initialized event to listener instance of class >> org.bodington.servlet.BuildingContextListener >> java.lang.NoSuchMethodError: >> org.apache.log4j.spi.LoggingEvent.getLevel()Lorg/apache/log4j/Level; >> at >> org.bodington.logging.SimpleThrowableLayout.format(SimpleThrowableLayo >> ut .java:34) > > Do you have Log4J in your build? It should be in /lib and copied into > the WAR/build. > > -- > +--Matthew Buckett-----------------------------------------+ > | VLE Developer, Learning Technologies Group | > | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | > +------------Computing Services, University of Oxford------+ > > > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Matthew B. <mat...@co...> - 2005-05-24 09:11:23
|
Alistair Young wrote: > I built head, deployed, started the setup but forgot to add the > posgtres jar. So I stopped tomcat to add the jar. > When I restarted tomcat I couldn't access bod again. I just get this > error: > > 2005-05-24 10:01:16 StandardContext[/bodhead]Exception sending context > initialized event to listener instance of class > org.bodington.servlet.BuildingContextListener > java.lang.NoSuchMethodError: > org.apache.log4j.spi.LoggingEvent.getLevel()Lorg/apache/log4j/Level; > at > org.bodington.logging.SimpleThrowableLayout.format(SimpleThrowableLayout > .java:34) Do you have Log4J in your build? It should be in /lib and copied into the WAR/build. -- +--Matthew Buckett-----------------------------------------+ | VLE Developer, Learning Technologies Group | | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | +------------Computing Services, University of Oxford------+ |
From: Alistair Y. <ali...@sm...> - 2005-05-24 09:05:37
|
I built head, deployed, started the setup but forgot to add the posgtres jar. So I stopped tomcat to add the jar. When I restarted tomcat I couldn't access bod again. I just get this error: 2005-05-24 10:01:16 StandardContext[/bodhead]Exception sending context initialized event to listener instance of class org.bodington.servlet.BuildingContextListener java.lang.NoSuchMethodError: org.apache.log4j.spi.LoggingEvent.getLevel()Lorg/apache/log4j/Level; at org.bodington.logging.SimpleThrowableLayout.format(SimpleThrowableLayout .java:34) Alistair |
From: Alistair Y. <ali...@sm...> - 2005-05-24 08:56:21
|
> What version of ant are you using? 1.6.1 > Have you pulled the latest build.xml down? yep, downloaded from head 5mins ago Alistair On 24 May 2005, at 09:46, Matthew Buckett wrote: > Alistair Young wrote: >> I'm sorting the localise thingy problem when building head but I'm >> also getting this error: >> build.xml:407: Class >> org.apache.tools.ant.types.selectors.DateSelector doesn't support the >> "pattern" attribute >> is there something else needing sorted? > > What version of ant are you using? It seems to work ok for me with > 1.6.2 > line 407 looks like the dist target on HEAD. > Have you pulled the latest build.xml down? > > -- > +--Matthew Buckett-----------------------------------------+ > | VLE Developer, Learning Technologies Group | > | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | > +------------Computing Services, University of Oxford------+ > > > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Matthew B. <mat...@co...> - 2005-05-24 08:54:23
|
Matthew Buckett wrote: > Alistair Young wrote: > >> I'm sorting the localise thingy problem when building head but I'm >> also getting this error: >> >> build.xml:407: Class org.apache.tools.ant.types.selectors.DateSelector >> doesn't support the "pattern" attribute This feature is only supported in ant 1.6.2 and later. -- +--Matthew Buckett-----------------------------------------+ | VLE Developer, Learning Technologies Group | | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | +------------Computing Services, University of Oxford------+ |
From: Matthew B. <mat...@co...> - 2005-05-24 08:46:46
|
Alistair Young wrote: > I'm sorting the localise thingy problem when building head but I'm also > getting this error: > > build.xml:407: Class org.apache.tools.ant.types.selectors.DateSelector > doesn't support the "pattern" attribute > > is there something else needing sorted? What version of ant are you using? It seems to work ok for me with 1.6.2 line 407 looks like the dist target on HEAD. Have you pulled the latest build.xml down? -- +--Matthew Buckett-----------------------------------------+ | VLE Developer, Learning Technologies Group | | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | +------------Computing Services, University of Oxford------+ |
From: Matthew B. <mat...@co...> - 2005-05-24 08:40:26
|
Alistair Young wrote: > I noticed that the commandline installer is due for removal - does this > mean tomcat will go too? with bod as a pure war distro? I think so. It has gone in WebLearn HEAD and we just have the servlet-api.jar (in /lib) so that you don't have any external dependancies for a build. I think there may be a small case for providing a ZIP of tomcat and a preconfigured Bodington in one but as installing Tomcat is so easy (especially on Windows) and a Bodington WAR install should be pretty easy soon (once the HSQLDB and context independant stuff is in) too I don't see what we would gain. -- +--Matthew Buckett-----------------------------------------+ | VLE Developer, Learning Technologies Group | | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | +------------Computing Services, University of Oxford------+ |
From: Alistair Y. <ali...@sm...> - 2005-05-24 08:39:01
|
I'm sorting the localise thingy problem when building head but I'm also getting this error: build.xml:407: Class org.apache.tools.ant.types.selectors.DateSelector doesn't support the "pattern" attribute is there something else needing sorted? Alistair |
From: Alexis O'C. <ale...@co...> - 2005-05-24 08:36:27
|
Alistair Young wrote: > I noticed that the commandline installer is due for removal - does this > mean tomcat will go too? with bod as a pure war distro? > > Alistair > > > > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > Yep, the installer and tomcat would disapear hand in hand off into (oblivion) the sunset at the same time. I think the general intention is to have: - a zipped WAR for deployment to a servlet container and database of your choice. - a 'quick-start' WAR, which includes HSQLDB (i.e. the database engine and the persistent store itself - the db will be able to run in memory and within the same JVM as the servlet container) for deployment to a servlet container of your choice. -- + - - - - - - - - - - - - - - - - - - - - - - - - - - - + | Alexis O'Connor, VLE Developer (http://bodington.org) | | OUCS, 13 Banbury Road, Oxford, OX2 6NN, UK. | | Tel. +44 (0)1865 283661 | + - - - - - - - - - - - - - - - - - - - - - - - - - - - + |
From: Alistair Y. <ali...@sm...> - 2005-05-24 08:25:16
|
I noticed that the commandline installer is due for removal - does this mean tomcat will go too? with bod as a pure war distro? Alistair |
From: Adam M. <ada...@co...> - 2005-05-23 16:44:35
|
Have you tried the VLE jiscmail list? I've written to Kelly Smith who9 gave thew talk about moving CP between = BB and WebCT. adam -- Adam Marshall: OUCS, 13, Banbury Rd. Oxford OX2 6NN. Shameless plug: Use the Bodington VLE http://bodington.org Blog: http://ramble.oucs.ox.ac.uk/blog/adamm/ Cheese of the month: Cheshire (not to be underestimated)=20 | -----Original Message----- | From: bod...@li... = [mailto:bodington- | dev...@li...] On Behalf Of Peter Crowther | Sent: 23 May 2005 16:24 | To: bod...@li... | Subject: [Bodington-developers] Anyone got any IMS content packages I = can | use as test cases? |=20 | I'm trying to get Bodington to import more variants of CPs. I need = some | test cases to tell me whether I've succeeded or not. IMS, bless their | hearts*, doesn't have a test suite, so I'm on the scrounge. |=20 | If you have any 1.0 or 1.1.x content packages (preferably for varying = x) | that you are able to send me without copyright issues, I'd very much | appreciate them. Packages smaller than 1 Mbyte are probably safe to | email; larger packages may or may not be - our server can receive = them, | yours may not send 'em, so put the package on a HTTP/FTP server, tell = me | where the package is and I'll grab it. If terms of use are not clear | from the package itself, I will assume that you have obtained = clearance | for me to use the package but that I cannot distribute it further. |=20 | Thanks in advance for any suitably-structured bundles of bytes you can | send. |=20 | - Peter |=20 | * A few good swipes with a battleaxe would be a suitable blessing, I | feel. |=20 |=20 | ------------------------------------------------------- | This SF.Net email is sponsored by Oracle Space Sweepstakes | Want to be the first software developer in space? | Enter now for the Oracle Space Sweepstakes! | http://ads.osdn.com/?ad_idt12&alloc_id=16344&op=3Dick | _______________________________________________ | Bodington-developers mailing list | Bod...@li... | https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Andrew B. <a.g...@le...> - 2005-05-23 15:59:31
|
Peter Have a look at: http://home.btconnect.com/agbooth/archive/swingPP/ProtLab-IMS.zip It's very old, I think the metadata is 1.0. Aggie -----Original Message----- From: bod...@li... [mailto:bod...@li...] On Behalf Of Peter Crowther Sent: 23 May 2005 16:24 To: bod...@li... Subject: [Bodington-developers] Anyone got any IMS content packages I can use as test cases? I'm trying to get Bodington to import more variants of CPs. I need some test cases to tell me whether I've succeeded or not. IMS, bless their hearts*, doesn't have a test suite, so I'm on the scrounge. If you have any 1.0 or 1.1.x content packages (preferably for varying x) that you are able to send me without copyright issues, I'd very much appreciate them. Packages smaller than 1 Mbyte are probably safe to email; larger packages may or may not be - our server can receive them, yours may not send 'em, so put the package on a HTTP/FTP server, tell me where the package is and I'll grab it. If terms of use are not clear from the package itself, I will assume that you have obtained clearance for me to use the package but that I cannot distribute it further. Thanks in advance for any suitably-structured bundles of bytes you can send. - Peter * A few good swipes with a battleaxe would be a suitable blessing, I feel. ------------------------------------------------------- This SF.Net email is sponsored by Oracle Space Sweepstakes Want to be the first software developer in space? Enter now for the Oracle Space Sweepstakes! http://ads.osdn.com/?ad_idt12&alloc_id=16344&op=3Dick _______________________________________________ Bodington-developers mailing list Bod...@li... https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Peter C. <Pet...@me...> - 2005-05-23 15:24:18
|
I'm trying to get Bodington to import more variants of CPs. I need some test cases to tell me whether I've succeeded or not. IMS, bless their hearts*, doesn't have a test suite, so I'm on the scrounge. If you have any 1.0 or 1.1.x content packages (preferably for varying x) that you are able to send me without copyright issues, I'd very much appreciate them. Packages smaller than 1 Mbyte are probably safe to email; larger packages may or may not be - our server can receive them, yours may not send 'em, so put the package on a HTTP/FTP server, tell me where the package is and I'll grab it. If terms of use are not clear from the package itself, I will assume that you have obtained clearance for me to use the package but that I cannot distribute it further. Thanks in advance for any suitably-structured bundles of bytes you can send. - Peter * A few good swipes with a battleaxe would be a suitable blessing, I feel. |
From: Andrew B. <a.g...@le...> - 2005-05-22 13:53:43
|
I sense a funding opportunity - OK guv, wot's it worth then? Aggie Sean Mehan wrote: >sean (hoping his wife doesn't see this email!-) > |
From: Sean M. <se...@sm...> - 2005-05-22 13:31:47
|
hey now, this is not against the staff!-) My wife has cousins who went to Eton. Worse yet, they're all from Orkney! So, whatever Eton did to them, they were inbred first!-) sean (hoping his wife doesn't see this email!-) <quote who=3D"a....@et..."> > Steady on...... > > Andy > > -----Original Message----- > From: bod...@li... > [mailto:bod...@li...] On Behalf Of > Sean Mehan > Sent: 21 May 2005 13:14 > To: bod...@li... > Subject: Re: [Bodington-developers] UHI's LDAP code > > what is shirt-sighted? I am thinking of things like Eton...ugh, my mind > has been burned with an image!-) > > s > > > On 17 May 2005, at 10:19, Alexis O'Connor wrote: > >> Sean Mehan wrote: >> >>> sorry, thought I made it clear at the meeting. >>> tis already in. >>> s >>> <quote who=3D"Adam Marshall"> >>> >>>> I notice that we don't have the UHI LDAP code scheduled for 2.6 - >>>> was this >>>> an oversight? If we're putting a generic webauth implementation >>>> in the we >>>> should do the LDAP stuff too. >>>> >>>> adam >>>> >>>> >> >> Apologies on behalf of our shirt-sighted mentor! >> >> Those of use who tried compiling the HEAD without having added lib/ >> ldap.jar to our CLASSPATH could have told him us much ;-). >> -- >> + - - - - - - - - - - - - - - - - - - - - - - - - - - - + >> | Alexis O'Connor, VLE Developer (http://bodington.org) | >> | OUCS, 13 Banbury Road, Oxford, OX2 6NN, UK. | >> | Tel. +44 (0)1865 283661 | >> + - - - - - - - - - - - - - - - - - - - - - - - - - - - + >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by Oracle Space Sweepstakes >> Want to be the first software developer in space? >> Enter now for the Oracle Space Sweepstakes! >> http://ads.osdn.com/?ad_id=3D7412&alloc_id=3D16344&op=3Dclick >> _______________________________________________ >> Bodington-developers mailing list >> Bod...@li... >> https://lists.sourceforge.net/lists/listinfo/bodington-developers >> >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_id=3D7412&alloc_id=3D16344&op=3Dclick > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > > > ---------------------------------------- > This e-mail and any files transmitted with it are confidential and may > well also contain privileged or copyright information. You must not > present this message to another party without permission from the sende= r. > If you have received this message in error, we should be grateful if yo= u > would notify us immediately by reply e-mail and then delete the message > from your system. Please do not otherwise copy, distribute or use this > e-mail or the information contained in it: to do so could be a breach o= f > confidence. We do not guarantee that this material is free from viruses= or > any other defects although due care has been taken to minimize the risk= . > Any views expressed in this message are those of the individual sender, > except where the sender specifically states them to be the views of Eto= n > College. > > > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_idt12&alloc_id=16344&op=3Dclick > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > --=20 Sean Mehan Head of Computing Research SMO, UHI |
From: <a....@et...> - 2005-05-21 13:24:13
|
Steady on...... Andy=20 -----Original Message----- From: bod...@li... [mailto:bod...@li...] On Behalf Of Sean Mehan Sent: 21 May 2005 13:14 To: bod...@li... Subject: Re: [Bodington-developers] UHI's LDAP code what is shirt-sighted? I am thinking of things like Eton...ugh, my mind has been burned with an image!-) s On 17 May 2005, at 10:19, Alexis O'Connor wrote: > Sean Mehan wrote: > >> sorry, thought I made it clear at the meeting. >> tis already in. >> s >> <quote who=3D"Adam Marshall"> >> >>> I notice that we don't have the UHI LDAP code scheduled for 2.6 - =20 >>> was this >>> an oversight? If we're putting a generic webauth implementation =20 >>> in the we >>> should do the LDAP stuff too. >>> >>> adam >>> >>> > > Apologies on behalf of our shirt-sighted mentor! > > Those of use who tried compiling the HEAD without having added lib/=20 > ldap.jar to our CLASSPATH could have told him us much ;-). > --=20 > + - - - - - - - - - - - - - - - - - - - - - - - - - - - + > | Alexis O'Connor, VLE Developer (http://bodington.org) | > | OUCS, 13 Banbury Road, Oxford, OX2 6NN, UK. | > | Tel. +44 (0)1865 283661 | > + - - - - - - - - - - - - - - - - - - - - - - - - - - - + > > > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_id=3D7412&alloc_id=3D16344&op=3Dclick > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > > ------------------------------------------------------- This SF.Net email is sponsored by Oracle Space Sweepstakes Want to be the first software developer in space? Enter now for the Oracle Space Sweepstakes! http://ads.osdn.com/?ad_id=3D7412&alloc_id=3D16344&op=3Dclick _______________________________________________ Bodington-developers mailing list Bod...@li... https://lists.sourceforge.net/lists/listinfo/bodington-developers ---------------------------------------- This e-mail and any files transmitted with it are confidential and may we= ll also contain privileged or copyright information. You must not present= =20this message to another party without permission from the sender. If y= ou have received this message in error, we should be grateful if you woul= d notify us immediately by reply e-mail and then delete the message from = your system. Please do not otherwise copy, distribute or use this e-mail = or the information contained in it: to do so could be a breach of confide= nce. We do not guarantee that this material is free from viruses or any o= ther defects although due care has been taken to minimize the risk. Any v= iews expressed in this message are those of the individual sender, except= =20where the sender specifically states them to be the views of Eton Coll= ege. |
From: Sean M. <se...@sm...> - 2005-05-21 12:14:32
|
what is shirt-sighted? I am thinking of things like Eton...ugh, my mind has been burned with an image!-) s On 17 May 2005, at 10:19, Alexis O'Connor wrote: > Sean Mehan wrote: > >> sorry, thought I made it clear at the meeting. >> tis already in. >> s >> <quote who="Adam Marshall"> >> >>> I notice that we don't have the UHI LDAP code scheduled for 2.6 - >>> was this >>> an oversight? If we're putting a generic webauth implementation >>> in the we >>> should do the LDAP stuff too. >>> >>> adam >>> >>> > > Apologies on behalf of our shirt-sighted mentor! > > Those of use who tried compiling the HEAD without having added lib/ > ldap.jar to our CLASSPATH could have told him us much ;-). > -- > + - - - - - - - - - - - - - - - - - - - - - - - - - - - + > | Alexis O'Connor, VLE Developer (http://bodington.org) | > | OUCS, 13 Banbury Road, Oxford, OX2 6NN, UK. | > | Tel. +44 (0)1865 283661 | > + - - - - - - - - - - - - - - - - - - - - - - - - - - - + > > > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > > |
From: Adam M. <ada...@co...> - 2005-05-20 09:52:13
|
splendid -- Adam Marshall: OUCS, 13, Banbury Rd. Oxford OX2 6NN. Shameless plug: Use the Bodington VLE http://bodington.org Blog: http://ramble.oucs.ox.ac.uk/blog/adamm/ Cheese of the month: Cheshire (not to be underestimated) | -----Original Message----- | From: bod...@li... [mailto:bodington- | dev...@li...] On Behalf Of Alexis O'Connor | Sent: 20 May 2005 10:42 | To: bod...@li... | Subject: Re: [Bodington-developers] Proposed features for Bodington | Release 2.6 | | Adam Marshall wrote: | > We will almost certainly meet our target of 21st May - the only caveat | is | > that it makes more sense to do the 'Title tag fix' after the Look and | Feel. | > | > Alexis can elaborate if anybody is bored enough to want the SP. | > | | Don't wish to be contrary, but at least it's in a positive way ;-). | The so-called 'Title tag fix' is now in. Very briefly, the modifications | are as follows (specifically pertaining to resource navigation): | | * IE renders the alt text of images as a pop-up, "mozilla" does not. | Both render 'title' as popup. Therefore, this has been changed | accordingly in certain places. | | * Instead of alt text just saying 'Resource icon' across the board, it | now says things like 'Icon for a File.', 'Icon for a Folder.', 'Icon for | an External Link.', etc. | | | Alexis | | | ------------------------------------------------------- | This SF.Net email is sponsored by Oracle Space Sweepstakes | Want to be the first software developer in space? | Enter now for the Oracle Space Sweepstakes! | http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click | _______________________________________________ | Bodington-developers mailing list | Bod...@li... | https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Alexis O'C. <ale...@co...> - 2005-05-20 09:42:31
|
Adam Marshall wrote: > We will almost certainly meet our target of 21st May - the only caveat is > that it makes more sense to do the 'Title tag fix' after the Look and Feel. > > Alexis can elaborate if anybody is bored enough to want the SP. > Don't wish to be contrary, but at least it's in a positive way ;-). The so-called 'Title tag fix' is now in. Very briefly, the modifications are as follows (specifically pertaining to resource navigation): * IE renders the alt text of images as a pop-up, "mozilla" does not. Both render 'title' as popup. Therefore, this has been changed accordingly in certain places. * Instead of alt text just saying 'Resource icon' across the board, it now says things like 'Icon for a File.', 'Icon for a Folder.', 'Icon for an External Link.', etc. Alexis |
From: Matthew B. <mat...@co...> - 2005-05-19 14:10:42
|
Jane Jotcham wrote: Just an update on what I have put in. > By 21st May: > JDK 1.5 (into 2.4.3) > Log4J In. Although I have some further small changes I will put in later. > Context Listener In. > Installation and Setup Servlet Improvements Mostly in. Some of this is related to the HSQLDB stuff and will go in later. > Error Ant > Static call Not in as it is related to the ACL stuff and can probably go in later. -- +--Matthew Buckett-----------------------------------------+ | VLE Developer, Learning Technologies Group | | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | +------------Computing Services, University of Oxford------+ |