Author: joes
Date: Mon Mar 17 19:08:42 2014
New Revision: 1578521

URL: http://svn.apache.org/r1578521
Log:
YAML.pm is ass, upgrade to YAML::XS

Modified:
    thrift/cms-site/trunk/lib/path.pm

Modified: thrift/cms-site/trunk/lib/path.pm
URL: 
http://svn.apache.org/viewvc/thrift/cms-site/trunk/lib/path.pm?rev=1578521&r1=1578520&r2=1578521&view=diff
==============================================================================
--- thrift/cms-site/trunk/lib/path.pm (original)
+++ thrift/cms-site/trunk/lib/path.pm Mon Mar 17 19:08:42 2014
@@ -1,11 +1,11 @@
 package path;
-use YAML ();
+use YAML::XS;
 use strict;
 use warnings;
 
 my $yaml = "";
 $yaml .= $_ while <DATA>;
-my $conf = YAML::Load($yaml);
+my $conf = Load($yaml);
 
 
 our @patterns = (
@@ -45,32 +45,32 @@ current_release_date: "2013-08-21"
 
 # Apache ID, Name, Specialities, Timezone
 committers: [
-    [ "mcslee", "Mark Slee", "General vision and implementation", "-8" ],
-    [ "dreiss", "David Reiss", "Everything, GIT configuration, performance", 
"-8" ],
-    [ "aditya", "Aditya Agarwal", "C++ servers", "-8" ],
-    [ "marck", "Marc Kwiatkowski", "C++ concurrency", "-8" ],
-    [ "jwang", "James Wang", "C++ transports and processors", "-8" ],
-    [ "cpiro", "Chris Piro", "Erlang", "-8" ],
-    [ "bmaurer", "Ben Maurer", "Python data serialization", "-5" ],
-    [ "kclark", "Kevin Clark", "Ruby implementation", "-8" ],
-    [ "jake", "Jake Luciani", "Perl, JavaScript", "-5" ],
-    [ "bryanduxbury", "Bryan Duxbury", "Compact Protocol, Java, Ruby", "-8" ],
-    [ "esteve", "Esteve Fernandez", "Python, Twisted, async transports", "1" ],
-    [ "todd", "Todd Lipcon", "Erlang, Java", "-8" ],
-    [ "geechorama", "Andrew McGeachie", "Cocoa", "?" ],
-    [ "molinaro", "Anthony Molinaro", "Erlang, Perl, autotools", "-8" ],
-    [ "roger", "Roger Meier", "Continuous Integration, C++, C#, JavaScript", 
"2" ],
-    [ "jfarrell", "Jake Farrell", "Release Manager, Build, Client Publishing, 
Java, PHP, Ruby", "-5" ],
-    [ "jensg", "Jens Geyer", "Delphi, C#, Go", "1" ],
-    [ "carl", "Carl Yeksigian", "C#", "-5"]
-]
+        [ "mcslee", "Mark Slee", "General vision and implementation", "-8" ],
+        [ "dreiss", "David Reiss", "Everything, GIT configuration, 
performance", "-8" ],
+        [ "aditya", "Aditya Agarwal", "C++ servers", "-8" ],
+        [ "marck", "Marc Kwiatkowski", "C++ concurrency", "-8" ],
+        [ "jwang", "James Wang", "C++ transports and processors", "-8" ],
+        [ "cpiro", "Chris Piro", "Erlang", "-8" ],
+        [ "bmaurer", "Ben Maurer", "Python data serialization", "-5" ],
+        [ "kclark", "Kevin Clark", "Ruby implementation", "-8" ],
+        [ "jake", "Jake Luciani", "Perl, JavaScript", "-5" ],
+        [ "bryanduxbury", "Bryan Duxbury", "Compact Protocol, Java, Ruby", 
"-8" ],
+        [ "esteve", "Esteve Fernandez", "Python, Twisted, async transports", 
"1" ],
+        [ "todd", "Todd Lipcon", "Erlang, Java", "-8" ],
+        [ "geechorama", "Andrew McGeachie", "Cocoa", "?" ],
+        [ "molinaro", "Anthony Molinaro", "Erlang, Perl, autotools", "-8" ],
+        [ "roger", "Roger Meier", "Continuous Integration, C++, C#, 
JavaScript", "2" ],
+        [ "jfarrell", "Jake Farrell", "Release Manager, Build, Client 
Publishing, Java, PHP, Ruby", "-5" ],
+        [ "jensg", "Jens Geyer", "Delphi, C#, Go", "1" ],
+        [ "carl", "Carl Yeksigian", "C#", "-5"]
+    ]
 
 # Powered by: Company name, website
 powered_by: [
         [ "Cloudera", "http://www.cloudera.com"; ],
         [ "Evernote", "http://evernote.com"; ],
         [ "Facebook", "http://www.facebook.com"; ],
-        [ "last.fm", "http://www.last.fm"; ],
+        [ "last.fm", "http://www.last.fm"; ]
         [ "Mendeley", "http://www.mendeley.com"; ],
         [ "OpenX", "http://www.openx.org"; ],
         [ "RapLeaf", "http://www.rapleaf.com"; ],


Reply via email to