commit 45218e0fc1bdddaa0593c93ae4680ff173d9e60d
Author: Andy Postnikov <andypost@ya.ru>
Date:   Sun Sep 9 02:36:10 2012 +0700

    Convert toolbar

diff --git a/core/modules/toolbar/toolbar.module b/core/modules/toolbar/toolbar.module
index 70f12bf..b6cdce4 100644
--- a/core/modules/toolbar/toolbar.module
+++ b/core/modules/toolbar/toolbar.module
@@ -40,7 +40,6 @@ function toolbar_theme($existing, $type, $theme, $path) {
   $items['toolbar'] = array(
     'render element' => 'toolbar',
     'template' => 'toolbar',
-    'path' => drupal_get_path('module', 'toolbar'),
   );
   $items['toolbar_toggle'] = array(
     'variables' => array(
diff --git a/core/themes/stark/templates/toolbar/toolbar.twig b/core/themes/stark/templates/toolbar/toolbar.twig
new file mode 100644
index 0000000..d0f436d
--- /dev/null
+++ b/core/themes/stark/templates/toolbar/toolbar.twig
@@ -0,0 +1,29 @@
+{#
+/**
+ * @file
+ * Default template for admin toolbar.
+ *
+ * Available variables:
+ * - attributes: An instance of Attributes class that can be manipulated as an
+ *    array and printed as a string.
+ *    It includes the 'class' information, which includes:
+ *   - toolbar: The current template type, i.e., "theming hook".
+ * - toolbar['toolbar_user']: User account / logout links.
+ * - toolbar['toolbar_menu']: Top level management menu links.
+ * - toolbar['toolbar_drawer']: A place for extended toolbar content.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_toolbar()
+ */
+#}
+<nav id="toolbar" role="navigation" class="{{ attributes.class }} clearfix" {{ attributes }}>
+  <div class="toolbar-menu clearfix">
+    {{ render(toolbar['toolbar_home']) }}
+    {{ render(toolbar['toolbar_user']) }}
+    {{ render(toolbar['toolbar_menu']) }}
+      {% if toolbar['toolbar_drawer'] %}
+        {{ render(toolbar['toolbar_toggle']) }}
+      {% endif %}
+  </div>
+  {{ render(toolbar['toolbar_drawer']) }}
+</nav>
