General Cleanup
This commit is contained in:
parent
eb806aa6fd
commit
7553080396
5 changed files with 73 additions and 17 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -1,3 +1,7 @@
|
||||||
*.png
|
!logos/logo.jpg
|
||||||
*.jpg
|
logos/*.png
|
||||||
|
logos/*.jpg
|
||||||
|
logos/*.pdf
|
||||||
|
Thumbs*
|
||||||
|
|
||||||
*.pdf
|
*.pdf
|
43
jmk.yaml
43
jmk.yaml
|
@ -6,6 +6,8 @@
|
||||||
#
|
#
|
||||||
# 0 - Initial version that is good enough to send to clients
|
# 0 - Initial version that is good enough to send to clients
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
pageSetup:
|
pageSetup:
|
||||||
size: Letter
|
size: Letter
|
||||||
spacing-header: 10mm
|
spacing-header: 10mm
|
||||||
|
@ -19,41 +21,52 @@ fontsAlias:
|
||||||
stdFont: calibri
|
stdFont: calibri
|
||||||
headingFont: Helvetica-Bold
|
headingFont: Helvetica-Bold
|
||||||
|
|
||||||
|
linkColor: black
|
||||||
|
|
||||||
styles:
|
styles:
|
||||||
|
bodytext:
|
||||||
|
alignment: TA_LEFT
|
||||||
normal:
|
normal:
|
||||||
parent: base
|
parent: base
|
||||||
fontSize: 11
|
fontSize: 11
|
||||||
fontName: stdFont
|
fontName: stdFont
|
||||||
heading:
|
header:
|
||||||
|
alignment: TA_CENTER
|
||||||
parent: normal
|
parent: normal
|
||||||
|
heading:
|
||||||
|
keepWithNext: true
|
||||||
|
parent: normal
|
||||||
|
spaceAfter: 6
|
||||||
|
spaceBefore: 12
|
||||||
fontName: headingFont
|
fontName: headingFont
|
||||||
fontSize: 20
|
|
||||||
textColor: 17365D
|
textColor: 17365D
|
||||||
heading1:
|
heading1:
|
||||||
parent: heading
|
parent: heading
|
||||||
fontSize: 18
|
fontSize: 175%
|
||||||
|
spaceBefore: 10
|
||||||
|
spaceAfter: 10
|
||||||
heading2:
|
heading2:
|
||||||
parent: heading
|
parent: heading
|
||||||
fontSize: 16
|
fontSize: 150%
|
||||||
heading3:
|
heading3:
|
||||||
parent: heading
|
parent: heading
|
||||||
fontSize: 16
|
fontSize: 125%
|
||||||
heading4:
|
heading4:
|
||||||
parent: heading
|
parent: heading
|
||||||
fontSize: 14
|
fontSize: 112%
|
||||||
heading5:
|
heading5:
|
||||||
parent: heading
|
parent: heading
|
||||||
fontSize: 12
|
fontSize: 100%
|
||||||
|
|
||||||
title:
|
title:
|
||||||
parent: heading
|
parent: heading
|
||||||
fontSize: 30
|
fontSize: 30
|
||||||
|
align: right
|
||||||
txtheader:
|
txtheader:
|
||||||
parent: heading
|
parent: heading
|
||||||
|
|
||||||
|
|
||||||
headertable:
|
headertable:
|
||||||
borderWidth: 1
|
borderWidth: 0
|
||||||
borderColor: red
|
borderColor: red
|
||||||
parent: heading
|
parent: heading
|
||||||
align: center
|
align: center
|
||||||
|
@ -61,16 +74,18 @@ styles:
|
||||||
align: center
|
align: center
|
||||||
headerlogol:
|
headerlogol:
|
||||||
valign: middle
|
valign: middle
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
mytable:
|
||||||
|
parent: table
|
||||||
|
colWidths: [3cm, 6cm, 3cm]
|
||||||
|
|
||||||
item-list:
|
item-list:
|
||||||
# Added some space after a bulleted list to make things a bit cleaner
|
|
||||||
spaceAfter: 10pt
|
spaceAfter: 10pt
|
||||||
colWidths:
|
colWidths:
|
||||||
# The defualt is 20, but that only allows single digit numbers
|
|
||||||
- 30pt
|
- 30pt
|
||||||
# I left this as null
|
|
||||||
- null
|
- null
|
||||||
bullet-list:
|
bullet-list:
|
||||||
# Added some space after a bulleted list to make things a bit cleaner
|
|
||||||
spaceBefore: 0
|
|
||||||
spaceAfter: 10pt
|
spaceAfter: 10pt
|
||||||
|
|
||||||
|
|
37
jmkengineering.yaml
Normal file
37
jmkengineering.yaml
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"pageSetup" : {
|
||||||
|
"size": "Letter",
|
||||||
|
},
|
||||||
|
"fontsAlias" : {
|
||||||
|
"stdFont": "Calibri",
|
||||||
|
"headingFont": "Calibri Light"
|
||||||
|
},
|
||||||
|
"styles" : [
|
||||||
|
["normal" , {
|
||||||
|
"fontSize": 12
|
||||||
|
}],
|
||||||
|
["heading" , {
|
||||||
|
"parent": "normal",
|
||||||
|
"fontName": "headingFont",
|
||||||
|
"fontSize": 20,
|
||||||
|
"textColor": "#0000ff"
|
||||||
|
}],
|
||||||
|
["heading1" , {
|
||||||
|
"parent": "heading",
|
||||||
|
"fontSize": 18,
|
||||||
|
}],
|
||||||
|
["heading2" , {
|
||||||
|
"parent": "heading",
|
||||||
|
"fontSize": 16,
|
||||||
|
}],
|
||||||
|
["heading3" , {
|
||||||
|
"parent": "heading",
|
||||||
|
"fontSize": 14,
|
||||||
|
}],
|
||||||
|
["title" , {
|
||||||
|
"parent": "heading",
|
||||||
|
"fontSize": 40
|
||||||
|
}]
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
BIN
static/watermark.png
Normal file
BIN
static/watermark.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
|
@ -16,7 +16,7 @@
|
||||||
SetPageCounter 1 lowerroman
|
SetPageCounter 1 lowerroman
|
||||||
|
|
||||||
.. This is the setup for the header substitutions. Sometimes there will be a second logo
|
.. This is the setup for the header substitutions. Sometimes there will be a second logo
|
||||||
.. |logo| image:: //aragorn/jmkengineering/Engineering/General/common/logos/JMKEngineering-Logo-Small.jpg
|
.. |logo| image:: common/logo.jpg
|
||||||
:height: 2cm
|
:height: 2cm
|
||||||
|
|
||||||
.. |Revision| replace:: A
|
.. |Revision| replace:: A
|
||||||
|
|
Loading…
Reference in a new issue