]> Pileus Git - grits/commitdiff
libgis -> grits: Update non-technical references
authorAndy Spencer <andy753421@gmail.com>
Sat, 20 Nov 2010 07:16:08 +0000 (07:16 +0000)
committerAndy Spencer <andy753421@gmail.com>
Sun, 28 Nov 2010 05:34:58 +0000 (05:34 +0000)
README
docs/api/grits-demo.xml
docs/api/grits-docs.sgml
examples/plugin/mkfile
src/.vimrc
src/grits-opengl.c
src/grits-plugin.c
src/grits-prefs.c
src/grits.h
src/grits.pc.in
src/objects/grits-object.c

diff --git a/README b/README
index 2ed3bb752c06ab4554797318a15ac7008e28d92c..db95c38552b0f2911d819a4221612879ef70dffe 100644 (file)
--- a/README
+++ b/README
@@ -1 +1 @@
-libgis is a Virtual Globe library using GTK+ and OpenGL
+Grits is a Virtual Globe library using GTK+ and OpenGL
index c56849c1df95fb055d7341f33adcaa5feba4c5bd..1f6cdceb2f31f27442440133e348dfd2d341990b 100644 (file)
@@ -6,7 +6,7 @@
 
 <refnamediv>
        <refname>gis-demo</refname>
-       <refpurpose>libgis demonstration program</refpurpose>
+       <refpurpose>Grits demonstration program</refpurpose>
 </refnamediv>
 
 <refsynopsisdiv>
index 163e4c318950a656bf2d76e99803dc4d6a18bd9d..4afe49f9bc078dc064890403ed62724831449e7a 100644 (file)
@@ -3,7 +3,7 @@
 "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
 <book id="index" xmlns:xi="http://www.w3.org/2001/XInclude">
        <bookinfo>
-               <title>libgis Reference Manual</title>
+               <title>Grits Reference Manual</title>
        </bookinfo>
 
        <chapter>
index b89058c455d6564bd22c316b1c439633d4554805..435be560c6daafab1a231ec8f828a3e6165111c5 100644 (file)
@@ -9,6 +9,6 @@ default:V: $LIB
 clean:V:
        rm -f *.o *.so
 install:V:
-       cp $LIB /usr/lib/gis/
+       cp $LIB /usr/lib/grits0/
 uninstall:V:
-       rm /usr/lib/gis/$LIB
+       rm /usr/lib/grits0/$LIB
index 01772fa46d5191015e8c6eb9e06adf13055363c5..2de4374de572e4c5f3bd3c6e0bf3f36de3e84bdd 100644 (file)
@@ -1,5 +1,5 @@
 set makeprg=make\ test
 set tw=100
 
-au FileType valgrind syn match gisFile "\v<(gis-\w+|roam|elev|env|map|sat|test|radar)\.c>" containedin=valgrindSrc
-au FileType valgrind hi link gisFile Error
+au FileType valgrind syn match gritsFile "\v<(grits-\w+|roam|elev|env|map|sat|test|radar)\.c>" containedin=valgrindSrc
+au FileType valgrind hi link gritsFile Error
index 2e12d06b4675c5e1b7b5539b92bcbb730ae91e1d..7993741ab84c2f569cfc0640989936596ea074e9 100644 (file)
@@ -19,7 +19,7 @@
  * SECTION:gis-opengl
  * @short_description: OpenGL based virtual globe
  *
- * #GisOpenGL is the core rendering engine used by libgis. Theoretically other
+ * #GisOpenGL is the core rendering engine used by grits. Theoretically other
  * renderers could be writte, but they have not been. GisOpenGL uses the ROAM
  * algorithm for updating surface mesh the planet. The only thing GisOpenGL can
  * actually render on it's own is a wireframe of a sphere.
index 7b5b179598e9de45aada4534b1a2b1eb5fccce0d..6ceea398d9ed024c6e44a35369e33773deaff7c5 100644 (file)
  * SECTION:gis-plugin
  * @short_description: Plugin support
  *
