Browse Source

Загрузка на Github

master
Maxim Lihachev 12 years ago
commit
71068d225f
  1. 18
      README
  2. 1085
      books.lisp
  3. 1264
      doc/books_lisp.html
  4. 261
      doc/books_lisp.tex
  5. BIN
      doc/dot_graph_1.png
  6. 91
      doc/masterindex.html
  7. 77
      doc/robo_functions.html
  8. 41
      doc/robo_methods.html
  9. 46
      doc/robo_modules.html
  10. 45
      doc/robo_sourcefiles.html
  11. 42
      doc/robo_strutures.html
  12. 40
      doc/robo_variables.html
  13. 302
      doc/robodoc.css
  14. 106
      doc/toc_index.html

18
README

@ -0,0 +1,18 @@ @@ -0,0 +1,18 @@
Программа ведения базы данных [прочитанных] книг.
Написана в качестве Hello World на Common Lisp.
Использование:
help вывод справки по использованию
r читаемые книги
d прочитанные книги
n не прочитанные книги
new добавить новые книги
edit <...> редактировать книги
set d|r|n <...> сменить статус для книг
del <...> удаление книг из базы
sort, sort+ сортировка по возрастанию
sort- сортировка по убыванию
report <...> вывод отчета по ключевому слову
reports вывод отчетов по всем ключевым словам
<...> поиск книг в базе данных

1085
books.lisp

File diff suppressed because it is too large Load Diff

1264
doc/books_lisp.html

File diff suppressed because it is too large Load Diff

261
doc/books_lisp.tex

@ -0,0 +1,261 @@ @@ -0,0 +1,261 @@
% Document: ./books.lisp
% Source: ./books.lisp
% Generated with ROBODoc Version 4.99.38 (Oct 24 2010)
\documentclass{article}
\usepackage{makeidx}
\usepackage{graphicx}
\oddsidemargin 0.25 in
\evensidemargin 0.25 in
\marginparwidth 0.75 in
\textwidth 5.875 in
\setlength{\parindent}{0in}
\setlength{\parskip}{.08in}
\pagestyle{headings}
\title{API Reference}
\author{Generated with ROBODoc Version 4.99.38 (Oct 24 2010)
}
\makeindex
\begin{document}
\maketitle
\printindex
\tableofcontents
\newpage
\subsection{books/books-edit}
\index{unsorted!books-edit}\index{Modules!books-edit}
\textbf{NAME:}\hspace{0.08in}\begin{verbatim}
Функции изменения книг
\end{verbatim}
\subsection{Compiler/Parser}
\index{unsorted!Parser}\index{Modules!Parser}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
The parser module contains functions that scan a
preprocessed source file and build the syntax tree.
\end{verbatim}
\subsection{D-Language/Compiler}
\index{unsorted!Compiler}\index{Modules!Compiler}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
The compiler takes a preprocessed source file and
turns it into an object file.
\end{verbatim}
\subsection{D-Language/Linker}
\index{unsorted!Linker}\index{Modules!Linker}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
The linker module contains functions that scan a
object file and build the executable.
\end{verbatim}
\subsection{books-edit/set-books-status}
\index{unsorted!set-books-status}\index{Functions!set-books-status}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
set-books-status -- изменение статуса прочтения книги
\end{verbatim}
\textbf{INPUTS:}\hspace{0.08in}\begin{verbatim}
- status-char -- символ статуса прочтения
'd - 'done -- книга прочитана
'n - 'new -- книга не прочитана
'r - 'read -- книга в процессе чтения
- db -- список книг, предназначенных для изменения
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defun set-books-status (status-char patterns db)
"Установка статуса прочтения книги.
Статус задается символами 'd, 'n или 'r."
(let ((new-db (copy-list db))
(status (case-status (character status-char))))
(for-books (book (search-books patterns new-db))
(if-agree "Сменить статус книги? [y/n]: "
(setf (:Прочитана? book) status)
;Если статус меняется на "Прочитано", установить оценку
(if (equal status "да")
(setf (:Оценка book) (read-book-field "Оценка [1-5]"))
;Иначе установить оценку, равную нулю
(setf (:Оценка book) "0")))) new-db))
\end{verbatim}
\subsection{books.main/+colors+}
\index{unsorted!+colors+}\index{Structures!+colors+}
\textbf{NAME:}\hspace{0.08in}\begin{verbatim}
+colors+ - настройка цвета
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defparameter +colors+
'( :new "1;35m" ;Цвет непрочитанных книг
:read "1;33m" ;Цвет читаемых книг
:done "1;34m" ;Цвет прочитанных книг
:rating "1;31m" ;Цвет оценок и диаграмм статистики
:reset "00m"))
\end{verbatim}
\subsection{books.main/+db-file+}
\index{unsorted!+db-file+}\index{Variables!+db-file+}
\textbf{NAME:}\hspace{0.08in}\begin{verbatim}
book-info -- файл базы данных
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defparameter +db-file+ "books.db")
\end{verbatim}
\subsection{books.main/book-info}
\index{unsorted!book-info}\index{Structures!book-info}
\textbf{NAME:}\hspace{0.08in}\begin{verbatim}
book-info -- Структура записи о книге
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defun book-info ()
'( :Авторы
:Название
:Подзаголовок
:Издание
:Серия
:Язык
:Издательство
:Издательство_РФ
:ISBN_EN
:ISBN_RU
:Год_издания_EN
:Год_издания_RU
:Количество_страниц
:Категория
:Ключевые_слова
:Прочитана?
:Оценка))
\end{verbatim}
\subsection{books.main/reports-exclude}
\index{unsorted!reports-exclude}\index{Structures!reports-exclude}
\textbf{NAME:}\hspace{0.08in}\begin{verbatim}
reports-exclude -- Список исключений ключевых слов,
для которых не нужно выводить отчеты
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defun reports-exclude ()
'( :Название
:Подзаголовок
:Издание
:ISBN_EN
:ISBN_RU))
\end{verbatim}
\subsection{books.main/set-color}
\index{unsorted!set-color}\index{Functions!set-color}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
set-color -- Установка цвета текста в зависимости от статуса прочтения
\end{verbatim}
\textbf{INPUTS:}\hspace{0.08in}\begin{verbatim}
- color-status -- статус, для которого требуется определить цвет
\end{verbatim}
\textbf{RESULT:}\hspace{0.08in}\begin{verbatim}
Escape-последовательность цветового кода
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defun set-color (color-status)
(getf +colors+ (cond
((eql color-status 'none) :reset)
((eql color-status 'star) :rating)
((equalp color-status "да") :done)
((equalp color-status "нет") :new)
(:read))))
\end{verbatim}
\subsection{books.usage/show-help}
\index{unsorted!show-help}\index{Functions!show-help}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
show-help -- вывод справки по использованию
\end{verbatim}
\textbf{OUTPUT:}\hspace{0.08in}\begin{verbatim}
Вывод аргументов командной строки,
с которыми можно запускать программу
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defun show-help ()
"Вывод справки по использованию программы"
(with-output-to-string (help-stream)
(format-help (help-stream)
("help" "вывод справки по использованию")
("r" "читаемые книги")
("d" "прочитанные книги")
("n" "не прочитанные книги")
("new" "добавить новые книги")
("edit <...>" "редактировать книги")
("set (d|r|n) <...>" "сменить статус для книг")
("del <...>" "удаление книг из базы")
("sort, sort+" "сортировка по возрастанию")
("sort-" "сортировка по убыванию")
("report <...>" "вывод отчета по ключевому слову")
("reports" "вывод отчетов по всем ключевым словам")
("<...>" "поиск книг в базе данных"))))
\end{verbatim}
\subsection{books/dump-books}
\index{unsorted!dump-books}\index{Functions!dump-books}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
dump-books -- вывод книг на экран в читаемом формате
\end{verbatim}
\textbf{INPUTS:}\hspace{0.08in}\begin{verbatim}
- view -- форма вывода [table|plain]
- db -- Список книг
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defun dump-books (view db)
"Информация о книгах в форме VIEW (table/plain)"
(ecase view
(table (dump-books-table db))
(plain (dump-books-plain db))))
\end{verbatim}
\subsection{books/dump-books-plain}
\index{unsorted!dump-books-plain}\index{Functions!dump-books-plain}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
dump-books-plain -- вывод книг в подробном представлении
\end{verbatim}
\textbf{INPUTS:}\hspace{0.08in}\begin{verbatim}
db -- Список книг
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defun dump-books-plain (db)
"Информация о книгах из списка DB в подробном представлении"
(with-output-to-string (stream)
(dolist (book db)
(format stream "~{ ~a:~25t~a~%~}~%" book))))
\end{verbatim}
\subsection{books/dump-books-table}
\index{unsorted!dump-books-table}\index{Functions!dump-books-table}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
dump-books-table -- вывод книг в виде таблицы
\end{verbatim}
\textbf{INPUTS:}\hspace{0.08in}\begin{verbatim}
db -- Список книг
\end{verbatim}
\textbf{SOURCE:}\hspace{0.08in}\begin{verbatim}
(defun dump-books-table (db)
"Информация о книгах из списка DB в виде таблицы"
(with-output-to-string (stream)
(let ((book-number 1))
(dolist (book db)
(format stream "~C[~a~4d. ~42a~60a~5@a c. ~4a~C[~a~a~C[~a~%"
#\Esc(set-color (:Прочитана? book))
book-number
(:Авторы book)
(:Название book)
(:Количество_страниц book)
(get-status-chars (:Прочитана? book))
#\Esc(set-color 'star)
(number->bar (:Оценка book))
#\Esc(set-color 'none))
(incf book-number)))))
\end{verbatim}
\subsection{Parser/ReadToken}
\index{unsorted!ReadToken}\index{Functions!ReadToken}
\textbf{FUNCTION:}\hspace{0.08in}\begin{verbatim}
ReadToken reads the next token from the input
file.
\end{verbatim}
\end{document}

BIN
doc/dot_graph_1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

91
doc/masterindex.html

@ -0,0 +1,91 @@ @@ -0,0 +1,91 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="./robodoc.css" type="text/css" />
<title>Index</title>
<!-- Source: ./ -->
<!-- Generated with ROBODoc Version 4.99.41 (Jul 2 2011) -->
</head>
<body>
<div id="logo">
<a name="robo_top_of_doc"></a>
</div> <!-- logo -->
<div id="extra">
</div> <!-- extra -->
<div id="navigation">
<a class="menuitem" href="./toc_index.html#top">Table of Contents</a>
<a class="menuitem" href="./robo_sourcefiles.html#top">Sourcefiles</a>
<a class="menuitem" href="#top">Index</a>
<a class="menuitem" href="./robo_functions.html#top">Functions</a>
<a class="menuitem" href="./robo_modules.html#top">Modules</a>
<a class="menuitem" href="./robo_methods.html#top">Methods</a>
<a class="menuitem" href="./robo_strutures.html#top">Structures</a>
<a class="menuitem" href="./robo_variables.html#top">Variables</a>
</div> <!-- navigation -->
<div id="content">
<h1>Index</h1>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
<h2><a name="+"></a>+</h2><a href="./books_lisp.html#robo2" class="indexitem" >+colors+</a>
<a href="./books_lisp.html#robo1" class="indexitem" >+db-file+</a>
<h2><a name="A"></a>A</h2><a href="./books_lisp.html#robo21" class="indexitem" >add-books</a>
<a href="./books_lisp.html#robo18" class="indexitem" >add-record</a>
<h2><a name="B"></a>B</h2><a href="./books_lisp.html#robo37" class="indexitem" >book-has-status</a>
<a href="./books_lisp.html#robo3" class="indexitem" >book-info</a>
<a href="./books_lisp.html#robo35" class="indexitem" >book-match</a>
<a href="./books_lisp.html#robo15" class="indexitem" >books-db</a>
<a href="./books_lisp.html#robo42" class="indexitem" >books-edit</a>
<a href="./books_lisp.html#robo6" class="indexitem" >books-functions</a>
<a href="./books_lisp.html#robo0" class="indexitem" >books-main</a>
<a href="./books_lisp.html#robo24" class="indexitem" >books-reports</a>
<a href="./books_lisp.html#robo34" class="indexitem" >books-select</a>
<a href="./books_lisp.html#robo46" class="indexitem" >books-usage</a>
<a href="./books_lisp.html#robo_top_of_doc" class="indexitem" >books.lisp</a>
<h2><a name="C"></a>C</h2><a href="./books_lisp.html#robo13" class="indexitem" >case-status</a>
<h2><a name="D"></a>D</h2><a href="./books_lisp.html#robo27" class="indexitem" >dump-books</a>
<a href="./books_lisp.html#robo25" class="indexitem" >dump-books-plain</a>
<a href="./books_lisp.html#robo26" class="indexitem" >dump-books-table</a>
<a href="./books_lisp.html#robo32" class="indexitem" >dump-report</a>
<a href="./books_lisp.html#robo33" class="indexitem" >dump-reports</a>
<h2><a name="E"></a>E</h2><a href="./books_lisp.html#robo44" class="indexitem" >edit-books</a>
<h2><a name="F"></a>F</h2><a href="./books_lisp.html#robo47" class="indexitem" >format-help</a>
<h2><a name="G"></a>G</h2><a href="./books_lisp.html#robo49" class="indexitem" >get-argv-var</a>
<a href="./books_lisp.html#robo20" class="indexitem" >get-book-from-shell</a>
<a href="./books_lisp.html#robo41" class="indexitem" >get-books</a>
<a href="./books_lisp.html#robo28" class="indexitem" >get-report</a>
<a href="./books_lisp.html#robo30" class="indexitem" >get-report-any</a>
<a href="./books_lisp.html#robo29" class="indexitem" >get-report-pages</a>
<a href="./books_lisp.html#robo31" class="indexitem" >get-reports</a>
<a href="./books_lisp.html#robo12" class="indexitem" >get-status-chars</a>
<h2><a name="I"></a>I</h2><a href="./books_lisp.html#robo9" class="indexitem" >if-agree</a>
<a href="./books_lisp.html#robo10" class="indexitem" >if-not-agree</a>
<h2><a name="K"></a>K</h2><a href="./books_lisp.html#robo17" class="indexitem" >keyword-&gt;string</a>
<h2><a name="L"></a>L</h2><a href="./books_lisp.html#robo22" class="indexitem" >load-db</a>
<h2><a name="M"></a>M</h2><a href="./books_lisp.html#robo7" class="indexitem" >make-book-accessors</a>
<h2><a name="N"></a>N</h2><a href="./books_lisp.html#robo11" class="indexitem" >number-&gt;bar</a>
<h2><a name="P"></a>P</h2><a href="./books_lisp.html#robo50" class="indexitem" >parse-commandline-arguments</a>
<a href="./books_lisp.html#robo8" class="indexitem" >push-end</a>
<h2><a name="R"></a>R</h2><a href="./books_lisp.html#robo19" class="indexitem" >read-book-field</a>
<a href="./books_lisp.html#robo45" class="indexitem" >remove-books</a>
<a href="./books_lisp.html#robo4" class="indexitem" >reports-exclude</a>
<h2><a name="S"></a>S</h2><a href="./books_lisp.html#robo16" class="indexitem" >save-and-dump-changes</a>
<a href="./books_lisp.html#robo23" class="indexitem" >save-db</a>
<a href="./books_lisp.html#robo40" class="indexitem" >search-books</a>
<a href="./books_lisp.html#robo36" class="indexitem" >select-books</a>
<a href="./books_lisp.html#robo39" class="indexitem" >select-keys</a>
<a href="./books_lisp.html#robo43" class="indexitem" >set-books-status</a>
<a href="./books_lisp.html#robo5" class="indexitem" >set-color</a>
<a href="./books_lisp.html#robo48" class="indexitem" >show-help</a>
<a href="./books_lisp.html#robo38" class="indexitem" >sort-books</a>
<a href="./books_lisp.html#robo14" class="indexitem" >string-split</a>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
</div> <!-- content -->
<div id="footer">
<p>Generated from ./ with <a href="http://www.xs4all.nl/~rfsber/Robo/robodoc.html">ROBODoc</a> V4.99.41 on Sat Aug 31 2013 13:48:47
</p>
</div> <!-- footer -->
</body>
</html>

77
doc/robo_functions.html

@ -0,0 +1,77 @@ @@ -0,0 +1,77 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="./robodoc.css" type="text/css" />
<title>Functions</title>
<!-- Source: ./ -->
<!-- Generated with ROBODoc Version 4.99.41 (Jul 2 2011) -->
</head>
<body>
<div id="logo">
<a name="robo_top_of_doc"></a>
</div> <!-- logo -->
<div id="extra">
</div> <!-- extra -->
<div id="navigation">
<a class="menuitem" href="./toc_index.html#top">Table of Contents</a>
<a class="menuitem" href="./robo_sourcefiles.html#top">Sourcefiles</a>
<a class="menuitem" href="./masterindex.html#top">Index</a>
<a class="menuitem" href="#top">Functions</a>
<a class="menuitem" href="./robo_modules.html#top">Modules</a>
<a class="menuitem" href="./robo_methods.html#top">Methods</a>
<a class="menuitem" href="./robo_strutures.html#top">Structures</a>
<a class="menuitem" href="./robo_variables.html#top">Variables</a>
</div> <!-- navigation -->
<div id="content">
<h1>Functions</h1>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
<h2><a name="A"></a>A</h2><a href="./books_lisp.html#robo21" class="indexitem" >add-books</a>
<a href="./books_lisp.html#robo18" class="indexitem" >add-record</a>
<h2><a name="B"></a>B</h2><a href="./books_lisp.html#robo37" class="indexitem" >book-has-status</a>
<a href="./books_lisp.html#robo35" class="indexitem" >book-match</a>
<h2><a name="C"></a>C</h2><a href="./books_lisp.html#robo13" class="indexitem" >case-status</a>
<h2><a name="D"></a>D</h2><a href="./books_lisp.html#robo27" class="indexitem" >dump-books</a>
<a href="./books_lisp.html#robo25" class="indexitem" >dump-books-plain</a>
<a href="./books_lisp.html#robo26" class="indexitem" >dump-books-table</a>
<a href="./books_lisp.html#robo32" class="indexitem" >dump-report</a>
<a href="./books_lisp.html#robo33" class="indexitem" >dump-reports</a>
<h2><a name="E"></a>E</h2><a href="./books_lisp.html#robo44" class="indexitem" >edit-books</a>
<h2><a name="F"></a>F</h2><a href="./books_lisp.html#robo47" class="indexitem" >format-help</a>
<h2><a name="G"></a>G</h2><a href="./books_lisp.html#robo49" class="indexitem" >get-argv-var</a>
<a href="./books_lisp.html#robo20" class="indexitem" >get-book-from-shell</a>
<a href="./books_lisp.html#robo41" class="indexitem" >get-books</a>
<a href="./books_lisp.html#robo28" class="indexitem" >get-report</a>
<a href="./books_lisp.html#robo31" class="indexitem" >get-reports</a>
<a href="./books_lisp.html#robo12" class="indexitem" >get-status-chars</a>
<h2><a name="I"></a>I</h2><a href="./books_lisp.html#robo9" class="indexitem" >if-agree</a>
<a href="./books_lisp.html#robo10" class="indexitem" >if-not-agree</a>
<h2><a name="K"></a>K</h2><a href="./books_lisp.html#robo17" class="indexitem" >keyword-&gt;string</a>
<h2><a name="L"></a>L</h2><a href="./books_lisp.html#robo22" class="indexitem" >load-db</a>
<h2><a name="M"></a>M</h2><a href="./books_lisp.html#robo7" class="indexitem" >make-book-accessors</a>
<h2><a name="N"></a>N</h2><a href="./books_lisp.html#robo11" class="indexitem" >number-&gt;bar</a>
<h2><a name="P"></a>P</h2><a href="./books_lisp.html#robo50" class="indexitem" >parse-commandline-arguments</a>
<a href="./books_lisp.html#robo8" class="indexitem" >push-end</a>
<h2><a name="R"></a>R</h2><a href="./books_lisp.html#robo19" class="indexitem" >read-book-field</a>
<a href="./books_lisp.html#robo45" class="indexitem" >remove-books</a>
<h2><a name="S"></a>S</h2><a href="./books_lisp.html#robo16" class="indexitem" >save-and-dump-changes</a>
<a href="./books_lisp.html#robo23" class="indexitem" >save-db</a>
<a href="./books_lisp.html#robo40" class="indexitem" >search-books</a>
<a href="./books_lisp.html#robo36" class="indexitem" >select-books</a>
<a href="./books_lisp.html#robo39" class="indexitem" >select-keys</a>
<a href="./books_lisp.html#robo43" class="indexitem" >set-books-status</a>
<a href="./books_lisp.html#robo5" class="indexitem" >set-color</a>
<a href="./books_lisp.html#robo48" class="indexitem" >show-help</a>
<a href="./books_lisp.html#robo38" class="indexitem" >sort-books</a>
<a href="./books_lisp.html#robo14" class="indexitem" >string-split</a>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
</div> <!-- content -->
<div id="footer">
<p>Generated from ./ with <a href="http://www.xs4all.nl/~rfsber/Robo/robodoc.html">ROBODoc</a> V4.99.41 on Sat Aug 31 2013 13:48:47
</p>
</div> <!-- footer -->
</body>
</html>

41
doc/robo_methods.html

@ -0,0 +1,41 @@ @@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="./robodoc.css" type="text/css" />
<title>Methods</title>
<!-- Source: ./ -->
<!-- Generated with ROBODoc Version 4.99.41 (Jul 2 2011) -->
</head>
<body>
<div id="logo">
<a name="robo_top_of_doc"></a>
</div> <!-- logo -->
<div id="extra">
</div> <!-- extra -->
<div id="navigation">
<a class="menuitem" href="./toc_index.html#top">Table of Contents</a>
<a class="menuitem" href="./robo_sourcefiles.html#top">Sourcefiles</a>
<a class="menuitem" href="./masterindex.html#top">Index</a>
<a class="menuitem" href="./robo_functions.html#top">Functions</a>
<a class="menuitem" href="./robo_modules.html#top">Modules</a>
<a class="menuitem" href="#top">Methods</a>
<a class="menuitem" href="./robo_strutures.html#top">Structures</a>
<a class="menuitem" href="./robo_variables.html#top">Variables</a>
</div> <!-- navigation -->
<div id="content">
<h1>Methods</h1>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
<h2><a name="G"></a>G</h2><a href="./books_lisp.html#robo30" class="indexitem" >get-report-any</a>
<a href="./books_lisp.html#robo29" class="indexitem" >get-report-pages</a>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
</div> <!-- content -->
<div id="footer">
<p>Generated from ./ with <a href="http://www.xs4all.nl/~rfsber/Robo/robodoc.html">ROBODoc</a> V4.99.41 on Sat Aug 31 2013 13:48:47
</p>
</div> <!-- footer -->
</body>
</html>

46
doc/robo_modules.html

@ -0,0 +1,46 @@ @@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="./robodoc.css" type="text/css" />
<title>Modules</title>
<!-- Source: ./ -->
<!-- Generated with ROBODoc Version 4.99.41 (Jul 2 2011) -->
</head>
<body>
<div id="logo">
<a name="robo_top_of_doc"></a>
</div> <!-- logo -->
<div id="extra">
</div> <!-- extra -->
<div id="navigation">
<a class="menuitem" href="./toc_index.html#top">Table of Contents</a>
<a class="menuitem" href="./robo_sourcefiles.html#top">Sourcefiles</a>
<a class="menuitem" href="./masterindex.html#top">Index</a>
<a class="menuitem" href="./robo_functions.html#top">Functions</a>
<a class="menuitem" href="#top">Modules</a>
<a class="menuitem" href="./robo_methods.html#top">Methods</a>
<a class="menuitem" href="./robo_strutures.html#top">Structures</a>
<a class="menuitem" href="./robo_variables.html#top">Variables</a>
</div> <!-- navigation -->
<div id="content">
<h1>Modules</h1>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
<h2><a name="B"></a>B</h2><a href="./books_lisp.html#robo15" class="indexitem" >books-db</a>
<a href="./books_lisp.html#robo42" class="indexitem" >books-edit</a>
<a href="./books_lisp.html#robo6" class="indexitem" >books-functions</a>
<a href="./books_lisp.html#robo0" class="indexitem" >books-main</a>
<a href="./books_lisp.html#robo24" class="indexitem" >books-reports</a>
<a href="./books_lisp.html#robo34" class="indexitem" >books-select</a>
<a href="./books_lisp.html#robo46" class="indexitem" >books-usage</a>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
</div> <!-- content -->
<div id="footer">
<p>Generated from ./ with <a href="http://www.xs4all.nl/~rfsber/Robo/robodoc.html">ROBODoc</a> V4.99.41 on Sat Aug 31 2013 13:48:47
</p>
</div> <!-- footer -->
</body>
</html>

45
doc/robo_sourcefiles.html

@ -0,0 +1,45 @@ @@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="./robodoc.css" type="text/css" />
<title>Sourcefiles</title>
<!-- Source: ./ -->
<!-- Generated with ROBODoc Version 4.99.41 (Jul 2 2011) -->
</head>
<body>
<div id="logo">
<a name="robo_top_of_doc"></a>
</div> <!-- logo -->
<div id="extra">
</div> <!-- extra -->
<div id="navigation">
<a class="menuitem" href="./toc_index.html#top">Table of Contents</a>
<a class="menuitem" href="#top">Sourcefiles</a>
<a class="menuitem" href="./masterindex.html#top">Index</a>
<a class="menuitem" href="./robo_functions.html#top">Functions</a>
<a class="menuitem" href="./robo_modules.html#top">Modules</a>
<a class="menuitem" href="./robo_methods.html#top">Methods</a>
<a class="menuitem" href="./robo_strutures.html#top">Structures</a>
<a class="menuitem" href="./robo_variables.html#top">Variables</a>
</div> <!-- navigation -->
<div id="content">
<ul>
<li>
./<ul>
<li>
<a href="./books_lisp.html#robo_top_of_doc"><tt>
books.lisp</tt></a></li>
</ul>
</li>
</ul>
</div> <!-- content -->
<div id="footer">
<p>Generated from ./ with <a href="http://www.xs4all.nl/~rfsber/Robo/robodoc.html">ROBODoc</a> V4.99.41 on Sat Aug 31 2013 13:48:47
</p>
</div> <!-- footer -->
</body>
</html>

42
doc/robo_strutures.html

@ -0,0 +1,42 @@ @@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="./robodoc.css" type="text/css" />
<title>Structures</title>
<!-- Source: ./ -->
<!-- Generated with ROBODoc Version 4.99.41 (Jul 2 2011) -->
</head>
<body>
<div id="logo">
<a name="robo_top_of_doc"></a>
</div> <!-- logo -->
<div id="extra">
</div> <!-- extra -->
<div id="navigation">
<a class="menuitem" href="./toc_index.html#top">Table of Contents</a>
<a class="menuitem" href="./robo_sourcefiles.html#top">Sourcefiles</a>
<a class="menuitem" href="./masterindex.html#top">Index</a>
<a class="menuitem" href="./robo_functions.html#top">Functions</a>
<a class="menuitem" href="./robo_modules.html#top">Modules</a>
<a class="menuitem" href="./robo_methods.html#top">Methods</a>
<a class="menuitem" href="#top">Structures</a>
<a class="menuitem" href="./robo_variables.html#top">Variables</a>
</div> <!-- navigation -->
<div id="content">
<h1>Structures</h1>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
<h2><a name="+"></a>+</h2><a href="./books_lisp.html#robo2" class="indexitem" >+colors+</a>
<h2><a name="B"></a>B</h2><a href="./books_lisp.html#robo3" class="indexitem" >book-info</a>
<h2><a name="R"></a>R</h2><a href="./books_lisp.html#robo4" class="indexitem" >reports-exclude</a>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
</div> <!-- content -->
<div id="footer">
<p>Generated from ./ with <a href="http://www.xs4all.nl/~rfsber/Robo/robodoc.html">ROBODoc</a> V4.99.41 on Sat Aug 31 2013 13:48:47
</p>
</div> <!-- footer -->
</body>
</html>

40
doc/robo_variables.html

@ -0,0 +1,40 @@ @@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="./robodoc.css" type="text/css" />
<title>Variables</title>
<!-- Source: ./ -->
<!-- Generated with ROBODoc Version 4.99.41 (Jul 2 2011) -->
</head>
<body>
<div id="logo">
<a name="robo_top_of_doc"></a>
</div> <!-- logo -->
<div id="extra">
</div> <!-- extra -->
<div id="navigation">
<a class="menuitem" href="./toc_index.html#top">Table of Contents</a>
<a class="menuitem" href="./robo_sourcefiles.html#top">Sourcefiles</a>
<a class="menuitem" href="./masterindex.html#top">Index</a>
<a class="menuitem" href="./robo_functions.html#top">Functions</a>
<a class="menuitem" href="./robo_modules.html#top">Modules</a>
<a class="menuitem" href="./robo_methods.html#top">Methods</a>
<a class="menuitem" href="./robo_strutures.html#top">Structures</a>
<a class="menuitem" href="#top">Variables</a>
</div> <!-- navigation -->
<div id="content">
<h1>Variables</h1>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
<h2><a name="+"></a>+</h2><a href="./books_lisp.html#robo1" class="indexitem" >+db-file+</a>
<h2><a href="#A">A</a> - <a href="#B">B</a> - <a href="#C">C</a> - <a href="#D">D</a> - <a href="#E">E</a> - <a href="#F">F</a> - <a href="#G">G</a> - <a href="#H">H</a> - <a href="#I">I</a> - <a href="#J">J</a> - <a href="#K">K</a> - <a href="#L">L</a> - <a href="#M">M</a> - <a href="#N">N</a> - <a href="#O">O</a> - <a href="#P">P</a> - <a href="#Q">Q</a> - <a href="#R">R</a> - <a href="#S">S</a> - <a href="#T">T</a> - <a href="#U">U</a> - <a href="#V">V</a> - <a href="#W">W</a> - <a href="#X">X</a> - <a href="#Y">Y</a> - <a href="#Z">Z</a> - <a href="#0">0</a> - <a href="#1">1</a> - <a href="#2">2</a> - <a href="#3">3</a> - <a href="#4">4</a> - <a href="#5">5</a> - <a href="#6">6</a> - <a href="#7">7</a> - <a href="#8">8</a> - <a href="#9">9</a></h2>
</div> <!-- content -->
<div id="footer">
<p>Generated from ./ with <a href="http://www.xs4all.nl/~rfsber/Robo/robodoc.html">ROBODoc</a> V4.99.41 on Sat Aug 31 2013 13:48:47
</p>
</div> <!-- footer -->
</body>
</html>

302
doc/robodoc.css

@ -0,0 +1,302 @@ @@ -0,0 +1,302 @@
/****h* ROBODoc/ROBODoc Cascading Style Sheet
* FUNCTION
* This is the default cascading style sheet for documentation
* generated with ROBODoc.
* You can edit this file to your own liking and then use
* it with the option
* --css <filename>
*
* This style-sheet defines the following layout
* +----------------------------------------+
* | logo |
* +----------------------------------------+
* | extra |
* +----------------------------------------+
* | | navi- |
* | | gation |
* | content | |
* | | |
* +----------------------------------------+
* | footer |
* +----------------------------------------+
*
* This style-sheet is based on a style-sheet that was automatically
* generated with the Strange Banana stylesheet generator.
* See http://www.strangebanana.com/generator.aspx
*
******
* $Id: html_generator.c,v 1.94 2008/06/17 11:49:27 gumpu Exp $
*/
body
{
background-color: rgb(255,255,255);
color: rgb(98,84,55);
font-family: Arial, serif;
border-color: rgb(226,199,143);
}
pre
{
font-family: monospace;
margin: 15px;
padding: 5px;
white-space: pre;
color: #000;
}
pre.source
{
background-color: #ffe;
border: dashed #aa9 1px;
}
p
{
margin:15px;
}
p.item_name
{
font-weight: bolder;
margin:5px;
font-size: 120%;
}
#content
{
font-size: 100%;
color: rgb(0,0,0);
background-color: rgb(255,255,255);
border-left-width: 0px;
border-right-width: 0px;
border-top-width: 0px;
border-bottom-width: 0px;
border-left-style: none;
border-right-style: none;
border-top-style: none;
border-bottom-style: none;
padding: 40px 31px 14px 17px;
border-color: rgb(0,0,0);
text-align: justify;
}
#navigation
{
background-color: rgb(98,84,55);
color: rgb(230,221,202);
font-family: "Times New Roman", serif;
font-style: normal;
border-color: rgb(0,0,0);
}
a.menuitem
{
font-size: 120%;
background-color: rgb(0,0,0);
color: rgb(195,165,100);
font-variant: normal;
text-transform: none;
font-weight: normal;
padding: 1px 8px 3px 1px;
margin-left: 5px;
margin-right: 5px;
margin-top: 5px;
margin-bottom: 5px;
border-color: rgb(159,126,57);
text-align: right;
}
#logo, #logo a
{
font-size: 130%;
background-color: rgb(198,178,135);
color: rgb(98,84,55);
font-family: Georgia, serif;
font-style: normal;
font-variant: normal;
text-transform: none;
font-weight: bold;
padding: 20px 18px 20px 18px;
border-color: rgb(255,255,255);
text-align: right;
}
#extra, #extra a
{
font-size: 128%;
background-color: rgb(0,0,0);
color: rgb(230,221,202);
font-style: normal;
font-variant: normal;
text-transform: none;
font-weight: normal;
border-left-width: 0px;
border-right-width: 0px;
border-top-width: 0px;
border-bottom-width: 0px;
border-left-style: none;
border-right-style: none;
border-top-style: none;
border-bottom-style: none;
padding: 12px 12px 12px 12px;
border-color: rgb(195,165,100);
text-align: center;
}
#content a
{
color: rgb(159,126,57);
text-decoration: none;
}
#content a:hover, #content a:active
{
color: rgb(255,255,255);
background-color: rgb(159,126,57);
}
a.indexitem
{
display: block;
}
h1, h2, h3, h4, h5, h6
{
background-color: rgb(221,221,221);
font-family: Arial, serif;
font-style: normal;
font-variant: normal;
text-transform: none;
font-weight: normal;
}
h1
{
font-size: 151%;
}
h2
{
font-size: 142%;
}
h3
{
font-size: 133%;
}
h4
{
font-size: 124%;
}
h5
{
font-size: 115%;
}
h6
{
font-size: 106%;
}
#navigation a
{
text-decoration: none;
}
.menuitem:hover
{
background-color: rgb(195,165,100);
color: rgb(0,0,0);
}
#extra a
{
text-decoration: none;
}
#logo a
{
text-decoration: none;
}
#extra a:hover
{
}
/* layout */
#navigation
{
width: 22%;
position: relative;
top: 0;
right: 0;
float: right;
text-align: center;
margin-left: 10px;
}
.menuitem {width: auto;}
#content {width: auto;}
.menuitem {display: block;}
div#footer
{
background-color: rgb(198,178,135);
color: rgb(98,84,55);
clear: left;
width: 100%;
font-size: 71%;
}
div#footer a
{
background-color: rgb(198,178,135);
color: rgb(98,84,55);
}
div#footer p
{
margin:0;
padding:5px 10px
}
span.keyword
{
color: #00F;
}
span.comment
{
color: #080;
}
span.quote
{
color: #F00;
}
span.squote
{
color: #F0F;
}
span.sign
{
color: #008B8B;
}
span.line_number
{
color: #808080;
}
@media print
{
#navigation {display: none;}
#content {padding: 0px;}
#content a {text-decoration: underline;}
}

106
doc/toc_index.html

@ -0,0 +1,106 @@ @@ -0,0 +1,106 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="./robodoc.css" type="text/css" />
<title>Table of Contents</title>
<!-- Source: ./ -->
<!-- Generated with ROBODoc Version 4.99.41 (Jul 2 2011) -->
</head>
<body>
<div id="logo">
<a name="robo_top_of_doc"></a>
</div> <!-- logo -->
<div id="extra">
</div> <!-- extra -->
<div id="navigation">
<a class="menuitem" href="#top">Table of Contents</a>
<a class="menuitem" href="./robo_sourcefiles.html#top">Sourcefiles</a>
<a class="menuitem" href="./masterindex.html#top">Index</a>
<a class="menuitem" href="./robo_functions.html#top">Functions</a>
<a class="menuitem" href="./robo_modules.html#top">Modules</a>
<a class="menuitem" href="./robo_methods.html#top">Methods</a>
<a class="menuitem" href="./robo_strutures.html#top">Structures</a>
<a class="menuitem" href="./robo_variables.html#top">Variables</a>
</div> <!-- navigation -->
<div id="content">
<h3>TABLE OF CONTENTS</h3>
<ul>
<li>1. <a href="./books_lisp.html#robo0">books/books-main</a></li>
<ul>
<li>1.1. <a href="./books_lisp.html#robo1">books-main/+db-file+</a></li>
<li>1.2. <a href="./books_lisp.html#robo2">books-main/+colors+</a></li>
<li>1.3. <a href="./books_lisp.html#robo3">books-main/book-info</a></li>
<li>1.4. <a href="./books_lisp.html#robo4">books-main/reports-exclude</a></li>
<li>1.5. <a href="./books_lisp.html#robo5">books-main/set-color</a></li>
</ul>
<li>2. <a href="./books_lisp.html#robo6">books/books-functions</a></li>
<ul>
<li>2.1. <a href="./books_lisp.html#robo7">books-functions/make-book-accessors</a></li>
<li>2.2. <a href="./books_lisp.html#robo8">books-functions/push-end</a></li>
<li>2.3. <a href="./books_lisp.html#robo9">books-functions/if-agree</a></li>
<li>2.4. <a href="./books_lisp.html#robo10">books-functions/if-not-agree</a></li>
<li>2.5. <a href="./books_lisp.html#robo11">books-functions/number-&gt;bar</a></li>
<li>2.6. <a href="./books_lisp.html#robo12">books-functions/get-status-chars</a></li>
<li>2.7. <a href="./books_lisp.html#robo13">books-functions/case-status</a></li>
<li>2.8. <a href="./books_lisp.html#robo14">books-functions/string-split</a></li>
</ul>
<li>3. <a href="./books_lisp.html#robo15">books/books-db</a></li>
<ul>
<li>3.1. <a href="./books_lisp.html#robo16">books-db/save-and-dump-changes</a></li>
<li>3.2. <a href="./books_lisp.html#robo17">books-db/keyword-&gt;string</a></li>
<li>3.3. <a href="./books_lisp.html#robo18">books-db/add-record</a></li>
<li>3.4. <a href="./books_lisp.html#robo19">books-db/read-book-field</a></li>
<li>3.5. <a href="./books_lisp.html#robo20">books-db/get-book-from-shell</a></li>
<li>3.6. <a href="./books_lisp.html#robo21">books-db/add-books</a></li>
<li>3.7. <a href="./books_lisp.html#robo22">books-db/load-db</a></li>
<li>3.8. <a href="./books_lisp.html#robo23">books-db/save-db</a></li>
</ul>
<li>4. <a href="./books_lisp.html#robo24">books/books-reports</a></li>
<ul>
<li>4.1. <a href="./books_lisp.html#robo25">books-reports/dump-books-plain</a></li>
<li>4.2. <a href="./books_lisp.html#robo26">books-reports/dump-books-table</a></li>
<li>4.3. <a href="./books_lisp.html#robo27">books-reports/dump-books</a></li>
<li>4.4. <a href="./books_lisp.html#robo28">books-reports/get-report</a></li>
<ul>
<li>4.4.1. <a href="./books_lisp.html#robo29">get-report/get-report-pages</a></li>
<li>4.4.2. <a href="./books_lisp.html#robo30">get-report/get-report-any</a></li>
</ul>
<li>4.5. <a href="./books_lisp.html#robo31">books-reports/get-reports</a></li>
<li>4.6. <a href="./books_lisp.html#robo32">books-reports/dump-report</a></li>
<li>4.7. <a href="./books_lisp.html#robo33">books-reports/dump-reports</a></li>
</ul>
<li>5. <a href="./books_lisp.html#robo34">books/books-select</a></li>
<ul>
<li>5.1. <a href="./books_lisp.html#robo35">books-select/book-match</a></li>
<li>5.2. <a href="./books_lisp.html#robo36">books-select/select-books</a></li>
<li>5.3. <a href="./books_lisp.html#robo37">books-select/book-has-status</a></li>
<li>5.4. <a href="./books_lisp.html#robo38">books-select/sort-books</a></li>
<li>5.5. <a href="./books_lisp.html#robo39">books-select/select-keys</a></li>
<li>5.6. <a href="./books_lisp.html#robo40">books-select/search-books</a></li>
<li>5.7. <a href="./books_lisp.html#robo41">books-select/get-books</a></li>
</ul>
<li>6. <a href="./books_lisp.html#robo42">books/books-edit</a></li>
<ul>
<li>6.1. <a href="./books_lisp.html#robo43">books-edit/set-books-status</a></li>
<li>6.2. <a href="./books_lisp.html#robo44">books-edit/edit-books</a></li>
<li>6.3. <a href="./books_lisp.html#robo45">books-edit/remove-books</a></li>
</ul>
<li>7. <a href="./books_lisp.html#robo46">books/books-usage</a></li>
<ul>
<li>7.1. <a href="./books_lisp.html#robo47">books-usage/format-help</a></li>
<li>7.2. <a href="./books_lisp.html#robo48">books-usage/show-help</a></li>
<li>7.3. <a href="./books_lisp.html#robo49">books-usage/get-argv-var</a></li>
<li>7.4. <a href="./books_lisp.html#robo50">books-usage/parse-commandline-arguments</a></li>
</ul>
</ul>
</div> <!-- content -->
<div id="footer">
<p>Generated from ./ with <a href="http://www.xs4all.nl/~rfsber/Robo/robodoc.html">ROBODoc</a> V4.99.41 on Sat Aug 31 2013 13:48:47
</p>
</div> <!-- footer -->
</body>
</html>
Loading…
Cancel
Save