• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

data/H01-Oct-2019-25,45324,886

doc/H01-Oct-2019-726587

examples/H03-May-2022-1,277999

intl/H03-May-2022-14,72910,587

macros/H03-May-2022-11,99010,859

po/H03-May-2022-1,6411,336

src/H03-May-2022-16,19012,063

ABOUT-NLSH A D22-Oct-200667.1 KiB997950

AUTHORSH A D04-Jul-201066 42

COPYINGH A D12-Aug-201017.6 KiB340281

ChangeLogH A D22-Oct-20061.6 KiB3431

HACKINGH A D29-Aug-20067.5 KiB186142

INSTALLH A D29-May-20039 KiB230175

LISEZMOIH A D07-Sep-20153 KiB8456

Makefile.amH A D26-Sep-20151.8 KiB9375

Makefile.inH A D03-May-202240.1 KiB1,2311,117

NEWSH A D01-Oct-201919.3 KiB495374

READMEH A D07-Sep-20152.9 KiB8354

THANKSH A D28-Jul-2019553 189

aclocal.m4H A D01-Oct-201947.7 KiB1,3471,223

autogen.shH A D04-Oct-200943 41

bootstrapH A D24-Oct-2004145 74

compileH A D29-Dec-20146.7 KiB311226

config.guessH A D07-Sep-201542.5 KiB1,4421,249

config.rpathH A D22-Oct-200614.5 KiB572480

config.subH A D07-Sep-201535.3 KiB1,8141,676

configureH A D01-Oct-2019692.7 KiB23,29519,778

configure.acH A D01-Oct-20197.2 KiB281231

depcompH A D29-Dec-201419.9 KiB689448

install-shH A D29-Dec-201413.7 KiB528351

ltmain.shH A D28-Jul-2019277 KiB9,6627,310

missingH A D29-Dec-201410.1 KiB332243

mkinstalldirsH A D30-Oct-20063.3 KiB151102

test-driverH A D01-Nov-20133.9 KiB12872

verbiste-0.1.pc.inH A D29-May-2003309 1310

verbiste.specH A D01-Oct-20194.1 KiB144107

verbiste.spec.inH A D01-Nov-20134.2 KiB144109

README

1Verbiste - French conjugation system
2
3(See LISEZMOI for a French version of this file.)
4(Voyez LISEZMOI pour une version fran�aise de ce fichier.)
5
6Copyright (C) 2003-2015 Pierre Sarrazin <http://sarrazip.com/>
7
8This program is free software; you may redistribute it under the
9terms of the GNU General Public License.  This program has absolutely
10no warranty.  See the file COPYING for details.
11
12The data/conjugation-it.xml and data/verbs-it.xml files were
13created by Christophe Durville <http://polyglotte.tuxfamily.org>
14and augmented by Philippe Cora.  They have a triple copyright notice
15and are distributed under the same license as the rest of Verbiste.
16
17Note that src/gtk/verbiste.cls and src/gtk/verbiste.cfg were written
18by J.J. Green, who put them in the public domain.
19
20INSTALLATION: see INSTALL.  Noteworthy configuration options:
21
22    --with-gnome-app            compiles the GNOME application
23    --with-mate-applet          compiles the MATE Panel applet
24    --with-gtk-app              compiles the GTK+ application
25
26The GTK+ app is identical to the GNOME app, but it avoids any
27dependency on the GNOME libraries.  However, the GTK+ version's Save
28dialog does not remember the last directory used (the GNOME version
29uses the gnome-config API for this).  One can compile both the GNOME
30and GTK+ applications, which are named respectively "verbiste" and
31"verbiste-gtk".
32
33Main requirements: iconv, libxml2, MATE Panel (for applet), Perl's
34XML::Parser module (for compilation).
35
36Home Page:
37http://sarrazip.com/dev/verbiste.html
38
39Manual pages installed by this package:
40
41    verbiste(1)                 about this library and the GNOME interfaces
42    french-conjugator(3)        command to conjugate French verbs
43    french-deconjugator(3)      command to analyze conjugated French verbs
44
45The 'examples' directory of the source archive contains Perl and Java
46programs that illustrate how to call the french-deconjugator command
47as an external process through two pipes.
48
49
50OPENING VERBISTE WITH A VERB
51
52You can pass a verb as an argument to the `verbiste' or `verbiste-gtk'
53graphical programs to make them display an initial conjugation.
54
55
56ADDING YOUR OWN VERBS
57
58Since version 0.1.34, the user can add verbs in a way that avoids
59editing the files distributed with Verbiste.
60
61Create a directory called ".verbiste" (without the quotes, but with
62the leading period) in your home directory. In that .verbiste directory,
63create a file called verbs-fr.xml and put this in it for example:
64
65<?xml version="1.0"?>
66<verbs-fr>
67
68<v><i>smurfer</i>  <t>aim:er</t></v>
69
70</verbs-fr>
71
72The element in the <t> tag must be the name of a conjugation model
73defined in the conjugation-fr.xml file distributed with Verbiste.
74Add a <v> line for each new verb. You must restart Verbiste for
75changes to this file to become usable.
76
77Your file must be encoded in UTF-8, not in Latin-1 (ISO-8859-1).
78
79
80TROUBLESHOOTING: please see the Web site:
81
82    http://sarrazip.com/dev/verbiste.html
83