- * A plugin in libgis is a GObject which implements the GisPlugin interface. Additionally, each
- * plugin is compiled to a separate shared object and loaded conditionally at runtime when the
- * plugin is enabled. Each such shared object should define a GisPluginConstructor() function named
- * gis_plugin_NAME_new which will be called when loading the plugin.
- *
- * Almost all libgis functionality is provided by a set of plugins. Each plugin can how however much
- * it likes. The interface between plugins and the rest of libgis is intentionally very thin. Since
- * libgis is the library, plugins must manually do everything. For instance, to draw something in
- * the world, the plugin must add an object to the viewer. Likewise, plugins need to register
- * callbacks on the viewer in order to receive updates, very little happens automagically.
- *
- * That being said, one thing that plugins do do automagically, is provide a configuration area.
- * Since the plugin doesn't know what application is is being loaded form, it is better for the
- * application to ask the plugin for it's confirmation area, not the other way around.
+ * A plugin in grits is a GObject which implements the GisPlugin interface.
+ * Additionally, each plugin is compiled to a separate shared object and loaded
+ * conditionally at runtime when the plugin is enabled. Each such shared object
+ * should define a GisPluginConstructor() function named gis_plugin_NAME_new
+ * which will be called when loading the plugin.
+ *
+ * Almost all grits functionality is provided by a set of plugins. Each plugin
+ * can how however much it likes. The interface between plugins and the rest of
+ * grits is intentionally very thin. Since grits is the library, plugins must
+ * manually do everything. For instance, to draw something in the world, the
+ * plugin must add an object to the viewer. Likewise, plugins need to register
+ * callbacks on the viewer in order to receive updates, very little happens
+ * automagically.
+ *
+ * That being said, one thing that plugins do do automagically, is provide a
+ * configuration area.  Since the plugin doesn't know what application is is
+ * being loaded form, it is better for the application to ask the plugin for
+ * it's confirmation area, not the other way around.
  */
 
 #include <glib.h>
@@ -104,7 +108,7 @@ const gchar *gis_plugin_get_description(GisPlugin *plugin)
  * gis_plugin_get_config:
  * @plugin: the plugin
  *
- * Each plugin can provide a configuration area. Applications using libgis
+ * Each plugin can provide a configuration area. Applications using grits
  * should display this configuration area to the user so they can modify the
  * behavior of the plugin.
  *
index e8f546ac442f0896f6c96fe3528bb4adff3f2c06..4e1b06489ce1c0fcb89ba808b2f16d5a4d433ac1 100644 (file)
  * SECTION:gis-prefs
  * @short_description: Persistent preference handing
  *
- * #GisPrefs is used to store and access preferences in libgis. It is mostly a
+ * #GisPrefs is used to store and access preferences in grits. It is mostly a
  * wrapper around a #GKeyFile. Preferences can be stored for the application
- * using libgis, but may also be stored by libgis itself. An example of this are
- * whether libgis is in online or offline mode. Many #GisPlugin<!-- -->s also
+ * using grits, but may also be stored by grits itself. An example of this are
+ * whether grits is in online or offline mode. Many #GisPlugin<!-- -->s also
  * store preferences.
  *
  * There are two variants of preference functions. The normal variant takes
index ad367355102d2c4b45cd474132ef4a015305ec3a..024ab0c293996b9290ba44c7dbfe8c5969deff81 100644 (file)
 #ifndef __GIS_H__
 #define __GIS_H__
 
-/* GIS Core */
+/* Grits Core */
 #include <grits-viewer.h>
 #include <grits-opengl.h>
 #include <grits-prefs.h>
 #include <grits-util.h>
 
-/* GIS data */
+/* Grits data */
 #include <data/grits-data.h>
 #include <data/grits-http.h>
 #include <data/grits-wms.h>
 
-/* GIS objects */
+/* Grits objects */
 #include <objects/grits-object.h>
 #include <objects/grits-tile.h>
 #include <objects/grits-marker.h>
index 859289e4df0dce289dc49e87f5b66c0f41751bd8..541f2225602a709746890f7387b293bf99ad58c3 100644 (file)
@@ -3,9 +3,9 @@ exec_prefix=@exec_prefix@
 libdir=@libdir@
 includedir=@includedir@
 
-Name: libgis
-Description: GIS Library for Gtk+ applications
+Name: Grits
+Description: Grits is a Virtual Globe library
 Version: @VERSION@
 Requires: gmodule-2.0 gtk+-2.0 gtkglext-1.0 libsoup-2.4
-Libs: -L${libdir} -lgis
-Cflags: -I${includedir}/gis
+Libs: -L${libdir} -lgrits
+Cflags: -I${includedir}/grits
index 81899e657a26fcb930a2ee85e0871e23cbb48615..f625e7a190fd0e76eddb1f0a7abfffd3b8cbbc3d 100644 (file)
  * SECTION:gis-object
  * @short_description: Base class for drawing operations
  *
- * Objects in libgis are things which can be added to the viewer and will be
+ * Objects in grits are things which can be added to the viewer and will be
  * displayed to the user. Each object has information such as it's location and
  * level of detail which are used by the viewer to determine which objects
  * should be drawn.
  *
- * Each #GisObject is also a #GObject, but not every GObject in libgis is a
+ * Each #GisObject is also a #GObject, but not every GObject in grits is a
  * GisObject. The "Object" part of the name is just coincidence.
  */