////
// Custom formatting of ../ autoindex.
//



    /** Amends the autoindex listing, generated by Apache.
      */
    function _amendListing()
    {
        var pre;
        for( var child = document.body.firstChild; child != null; child = child.nextSibling )
        {
            if( child.nodeType != /*element*/1 ) continue;

            if( child.tagName.toLowerCase() == 'pre' )
            {
                pre = child;
                break;
            }
        }
        if( !pre ) return;

        for( var child = pre.firstChild; child != null; child = child.nextSibling )
        {
            if( child.nodeType != /*element*/1 ) continue;

            if( child.tagName.toLowerCase() != 'a' ) continue;

            var href = child.firstChild.data; // same as getAttribute('href') in these listings, but works on IE, per textbender/_/autoindex-summary.js
            if( href == 'project/' ) { appendInListingA( child, '        <- most things are here' ); replaceAfterListingA( child, '' ); }
        }

    }



//////////////////////////////////////////////////////////////////////////////////////////


    _amendListing();




