Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
4284002d
Commit
4284002d
authored
Sep 15, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Markup examples as examples. Fix formatting of examples.
parent
184c4afc
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
170 additions
and
125 deletions
+170
-125
doc/src/sgml/stylesheet.css
doc/src/sgml/stylesheet.css
+2
-1
doc/src/sgml/stylesheet.dsl
doc/src/sgml/stylesheet.dsl
+37
-1
doc/src/sgml/typeconv.sgml
doc/src/sgml/typeconv.sgml
+131
-123
No files found.
doc/src/sgml/stylesheet.css
View file @
4284002d
/* $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.css,v 1.
1 2001/09/14 20:37:55
petere Exp $ */
/* $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.css,v 1.
2 2001/09/15 00:48:59
petere Exp $ */
/* color scheme similar to www.postgresql.org */
/* color scheme similar to www.postgresql.org */
...
@@ -38,6 +38,7 @@ DIV.example {
...
@@ -38,6 +38,7 @@ DIV.example {
border-width
:
0px
;
border-width
:
0px
;
border-left-width
:
2px
;
border-left-width
:
2px
;
border-color
:
black
;
border-color
:
black
;
margin
:
0.5ex
;
}
}
/* less dense spacing of TOC */
/* less dense spacing of TOC */
...
...
doc/src/sgml/stylesheet.dsl
View file @
4284002d
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.dsl,v 1.
9 2001/09/14 20:37:55
petere Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.dsl,v 1.
10 2001/09/15 00:48:59
petere Exp $ -->
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
<!-- must turn on one of these with -i on the jade command line -->
<!-- must turn on one of these with -i on the jade command line -->
...
@@ -68,6 +68,42 @@
...
@@ -68,6 +68,42 @@
(define html-index #t)
(define html-index #t)
;; Block elements are allowed in PARA in DocBook, but not in P in
;; HTML. With %fix-para-wrappers% turned on, the stylesheets attempt
;; to avoid putting block elements in HTML P tags by outputting
;; additional end/begin P pairs around them.
(define %fix-para-wrappers% #t)
;; ...but we need to do some extra work to make the above apply to PRE
;; as well. (mostly pasted from dbverb.dsl)
(define ($verbatim-display$ indent line-numbers?)
(let ((content (make element gi: "PRE"
attributes: (list
(list "CLASS" (gi)))
(if (or indent line-numbers?)
($verbatim-line-by-line$ indent line-numbers?)
(process-children)))))
(if %shade-verbatim%
(make element gi: "TABLE"
attributes: ($shade-verbatim-attr$)
(make element gi: "TR"
(make element gi: "TD"
content)))
(make sequence
(para-check)
content
(para-check 'restart)))))
;; ...and for notes.
(element note
(make sequence
(para-check)
($admonition$)
(para-check 'restart)))
;;; XXX The above is very ugly. It might be better to run 'tidy' on
;;; the resulting *.html files.
]]> <!-- %output-html -->
]]> <!-- %output-html -->
<![ %output-print; [
<![ %output-print; [
...
...
doc/src/sgml/typeconv.sgml
View file @
4284002d
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment