Skip to content
Snippets Groups Projects
Select Git revision
  • 00724aff2bcbdb66f2dfb2dd4be581fec9bc5d98
  • master default protected
  • renovate/golang-1.x
  • renovate/go-1.x
  • renovate/github.com-mattn-go-sqlite3-1.x
  • renovate/github.com-prometheus-client_golang-1.x
  • renovate/git.autistici.org-ai3-go-common-digest
  • better-compression
8 results

handlers.go

Blame
    • ale's avatar
      35f8a72e
      Refactor, take one · 35f8a72e
      ale authored
      Try to make things simpler and more clear. Specifically:
      
      * clarify the semantics of Source, Dataset and Atom
      * separate the namespace of Atom paths from the Restic namespace
      * simplify the command execution by delegating pipes to /bin/sh
        for efficiency
      
      There's still a bunch to do.
      35f8a72e
      History
      Refactor, take one
      ale authored
      Try to make things simpler and more clear. Specifically:
      
      * clarify the semantics of Source, Dataset and Atom
      * separate the namespace of Atom paths from the Restic namespace
      * simplify the command execution by delegating pipes to /bin/sh
        for efficiency
      
      There's still a bunch to do.
    class-wp-customize-widgets.php 64.78 KiB
    <?php
    /**
     * WordPress Customize Widgets classes
     *
     * @package WordPress
     * @subpackage Customize
     * @since 3.9.0
     */
    
    /**
     * Customize Widgets class.
     *
     * Implements widget management in the Customizer.
     *
     * @since 3.9.0
     *
     * @see WP_Customize_Manager
     */
    final class WP_Customize_Widgets {
    
    	/**
    	 * WP_Customize_Manager instance.
    	 *
    	 * @since 3.9.0
    	 * @var WP_Customize_Manager
    	 */
    	public $manager;
    
    	/**
    	 * All id_bases for widgets defined in core.
    	 *
    	 * @since 3.9.0
    	 * @var array
    	 */
    	protected $core_widget_id_bases = array(
    		'archives',
    		'calendar',
    		'categories',
    		'custom_html',
    		'links',
    		'media_audio',
    		'media_image',
    		'media_video',
    		'meta',
    		'nav_menu',
    		'pages',
    		'recent-comments',
    		'recent-posts',
    		'rss',
    		'search',
    		'tag_cloud',
    		'text',
    	);
    
    	/**
    	 * @since 3.9.0
    	 * @var array
    	 */
    	protected $rendered_sidebars = array();
    
    	/**
    	 * @since 3.9.0
    	 * @var array
    	 */
    	protected $rendered_widgets = array();
    
    	/**
    	 * @since 3.9.0
    	 * @var array
    	 */