[gtk-web] language-bindings.php: Keep all bindings in alphabetical order



commit c1e34bbea6abb2b1c69abf840cc891420730b029
Author: Javier Jardón <jjardon gnome org>
Date:   Sun May 22 14:40:04 2016 +0100

    language-bindings.php: Keep all bindings in alphabetical order

 language-bindings.php |   94 ++++++++++++++++++++++++-------------------------
 1 files changed, 46 insertions(+), 48 deletions(-)
---
diff --git a/language-bindings.php b/language-bindings.php
index b5fc8fa..0304c02 100755
--- a/language-bindings.php
+++ b/language-bindings.php
@@ -31,54 +31,7 @@ $bindings = array(
         // Accepts SUPPORTED, PARTIAL, UNSUPPORTED
         // NOTE: Commented out sections are kept for historical reasons, -mr.
 
-       /* Official bindings (sorted alphabetically) */
-
-       "C++" => array(
-               'official' => true, // Whether this binding is an official GNOME binding
-               'url' => 'http://www.gtkmm.org/', // Link to this page
-               'support' => array(
-                       'GTK+ 2' => SUPPORTED,
-                       'GTK+ 3' => SUPPORTED
-               )
-       ),
-
-       "Javascript" => array(
-               'official' => true,
-               'url' => 'https://wiki.gnome.org/JavaScript',
-               'support' => array(
-                       'GTK+ 2' => SUPPORTED,
-                       'GTK+ 3' => SUPPORTED
-               )
-       ),
-
-       "Perl" => array(
-               'official' => true,
-               'url' => 'http://gtk2-perl.sourceforge.net/',
-               'support' => array(
-                       'GTK+ 2' => SUPPORTED,
-                       'GTK+ 3' => SUPPORTED
-               )
-       ),
-
-       "Python" => array(
-               'official' => true,
-               'url' => 'https://wiki.gnome.org/Projects/PyGObject',
-               'support' => array(
-                       'GTK+ 2' => SUPPORTED,
-                       'GTK+ 3' => SUPPORTED
-               )
-       ),
-
-       "Vala" => array(
-               'official' => true,
-               'url' => 'https://wiki.gnome.org/Projects/Vala',
-               'support' => array(
-                       'GTK+ 2' => SUPPORTED,
-                       'GTK+ 3' => SUPPORTED
-               )
-       ),
-
-       /* Other bindings (sorted alphabetically) */
+       /* Bindings (sorted alphabetically) */
 
        "Ada" => array(
                'official' => false,
@@ -98,6 +51,15 @@ $bindings = array(
                )
        ),
 
+       "C++" => array(
+               'official' => true, // Whether this binding is an official GNOME binding
+               'url' => 'http://www.gtkmm.org/', // Link to this page
+               'support' => array(
+                       'GTK+ 2' => SUPPORTED,
+                       'GTK+ 3' => SUPPORTED
+               )
+       ),
+
        "D" => array(
                'official' => false,
                'url' => 'http://gtkd.org/',
@@ -170,6 +132,15 @@ $bindings = array(
                )
        ),
 
+       "Javascript" => array(
+               'official' => true,
+               'url' => 'https://wiki.gnome.org/JavaScript',
+               'support' => array(
+                       'GTK+ 2' => SUPPORTED,
+                       'GTK+ 3' => SUPPORTED
+               )
+       ),
+
        "Lua" => array(
                'official' => false,
                'url' => 'http://github.com/pavouk/lgi',
@@ -197,6 +168,24 @@ $bindings = array(
                )
        ),
 
+       "Perl" => array(
+               'official' => true,
+               'url' => 'http://gtk2-perl.sourceforge.net/',
+               'support' => array(
+                       'GTK+ 2' => SUPPORTED,
+                       'GTK+ 3' => SUPPORTED
+               )
+       ),
+
+       "Python" => array(
+               'official' => true,
+               'url' => 'https://wiki.gnome.org/Projects/PyGObject',
+               'support' => array(
+                       'GTK+ 2' => SUPPORTED,
+                       'GTK+ 3' => SUPPORTED
+               )
+       ),
+
        "PHP" => array(
                'official' => false,
                'url' => 'http://gtk.php.net/',
@@ -231,6 +220,15 @@ $bindings = array(
                        'GTK+ 2' => UNSUPPORTED,
                        'GTK+ 3' => SUPPORTED
                )
+       ),
+
+       "Vala" => array(
+               'official' => true,
+               'url' => 'https://wiki.gnome.org/Projects/Vala',
+               'support' => array(
+                       'GTK+ 2' => SUPPORTED,
+                       'GTK+ 3' => SUPPORTED
+               )
        )
 );
 


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