mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
In SGML we only need to worry about "<", not ">"; update scripts.
This commit is contained in:
parent
6416a82a62
commit
b3d32ebac6
@ -44,7 +44,7 @@ For Major Releases
|
|||||||
o document all new features
|
o document all new features
|
||||||
o update help output from inside the programs
|
o update help output from inside the programs
|
||||||
o doc/src/sgml/ref manual pages
|
o doc/src/sgml/ref manual pages
|
||||||
o convert any literal "<" and ">" characters, use tools/find_gt_lt
|
o convert any literal "<" and ">" characters, use tools/find_lt
|
||||||
o update the sizes specified for installation requirements
|
o update the sizes specified for installation requirements
|
||||||
(doc/src/sgml/installation.sgml, section "install-requirements")
|
(doc/src/sgml/installation.sgml, section "install-requirements")
|
||||||
o update the shared memory size requirement table
|
o update the shared memory size requirement table
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# src/tools/find_gt_lt
|
|
||||||
|
|
||||||
grep "$@" '[^]a-z0-9"/!-]>' *.sgml ref/*.sgml
|
|
||||||
grep "$@" '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml
|
|
6
src/tools/find_lt
Executable file
6
src/tools/find_lt
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# src/tools/find_lt
|
||||||
|
# SGML is fine with ">"
|
||||||
|
|
||||||
|
grep "$@" '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml
|
Loading…
x
Reference in New Issue
Block a user