SiSU -->
TOC linked  toc  Full Text  scroll  PDF portrait   pdf  PDF landscape   pdf  ODF/ODT  odt    A-Z  Document Manifest  @
<< previous TOC next >>
< ^ >

SiSU

Manual

Ralph Amissah

copy @ SiSU

SiSU - Manual,
Ralph Amissah

 

  1

 

  2

 

  1927

 

44. FAQ - Frequently Asked/Answered Questions

  2013

44.1 Why are urls produced with the -v (and -u) flag that point to a web server on port 8081?
44.2 I cannot find my output, where is it?
44.3 I do not get any pdf output, why?
44.4 Where is the latex (or some other interim) output?
44.5 Why isn't SiSU markup XML
44.6 LaTeX claims to be a document preparation system for high-quality typesetting. Can the same be said about SiSU?
44.7 How do I create GIN or GiST index in Postgresql for use in SiSU
44.8 Where is version 1.0?

44.1 Why are urls produced with the -v (and -u) flag that point to a web server on port 8081?

  2014

Try the following rune:

  2015

  • sisu -W
  •   2016

    This should start the ruby webserver. It should be done after having produced some output as it scans the output directory for what to serve.

      2017

    44.2 I cannot find my output, where is it?

      2018

    The following should provide help on output paths:

      2019

  • sisu --help env
  •   2020

  • sisu -V [same as the previous command]
  •   2021

  • sisu --help directory
  •   2022

  • sisu --help path
  •   2023

  • sisu -U [filename]
  •   2024

  • man sisu
  •   2025

    44.3 I do not get any pdf output, why?

      2026

    SiSU produces LaTeX and pdflatex is run against that to generate pdf files.

      2027

    If you use Debian the following will install the required dependencies

      2028

  • aptitude install sisu-pdf
  •   2029

    the following packages are required: tetex-bin, tetex-extra, latex-ucs

      2030

    44.4 Where is the latex (or some other interim) output?

      2031

    Try adding -M (for maintenance) to your command flags, e.g.:

      2032

  • sisu -HpMv [filename]
  •   2033

    this should result in the interim processing output being retained, and information being provided on where to find it.

      2034

  • sisu --help directory
  •   2035

  • sisu --help path
  •   2036

    should also provide some relevant information as to where it is placed.

      2037

    44.5 Why isn't SiSU markup XML

      2038

    I worked with text and (though I find XML immensely valuable) disliked noise ... better to sidestep the question and say:

      2039

    SiSU currently "understands" three XML input representations - or more accurately, converts from three forms of XML to native SiSU markup for processing. The three types correspond to SAX (structure described), DOM (structure embedded, whole document must be read before structure is correctly discernable) and node based (a tree) forms of XML document structure representation. Problem is I use them very seldom and check that all is as it should be with them seldom, so I would not be surprised if something breaks there, but as far as I know they are working. I will check and add an XML markup help page before the next release. There already is a bit of information in the man page under the title SiSU VERSION CONVERSION

      2040

    sisu --to-sax [filename/wildcard]

      2041

    sisu --to-dom [filename/wildcard]

      2042

    sisu --to-node [filename/wildcard]

      2043

    The XML should be well formed... must check, but lacks sensible headers. Suggestions welcome as to what to make of them. [For the present time I am satisfied that I can convert (both ways) between 3 forms of XML representation and SiSU markup].

      2044

    sisu --from-xml2sst [filename/wildcard]

      2045

    44.6 LaTeX claims to be a document preparation system for high-quality typesetting. Can the same be said about SiSU?

      2046

    SiSU is not really about type-setting.

      2047

    LaTeX is the ultimate computer instruction type-setting language for paper based publication.

      2048

    LaTeX is able to control just about everything that happens on page and pixel, position letters kerning, space variation between characters, words, paragraphs etc. formula.

      2049

    SiSU is not really about type-setting at all. It is about a lightweight markup instruction that provides enough information for an abstraction of the documents structure and objects, from which different forms of representation of the document can be generated.

      2050

    SiSU with very little markup instruction is able to produce relatively high quality pdf by virtue of being able to generate usable default LaTeX; it produces "quality" html by generating the html directly; likewise it populates an SQL database in a useful way with the document in object sized chunks and its meta-data. But SiSU works on an abstraction of the document's structure and content and custom builds suitable uniform output. The html for browser viewing and pdf for paper viewing/publishing are rather different things with different needs for layout - as indeed is what is needed to store information in a database in searchable objects.

      2051

    The pdfs or html produced for example by open office based on open document format and other office/word processor suits usually attempt to have similar looking outputs - your document rendered in html looks much the same, or in pdf... sisu is less this way, it seeks to have a starting point with as little information about appearance as possible, and to come up with the best possible appearance for each output that can be derived based on this minimal information.

      2052

    Where there are large document sets, it provides consistency in appearance in each output format for the documents.

      2053

    The excuse for going this way is, it is a waste of time to think much about appearance when working on substantive content, it is the substantive content that is relevant, not the way it looks beyond the basic informational tags - and yet you want to be able to take advantage of as many useful different ways of representing documents as are available, and for various types of output to to be/look as good as it can for each medium/format in which it is presented, (with different mediums having different focuses) and SiSU tries to achieve this from minimal markup.

      2054

    44.7 How do I create GIN or GiST index in Postgresql for use in SiSU

      2055

    This at present needs to be done "manually" and it is probably necessary to alter the sample search form. The following is a helpful response from one of the contributors of GiN to Postgresql Oleg Bartunov 2006-12-06:

      2056

    "I have tsearch2 slides which introduces tsearch2 <http://www.sai.msu.su/~megera/wiki/tsearch2slides>

      2057

    FTS in PostgreSQL is provided by tsearch2, which should works without any indices (GiST or GIN) ! Indices provide performance, not functionality.

      2058

    In your example I'd do ( simple way, just for demo):

      2059

    0. compile, install tsearch2 and load tsearch2 into your database

      2060

    cd contrib/tsearch2; make&&make&&install&&make installcheck; psql DB < tsearch2.sql

      2061

    1. Add column fts, which holds tsvector

      2062

    alter table documents add column fts tsvector;

      2063

    2. Fill fts column

      2064

    update document set fts = to_tsvector(clean);

      2065

    3. create index - just for performance !

      2066

    create index fts_gin_idx on document using gin(fts);

      2067

    4. Run vacuum

      2068

    vacuum analyze document;

      2069

    That's all.

      2070

    Now you can search:

      2071

    select lid, metadata_tid, rank_cd(fts, q,2)as rank from document, plainto_tsquery('markup syntax') q where q @@ fts order by rank desc limit 10;

      2072

    44.8 Where is version 1.0?

      2073

    SiSU works pretty well as it is supposed to. Version 1.0 will have the current markup, and directory structure. At this point it is largely a matter of choice as to when the name change is made.

      2074

    The feature set for html,  110  LaTeX/pdf and opendocument is in place. XML, and plaintext are in order.

      2075

    html and LaTeX/pdf may be regarded as reference copy outputs

      2076

    With regard to the populating of sql databases (postgresql and sqlite), there is a bit to be done.

      2077

    We are still almost there.

      2078

    ^

     110. html w3c compliance has been largely met.

     
     
    SiSU -->
    TOC linked  toc  Full Text  scroll  PDF portrait   pdf  PDF landscape   pdf  ODF/ODT  odt    A-Z  Document Manifest  @
    << previous TOC next >>
    < ^ >

    SiSU

    Output generated by SiSU 0.59.1 2007-09-25 (2007w39/2)
    SiSU Copyright © Ralph Amissah 1997, current 2007. All Rights Reserved.
    SiSU is software for document structuring, publishing and search,
    www.jus.uio.no/sisu and www.sisudoc.org
    w3 since October 3 1993 ralph@amissah.com

    SiSU using:
    Standard SiSU markup syntax,
    Standard SiSU meta-markup syntax, and the
    Standard SiSU object citation numbering and system, (object/text positioning system)
    Copyright © Ralph Amissah 1997, current 2007. All Rights Reserved.

    GPLv3

    SiSU is released under GPLv3 or later, <http://www.gnu.org/licenses/gpl.html>

    SiSU, developed using Ruby on Debian/Gnu/Linux software infrastructure, with the usual GPL (or OSS) suspects.
    Better - "performance, reliability, scalability, security & total cost of ownership" [not to mention flexibility & choice] use of and adherence to open standards (where practical and fair) and it is software libre.
    Get With the Future Way Better!



    idx txt


    SiSU manual


    SiSU