Fast fix
This commit is contained in:
parent
625788fa05
commit
bf58089cf1
3 changed files with 16 additions and 14 deletions
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Clean" script:language="StarBasic">Sub mark32
|
||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Clean" script:language="StarBasic">Sub mark33
|
||||
|
||||
End Sub
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Validation" script:language="StarBasic">Sub markZXZ
|
||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Validation" script:language="StarBasic">Sub markval1
|
||||
|
||||
End Sub
|
||||
|
||||
|
@ -201,17 +201,19 @@ Private Sub printNumberingSymbols(needExtendedInfo)
|
|||
If Len(excerpt) < exLength Then
|
||||
exLength = Len(excerpt)
|
||||
EndIf
|
||||
tmp = "Уровень " & (j + 1) & " шрифт " & fontName & " символ " & fontChar & " (" & Hex(Asc(fontChar)) & ") "& Left(excerpt,exLength) & chr(10)
|
||||
If Asc(fontChar) > 57344 AND Asc(fontChar) < 63743 Then
|
||||
resultBad = resultBad & tmp
|
||||
ElseIf fontName <> "IPH Astra Serif" _
|
||||
AND fontName <> "OpenSymbol" _
|
||||
AND fontName <> "IPH Lib Serif" _
|
||||
AND fontName <> "IPH Lib Sans" _
|
||||
AND fontName <> "Liberation Serif" _
|
||||
AND fontName <> "Liberation Sans" _
|
||||
AND needExtendedInfo Then
|
||||
result = result & tmp
|
||||
If fontChar <> "" Then
|
||||
tmp = "Уровень " & (j + 1) & " шрифт " & fontName & " символ " & fontChar & " (" & Hex(Asc(fontChar)) & ") "& Left(excerpt,exLength) & chr(10)
|
||||
If Asc(fontChar) > 57344 AND Asc(fontChar) < 63743 Then
|
||||
resultBad = resultBad & tmp
|
||||
ElseIf fontName <> "IPH Astra Serif" _
|
||||
AND fontName <> "OpenSymbol" _
|
||||
AND fontName <> "IPH Lib Serif" _
|
||||
AND fontName <> "IPH Lib Sans" _
|
||||
AND fontName <> "Liberation Serif" _
|
||||
AND fontName <> "Liberation Sans" _
|
||||
AND needExtendedInfo Then
|
||||
result = result & tmp
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
xmlns:dep="http://openoffice.org/extensions/description/2006"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<identifier value="pro.litvinovg.Redaction" />
|
||||
<version value="0.5.7" />
|
||||
<version value="0.5.8" />
|
||||
<platform value="all" />
|
||||
<display-name>
|
||||
<name lang="en">Cleaning and validation documents for publishing in html and epub with pagination</name>
|
||||
|
|
Loading…
Add table
Reference in a new issue