Skip to content

Srltas/cubrid-manual

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cubrid-manual

Documentation for CUBRID RDBMS

  1. Extension of original files of this manual

     *.rst
     *.inc
    
  2. Precaution to edit files.

    Please don't use tab character. Change your editor setting that "change tab as spaces". 1 tab should be 4 spaces.

  3. How to build manual

    1. Install sphinx package and theme

      1. Install python

      2. Install pip by running command:

        python get-pip.py
        
      3. Install sphinx

        pip install sphinx
        
      4. Install read the docs theme

        pip install sphinx_rtd_theme
        
    2. go to the manual directory (cd ko for Korean; or cd en for English)

    3. make html

    4. now you can see the built html files from _built/

  4. Make commands

    make clean
    
    make html
    
  5. Mainly used tags on sphinx document(.rst file).

    Basically, indent is very important when you use tags. For details, see http://sphinx-doc.org/

    1. Titles
    *****
    First
    *****
    
    Second
    ======
    
    Third
    -----
    
    Fourth
    ^^^^^^
    
    Fifth
    +++++
    
    1. bold & italic
    **bold text**
    
    *italic text*
    
    1. escaping with \
    *italic text*\_  will be "italic text_" : blank is ignored.
    
    1. dot list
    *   text
    -   text
    
    1. boxes
    ::
    
        text
    
    .. code-block:: sql
    
        SELECT 1;
    
    .. note::
    
        note this.
    
    .. warning::
    
        warning this.
    
    1. footnote
    .. rubric:: Footnotes
    
    .. [#f1] word: explanation
    
    1. function
    .. function:: function_name (arg1, arg2)
    
    1. option
    .. program:: program_name
    
    .. option:: option_description
    
        explanation
    
    1. links

      1. function link

            :func:`func_name`
        
      2. footnote link

            [#f1]_
        
      3. internal link

            .. _link_position:
        
            :ref:`link_positon` or :ref:`title <link_positon>`
        
            :doc:`doc_path_name`
        
      4. external link

            `title <http address>`_
        

About

Documentation for CUBRID RDBMS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 37.0%
  • C++ 36.5%
  • Python 14.5%
  • Makefile 6.0%
  • Batchfile 5.5%
  • Shell 0.4%
  • CSS 0.1%