[aravis/dom: 3/5] dom: grand rename part 2.



commit 3f477375716e3dd0975f7729a9d1c8f2bf42a36a
Author: Emmanuel Pacaud <emmanuel gnome org>
Date:   Sun Feb 19 18:07:28 2012 +0100

    dom: grand rename part 2.

 src/{lsmdom.h => arvdom.h}                         |   20 ++--
 ...lsmdomcharacterdata.c => arvdomcharacterdata.c} |    4 +-
 ...lsmdomcharacterdata.h => arvdomcharacterdata.h} |    2 +-
 src/{lsmdomdocument.c => arvdomdocument.c}         |    8 +-
 src/{lsmdomdocument.h => arvdomdocument.h}         |    6 +-
 ...documentfragment.c => arvdomdocumentfragment.c} |    4 +-
 ...documentfragment.h => arvdomdocumentfragment.h} |    4 +-
 src/{lsmdomelement.c => arvdomelement.c}           |    4 +-
 src/{lsmdomelement.h => arvdomelement.h}           |    4 +-
 ...mdomimplementation.c => arvdomimplementation.c} |    2 +-
 ...mdomimplementation.h => arvdomimplementation.h} |    4 +-
 src/{lsmdomnamednodemap.c => arvdomnamednodemap.c} |    4 +-
 src/{lsmdomnamednodemap.h => arvdomnamednodemap.h} |    2 +-
 src/{lsmdomnode.c => arvdomnode.c}                 |    8 +-
 src/{lsmdomnode.h => arvdomnode.h}                 |    2 +-
 src/{lsmdomnodelist.c => arvdomnodelist.c}         |    4 +-
 src/{lsmdomnodelist.h => arvdomnodelist.h}         |    2 +-
 src/{lsmdomparser.c => arvdomparser.c}             |    4 +-
 src/{lsmdomparser.h => arvdomparser.h}             |    2 +-
 src/{lsmdomtext.c => arvdomtext.c}                 |    4 +-
 src/{lsmdomtext.h => arvdomtext.h}                 |    2 +-
 src/{lsmdomtypes.h => arvdomtypes.h}               |    0
 src/lsmdomenumtypes.c                              |   99 --------------------
 src/lsmdomenumtypes.h                              |   26 -----
 24 files changed, 48 insertions(+), 173 deletions(-)
---
diff --git a/src/lsmdom.h b/src/arvdom.h
similarity index 77%
rename from src/lsmdom.h
rename to src/arvdom.h
index 38195aa..f26aa96 100644
--- a/src/lsmdom.h
+++ b/src/arvdom.h
@@ -26,17 +26,17 @@
 
 #include <lsm.h>
 
-#include <lsmdomtypes.h>
+#include <arvdomtypes.h>
 
-#include <lsmdomnode.h>
-#include <lsmdomnodelist.h>
-#include <lsmdomdocument.h>
-#include <lsmdomelement.h>
-#include <lsmdomcharacterdata.h>
-#include <lsmdomtext.h>
-#include <lsmdomimplementation.h>
+#include <arvdomnode.h>
+#include <arvdomnodelist.h>
+#include <arvdomdocument.h>
+#include <arvdomelement.h>
+#include <arvdomcharacterdata.h>
+#include <arvdomtext.h>
+#include <arvdomimplementation.h>
 
-#include <lsmdomparser.h>
-#include <lsmdomview.h>
+#include <arvdomparser.h>
+#include <arvdomview.h>
 
 #endif
diff --git a/src/lsmdomcharacterdata.c b/src/arvdomcharacterdata.c
similarity index 98%
rename from src/lsmdomcharacterdata.c
rename to src/arvdomcharacterdata.c
index 3fc5f5d..0508680 100644
--- a/src/lsmdomcharacterdata.c
+++ b/src/arvdomcharacterdata.c
@@ -22,11 +22,11 @@
  */
 
 /**
- * SECTION:lsmdomcharacterdata
+ * SECTION:arvdomcharacterdata
  * @short_description: Base class for DOM character data nodes
  */
 
-#include <lsmdomcharacterdata.h>
+#include <arvdomcharacterdata.h>
 #include <lsmdebug.h>
 #include <string.h>
 
diff --git a/src/lsmdomcharacterdata.h b/src/arvdomcharacterdata.h
similarity index 98%
rename from src/lsmdomcharacterdata.h
rename to src/arvdomcharacterdata.h
index db0d5d6..eb32f00 100644
--- a/src/lsmdomcharacterdata.h
+++ b/src/arvdomcharacterdata.h
@@ -24,7 +24,7 @@
 #ifndef ARV_DOM_CHARACTER_DATA_H
 #define ARV_DOM_CHARACTER_DATA_H
 
-#include <lsmdomnode.h>
+#include <arvdomnode.h>
 
 G_BEGIN_DECLS
 
diff --git a/src/lsmdomdocument.c b/src/arvdomdocument.c
similarity index 98%
rename from src/lsmdomdocument.c
rename to src/arvdomdocument.c
index b5d081d..1c4a908 100644
--- a/src/lsmdomdocument.c
+++ b/src/arvdomdocument.c
@@ -22,15 +22,15 @@
  */
 
 /**
- * SECTION:lsmdomdocument
+ * SECTION:arvdomdocument
  * @short_description: Base class for DOM document nodes
  */
 
-#include <lsmdomdocument.h>
-#include <lsmdomelement.h>
+#include <arvdomdocument.h>
+#include <arvdomelement.h>
 #include <lsmstr.h>
 #include <lsmdebug.h>
-#include <lsmdomtext.h>
+#include <arvdomtext.h>
 #include <gio/gio.h>
 #include <string.h>
 
diff --git a/src/lsmdomdocument.h b/src/arvdomdocument.h
similarity index 97%
rename from src/lsmdomdocument.h
rename to src/arvdomdocument.h
index aebf796..8b68105 100644
--- a/src/lsmdomdocument.h
+++ b/src/arvdomdocument.h
@@ -25,9 +25,9 @@
 #define ARV_DOM_DOCUMENT_H
 
 #include <lsmtypes.h>
-#include <lsmdomtypes.h>
-#include <lsmdomnode.h>
-#include <lsmdomview.h>
+#include <arvdomtypes.h>
+#include <arvdomnode.h>
+#include <arvdomview.h>
 
 G_BEGIN_DECLS
 
diff --git a/src/lsmdomdocumentfragment.c b/src/arvdomdocumentfragment.c
similarity index 96%
rename from src/lsmdomdocumentfragment.c
rename to src/arvdomdocumentfragment.c
index f37ce54..4c84033 100644
--- a/src/lsmdomdocumentfragment.c
+++ b/src/arvdomdocumentfragment.c
@@ -22,11 +22,11 @@
  */
 
 /**
- * SECTION:lsmdomdocumentfragment
+ * SECTION:arvdomdocumentfragment
  * @short_description: Base class for DOM document fragments
  */
 
-#include <lsmdomdocumentfragment.h>
+#include <arvdomdocumentfragment.h>
 #include <string.h>
 
 static GObjectClass *parent_class = NULL;
diff --git a/src/lsmdomdocumentfragment.h b/src/arvdomdocumentfragment.h
similarity index 97%
rename from src/lsmdomdocumentfragment.h
rename to src/arvdomdocumentfragment.h
index 261dd8f..ac223d6 100644
--- a/src/lsmdomdocumentfragment.h
+++ b/src/arvdomdocumentfragment.h
@@ -24,8 +24,8 @@
 #ifndef ARV_DOM_DOCUMENT_FRAGMENT_H
 #define ARV_DOM_DOCUMENT_FRAGMENT_H
 
-#include <lsmdom.h>
-#include <lsmdomnode.h>
+#include <arvdom.h>
+#include <arvdomnode.h>
 
 G_BEGIN_DECLS
 
diff --git a/src/lsmdomelement.c b/src/arvdomelement.c
similarity index 98%
rename from src/lsmdomelement.c
rename to src/arvdomelement.c
index 8efa986..0d4e54b 100644
--- a/src/lsmdomelement.c
+++ b/src/arvdomelement.c
@@ -22,11 +22,11 @@
  */
 
 /**
- * SECTION:lsmdomelement
+ * SECTION:arvdomelement
  * @short_description: Base class for DOM element nodes
  */
 
-#include <lsmdomelement.h>
+#include <arvdomelement.h>
 #include <string.h>
 
 static GObjectClass *parent_class = NULL;
