var getLocation = function()

in static/js/jena-navigation.js [50:65]


  var getLocation = function() {
    var url = document.URL;
    var matches = url.match( /^.*jena.*apache\.org\/([^\/]*)\/(.*)$/ );

    if (matches) {
        currentSection.fileName = matches[1];
        currentPage.fileName = matches[2];
    }
    else {
        currentSection.fileName = "about_jena";
        currentPage.fileName = "index.html";
    }

    currentSection.title = asTitle( currentSection.fileName );
    currentPage.title = asTitle( currentPage.fileName.replace( /.html$/, '' ) );
  };