X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=build.py;h=f422df1474b0e77d0e4379b5d7d21799c2b281c0;hb=4424b1aa27a94d8873a565a633009535953ab485;hp=6109782fadc1cec153d2b408d32fc9fa94ddf71e;hpb=2a78650ae3df3a17c9c33f07aea597eb5f36da61;p=ardour-manual diff --git a/build.py b/build.py index 6109782..f422df1 100755 --- a/build.py +++ b/build.py @@ -188,6 +188,7 @@ def GetChildren(fs, pos): return children + # # Get the parent at this level # @@ -200,20 +201,24 @@ def GetParent(fs, pos): return pos + # # Creates the BreadCrumbs # def GetBreadCrumbs(fs, pos): - breadcrumbs = ' >
  • '+ fs[pos]['title'] + '
  • ' # The > is for Bootstrap pre-3.0 + breadcrumbs = ' >
  • '+ fs[pos]['title'] + '
  • ' + while pos >= 0: - pos = GetParent(fs,pos) + pos = GetParent(fs, pos) + if pos >= 0: breadcrumbs=' >
  • '+ fs[pos]['title'] + '
  • '+ breadcrumbs breadcrumbs = '' return breadcrumbs + # # Make an array of children attached to each node in the file structure # (It's a quasi-tree structure, and can be traversed as such.) @@ -443,9 +448,9 @@ for header in fileStruct: elif level == 2: toc = toc + ' ' + header['title'] + '
    \n' elif level == 3: - toc = toc + ' ' + header['title'] + '
    \n' + toc = toc + ' ' + header['title'] + '
    \n' elif level == 4: - toc = toc + ' ' + header['title'] + '
    \n' + toc = toc + ' ' + header['title'] + '
    \n' # Make the 'this thing contains...' stuff if HaveChildren(fileStruct, pageNumber): @@ -508,8 +513,15 @@ for header in fileStruct: content = FixInternalLinks(links, content, header['title']) # Add header information to the page if in dev mode - if devmode and 'link' in header: - content = '

    link: ' + header['link'] + '

    \n

    \n' + content + if devmode: + devnote ='' + content # Set up the actual page from the template if 'style' not in header: