~ubuntu-branches/ubuntu/hoary/kaptain/hoary

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Kaptain - Universal Graphical Front-end
---------------------------------------

Universal Graphical Front-end for command-line programs.
(c) 2000-2003 Terék Zsolt <terek@users.sourceforge.net>

All bug reports and suggestions are welcome.  If you have made a
grammar that can be useful for others, prease send it to me.

To compile and install, run
  ./configure
  make
  make install


What's new in Kaptain 0.71
--------------------------

Bug fixes and minor changes for Qt 3 and gcc-3.2 compatibility.
Run configure as shown below to specify qt include directory explicitly.
  ./configure --with-qt-dir=/usr/share/qt3



UPGRADING FROM Kaptain 0.6
--------------------------

Since Kaptain 0.7 was completely rewritten, the syntax of grammars has
changed. To make your scripts work with Kaptain 0.7, check the
followings:
- All statements should end with a semicolon (;).
  This was only needed for rules in Kaptain 0.6, but now it is neccesary
  for descriptions and constraints, too.

- String constants and regular expressions should be closed on the
  line they are opened. To write multi-line strings, the only way is
  to use the <<DELIMITER ... DELIMITER form. (Perlish style multiline
  string.)