Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter10/kernel/kernel-config.py

    rd11a0816 r3d99820  
    186186            elif line.startswith('endif'):
    187187                if_stack = if_stack[:-1]
    188 
    189     if config_buf:
    190         r += [parse_config(config_buf)]
    191 
    192188    return r
    193189
     
    252248for i0, val, i1, title, arrow, key, menu, comment in r:
    253249    rem = max_line
    254     is_choice = (val == '(X)')
    255250
    256251    if val:
     
    265260        title = title[:rem - 3] + '...'
    266261
    267     b = title
    268     if not is_choice:
    269         b = b.lstrip('YyMmNnHh.' + "".join(map(str, range(10))))
     262    b = title.lstrip('YyMmNnHh')
    270263    a = title[:len(title) - len(b)]
    271264    b0 = "<emphasis role='blue'>" + escape(b[0]) + "</emphasis>"
     
    294287from jinja2 import Template
    295288
    296 t = Template('''<?xml version="1.0" encoding="UTF-8"?>
     289t = Template('''<?xml version="1.0" encoding="ISO-8859-1"?>
    297290<!DOCTYPE note PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
    298291  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
Note: See TracChangeset for help on using the changeset viewer.