mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-03 19:20:21 +00:00
manual: script takes cmd line params
This commit is contained in:
parent
88f21ad11b
commit
4b0c7d42c3
@ -1,11 +1,11 @@
|
|||||||
pdf: clean
|
pdf: clean
|
||||||
python update_listings.py
|
./update_listings.py
|
||||||
pdflatex btstack_gettingstarted.tex
|
pdflatex btstack_gettingstarted.tex
|
||||||
pdflatex btstack_gettingstarted.tex
|
pdflatex btstack_gettingstarted.tex
|
||||||
open btstack_gettingstarted.pdf
|
open btstack_gettingstarted.pdf
|
||||||
|
|
||||||
example:
|
example:
|
||||||
python update_listings.py
|
./update_listings.py -s 1
|
||||||
subl examples.tex
|
subl examples.tex
|
||||||
pdflatex examples.tex
|
pdflatex examples.tex
|
||||||
open examples.pdf
|
open examples.pdf
|
||||||
|
@ -1,11 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys, getopt
|
||||||
|
|
||||||
docs_folder = ""
|
|
||||||
appendix_file = docs_folder + "examples.tex"
|
|
||||||
stand_alone_doc = 1
|
|
||||||
|
|
||||||
lst_header = """
|
lst_header = """
|
||||||
\\begin{lstlisting}
|
\\begin{lstlisting}
|
||||||
@ -75,12 +71,12 @@ list_of_examples = {
|
|||||||
|
|
||||||
class State:
|
class State:
|
||||||
SearchExampleStart = 0
|
SearchExampleStart = 0
|
||||||
SearchListingStart = 2
|
SearchListingStart = 1
|
||||||
SearchListingPause = 4
|
SearchListingPause = 2
|
||||||
SearchListingResume = 5
|
SearchListingResume = 3
|
||||||
SearchListingEnd = 6
|
SearchListingEnd = 4
|
||||||
SearchItemizeEnd = 7
|
SearchItemizeEnd = 5
|
||||||
ReachedExampleEnd = 8
|
ReachedExampleEnd = 6
|
||||||
|
|
||||||
def replacePlaceholder(template, title, lable):
|
def replacePlaceholder(template, title, lable):
|
||||||
snippet = template.replace("API_TITLE", title).replace("API_LABLE", lable)
|
snippet = template.replace("API_TITLE", title).replace("API_LABLE", lable)
|
||||||
@ -132,7 +128,7 @@ def processTextLine(line):
|
|||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
|
||||||
def writeListings(fout, infile_name):
|
def writeListings(aout, infile_name):
|
||||||
itemText = None
|
itemText = None
|
||||||
state = State.SearchExampleStart
|
state = State.SearchExampleStart
|
||||||
code_in_listing = ""
|
code_in_listing = ""
|
||||||
@ -234,7 +230,8 @@ def writeListings(fout, infile_name):
|
|||||||
|
|
||||||
|
|
||||||
# write list of examples
|
# write list of examples
|
||||||
with open(appendix_file, 'w') as aout:
|
def processExamples(examples_file, stand_alone_doc):
|
||||||
|
with open(examples_file, 'w') as aout:
|
||||||
if stand_alone_doc:
|
if stand_alone_doc:
|
||||||
aout.write(document_begin)
|
aout.write(document_begin)
|
||||||
aout.write(examples_header)
|
aout.write(examples_header)
|
||||||
@ -264,3 +261,26 @@ with open(appendix_file, 'w') as aout:
|
|||||||
if stand_alone_doc:
|
if stand_alone_doc:
|
||||||
aout.write(document_end)
|
aout.write(document_end)
|
||||||
|
|
||||||
|
def main(argv):
|
||||||
|
outputfile = "examples.tex"
|
||||||
|
standalone_flag = 0
|
||||||
|
|
||||||
|
try:
|
||||||
|
opts, args = getopt.getopt(argv,"hs:o:",["sflag=","ofile="])
|
||||||
|
except getopt.GetoptError:
|
||||||
|
print 'test.py [-s <standaloneflag>] [-o <outputfile>]'
|
||||||
|
sys.exit(2)
|
||||||
|
for opt, arg in opts:
|
||||||
|
if opt == '-h':
|
||||||
|
print 'update_listings.py [-s <standalone_flag>] [-o <outputfile>]'
|
||||||
|
sys.exit()
|
||||||
|
elif opt in ("-s", "--sflag"):
|
||||||
|
standalone_flag = arg
|
||||||
|
elif opt in ("-o", "--ofile"):
|
||||||
|
outputfile = arg
|
||||||
|
print 'Standalone flag is ', standalone_flag
|
||||||
|
print 'Output file is ', outputfile
|
||||||
|
processExamples(outputfile, standalone_flag)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main(sys.argv[1:])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user