Branch: refs/heads/master Author: Frank Lanitz frank@frank.uvena.de Committer: Frank Lanitz frank@frank.uvena.de Date: Sat, 18 Feb 2012 16:17:05 Commit: 3d291b14d55f13003c33da5170f3b6bf345c0724 https://github.com/geany/geany-plugins/commit/3d291b14d55f13003c33da5170f3b6...
Log Message: ----------- GeanyLaTeX: Update copyright string
Modified Paths: -------------- geanylatex/src/bibtex.c geanylatex/src/bibtex.h geanylatex/src/bibtexlabels.c geanylatex/src/datatypes.h geanylatex/src/formatpatterns.c geanylatex/src/formatutils.c geanylatex/src/formatutils.h geanylatex/src/geanylatex.c geanylatex/src/geanylatex.h geanylatex/src/latexencodings.c geanylatex/src/latexencodings.h geanylatex/src/latexenvironments.c geanylatex/src/latexenvironments.h geanylatex/src/latexkeybindings.c geanylatex/src/latexkeybindings.h geanylatex/src/latexstructure.c geanylatex/src/latexstructure.h geanylatex/src/latexutils.c geanylatex/src/latexutils.h geanylatex/src/letters.c geanylatex/src/letters.h geanylatex/src/reftex.c geanylatex/src/reftex.h geanylatex/src/templates.c geanylatex/src/templates.h
Modified: geanylatex/src/bibtex.c 16 files changed, 8 insertions(+), 8 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * bibtex.c * - * Copyright 2008-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2008-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -122,7 +122,7 @@ void glatex_bibtex_write_entry(GPtrArray *entry, gint doctype) gchar *tmp = NULL; GeanyDocument *doc = NULL; const gchar *eol; - + doc = document_get_current(); if (doc != NULL) { @@ -177,7 +177,7 @@ void glatex_bibtex_insert_cite(gchar *reference_name, gchar *option) gchar *tmp;
g_return_if_fail(reference_name != NULL); - + if (option != NULL) { tmp = g_strconcat("\cite[", option, "]{", reference_name, "}", NULL); @@ -197,10 +197,10 @@ void glatex_parse_bib_file(const gchar* file, gpointer combobox) int i = 0; LaTeXLabel *tmp; gchar *tmp_label_name = NULL; - + if (file != NULL) { - /* Return if its not an bib file + /* Return if its not an bib file * Also try to ignore biblatex autogenerated files */ if (!g_str_has_suffix(file, ".bib") || g_str_has_suffix(file, "-blx.bib")) @@ -237,10 +237,10 @@ void glatex_parse_bib_file(const gchar* file, gpointer combobox) gint l = 0;
label = g_new0(LaTeXLabel, 1); - + x = line; - - while (*x != '\0' && + + while (*x != '\0' && *x != '{') { x++;
Modified: geanylatex/src/bibtex.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * bibtex.h * - * Copyright 2008-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2008-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/bibtexlabels.c 4 files changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * bibtexlabels.c * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,7 +24,7 @@ #include "datatypes.h"
BibTeXType glatex_bibtex_types[] = { - { "Article", N_("Article (@Article)")}, + { "Article", N_("Article (@Article)")}, { "Book", N_("Book (@Book)")}, { "Booklet", N_("Booklet (@Booklet)")}, { "Conference", N_("Conference (@Conference)")},
Modified: geanylatex/src/datatypes.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * datatypes.h * - * Copyright 2008-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2008-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/formatpatterns.c 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * formatpatterns.c * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/formatutils.c 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * formatutils.c * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/formatutils.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * formatutils.h * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/geanylatex.c 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * geanylatex.c - Plugin to let Geany better work together with LaTeX * - * Copyright 2007-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2007-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * Copyright 2005-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de> * Copyright 2006-2009 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com> *
Modified: geanylatex/src/geanylatex.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * geanylatex.h * - * Copyright 2008-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2008-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/latexencodings.c 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexencodings.h * - * Copyright 2008-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2008-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/latexencodings.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexencodings.h * - * Copyright 2008-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2008-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/latexenvironments.c 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexenvironments.c * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/latexenvironments.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexenvironments.h * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/latexkeybindings.c 4 files changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexkeybindings.c * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ void glatex_kblabel_insert(G_GNUC_UNUSED guint key_id)
void glatex_kbref_insert(G_GNUC_UNUSED guint key_id) { - g_return_if_fail(document_get_current != NULL); + g_return_if_fail(document_get_current != NULL); glatex_insert_ref_activated(NULL, NULL); }
Modified: geanylatex/src/latexkeybindings.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexkeybindings.h * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/latexstructure.c 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexstructure.c * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/latexstructure.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexstructure.h * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/latexutils.c 10 files changed, 5 insertions(+), 5 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexutils.c * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -26,10 +26,10 @@ { gchar **result = NULL; gchar *data; - - g_return_val_if_fail((filename != NULL), NULL); + + g_return_val_if_fail((filename != NULL), NULL); g_return_val_if_fail(g_file_get_contents(filename, &data, NULL, NULL), NULL); - + if (data != NULL) { g_warning("Content eingelesen: \n %s", data); @@ -148,7 +148,7 @@ void glatex_replace_special_character()
if (entity != NULL) { - + g_string_append(replacement, entity); } else
Modified: geanylatex/src/latexutils.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * latexutils.h * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/letters.c 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * letters.c * - * Copyright 2008-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2008-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/letters.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * letters.h * - * Copyright 2008-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2008-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/reftex.c 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * reftex.c * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/reftex.h 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * reftex.h * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/templates.c 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,7 +1,7 @@ /* * templates.c * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
Modified: geanylatex/src/templates.h 4 files changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -1,8 +1,8 @@ /* * templates.h * - * Copyright 2009-2011 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> - * + * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de> + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
plugins-commits@lists.geany.org