aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Svendsen <jon-sven@frisurf.no>2003-05-05 02:51:27 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-05-05 02:51:27 +0800
commit781a2569005c985af2ac82f329fc35d9e0e5d268 (patch)
tree3ec138a9aaf97e13765235d59b20258d970c7e95
parentbcce5d7896e0dd7acb157420b2f8f5920e315d03 (diff)
downloadgsoc2013-epiphany-781a2569005c985af2ac82f329fc35d9e0e5d268.tar.gz
gsoc2013-epiphany-781a2569005c985af2ac82f329fc35d9e0e5d268.tar.zst
gsoc2013-epiphany-781a2569005c985af2ac82f329fc35d9e0e5d268.zip
Port confirmation dialog for clearing history to new history dialog.
2003-05-02 Jon Svendsen <jon-sven@frisurf.no> * src/ephy-history-window.c: (cmd_clear), (cmd_close), (confirmation_dialog_response_cb), (confirmation_dialog_construct), Port confirmation dialog for clearing history to new history dialog.
-rw-r--r--ChangeLog7
-rw-r--r--src/ephy-history-window.c90
2 files changed, 95 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b0aac3e0..ea21e1c06 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2003-05-02 Jon Svendsen <jon-sven@frisurf.no>
+
+ * src/ephy-history-window.c: (cmd_clear), (cmd_close),
+ (confirmation_dialog_response_cb), (confirmation_dialog_construct),
+
+ Port confirmation dialog for clearing history to new history dialog.
+
2003-05-04 David Adam Bordoley <bordoley@msu.edu>
* data/epiphany.schemas.in:
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c
index 71ec221cc..144590247 100644
--- a/src/ephy-history-window.c
+++ b/src/ephy-history-window.c
@@ -102,6 +102,7 @@ struct EphyHistoryWindowPrivate
GtkWidget *window;
EggMenuMerge *ui_merge;
EggActionGroup *action_group;
+ GtkWidget *confirmation_dialog;
};
enum
@@ -176,12 +177,17 @@ static EggActionGroupEntry ephy_history_ui_entries [] = {
static guint ephy_history_ui_n_entries = G_N_ELEMENTS (ephy_history_ui_entries);
static void
-cmd_clear (EggAction *action,
- EphyHistoryWindow *editor)
+confirmation_dialog_response_cb (GtkDialog *dialog, gint response,
+ EphyHistoryWindow *editor)
{
const GList *windows;
Session *session;
+ gtk_widget_destroy (GTK_WIDGET (dialog));
+
+ if (response != GTK_RESPONSE_OK)
+ return;
+
session = ephy_shell_get_session (ephy_shell);
windows = session_get_windows (session);
@@ -196,10 +202,90 @@ cmd_clear (EggAction *action,
ephy_history_clear (editor->priv->history);
}
+static GtkWidget *
+confirmation_dialog_construct (EphyHistoryWindow *editor)
+{
+ GtkWidget *dialog;
+ GtkWidget *label;
+ GtkWidget *vbox;
+ GtkWidget *hbox;
+ GtkWidget *image;
+ char *str;
+
+ dialog = gtk_dialog_new_with_buttons (_("Clear history"),
+ GTK_WINDOW (editor),
+ GTK_DIALOG_DESTROY_WITH_PARENT |
+ GTK_DIALOG_NO_SEPARATOR,
+ GTK_STOCK_CANCEL,
+ GTK_RESPONSE_CANCEL,
+ GTK_STOCK_CLEAR,
+ GTK_RESPONSE_OK,
+ NULL);
+ gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
+ gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
+ gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 12);
+
+ hbox = gtk_hbox_new (FALSE, 6);
+ gtk_widget_show (hbox);
+ gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), hbox,
+ TRUE, TRUE, 0);
+
+ image = gtk_image_new_from_stock (GTK_STOCK_DIALOG_WARNING,
+ GTK_ICON_SIZE_DIALOG);
+ gtk_misc_set_alignment (GTK_MISC (image), 0.5, 0.0);
+ gtk_widget_show (image);
+ gtk_box_pack_start (GTK_BOX (hbox), image, TRUE, TRUE, 0);
+
+ vbox = gtk_vbox_new (FALSE, 6);
+ gtk_widget_show (vbox);
+ gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0);
+
+ label = gtk_label_new (NULL);
+ gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
+ gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
+ str = g_strconcat ("<b><big>", _("Clear browsing history?"),
+ "</big></b>", NULL);
+ gtk_label_set_markup (GTK_LABEL (label), str);
+ g_free (str);
+ gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 0);
+ gtk_widget_show (label);
+
+ label = gtk_label_new (_("Clearing the browsing history will cause all"
+ " history items to be permanently deleted."));
+ gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
+ gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
+ gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 0);
+ gtk_widget_show (label);
+
+ g_signal_connect (dialog, "response",
+ G_CALLBACK (confirmation_dialog_response_cb),
+ editor);
+
+ return dialog;
+}
+
+static void
+cmd_clear (EggAction *action,
+ EphyHistoryWindow *editor)
+{
+ if (editor->priv->confirmation_dialog == NULL)
+ {
+ editor->priv->confirmation_dialog = confirmation_dialog_construct (editor);
+ g_object_add_weak_pointer (G_OBJECT(editor->priv->confirmation_dialog),
+ (gpointer *)&editor->priv->confirmation_dialog);
+ }
+
+ gtk_widget_show (editor->priv->confirmation_dialog);
+}
+
static void
cmd_close (EggAction *action,
EphyHistoryWindow *editor)
{
+ if (editor->priv->confirmation_dialog != NULL)
+ {
+ gtk_widget_destroy (editor->priv->confirmation_dialog);
+ }
gtk_widget_hide (GTK_WIDGET (editor));
}
a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/hungarian?id=bc7f2d733c5cf8854e3e1d5fa4619dd02de50296'>- Update to 6.3.0Li-Wen Hsu2019-08-201-5/+5 * - Update to 6.2.5Li-Wen Hsu2019-07-081-5/+5 * - Update to 6.2.4Li-Wen Hsu2019-05-241-5/+5 * - Update to 6.2.3Li-Wen Hsu2019-04-211-5/+5 * Update to 6.2.2Li-Wen Hsu2019-03-231-5/+5 * Remove KDE4, part 5Rene Ladan2019-01-015-964/+0 * Mark kde4-l10n ports deprecated.Tobias C. Berner2018-11-241-0/+3 * Update to 6.0.7.Jung-uk Kim2018-11-091-5/+5 * - Update to 6.0.5Li-Wen Hsu2018-06-271-5/+5 * - Update to 6.0.4Li-Wen Hsu2018-05-101-5/+5 * - Update to 6.0.3Li-Wen Hsu2018-04-081-5/+5 * - Update LibreOffice to 6.0.2 [1]Li-Wen Hsu2018-03-172-8/+5 * Rename KDE4 meta portsTobias C. Berner2018-02-101-1/+1 * Update to 5.3.7.Jung-uk Kim2017-11-031-5/+5 * Update LICENSESunpoet Po-Chuan Hsieh2017-09-251-1/+2 * Fix kde4-l10n packages after sysutils/filelight's updateTobias C. Berner2017-09-172-2/+1 * Update to 5.3.6.Jung-uk Kim2017-09-061-5/+5 * Update to 5.3.5.Jung-uk Kim2017-08-041-5/+5 * Update to 5.3.4.Jung-uk Kim2017-06-221-5/+5 * Update the Calligra ports to 3.0.1.Raphael Kubo da Costa2017-06-175-80/+0 * Update to 5.3.3.Jung-uk Kim2017-05-201-5/+5 * Update to 5.2.7.Jung-uk Kim2017-05-051-5/+5 * Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-252-1/+2 * Rename the magic DISTVERSION into SPELLVERSION for the aspell ports.Mathieu Arnold2017-04-121-1/+1 * Update to 5.2.6.Jung-uk Kim2017-03-281-5/+5 * Update to 5.2.5.Jung-uk Kim2017-02-011-5/+5 * Update to 5.2.4.Jung-uk Kim2017-01-021-5/+5 * Update libreoffice to 5.2.3 and liborcus to 0.11.2Baptiste Daroussin2016-11-121-4/+5 * Many KDE i10n ports: Patch updates CURDIRKurt Jaeger2016-05-261-1/+1 * editors/calligra-l10n: add plist-subKurt Jaeger2016-05-242-61/+61 * - Fix trailing whitespace in pkg-descrs, categories [g-n]*Dmitry Marakasov2016-05-191-1/+1 * Update to 5.0.6.Jung-uk Kim2016-05-071-4/+4 * Add missing items to the calligra-l10n ports plists.Raphael Kubo da Costa2016-03-292-0/+2 * Update to 5.0.5.Jung-uk Kim2016-02-161-4/+4 * Update Calligra to 2.9.11.Raphael Kubo da Costa2016-02-092-3/+2 * Update Calligra to 2.9.10.Raphael Kubo da Costa2015-12-223-26/+27 * Update to 5.0.4.Jung-uk Kim2015-12-181-4/+4 * Update to 5.0.3.Jung-uk Kim2015-11-041-4/+4 * Update to 5.0.2.Jung-uk Kim2015-09-242-6/+6 * Update LibreOffice to 5.0.1.Jung-uk Kim2015-09-021-4/+4 * - Add NO_ARCHSunpoet Po-Chuan Hsieh2015-07-181-0/+1 * - Add NO_ARCHSunpoet Po-Chuan Hsieh2015-07-181-0/+1 * Update to 4.3.7.Jung-uk Kim2015-04-261-4/+4 * Update KDE SC to 4.14.3Alonso Schaich2015-03-121-2/+2 * - Update to 4.3.6.Jung-uk Kim2015-02-211-4/+4 * cleanup plistBaptiste Daroussin2014-12-213-3/+0 * Update to 4.3.5.Jung-uk Kim2014-12-191-4/+4 * Update to 4.3.4.Jung-uk Kim2014-11-271-4/+4 * Update to 4.3.3.Jung-uk Kim2014-11-011-4/+4 * KDE/FreeBSD team presents KDE SC 4.14.2 and KDE Workspace 4.11.13!Max Brazhnikov2014-10-193-40/+37 * Update to 4.3.2.Jung-uk Kim2014-10-172-5/+4 * Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-113-2/+3 * Upgrade OpenEXR and ilmbase to 2.2.0.Matthias Andree2014-08-162-1/+2 * Update to 4.2.5.Jung-uk Kim2014-06-241-4/+4 * Stagify.Vanilla I. Shu2014-06-172-2/+0 * Update to libreoffice 4.2.4Baptiste Daroussin2014-06-111-4/+4 * KDE/FreeBSD team presents KDE SC 4.12.5 and KDE Workspace 4.11.9!Max Brazhnikov2014-05-111-2/+2 * Update to 4.1.6.Jung-uk Kim2014-05-071-4/+4 * KDE/FreeBSD team presents KDE SC 4.12.4 and KDE Workspace 4.11.8!Max Brazhnikov2014-04-031-2/+2 * Convert h* to USES=zipBaptiste Daroussin2014-03-102-2/+2 * KDE/FreeBSD team presents KDE SC 4.12.3 and KDE Workspace 4.11.7!Max Brazhnikov2014-03-051-2/+2 * Update to 4.1.5. It is partially based on the following PR.Jung-uk Kim2014-02-261-4/+4 * - Bump PORTREVISION after KDE4_PREFIX changeMax Brazhnikov2014-02-181-0/+1 * KDE/FreeBSD team presents KDE SC 4.12.2 and KDE Workspace 4.11.6!Max Brazhnikov2014-02-183-19/+39 * Support stagingEmanuel Haupt2014-02-181-2/+1 * Support stagingEmanuel Haupt2014-02-181-4/+3 * Remove ispell which is deprecated for long, consider using aspell instead or ...Baptiste Daroussin2014-01-297-307/+0 * - Update Calligra Suite to 2.7.5.Alberto Villa2013-12-173-3/+4 * StagifyBaptiste Daroussin2013-11-041-4/+3 * StagifyBaptiste Daroussin2013-11-041-4/+3 * Support stage, use bsdtar to extractBaptiste Daroussin2013-11-041-3/+2 * StagifyBaptiste Daroussin2013-11-041-1/+0 * - Update to 4.0.6.Jung-uk Kim2013-10-262-5/+4 * Add NO_STAGE all over the place in preparation for the staging support (cat: ...Baptiste Daroussin2013-09-2112-15/+13 * Update to 4.0.5.Jung-uk Kim2013-08-231-4/+4 * KDE3 and QT3 expired on 2013-07-01, remove these ports.Rene Ladan2013-07-275-1134/+0 * Fix INDEX by really fixing the kde4-l10n portsBaptiste Daroussin2013-07-101-0/+1 * KDE4 l10n fixes.Raphael Kubo da Costa2013-07-102-3/+1 * Update the KDE Software Compilation to 4.10.5.Raphael Kubo da Costa2013-07-051-2/+2 * Update to KDE SC 4.10.4, proudly presented by the KDE on FreeBSD team.Raphael Kubo da Costa2013-07-031-2/+2 * Update to 4.0.4.Jung-uk Kim2013-06-201-4/+4 * KDE/FreeBSD team presents KDE SC 4.10.3 ports!Max Brazhnikov2013-05-192-4/+2 * Update to 4.0.3.Jung-uk Kim2013-05-101-4/+4 * - Convert USE_GETTEXT to USES (part 2)Alex Kozlov2013-04-241-1/+1 * Update to 4.0.2.Jung-uk Kim2013-04-171-4/+4 * - Update Calligra and l10n ports to 2.6.2:Alberto Villa2013-03-302-7/+5 * KDE/FreeBSD team presents KDE SC 4.10.1 ports!Max Brazhnikov2013-03-273-16/+33 * Update to 4.0.1.Jung-uk Kim2013-03-091-4/+4 * Merge from area51 repository:Max Brazhnikov2013-02-052-3/+3 * Update to 3.6.5.Jung-uk Kim2013-02-051-4/+4 * KDE/FreeBSD team presents KDE SC 4.9.5 ports!Max Brazhnikov2013-02-043-30/+40 * - Change MAINTAINER addressThomas Abthorpe2013-01-106-34/+10 * - Deprecate QT3, KDE3 and unmaintained ports depending on them. QT 3.3.8Beat Gaetzi2012-12-301-0/+3 * - Update to 3.5.7.Jung-uk Kim2012-10-272-9/+4 * - Update Calligra Suite to 2.5.2.Alberto Villa2012-09-171-2/+2 * - Update Calligra to 2.5.1.Alberto Villa2012-09-012-7/+2 * The KDE/FreeBSD team is pleased to announce version 2.5 of Calligra,Alberto Villa2012-08-262-11/+3 * - Update to 3.5.6.Jung-uk Kim2012-08-241-4/+4 * Fix typos in COMMENTCarlo Strub2012-07-291-1/+1 * - Update LibreOffice and the language packs to 3.5.5.Jung-uk Kim2012-07-181-4/+4 * - Update Calligra to 2.4.3.Alberto Villa2012-07-052-2/+4 * - The FreeBSD Office team is proud to announce LibreOffice.org 3.5.4 releaseDima Panov2012-07-011-4/+4 * KDE/FreeBSD team presents KDE SC 4.8.4, probably the last release in 4.8.x se...Max Brazhnikov2012-06-152-3/+2 * - update png to 1.5.10Dirk Meyer2012-06-012-1/+2 * - Remove koffice-i18n ports, as they are not very useful withoutAlberto Villa2012-05-315-68/+0 * The KDE/FreeBSD team is pleased to announce Calligra Suite 2.4.2, KDEAlberto Villa2012-05-319-108/+47 * KDE/FreeBSD team presents long awaited KDE SC 4.8.3!Max Brazhnikov2012-05-253-10/+72 * - upgrade to 3.5.2Baptiste Daroussin2012-04-234-0/+22 * - Bump PORTREVISION to chase the update of multimedia/libvpxAshish SHUKLA2012-02-163-0/+3 * The KDE/FreeBSD team is pleased to announce KDE SC 4.7.4, whichAlberto Villa2012-01-252-2/+7 * - Pass maintainership to office@FreeBSD.orgSunpoet Po-Chuan Hsieh2011-11-291-1/+1 * The KDE on FreeBSD team is pleased to update the KDE4 ports to 4.7.3.Raphael Kubo da Costa2011-11-141-2/+2 * The KDE/FreeBSD team is pleased to announce KDE Software CompilationAlberto Villa2011-10-172-8/+27 * - Set DIST_SUBDIR: move dist files to DISTDIR/mythesSunpoet Po-Chuan Hsieh2011-08-182-2/+3 * - Set DIST_SUBDIR: move dist files to DISTDIR/hyphenSunpoet Po-Chuan Hsieh2011-08-182-2/+3 * - Change MASTER_SITES to my LOCAL to avoid implicit change of non-versionedSunpoet Po-Chuan Hsieh2011-08-184-8/+8 * - Set WRKSRCSunpoet Po-Chuan Hsieh2011-08-131-1/+2 * - Fix MASTER_SITESSunpoet Po-Chuan Hsieh2011-08-083-49/+11 * - Move language prefix to PKGNAMEPREFIXSunpoet Po-Chuan Hsieh2011-07-292-9/+12 * Pass matainership to the new office teamBaptiste Daroussin2011-07-222-2/+2 * Add some locales thesaurusBaptiste Daroussin2011-07-214-0/+34 * Add Hungarian hyphenation rulesBaptiste Daroussin2011-07-214-0/+33 * - now only provides the hungarian dictionnariesBaptiste Daroussin2011-07-206-148/+17 * - Connect textproc/hunspell to the buildJulien Laffaye2011-07-191-1/+0 * take maintainership, no reply from previous maintainerBaptiste Daroussin2011-07-111-1/+1 * Reset maintainership de jure. In fact KDE 3 has not been maintained by our teamMax Brazhnikov2011-07-082-2/+2 * Update KDE Software Compilation ports to 4.6.5Max Brazhnikov2011-07-082-2/+35 * The FreeBSD KDE Team is pleased to announce KDE SC 4.6.4. Read fullAlberto Villa2011-06-142-2/+3 * Update KDE Software Compilation ports to 4.6.3Max Brazhnikov2011-05-172-2/+19 * Fix PKGORIGINMax Brazhnikov2011-04-192-2/+2 * - Update KOffice to 2.3.3.Alberto Villa2011-04-132-4/+4 * The FreeBSD KDE Team is pleased to announce April updates for KDEAlberto Villa2011-04-071-2/+2 * - Connect hungarian/koffice-kde4-l10n to the build, and, mostAlberto Villa2011-03-251-0/+1 * - Update KOffice to 2.3.1.Alberto Villa2011-03-258-0/+146 * The FreeBSD KDE Team is pleased to announce KDE SC 4.6.1 and KDE PIMAlberto Villa2011-03-252-13/+53 * - Get Rid MD5 supportMartin Wilke2011-03-209-10/+0 * - The KDE FreeBSD team is proud to announce the release of KDE 4.5.5Dima Panov2011-01-081-2/+2 * KDE FreeBSD team presents KDE SC 4.5.4.Max Brazhnikov2010-12-031-2/+2 * KDE FreeBSD team presents KDE SC 4.5.3.Max Brazhnikov2010-11-042-3/+5 * KDE FreeBSD team presents KDE SC 4.5.2.Max Brazhnikov2010-10-062-3/+45 * Autotools update. Read ports/UPDATING 20100915 for details.Ade Lovett2010-09-162-4/+2 * KDE FreeBSD team presents KDE SC 4.5.1.Max Brazhnikov2010-09-032-376/+11 * Present KDE SC 4.4.5 for FreeBSD.Max Brazhnikov2010-06-301-3/+3 * - Update to 1.2.11Gabor Kovesdan2010-06-039-71/+57 * Present KDE SC 4.4.4 for FreeBSD.Max Brazhnikov2010-06-021-3/+3 * - Update to 1.6.1Gabor Kovesdan2010-06-013-5/+7 * Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-313-2/+3 * - The FreeBSD KDE team is pleased to announce KDE SC 4.4.3 for FreeBSDDima Panov2010-05-113-33/+83 * - update to 1.4.1Dirk Meyer2010-03-283-2/+3 * Presenting KDE 4.3.5 for FreeBSD. The official release notes for thisMartin Wilke2010-02-073-4/+4 * - update to jpeg-8Dirk Meyer2010-02-053-2/+3 * The FreeBSD KDE is please to announce the release of KDE 4.3.4,Martin Wilke2009-12-022-3/+6 * The KDE FreeBSD team is proud to announce the release of KDE 4.3.3Martin Wilke2009-11-272-5/+34 * The FreeBSD KDE is please to announce the release of KDE 4.3.1,Thomas Abthorpe2009-09-022-5/+25 * - Switch SourceForge ports to the new File Release System: categories startin...Dmitry Marakasov2009-08-224-4/+5 * clean upMax Brazhnikov2009-08-081-3/+0 * The KDE FreeBSD team is proud to announce the release of KDE 4.3.0Martin Wilke2009-08-053-17/+41 * - bump all port that indirectly depends on libjpeg and have not yet been bump...Dirk Meyer2009-07-313-0/+3 * The KDE FreeBSD team is pleased to announce KDE 4.2.4, the last bugfixMartin Wilke2009-06-031-3/+3 * Update KDE ports to 4.2.3Max Brazhnikov2009-05-102-3/+70 * The KDE FreeBSD team is proud to announce the release of KDE 4.2.2Martin Wilke2009-04-022-6/+28 * Update KDE to 4.2.1.Max Brazhnikov2009-03-092-3/+6 * The KDE FreeBSD team is proud to announce the release of KDE 4.2.0Martin Wilke2009-02-092-24/+11 * - Update to 1.2.8Gabor Kovesdan2009-02-086-16/+58 * - Update to 1.4Gabor Kovesdan2009-02-082-4/+4 * kde@freebsd team is pleased to announce KDE 4.1.4, the last bugfix release in...Max Brazhnikov2009-01-143-6/+9 * Turns out, libdata/pkgconfig/ is already part of mtree and needs neitherMikhail Teterin2008-09-092-3/+1 * Fix the incorrect location hunspell.pc. No PORTREVISION bump, becauseMikhail Teterin2008-09-091-1/+1 * Correct the destination of hunspell.pc file -- according to pav,Mikhail Teterin2008-09-082-3/+3 * Add two directories missing from plist...Mikhail Teterin2008-09-041-0/+2 * Upgrade from 1.2.2b to 1.2.7.Mikhail Teterin2008-09-046-47/+73 * The KDE FreeBSD team is proud to announce the release of KDE 4.1.1Martin Wilke2008-09-032-5/+21 * The KDE FreeBSD team is proud to announce the releaseMartin Wilke2008-08-291-3/+3 * The KDE FreeBSD team is proud to announce the releaseMartin Wilke2008-08-182-10/+64 * The KDE FreeBSD team is proud to announce the release of KDE 4.1.0Martin Wilke2008-08-105-484/+244 * PHP Documentation in these language has been removed from the distribution.Edwin Groothuis2008-08-042-14/+0 * - Update MASTER_SITESGabor Kovesdan2008-07-122-2/+2 * Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-063-2/+3 * - Update to 1.3Gabor Kovesdan2008-04-245-75/+41 * - Fix checking on LaTeX files on amd64Gabor Kovesdan2008-04-242-0/+12 * - Update to 1.2.2bGabor Kovesdan2008-04-074-51/+25 * Update to KDE 3.5.8Michael Nottebrock2007-10-304-8/+6 * - Fix UTF-8 bugGabor Kovesdan2007-10-073-0/+21 * - Update to 1.2.1Gabor Kovesdan2007-09-284-99/+89 * - Update to 1.1.10Gabor Kovesdan2007-08-283-5/+31 * - Update to 1.1.9Gabor Kovesdan2007-08-014-8/+18 * - Update to 1.1.8Gabor Kovesdan2007-07-214-19/+38 * Update to KDE 3.5.7 / KOffice 1.6.3Michael Nottebrock2007-07-048-29/+12