This patch introduced a problem with qualified typenames (it rejected
reference to resources of those types because ":" is not a
word-character.  It has been adjusted as follows:

diff --git a/lib/puppet/resource/catalog.rb b/lib/puppet/resource/catalog.rb
index 9b5e68f..4b4342d 100644
--- a/lib/puppet/resource/catalog.rb
+++ b/lib/puppet/resource/catalog.rb
@@ -57,7 +57,7 @@ class Puppet::Resource::Catalog < Puppet::SimpleGraph
   end

   def title_key_for_ref( ref )
-    ref =~ /^(\w+)\[(.*)\]$/m
+    ref =~ /^([\w:]+)\[(.*)\]$/m
     [$1, $2]
   end

-- Markus
-----------------------------------------------------------
The power of accurate observation is
commonly called cynicism by those
who have not got it.  ~George Bernard Shaw
------------------------------------------------------------

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/puppet-dev?hl=en.

Reply via email to