# HG changeset patch # User cmlenz # Date 1151926093 0 # Node ID ee669cb9cccc1241658be630e5703af5f2a01901 # Parent 37557b8fb925df82b8c28857b1656129bcb6cbba Fix for #2 (incorrect context node in path expressions). Still some paths that produce incorrect results, but the common case seems to work now. diff --git a/examples/includes/skins/default/layout.html b/examples/includes/skins/default/layout.html --- a/examples/includes/skins/default/layout.html +++ b/examples/includes/skins/default/layout.html @@ -10,7 +10,7 @@
- ${select('body/*')} + ${select('*')}
diff --git a/examples/turbogears/markuptest/templates/master.html b/examples/turbogears/markuptest/templates/master.html --- a/examples/turbogears/markuptest/templates/master.html +++ b/examples/turbogears/markuptest/templates/master.html @@ -7,7 +7,7 @@ Your title goes here - ${select('*/*')} + ${select('*')}