Skip to content

Commit

Permalink
dom: grand rename part 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelP committed Feb 19, 2012
1 parent 01a3af8 commit 3f47737
Show file tree
Hide file tree
Showing 24 changed files with 48 additions and 173 deletions.
20 changes: 10 additions & 10 deletions src/lsmdom.h → src/arvdom.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions src/lsmdomcharacterdata.c → src/arvdomcharacterdata.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
2 changes: 1 addition & 1 deletion src/lsmdomcharacterdata.h → src/arvdomcharacterdata.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions src/lsmdomdocument.c → src/arvdomdocument.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
6 changes: 3 additions & 3 deletions src/lsmdomdocument.h → src/arvdomdocument.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions src/lsmdomdocumentfragment.c → src/arvdomdocumentfragment.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/lsmdomdocumentfragment.h → src/arvdomdocumentfragment.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions src/lsmdomelement.c → src/arvdomelement.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/lsmdomelement.h → src/arvdomelement.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/lsmdomimplementation.c → src/arvdomimplementation.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Emmanuel Pacaud <[email protected]>
*/

#include <lsmdomimplementation.h>
#include <arvdomimplementation.h>
#include <lsmmathmldocument.h>
#include <lsmsvgdocument.h>
#include <lsmdebug.h>
Expand Down
4 changes: 2 additions & 2 deletions src/lsmdomimplementation.h → src/arvdomimplementation.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions src/lsmdomnamednodemap.c → src/arvdomnamednodemap.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
* Emmanuel Pacaud <[email protected]>
*/

#include <lsmdomnamednodemap.h>
#include <lsmdomnode.h>
#include <arvdomnamednodemap.h>
#include <arvdomnode.h>

/* ArvDomNamedNodeMap implementation */

Expand Down
2 changes: 1 addition & 1 deletion src/lsmdomnamednodemap.h → src/arvdomnamednodemap.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions src/lsmdomnode.c → src/arvdomnode.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/lsmdomnode.h → src/arvdomnode.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/lsmdomnodelist.c → src/arvdomnodelist.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
* Emmanuel Pacaud <[email protected]>
*/

#include <lsmdomnodelist.h>
#include <lsmdomnode.h>
#include <arvdomnodelist.h>
#include <arvdomnode.h>

/* ArvDomNodeList implementation */

Expand Down
2 changes: 1 addition & 1 deletion src/lsmdomnodelist.h → src/arvdomnodelist.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions src/lsmdomparser.c → src/arvdomparser.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/lsmdomparser.h → src/arvdomparser.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/lsmdomtext.c → src/arvdomtext.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
*/

/**
* SECTION:lsmdomtext
* SECTION:arvdomtext
* @short_description: Base class for DOM text nodes
*/

#include <lsmdomtext.h>
#include <arvdomtext.h>

/* ArvDomNode implementation */

Expand Down
2 changes: 1 addition & 1 deletion src/lsmdomtext.h → src/arvdomtext.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#ifndef ARV_DOM_TEXT_H
#define ARV_DOM_TEXT_H

#include <lsmdomcharacterdata.h>
#include <arvdomcharacterdata.h>

G_BEGIN_DECLS

Expand Down
File renamed without changes.
99 changes: 0 additions & 99 deletions src/lsmdomenumtypes.c

This file was deleted.

26 changes: 0 additions & 26 deletions src/lsmdomenumtypes.h

This file was deleted.

0 comments on commit 3f47737

Please sign in to comment.