diff --git a/src/lsmdomelement.h b/src/arvdomelement.h
similarity index 98%
rename from src/lsmdomelement.h
rename to src/arvdomelement.h
index 98addda..1bedfbb 100644
--- a/src/lsmdomelement.h
+++ b/src/arvdomelement.h
@@ -24,8 +24,8 @@
 #ifndef ARV_DOM_ELEMENT_H
 #define ARV_DOM_ELEMENT_H
 
-#include <lsmdom.h>
-#include <lsmdomnode.h>
+#include <arvdom.h>
+#include <arvdomnode.h>
 
 G_BEGIN_DECLS
 
diff --git a/src/lsmdomimplementation.c b/src/arvdomimplementation.c
similarity index 98%
rename from src/lsmdomimplementation.c
rename to src/arvdomimplementation.c
index aebee43..76fff72 100644
--- a/src/lsmdomimplementation.c
+++ b/src/arvdomimplementation.c
@@ -21,7 +21,7 @@
  * 	Emmanuel Pacaud <emmanuel gnome org>
  */
 
-#include <lsmdomimplementation.h>
+#include <arvdomimplementation.h>
 #include <lsmmathmldocument.h>
 #include <lsmsvgdocument.h>
 #include <lsmdebug.h>
diff --git a/src/lsmdomimplementation.h b/src/arvdomimplementation.h
similarity index 96%
rename from src/lsmdomimplementation.h
rename to src/arvdomimplementation.h
index c37e3fb..e061b12 100644
--- a/src/lsmdomimplementation.h
+++ b/src/arvdomimplementation.h
@@ -24,8 +24,8 @@
 #ifndef ARV_DOM_IMPLEMENTATION_H
 #define ARV_DOM_IMPLEMENTATION_H
 
-#include <lsmdomtypes.h>
-#include <lsmdomdocument.h>
+#include <arvdomtypes.h>
+#include <arvdomdocument.h>
 
 G_BEGIN_DECLS
 
diff --git a/src/lsmdomnamednodemap.c b/src/arvdomnamednodemap.c
similarity index 97%
rename from src/lsmdomnamednodemap.c
rename to src/arvdomnamednodemap.c
index f2c01e2..318a7cf 100644
--- a/src/lsmdomnamednodemap.c
+++ b/src/arvdomnamednodemap.c
@@ -21,8 +21,8 @@
  * 	Emmanuel Pacaud <emmanuel gnome org>
  */
 
-#include <lsmdomnamednodemap.h>
-#include <lsmdomnode.h>
+#include <arvdomnamednodemap.h>
+#include <arvdomnode.h>
 
 /* ArvDomNamedNodeMap implementation */
 
diff --git a/src/lsmdomnamednodemap.h b/src/arvdomnamednodemap.h
similarity index 99%
rename from src/lsmdomnamednodemap.h
rename to src/arvdomnamednodemap.h
index 8b3f6f7..a175ed0 100644
--- a/src/lsmdomnamednodemap.h
+++ b/src/arvdomnamednodemap.h
@@ -24,7 +24,7 @@
 #ifndef ARV_DOM_NAMED_NODE_MAP_H
 #define ARV_DOM_NAMED_NODE_MAP_H
 
-#include <lsmdomtypes.h>
+#include <arvdomtypes.h>
 
 G_BEGIN_DECLS
 
diff --git a/src/lsmdomnode.c b/src/arvdomnode.c
similarity index 99%
rename from src/lsmdomnode.c
rename to src/arvdomnode.c
index ce1a36a..5a347a3 100644
--- a/src/lsmdomnode.c
+++ b/src/arvdomnode.c
@@ -22,13 +22,13 @@
  */
 
 /**
- * SECTION:lsmdomnode
+ * SECTION:arvdomnode
  * @short_description: Base class for DOM nodes
  */
 
-#include <lsmdomnode.h>
-#include <lsmdomnodelist.h>
-#include <lsmdomdocument.h>
+#include <arvdomnode.h>
+#include <arvdomnodelist.h>
+#include <arvdomdocument.h>
 #include <lsmdebug.h>
 #include <glib/gprintf.h>
 #include <stdio.h>
