[gtksourceview] Added BibTex language.
- From: Ignacio Casal Quinteiro <icq src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gtksourceview] Added BibTex language.
- Date: Wed, 23 Dec 2009 13:44:02 +0000 (UTC)
commit 93493733cbd293d11708c7fb3e51cd7df01cef0f
Author: Søren Hauberg <hauberg gmail com>
Date: Wed Dec 23 14:43:37 2009 +0100
Added BibTex language.
gtksourceview/language-specs/Makefile.am | 1 +
gtksourceview/language-specs/bibtex.lang | 92 +++++++++++++++++++++++++++++
gtksourceview/language-specs/testfiles.sh | 13 ++++
3 files changed, 106 insertions(+), 0 deletions(-)
---
diff --git a/gtksourceview/language-specs/Makefile.am b/gtksourceview/language-specs/Makefile.am
index 8964d74..f797be6 100644
--- a/gtksourceview/language-specs/Makefile.am
+++ b/gtksourceview/language-specs/Makefile.am
@@ -4,6 +4,7 @@ LANGUAGES = \
ada.lang \
asp.lang \
awk.lang \
+ bibtex.lang \
boo.lang \
changelog.lang \
c.lang \
diff --git a/gtksourceview/language-specs/bibtex.lang b/gtksourceview/language-specs/bibtex.lang
new file mode 100644
index 0000000..a7f2a3f
--- /dev/null
+++ b/gtksourceview/language-specs/bibtex.lang
@@ -0,0 +1,92 @@
+<?xml version="1.0"?>
+<!--
+
+ Author: Søren Hauberg <hauberg gmail com>
+ Copyright (C) 2009 Søren Hauberg <hauberg gmail com>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+<language id="bibtex" _name="BibTeX" version="2.0" _section="Markup">
+ <metadata>
+ <property name="mimetypes">text/x-bibtex</property>
+ <property name="globs">*.bib</property>
+ <property name="line-comment-start">%</property>
+ </metadata>
+
+ <styles>
+ <style id="entry-type" _name="Entries" map-to="def:keyword"/>
+ <style id="field" _name="Field" map-to="def:identifier"/>
+ </styles>
+
+ <default-regex-options case-sensitive="false"/>
+
+ <definitions>
+
+ <context id="entry-type" style-ref="entry-type">
+ <prefix>@</prefix>
+
+ <keyword>book</keyword>
+ <keyword>article</keyword>
+ <keyword>booklet</keyword>
+ <keyword>conference</keyword>
+ <keyword>inbook</keyword>
+ <keyword>incollection</keyword>
+ <keyword>inproceedings</keyword>
+ <keyword>manual</keyword>
+ <keyword>mastersthesis</keyword>
+ <keyword>lambda</keyword>
+ <keyword>misc</keyword>
+ <keyword>phdthesis</keyword>
+ <keyword>proceedings</keyword>
+ <keyword>techreport</keyword>
+ <keyword>unpublished</keyword>
+ </context>
+
+ <context id="field" style-ref="field">
+ <keyword>author</keyword>
+ <keyword>title</keyword>
+ <keyword>journal</keyword>
+ <keyword>year</keyword>
+ <keyword>volume</keyword>
+ <keyword>number</keyword>
+ <keyword>pages</keyword>
+ <keyword>month</keyword>
+ <keyword>note</keyword>
+ <keyword>key</keyword>
+ <keyword>publisher</keyword>
+ <keyword>editor</keyword>
+ <keyword>series</keyword>
+ <keyword>address</keyword>
+ <keyword>edition</keyword>
+ <keyword>howpublished</keyword>
+ <keyword>booktitle</keyword>
+ <keyword>organization</keyword>
+ <keyword>chapter</keyword>
+ <keyword>school</keyword>
+ <keyword>institution</keyword>
+ <keyword>type</keyword>
+ </context>
+
+ <context id="bibtex">
+ <include>
+ <context ref="latex:latex"/>
+ <context ref="entry-type"/>
+ <context ref="field"/>
+ </include>
+ </context>
+ </definitions>
+</language>
diff --git a/gtksourceview/language-specs/testfiles.sh b/gtksourceview/language-specs/testfiles.sh
index 224a51a..3732787 100755
--- a/gtksourceview/language-specs/testfiles.sh
+++ b/gtksourceview/language-specs/testfiles.sh
@@ -15,6 +15,19 @@
dir="testdir"
mkdir -p $dir/
+cat > $dir/file.bib << EOFEOF
+%A .bib file might contain the following entry, which describes a mathematical handbook
+ Book{abramowitz+stegun,
+ author = "Milton {Abramowitz} and Irene A. {Stegun}",
+ title = "Handbook of Mathematical Functions with
+ Formulas, Graphs, and Mathematical Tables",
+ publisher = "Dover",
+ year = 1964,
+ address = "New York",
+ edition = "ninth Dover printing, tenth GPO printing"
+}
+EOFEOF
+
cat > $dir/file.rq << EOFEOF
# Positive test: product of type promotion within the xsd:decimal type tree.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]