Index: plugins
===================================================================
--- plugins	(revision 2005)
+++ plugins	(working copy)

Property changes on: plugins
___________________________________________________________________
Added: svn:externals
## -0,0 +1,9 ##
+akismet https://plugins.svn.wordpress.org/akismet/trunk
+bbpress https://plugins.svn.wordpress.org/bbpress/trunk
+debug-bar https://plugins.svn.wordpress.org/debug-bar/trunk
+debug-bar-cron https://plugins.svn.wordpress.org/debug-bar-cron/trunk
+email-post-changes https://plugins.svn.wordpress.org/email-post-changes/trunk
+speakerdeck-embed https://plugins.svn.wordpress.org/speakerdeck-embed/trunk
+supportflow https://plugins.svn.wordpress.org/supportflow/trunk
+syntaxhighlighter https://plugins.svn.wordpress.org/syntaxhighlighter/trunk
+wordpress-importer https://plugins.svn.wordpress.org/wordpress-importer/trunk
Index: themes/pub/wporg-developer/functions.php
===================================================================
--- themes/pub/wporg-developer/functions.php	(revision 2005)
+++ themes/pub/wporg-developer/functions.php	(working copy)
@@ -101,6 +101,8 @@
 
 	add_filter( 'wp_parser_skip_duplicate_hooks', '__return_true' );
 
+	add_theme_support( 'title-tag');
+	add_filter( 'document_title_separator', __NAMESPACE__ . '\\theme_title_separator',10,2);
 }
 
 /**
@@ -277,3 +279,10 @@
 		add_meta_box( 'commentsdiv', __( 'User Contributed Notes', 'wporg' ), 'post_comment_meta_box', $post_type, 'normal', 'high' );
 	}
 }
+
+/**
+ * Adds a title seperator to page titles
+ */
+function theme_title_separator(){
+	return '|';
+}
Index: themes/pub/wporg-developer/header.php
===================================================================
--- themes/pub/wporg-developer/header.php	(revision 2005)
+++ themes/pub/wporg-developer/header.php	(working copy)
@@ -6,9 +6,7 @@
  *
  * @package wporg-developer
  */
-
-$GLOBALS['pagetitle'] = wp_title( '|', false, 'right' );
-
+ 
 require WPORGPATH . 'header.php';
 ?>
 
Index: themes
===================================================================
--- themes	(revision 2005)
+++ themes	(working copy)

Property changes on: themes
___________________________________________________________________
Added: svn:externals
## -0,0 +1 ##
+rosetta https://meta.svn.wordpress.org/sites/trunk/global.wordpress.org/public_html/wp-content/themes/rosetta/