diff --git a/src/lsmdomnode.h b/src/arvdomnode.h
similarity index 99%
rename from src/lsmdomnode.h
rename to src/arvdomnode.h
index 9caa63a..901731d 100644
--- a/src/lsmdomnode.h
+++ b/src/arvdomnode.h
@@ -24,7 +24,7 @@
 #ifndef ARV_DOM_NODE_H
 #define ARV_DOM_NODE_H
 
-#include <lsmdomtypes.h>
+#include <arvdomtypes.h>
 #include <gio/gio.h>
 
 G_BEGIN_DECLS
diff --git a/src/lsmdomnodelist.c b/src/arvdomnodelist.c
similarity index 96%
rename from src/lsmdomnodelist.c
rename to src/arvdomnodelist.c
index bb748bd..4cfc50f 100644
--- a/src/lsmdomnodelist.c
+++ b/src/arvdomnodelist.c
@@ -21,8 +21,8 @@
  * 	Emmanuel Pacaud <emmanuel gnome org>
  */
 
-#include <lsmdomnodelist.h>
-#include <lsmdomnode.h>
+#include <arvdomnodelist.h>
+#include <arvdomnode.h>
 
 /* ArvDomNodeList implementation */
 
diff --git a/src/lsmdomnodelist.h b/src/arvdomnodelist.h
similarity index 98%
rename from src/lsmdomnodelist.h
rename to src/arvdomnodelist.h
index ade3523..ec2ae24 100644
--- a/src/lsmdomnodelist.h
+++ b/src/arvdomnodelist.h
@@ -24,7 +24,7 @@
 #ifndef ARV_DOM_NODE_LIST_H
 #define ARV_DOM_NODE_LIST_H
 
-#include <lsmdomtypes.h>
+#include <arvdomtypes.h>
 
 G_BEGIN_DECLS
 
diff --git a/src/lsmdomparser.c b/src/arvdomparser.c
similarity index 99%
rename from src/lsmdomparser.c
rename to src/arvdomparser.c
index 829b984..98eb0a0 100644
--- a/src/lsmdomparser.c
+++ b/src/arvdomparser.c
@@ -22,8 +22,8 @@
  */
 
 #include <lsmdebug.h>
-#include <lsmdomimplementation.h>
-#include <lsmdomnode.h>
+#include <arvdomimplementation.h>
+#include <arvdomnode.h>
 #include <lsmmathmlpresentationtoken.h>
 #include <lsmmathmlentitydictionary.h>
 #include <lsmsvgtextelement.h>
diff --git a/src/lsmdomparser.h b/src/arvdomparser.h
similarity index 98%
rename from src/lsmdomparser.h
rename to src/arvdomparser.h
index c7bb21b..4eb9e1f 100644
--- a/src/lsmdomparser.h
+++ b/src/arvdomparser.h
@@ -24,7 +24,7 @@
 #ifndef ARV_DOM_PARSER_H
 #define ARV_DOM_PARSER_H
 
-#include <lsmdomdocument.h>
+#include <arvdomdocument.h>
 #include <gio/gio.h>
 
 G_BEGIN_DECLS
diff --git a/src/lsmdomtext.c b/src/arvdomtext.c
similarity index 97%
rename from src/lsmdomtext.c
rename to src/arvdomtext.c
index b48497e..48b7613 100644
--- a/src/lsmdomtext.c
+++ b/src/arvdomtext.c
@@ -22,11 +22,11 @@
  */
 
 /**
- * SECTION:lsmdomtext
+ * SECTION:arvdomtext
  * @short_description: Base class for DOM text nodes
  */
 
-#include <lsmdomtext.h>
+#include <arvdomtext.h>
 
 /* ArvDomNode implementation */
 
diff --git a/src/lsmdomtext.h b/src/arvdomtext.h
similarity index 98%
rename from src/lsmdomtext.h
rename to src/arvdomtext.h
index ed254d6..3a50e16 100644
--- a/src/lsmdomtext.h
+++ b/src/arvdomtext.h
@@ -24,7 +24,7 @@
 #ifndef ARV_DOM_TEXT_H
 #define ARV_DOM_TEXT_H
 
-#include <lsmdomcharacterdata.h>
+#include <arvdomcharacterdata.h>
 
 G_BEGIN_DECLS
 
diff --git a/src/lsmdomtypes.h b/src/arvdomtypes.h
similarity index 100%
rename from src/lsmdomtypes.h
rename to src/arvdomtypes.h



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]