It appears that CCEL's SVN server has forked off from the sf.net CVS repository. Changes such as:
binki@fox ~/julian.old $ svn log -c 1247
------------------------------------------------------------------------
r1247 | bdv4 | 2010-05-07 15:30:15 -0400 (Fri, 07 May 2010) | 1 line
Fixed: selecting a term from a Bible dictionary returns 'page not found' error
------------------------------------------------------------------------
binki@fox ~/julian.old $ svn diff -c 1247 | colordiff
Index: ccel-desktop/trunk/CCEL-Desktop Support/org/ccel/CCELFilter.java
===================================================================
--- ccel-desktop/trunk/CCEL-Desktop Support/org/ccel/CCELFilter.java (revision 1246)
+++ ccel-desktop/trunk/CCEL-Desktop Support/org/ccel/CCELFilter.java (revision 1247)
@@ -90,7 +90,10 @@
if ( requestURI.bookID() != null )
request.setAttribute( "bookID", requestURI.bookID() );
if ( hsRequest.getParameter("term") != null && requestURI.isBookPage() )
- requestURI = expandTermURI(hsRequest.getAttribute("term").toString(), requestURI);
+ {
+ String term = hsRequest.getParameter("term").toString();
+ requestURI = expandTermURI(term, requestURI);
+ }
Sherpa sherpa = Sherpa.createSherpa(requestURI, _library, _dj, _rack);
just aren't seen in CVS ( http://ccel-desktop.cvs.sourceforge.net/viewvc/ccel-desktop/CCEL-Desktop Support/org/ccel/CCELFilter.java?revision=1.31.2.6&view=markup#l83 ).
Nowadays sf.net has options for more viable VCSes, such as mercurial. The DVCS workflow would perhaps be helpful because it would allow local changes to ccel-desktop by someone who does not have access to the sf.net project be pushed to sf.net by someone who has access after-the-fact.