summaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-08-31 20:59:04 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-09-02 16:29:30 -0300
commitc8b1b96a1d2a6febbd2e080d0f0d6130ff213a95 (patch)
tree010cc8f1d4b45d548daaf9b652898395796a33fa /HACKING
parent890c0d280deb5ec9f4e306e6c02df827796c80b0 (diff)
downloadglade-c8b1b96a1d2a6febbd2e080d0f0d6130ff213a95.tar.gz
Updated information
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING30
1 files changed, 15 insertions, 15 deletions
diff --git a/HACKING b/HACKING
index 3f1522d6..3f5c8860 100644
--- a/HACKING
+++ b/HACKING
@@ -1,54 +1,54 @@
Mailing List
~~~~~~~~~~~~
-Glade-3 discussion takes place on glade-devel@ximian.org
+Glade discussion takes place on glade-devel@lists.ximian.com
To subscribe or to consult archives visit
http://lists.ximian.com/mailman/listinfo/glade-devel
-When posting to the list include [glade3] in the subject,
-since the list is also used for Glade-2 developement.
Bugzilla
~~~~~~~~
-Glade-3 bugs are tracked in the glade3 module of
+Glade bugs are tracked in the glade module of
http://bugzilla.gnome.org
-SVN
+GIT
~~~
-The Glade-3 repository is hosted at svn.gnome.org
-To check out a copy of Glade-3 you can use the following commands:
+The Glade repository is hosted at git.gnome.org
+
+You can browse the source code at https://git.gnome.org/browse/glade
-svn checkout svn://svn.gnome.org/svn/glade3 glade3
+To check out a copy of Glade-3 you can use the following commands:
+git clone git://git.gnome.org/glade
Patches
~~~~~~~
Patches must be in the unified format (diff -u) and must include a
ChangeLog entry. Please send all patches to bugzilla.
-Currently svn only permits this with the following command:
+It is better to use git format-patch command
-svn diff --diff-cmd=/usr/bin/diff -x -uBp . > file.patch
+git format-patch HEAD^
Coding Style
~~~~~~~~~~~~
-Code in Glade-3 should follow the GNOME Programming Guidelines
+Code in Glade should follow the GNOME Programming Guidelines
(http://developer.gnome.org/doc/guides/programming-guidelines/),
basically this means being consistent with the sorrounding code.
The only exception is that we prefer having braces always on a new line
e.g.:
if (...)
-{
- ...
-}
+ {
+ ...
+ }
Note however that a lot of the current codebase still uses the following
style:
if (...) {
- ...
+ ...
}
Over time we'll migrate to the preferred form.