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: Ben A. <ben...@st...> - 2007-06-25 09:05:18
|
Hello there I would greatly appreciate a small amount of your time to assist with my doctoral research at The University of Newcastle. The research concerns open source licensing and we're seeking developers working on Java projects. The research is supervised, ethics-approved, anonymous and results will be freely available. Participation will also provide a custom licensing report for your project. To learn more, please visit: http://licensing-research.newcastle.edu.au Thanks for reading this email, and I hope you'll consider participating. Best regards Ben Alex (My apologies for being off-topic; this list will not be emailed again) |
From: Selwyn L. <sel...@ph...> - 2007-06-02 20:08:46
|
Hi Ian, We are putting the pieces together now for release 0.1 of the GCWS toolkit. one of which is a Dav handler. Ambi is going to implement the handler as a slide interface for version 0.1 of GCWS we would be interested to learn more about Sakai's WebDAV server though. Cheers Sel Ian Boston wrote: > Selwyn, > http://trac.macosforge.org/projects/calendarserver > > We havent actually run the Darwin Calendar server, but our main > interest in it is its a) Open source and > > b) implements caldav as well as other protocols. > > CalDAV uses WebDAV for organization and transport and iCal for the > packets..... I would be really surprised if you were not intending to > do ical support, and responding to the necessary WebDAV verbs is a > very small extension from Tomcat... you could probably even use Apache > Slide or some other webdav set of libraries (Sakai has a WebDAV server > you could reuse parts of) > > The wikipedia page gives links to the relevant RFC's and some client > libraries. > > At Cambridge we will be evaluating it and showing it to the Campus > potentially with thoughts about how it might be used. > > Ian > > > Selwyn Lloyd wrote: >> apologies i was confusing caldav with Darwin Calendar server... in my >> last email... replace caldav with DarwinCS and it should make more >> sense. >> >> I'm not sure we will have time to implement a caldav interface but we >> will consider it as another interface requirement and discuss the >> pros and cons once we know them better. >> >> >> Speelmon, Lance D wrote: >> >>> How would it relate to caldav? Thanks, L >>> >>> Lance Speelmon la...@in... >>> Manager Online Development >>> >>> ----- Original Message ----- >>> From: tet...@li... >>> <tet...@li...> >>> To: Bodington developers <bod...@li...> >>> Cc: TetraELF Developers <tet...@li...> >>> Sent: Tue Jan 30 06:26:59 2007 >>> Subject: [Tetraelf-developers] GCWS working group >>> >>> we are looking for Tetra, Bod and Sakai input into the early >>> prototype of a Group Calendaring Web Service... would anybody like >>> to be on a working group list >>> there will be a blog etc and if there are no objections we will post >>> a digest / news update to this list after each phase... >>> >>> so the first phase is gathering requirements based on prototype and >>> we are looking for people from bod / sakai / tetra >>> >>> the prototype will be web based with a method for recording feedback >>> included >>> >>> it would be nice if we could bootstrap a session to any event we all >>> happen to be at, but happy for web based or other >>> >>> cheers >>> >>> Sel >>> >>> >>> >> > > > -- Selwyn Lloyd Phosphorix Open Source Systems for Lifelong Learning skype: selwyn_lloyd tel: 07979240124 irc://irc.ionode.org support channel: #ionode support email: de...@ph... web: http://www.phosphorix.co.uk forum: http://forum.ionetwork.ac.uk Phosphorix Limited Date of Company Registration 15th March 2001 Company Registration Number 4180295 VAT number: 768 9766 42 Registered Address: REDBRICK HOUSE, SAINT AUGUSTINES YARD, BRISTOL, AVON, BS1 5DS Offices: Seolea Cottage, Tedburn Road, EXETER EX4 2HD |
From: Antony C. <an...@sm...> - 2007-05-10 16:44:34
|
Hi Adam, I can only get anonymous access to cvs so until I can commit here's the code... Add attached file to: templates/style_default/room templates/style_default/suite ------------------------------------------------------------------------ ------------------------------------------------------------------------ --- Changes to BuildingServlet.java public void doProcessing( Request breq, Response res ) case Request.REQUEST_TYPE_VIRTUAL: //res.disableCaching(); // It's up to the individual methods that output virtual // files to decide whether to disable caching + //uhi:awc zips up webDocument content packages in resource tree + if ( breq.getPageName().equals( "imsCP_WebDocuments.zip" ) ) { + ResourceUtils.sendWebDocumentContentPackages(breq, res); + break; + } breq.getFacility().sendVirtualFile( breq, res ); break; ------------------------------------------------------------------------ ------------------------------------------------------------------------ --- Add these methods to ResourceUtils.java //uhi:awc /** * Walk the Resource tree starting from current node and add content packages to a ZipFile * when a MediaDocument (WebDocument) is encountered. Response contains error if method is * called from a containing resource that is not a room or suite of rooms. Exceptions encountered * when attempting to add a file to the ZipFile will be handled by adding an 'error' ZipEntry . * @param request The request. * @param response The response that zipOutputStream writes to. * @throws ServletException * @throws java.io.IOException * @see org.bodington.servlet.facilities.MediaDocumentFacility#sendVirtualFile( Request, javax.servlet.http.HttpServletResponse) */ public static void sendWebDocumentContentPackages( Request request, Response response) throws ServletException, IOException { Resource resource = request.getResource(); if (resource.getResourceType() == Resource.RESOURCE_SUITE || resource.getResourceType() == Resource.RESOURCE_ROOM) { ZipOutputStream zipOutputStream = null; try { response.setContentType( "application/octet-stream" ); zipOutputStream = new ZipOutputStream( response.getOutputStream() ); walkResourceTree(resource, "imsCP_" + resource.getName() + "/", zipOutputStream); } catch (BuildingServerException e) { throw new ServletException("An error occurred whilst attempting to zip WebDocument content packages", e); } finally { zipOutputStream.close(); } } else { response.sendError( response.SC_INTERNAL_SERVER_ERROR, "Incorrect resource - the command can only be run from within a room or suite of rooms." ); BuildingContext.trace( "ending, incorrect resource" ); BuildingContext.dumpTrace(); } } private static void walkResourceTree( Resource resource, String path, ZipOutputStream zipOutputStream ) throws BuildingServerException { if (resource.getResourceType() == Resource.RESOURCE_SUITE || resource.getResourceType() == Resource.RESOURCE_ROOM ) { // handle any uploaded files in these container resources processUploadedFiles( resource, path, zipOutputStream ); //recursively get child resources for above container resources Vector ids = resource.getChildIds(); Enumeration childIds = ids.elements(); while (childIds.hasMoreElements()){ resource = Resource.findResource((PrimaryKey)childIds.nextElement()); walkResourceTree(resource, path + resource.getName() + "/", zipOutputStream); } } else if (resource.getResourceType() == Resource.RESOURCE_MEDIADOCUMENT) { // handle uploaded files in Media (Web) document processUploadedFiles( resource, path, zipOutputStream ); } } private static void processUploadedFiles( Resource resource, String path, ZipOutputStream zipOutputStream ) { String root = "/"; try { BuildingSession session = BuildingSessionManagerImpl.getSession( resource ); session.getFileAndDescendentSummaryTree( null, false ); session.generateImsManifest(); // Obtain a list of entries in the root directory and its descendants UploadedFileSummary[] summaries = session.getFileAndDescendentSummaries( root, true ); // Obtain the location of the filestore for the entries File source_filestore = resource.getWebPublishFolder(); // summary for current resource and manifest, if more then file has been uploaded here for ( int summaryIndex = 0; summaryIndex < summaries.length; summaryIndex++ ) { UploadedFile f = UploadedFile.findUploadedFile( summaries[summaryIndex].getUploadedFileId() ); // don't emit deleted files and folders; don't emit folders if ( f==null || f.isDeleted() || f.isFolder() ) continue; File source = new File( source_filestore, f.getRealNameInResource() ); FileInputStream inputStream = new FileInputStream( source ); writeToZip(zipOutputStream, inputStream, path + f.getNameInResource()); } } catch (Exception e) { try { //read exception and write to zip ByteArrayInputStream inputStream = new ByteArrayInputStream(e.toString().getBytes()); writeToZip(zipOutputStream, inputStream, "errors/" + path.substring(path.indexOf('_') + 1) + "missing_entry.txt"); } catch (IOException e1) { e1.printStackTrace(); } } } private static void writeToZip( ZipOutputStream zipOutputStream, InputStream inputStream, String zipEntryName ) throws IOException { try { //create and add zip entry ZipEntry zipEntry = new ZipEntry( zipEntryName ); zipOutputStream.putNextEntry( zipEntry ); //write bytes from the inputStream byte[] readBuffer = new byte[8192]; int bytesIn = 0; while( ( bytesIn = inputStream.read( readBuffer ) ) != -1 ) { zipOutputStream.write( readBuffer, 0, bytesIn ); } } finally { //close the stream and zipEntry inputStream.close(); zipOutputStream.closeEntry(); } } |
From: Sean M. <se...@sm...> - 2007-05-06 12:53:00
|
Indeed, should perhaps be his last ci. Think of it...... s. On 4 May 2007, at 18:16, Adam Marshall wrote: > Ant > > Could I remind you to add the IMS CP export code to bod head at > some point > in the next couple of weeks. > > Cheers > > Adam > > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > |
From: Adam M. <ada...@ou...> - 2007-05-04 17:15:35
|
Ant Could I remind you to add the IMS CP export code to bod head at some point in the next couple of weeks. Cheers Adam |
From: Adam M. <ada...@ou...> - 2007-03-29 16:04:47
|
Not as such; Paul's sent an email attempting to put us all in touch. I'll keep you posted with developments. Adam PS Bumped into Hugh Davies last week, he was asking after you. He thought you'd retired, as you haven't he said he's get in touch. | -----Original Message----- | From: bod...@li... | [mailto:bod...@li...] On Behalf Of | Andrew Booth | Sent: 29 March 2007 17:01 | To: 'Bodington developers' | Cc: a.g...@le... | Subject: Re: [Bodington-developers] TurnItIn integration | | Sounds interesting. | Any idea what the 'work at their end' by the Turd_in_a_Tin developers | means? | | Aggie | | -----Original Message----- | From: bod...@li... | [mailto:bod...@li...] On Behalf Of | Adam Marshall | Sent: 29 March 2007 15:28 | To: 'Bodington developers' | Subject: [Bodington-developers] TurnItIn integration | | Aggie (mainly) | | As promised we 'cornered' Mr TurnItIn at the LTG conference last week and | asked about full (web service) integration with ThornyTin / submit.ac.uk. | (Cf Moodle / BlackBoard itegration.) | | Paul Davis now has a route to the GurnInGin developers. Apparently | integration with Bodington will only be possible after TownInnit do a | little | work at their end. They are happy to do this work although we don't know | at | this stage what it will entail (or indeed what we have to do at our end). | | We have a timetable of introducing this feature over the summer holiday. | Paul is due to set the wheels in motion very soon. | | Aggie - are you interested in working together on this? | | Adam | | | ------------------------------------------------------------------------- | Take Surveys. Earn Cash. Influence the Future of IT | Join SourceForge.net's Techsay panel and you'll get the chance to share | your | opinions on IT & business topics through brief surveys-and earn cash | http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV | _______________________________________________ | Bodington-developers mailing list | Bod...@li... | https://lists.sourceforge.net/lists/listinfo/bodington-developers | | | ------------------------------------------------------------------------- | Take Surveys. Earn Cash. Influence the Future of IT | Join SourceForge.net's Techsay panel and you'll get the chance to share | your | opinions on IT & business topics through brief surveys-and earn cash | http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV | _______________________________________________ | Bodington-developers mailing list | Bod...@li... | https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Andrew B. <a.g...@le...> - 2007-03-29 16:00:50
|
Sounds interesting.=20 Any idea what the 'work at their end' by the Turd_in_a_Tin developers = means? Aggie -----Original Message----- From: bod...@li... [mailto:bod...@li...] On Behalf Of Adam Marshall Sent: 29 March 2007 15:28 To: 'Bodington developers' Subject: [Bodington-developers] TurnItIn integration Aggie (mainly) As promised we 'cornered' Mr TurnItIn at the LTG conference last week = and asked about full (web service) integration with ThornyTin / = submit.ac.uk. (Cf Moodle / BlackBoard itegration.) Paul Davis now has a route to the GurnInGin developers. Apparently integration with Bodington will only be possible after TownInnit do a = little work at their end. They are happy to do this work although we don't know = at this stage what it will entail (or indeed what we have to do at our = end). We have a timetable of introducing this feature over the summer holiday. Paul is due to set the wheels in motion very soon. Aggie - are you interested in working together on this? Adam=20 -------------------------------------------------------------------------= Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share = your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV _______________________________________________ Bodington-developers mailing list Bod...@li... https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Paul D. <pau...@ou...> - 2007-03-29 15:40:27
|
I think the technical term was "Access to the Turnitin API" and help in integrating such Paul ------------------------------------------------------------------------- Dr Paul V Davis Acting Head, Learning Technologies Group Marketing coordinator, Bodington.org Oxford University Computing Services 13 Banbury Road, Oxford, OX2 6NN Tel: 01865 283414 % -----Original Message----- % From: bod...@li... % [mailto:bod...@li...] On Behalf Of % Adam Marshall % Sent: 29 March 2007 15:28 % To: 'Bodington developers' % Subject: [Bodington-developers] TurnItIn integration % % Aggie (mainly) % % As promised we 'cornered' Mr TurnItIn at the LTG conference last week and % asked about full (web service) integration with ThornyTin / submit.ac.uk. % (Cf Moodle / BlackBoard itegration.) % % Paul Davis now has a route to the GurnInGin developers. Apparently % integration with Bodington will only be possible after TownInnit do a % little % work at their end. They are happy to do this work although we don't know % at % this stage what it will entail (or indeed what we have to do at our end). % % We have a timetable of introducing this feature over the summer holiday. % Paul is due to set the wheels in motion very soon. % % Aggie - are you interested in working together on this? % % Adam % % % ------------------------------------------------------------------------- % Take Surveys. Earn Cash. Influence the Future of IT % Join SourceForge.net's Techsay panel and you'll get the chance to share % your % opinions on IT & business topics through brief surveys-and earn cash % http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV % _______________________________________________ % Bodington-developers mailing list % Bod...@li... % https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Adam M. <ada...@ou...> - 2007-03-29 14:28:10
|
Aggie (mainly) As promised we 'cornered' Mr TurnItIn at the LTG conference last week and asked about full (web service) integration with ThornyTin / submit.ac.uk. (Cf Moodle / BlackBoard itegration.) Paul Davis now has a route to the GurnInGin developers. Apparently integration with Bodington will only be possible after TownInnit do a little work at their end. They are happy to do this work although we don't know at this stage what it will entail (or indeed what we have to do at our end). We have a timetable of introducing this feature over the summer holiday. Paul is due to set the wheels in motion very soon. Aggie - are you interested in working together on this? Adam |
From: Peter C. <Pet...@me...> - 2007-03-08 09:13:53
|
> From: Adam Marshall > | From: Andrew Booth > | We tell the students to upload their work to a pigeonhole. =20 > They have to > | remove any graphics. > |=20 > | The files are then renamed to the students' usernames and=20 > exported in zip > | file. > | This is done automatically in Bodington 2.8. >=20 > So you are saying that the code for this is in Bod HEAD and=20 > has been since 2.8 - or is it just in Leeds' v2.8? It's in HEAD. Look in PigeonHoleFacility.java for "sendZippedEntries" and "uploadZipFile". - Peter |
From: Adam M. <ada...@ou...> - 2007-03-07 17:52:28
|
| -----Original Message----- | From: bod...@li... | [mailto:bod...@li...] On Behalf Of | Andrew Booth | Sent: 07 February 2007 15:00 | To: 'Bodington developers' | Cc: Andrew Booth | Subject: Re: [Bodington-developers] plagerism detection / turn it in | | We tell the students to upload their work to a pigeonhole. They have to | remove any graphics. | | The files are then renamed to the students' usernames and exported in zip | file. | This is done automatically in Bodington 2.8. So you are saying that the code for this is in Bod HEAD and has been since 2.8 - or is it just in Leeds' v2.8? |
From: Matthew B. <mat...@ou...> - 2007-03-05 16:05:45
|
Just a bit of a heads up, Oxford is developing a new tool that allows people to collaborate on document creation. Basic Requirements. # Very easy to start typing # Ideally all in one screen after you say create # Export to another format (likely a user wants it into .doc so .rtf or copy/paste to word ) # Print friendly page. # Locking of revisions so changes aren't lost (optimistic locking or explicit) # Tracking who changed the document and when. # Quick creation of the resource. # Start editing straight away ( given edit box at start ). # Uses more powerful HTML widget (FCKEditor). # Titles are more important than URLs, auto generate urls from titles. Allow later editing or url. This isn't going to be much, just a cross between structured document and textblock really (but with added locking) and is being developed to address a need at Oxford. -- Matthew Buckett |
From: Matthew B. <mat...@ou...> - 2007-03-05 15:42:55
|
Just a note to say that in the process of writing a new tool I am refactoring allot of the resource creation code to move it out of facility. This will be a big change in resource creation. In the long run it will cleanup resource creations and avoid large amounts of duplicated code. It also paves the way for allowing error messages to be displayed on the resource creation page rather than requiring users to click back. Basically I am having lists of errors rather than outputting all the errors and HTML directly from the Java. Resource creation gets split into bits: - setup of new resource for request. - validation of new resource. - creation of new resource in db (put resource into tree, update metadata, create events). - post creation hook fired to allow extra stuff to get created. These changes are initially just in WebLearn but may get moved into Bodington at a later date. -- Matthew Buckett |
From: Matthew B. <mat...@ou...> - 2007-03-05 10:53:52
|
At the moment softcache will cache and then serve up anything that it has. This could case problems if someone pulls some data out of softcache, modifies it but doesn't save it back to to db (because of transient problem or because of programmer error). But softcache will still return it but the changes won't be in the database. Should we only cache stuff that has been successfully saved? I think we can just check isUnsaved() on all object going in and out of softcache which should catch any of these problems and the overhead on doing this is pretty low. -- Matthew Buckett |
From: Adam M. <ada...@ou...> - 2007-02-23 12:55:46
|
Comments??: So we had a weblearn chinwag this morning and decided that we'd look into a 'low cost' collaborative authoring tool. This is not - repeat not - a wiki. It will have very few wiki-like features. There's no wiki mark-up, no auto page creation, no camel case linking, no version history. We're pretty sure we'll be able to do this with minimal effort by 17th april upgrade. The basic idea will be - use FCK editor to produce ONE page of HTML within WebLearn - this is like a WebLearn room with no contents, ie, it will have a title, sentence of description plus the HTML 'content' - lock the page when being edited, keep locked for 30 mins after each open or save unless document is closed in which case locking is withdrawn - provide a list of document authors (but not who did what) - the 'content' can be protected by weblearn's ACL just like any other resource - 'content' can be exported as PDF - 'content' can be exported as HTML - possibly offer an export as RTF or DOC - 'one click' creation of resource - ie, easy creation We are also going to look at the feasibility of having multiple 'pages' within the same tool, if this is possible then we'll provide a collation of all pages for export as PDF / HTML / zip file Adam |
From: Alexis O'C. <ale...@ou...> - 2007-02-22 17:27:17
|
Jon Maber wrote: > I did some work with Reload for your Continuing Ed. department. It's > quite clear and logical source code [...snip...] Apart from their rather zany decision to name some of the modules after the children of Frank Zappa ;-). Alexis |
From: Jon M. <jo...@te...> - 2007-02-22 16:51:21
|
Adam Marshall wrote: > It's early days but we *may* attempt to incorporate the ReLoad SCORM player > into Bods. OUP have a requirement and may charge us with doing something. > If you have money but no pairs of hands.... > There's issues with ReLoad in that it doesn't support multiple users (or > scorm 2004). So some development work would have to be done - estimated at a > couple of months for multi-user support. (SCORM 2004 is much harder.) > > If we do end up doing something then we will evaluate other solutions before > diving into ReLoad - one possibility is using Sakai! > I did some work with Reload for your Continuing Ed. department. It's quite clear and logical source code and since it has received support from JISC and is used quite a lot (in the UK at least) I would expect it to be quite a good choice of code base. Jon |
From: Adam M. <ada...@ou...> - 2007-02-22 13:07:06
|
It's early days but we *may* attempt to incorporate the ReLoad SCORM player into Bods. OUP have a requirement and may charge us with doing something. There's issues with ReLoad in that it doesn't support multiple users (or scorm 2004). So some development work would have to be done - estimated at a couple of months for multi-user support. (SCORM 2004 is much harder.) If we do end up doing something then we will evaluate other solutions before diving into ReLoad - one possibility is using Sakai! Adam | -----Original Message----- | From: bod...@li... | [mailto:bod...@li...] On Behalf Of | Jon Maber | Sent: 22 February 2007 13:00 | To: bod...@li... | Subject: [Bodington-developers] [Fwd: Re: SCORM compliance] | | What is the current status of SCORM compliance and is anyone planning to | work in this area? | | The question is prompted by a query from a client. I've included below | the original query and my initial response. | | Jon | | |
From: Jon M. <jo...@te...> - 2007-02-22 12:59:15
|
What is the current status of SCORM compliance and is anyone planning to work in this area? The question is prompted by a query from a client. I've included below the original query and my initial response. Jon |
From: Adam M. <ada...@ou...> - 2007-02-20 15:45:15
|
Ta AG. Adam | -----Original Message----- | From: bod...@li... | [mailto:bod...@li...] On Behalf Of | Andrew Booth | Sent: 20 February 2007 14:45 | To: 'Bodington developers' | Cc: Andrew Booth | Subject: [Bodington-developers] Plagiarism service | | I've just spoken to Neil Eliot at Northumbria Learning. They did a proof | of | concept for a web service interface, but it was rejected by Turnitin. | There | is an API for Turnitin, but it doesn't seem to be public. The integration | with Blackboard and WebCT was done by Turnitin. However, the integration | with Moodle was done by Northumbria Learning. Perhaps there may be some | clues in their php code... | | Aggie | ____________________________________________ | Andrew G Booth | Professor of Online Learning | Institute of Life Sciences Education | Faculty of Biological Sciences | Garstang Building | University of Leeds | Leeds LS2 9JT | U.K. | Tel: +44-113-343-3142 | ____________________________________________ | | No Education Patents | Boycott Blackboard | http://www.noedupatents.org/ | ____________________________________________ | | -----Original Message----- | From: bod...@li... | [mailto:bod...@li...] On Behalf Of | Adam Marshall | Sent: 20 February 2007 12:27 | To: 'Bodington developers' | Subject: [Bodington-developers] Plagerism service | | Aggie | | Did you ever get a response from the Turnitin people about their web | service | interface? | | Adam | | | ------------------------------------------------------------------------- | Take Surveys. Earn Cash. Influence the Future of IT | Join SourceForge.net's Techsay panel and you'll get the chance to share | your | opinions on IT & business topics through brief surveys-and earn cash | http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV | _______________________________________________ | Bodington-developers mailing list | Bod...@li... | https://lists.sourceforge.net/lists/listinfo/bodington-developers | | | ------------------------------------------------------------------------- | Take Surveys. Earn Cash. Influence the Future of IT | Join SourceForge.net's Techsay panel and you'll get the chance to share | your | opinions on IT & business topics through brief surveys-and earn cash | http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV | _______________________________________________ | Bodington-developers mailing list | Bod...@li... | https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Andrew B. <a.g...@le...> - 2007-02-20 14:44:50
|
I've just spoken to Neil Eliot at Northumbria Learning. They did a = proof of concept for a web service interface, but it was rejected by Turnitin. = There is an API for Turnitin, but it doesn't seem to be public. The = integration with Blackboard and WebCT was done by Turnitin. However, the = integration with Moodle was done by Northumbria Learning. Perhaps there may be some clues in their php code... Aggie ____________________________________________ Andrew G Booth Professor of Online Learning Institute of Life Sciences Education Faculty of Biological Sciences Garstang Building University of Leeds Leeds LS2 9JT U.K. Tel: +44-113-343-3142=20 ____________________________________________ No Education Patents Boycott Blackboard http://www.noedupatents.org/ ____________________________________________ -----Original Message----- From: bod...@li... [mailto:bod...@li...] On Behalf Of Adam Marshall Sent: 20 February 2007 12:27 To: 'Bodington developers' Subject: [Bodington-developers] Plagerism service Aggie Did you ever get a response from the Turnitin people about their web = service interface? Adam=20 -------------------------------------------------------------------------= Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share = your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV _______________________________________________ Bodington-developers mailing list Bod...@li... https://lists.sourceforge.net/lists/listinfo/bodington-developers |
From: Adam M. <ada...@ou...> - 2007-02-20 12:27:16
|
Aggie Did you ever get a response from the Turnitin people about their web service interface? Adam |
From: Matthew B. <mat...@ou...> - 2007-02-13 12:26:49
|
Matthew Buckett wrote: > Alistair Young wrote: >> brill! thanks Matthew. > > Attached is the patch (no guarantees it will fix your AOL issue), it > needs to be applied as a reverse patch as I can't get my client to do it > right and my command line client doesn't like my updated subversion > repository. And repeat with the patch! -- Matthew Buckett |
From: Matthew B. <mat...@ou...> - 2007-02-13 12:20:10
|
Alistair Young wrote: > brill! thanks Matthew. Attached is the patch (no guarantees it will fix your AOL issue), it needs to be applied as a reverse patch as I can't get my client to do it right and my command line client doesn't like my updated subversion repository. -- Matthew Buckett |
From: Alistair Y. <ali...@sm...> - 2007-02-13 12:03:11
|
brill! thanks Matthew. Alistair -- mov eax,1 mov ebx,0 int 80h > Peter Crowther wrote: >>> From: Alistair Young >>> AOL famously use dynamic IP addresses. >> >> It's worse than that (it's undead, Jim). >> >> AOL famously uses a dirty great cluster of proxies, that are known to >> ignore No-cache headers and where different IP addresses can be used to >> fetch different elements of the same page - if the page has a couple of >> image links, those could be fetched from a different address. The next >> page fetch could come from somewhere else too. Basically, anything that >> relies on a single IP address, or the IP address staying constant >> through a session, or on no caching, may fail on AOL. > > I recently spotted a problem whereby old style templates weren't being > served up with no-cache headers (new style templates were fine). I have > the fix in WebLearn and it went live earlier this week but havn't pushed > it into Bodington HEAD. > > The failure to set this header caused some problems with Opera which > would display old cached pages. It may also cause problems with the AOL > proxy servers? > > -- > Matthew Buckett > ------------------------------------------------------------------------- > 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 > |