about summary refs log tree commit diff
path: root/skribe/doc/user/table.skb
diff options
context:
space:
mode:
authorLudovic Courtes2005-10-31 16:03:18 +0000
committerLudovic Courtes2005-10-31 16:03:18 +0000
commite9509518623d016880392237a298d4561a3b6a0b (patch)
tree9de28d4985d0c1f8b040900ce23714de8531e46f /skribe/doc/user/table.skb
parent409e8a99bf90ddb8e5d40c6dd8559ad1d97b925f (diff)
downloadskribilo-e9509518623d016880392237a298d4561a3b6a0b.tar.gz
skribilo-e9509518623d016880392237a298d4561a3b6a0b.tar.lz
skribilo-e9509518623d016880392237a298d4561a3b6a0b.zip
Removed useless files, integrated packages.
* src/guile/skribilo/packages: New directory and files.

* bin: Removed.

* skr: Removed (files moved to `src/guile/skribilo/packages').

* skribe: Removed.

* doc/skr/env.skr (*courtes-mail*): New.

* doc/user/user.skb: Removed postal addresses, added my name.

* src/guile/skribilo/engine/lout.scm: Uncommented the slide-related
  markup writers.

* src/guile/skribilo/evaluator.scm (%evaluate): Try weird things with
  source properties.

* src/guile/skribilo/reader/skribe.scm: Comply with the new guile-reader
  API.

* src/guile/skribilo/types.scm: Removed the special `initialize' method
  for ASTs which was supposed to set their location.

git-archimport-id: lcourtes@laas.fr--2005-mobile/skribilo--devel--1.2--patch-7
Diffstat (limited to 'skribe/doc/user/table.skb')
-rw-r--r--skribe/doc/user/table.skb81
1 files changed, 0 insertions, 81 deletions
diff --git a/skribe/doc/user/table.skb b/skribe/doc/user/table.skb
deleted file mode 100644
index c726d44..0000000
--- a/skribe/doc/user/table.skb
+++ /dev/null
@@ -1,81 +0,0 @@
-;*=====================================================================*/
-;*    serrano/prgm/project/skribe/doc/user/table.skb                   */
-;*    -------------------------------------------------------------    */
-;*    Author      :  Manuel Serrano                                    */
-;*    Creation    :  Fri Sep  5 13:45:18 2003                          */
-;*    Last change :  Wed Oct 27 12:09:01 2004 (eg)                     */
-;*    Copyright   :  2003-04 Manuel Serrano                            */
-;*    -------------------------------------------------------------    */
-;*    Skribe tables                                                    */
-;*=====================================================================*/
-
-;*---------------------------------------------------------------------*/
-;*    Table ...                                                        */
-;*---------------------------------------------------------------------*/
-(section :title "Table" :file #t
-
-   (p [Tables are defined by the means of the ,(code "table") function.])
-
-   (doc-markup 'table
-      `((:border [The table border thickness.])
-	(:width ,[The ,(ref :mark "width") of the table.])
-	(:frame ,[Which parts of frame to render. Must be one of
-         ,(code "none"), ,(code "above"), ,(code "below"), 
-         ,(code "hsides"), ,(code "vsides"), ,(code "lhs"), 
-         ,(code "rhs"), ,(code "box"), ,(code "border").])
-	(:rules ,[Rulings between rows and cols, Must be one of
-         ,(code [none]), ,(code "rows"), ,(code "cols"), ,(code "header"), 
-         ,(code "all").])
-	(:cellstyle ,[The style of cells border. Must be either 
-         ,(code "collapse"), ,(code "separate"), or a length representing
-         the horizontal and vertical space separating the cells.])
-	(:cellpadding [A number of pixels around each cell.])
-	(:cellspacing [An optional number of pixels used to separate each
-         cell of the table. A negative uses the target default.])
-	(#!rest row... [The rows of the table. Each row must be 
-         constructed by the ,(ref :mark "tr" :text (code "tr")) function.])))
-   
-   (p [,(bold (emph (color :fg "red" "Note:"))) Tables rendering may be only
-partially supported by graphical agents. For instance, the ,(code "cellstyle")
-attribute is only supported by HTML engines supporting
-,(ref :url "http://www.w3.org/TR/REC-CSS2/" :text "CSS2").])
-   
-
-;*--- table rows ------------------------------------------------------*/
-(subsection :title "Table row"
-
-(p [Table rows are defined by the ,(code "tr") function.])
-
-(doc-markup 'tr
-	    '((:bg [The background color of the row.])
-	      (#!rest cell... [The row cells.]))))
-
-;*--- Table cell ------------------------------------------------------*/
-(subsection :title "Table cell"
-
-(p [Two functions define table cells: ,(code "th") for header cells and
-,(code "td") for plain cells.])
-
-(doc-markup 'th
-	    '((:bg [The background color of the cell.])
-	      (:width ,[The ,(ref :mark "width") of the table.])
-	      (:align [The horizontal alignment of the table cell 
-                       (,(tt "left"), ,(tt "right"), or ,(tt "center"). Some
-                       engines, such as the HTML engine, also supports a
-                       character for the alignment.)])
-	      (:valign [The vertical alignment of the cell. The value can
-		        be ,(code "top"), ,(code "center"), ,(code "bottom").])
-              (:colspan [The number of columns that the cell expands to.])
-	      (#!rest node [The value of the cell.]))
-	    :writer-id 'tc
-	    :ignore-args '(m)
-	    :others '(td)))
-
-;*--- Example ---------------------------------------------------------*/
-(subsection :title "Example"
-
-(example-produce
- (example :legend "A table" (prgm :file "src/api17.skb"))
- (disp (include "src/api17.skb")))))
-
-;; @indent: (put 'doc-markup 'skribe-indent 'skribe-indent-function)@*