Skip to content

Commit 1bd7783

Browse files
committed
Renamed web-base-template to jquery-wp-content
1 parent 69a0e38 commit 1bd7783

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# jQuery.com web-base-template
1+
# jQuery.com jquery-wp-content
22

3-
This is a set of plugins, themes, and configuration files for jQuery's website infrastructure, which is powered by WordPress. It is designed as a custom content directory. So think of `web-base-template` as your `wp-content` directory.
3+
This is a set of plugins, themes, and configuration files for jQuery's website infrastructure, which is powered by WordPress. It is designed as a custom content directory. So think of `jquery-wp-content` as your `wp-content` directory.
44

55
## Prerequisites
66

@@ -38,18 +38,18 @@ This install guide assumes you already have certain prerequisites already config
3838
<li>Clone the official WordPress Github mirror at http://github.com/wordpress/wordpress/</li>
3939
</ul>
4040
41-
1. Clone `web-base-template` into place, so you have a file tree that looks like this:
41+
1. Clone `jquery-wp-content` into place, so you have a file tree that looks like this:
4242
4343
```
44-
web-base-template/
45-
wp-admin/
46-
wp-content/
47-
wp-includes/
4844
index.php
45+
jquery-wp-content/
46+
license.txt
47+
readme.html
48+
wp-activate.php
4949
...
5050
```
5151
52-
1. Copy `web-base-template/wp-config-sample.php` and move it up one directory, to `wp-config.php`. Fill in your database credentials.
52+
1. Copy `jquery-wp-content/wp-config-sample.php` and move it up one directory, to `wp-config.php`. Fill in your database credentials.
5353
5454
1. Create an .htaccess file with the following content into that same document root:
5555
@@ -81,7 +81,7 @@ For example, if your WordPress files are in the directory ```wordpress```, and y
8181
sudo chmod -R g+w wordpress
8282
```
8383
84-
1. Go to `http://local.jquery.com` and walk through the standard WordPress installation. `web-base-template` includes a special install script that will initialize the entire network.
84+
1. Go to `http://local.jquery.com` and walk through the standard WordPress installation. `jquery-wp-content` includes a special install script that will initialize the entire network.
8585
8686
1. Be sure to have node >= 0.8 installed on your system. Some sites, such as download.jqueryui.com, require that version or greater.
8787
@@ -92,7 +92,7 @@ Changes pushed to master will be pulled onto the stage domain.
9292
9393
Copyright 2012 jQuery Foundation and other contributors. All rights reserved.
9494
95-
The web-base-template repository contains themes for rendering all jQuery Foundation web sites.
95+
The jquery-wp-content repository contains themes for rendering all jQuery Foundation web sites.
9696
9797
### What is licensed
9898
@@ -102,12 +102,12 @@ Special exception: Code samples are given away for you to freely use, for any pu
102102
and Learn articles (unlike the source code of jQuery projects) you don't even have to say where you got the code from.
103103
Just use it.
104104
105-
The PHP files in the web-base-template repository are a derivative work of WordPress, and available under the
105+
The PHP files in the jquery-wp-content repository are a derivative work of WordPress, and available under the
106106
terms of the GPL license ( http://codex.wordpress.org/License )
107107
108108
### What is not licensed
109109
110-
The theme, design, layout, look-and-feel of the web-base-template repository, including all html, css, images, and
110+
The theme, design, layout, look-and-feel of the jquery-wp-content repository, including all html, css, images, and
111111
icons, is not licensed for use. Not by the MIT license or any other license. It is copyrighted. You don't have
112112
permission to use it in any way for any purpose, commercial or otherwise. If you have questions about this, please
113113
ask a member of the jQuery Content Team.

config.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
require dirname( __FILE__ ) . '/sites.php';
44

55
if ( ! defined( 'WP_CONTENT_DIR' ) )
6-
define( 'WP_CONTENT_DIR', ABSPATH . 'web-base-template' );
6+
define( 'WP_CONTENT_DIR', ABSPATH . 'jquery-wp-content' );
77
if ( ! defined( 'WP_CONTENT_URL' ) )
8-
define( 'WP_CONTENT_URL', 'http://' . $_SERVER['HTTP_HOST'] . '/web-base-template' );
8+
define( 'WP_CONTENT_URL', 'http://' . $_SERVER['HTTP_HOST'] . '/jquery-wp-content' );
99

1010
// jQuery.com staging
1111
if ( ! defined( 'JQUERY_STAGING' ) )
@@ -33,7 +33,7 @@
3333
$live_site = str_replace( JQUERY_STAGING_PREFIX, '', $live_site );
3434

3535
if ( ! isset( $sites[ $live_site ] ) )
36-
die( 'Domain mapping issue. You have web-base-template configured for ' . JQUERY_STAGING_PREFIX . 'jquery.com.' );
36+
die( 'Domain mapping issue. You have jquery-wp-content configured for ' . JQUERY_STAGING_PREFIX . 'jquery.com.' );
3737

3838
if ( ! empty( $sites[ $live_site ]['subsites'] ) ) {
3939
list( $first_path_segment ) = explode( '/', trim( $_SERVER['REQUEST_URI'], '/' ), 2 );
@@ -48,7 +48,7 @@
4848
unset( $sites, $live_site, $first_path_segment ); // Leave $blog_id.
4949

5050
if ( defined( 'MULTISITE' ) && ! MULTISITE )
51-
die( "Remove define( 'MULTISITE', false ); from wp-config.php. Maybe check out web-base-template/wp-config-sample.php for the current sample." );
51+
die( "Remove define( 'MULTISITE', false ); from wp-config.php. Maybe check out jquery-wp-content/wp-config-sample.php for the current sample." );
5252

5353
define( 'MULTISITE', true );
5454
define( 'SUNRISE', true );

plugins/jquery-enable-auto-paragraphing.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/* Plugin Name: Enable WP Auto-Paragraphing
3-
* Description: jQuery's web-base-template disables auto-paragraphing in WordPress. This plugin can be activated to re-enable it for specific sites.
3+
* Description: jQuery's jquery-wp-content disables auto-paragraphing in WordPress. This plugin can be activated to re-enable it for specific sites.
44
* Author: Andrew Nacin
55
*/
66

themes/jquery/css/base.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2368,7 +2368,7 @@ footer li img {
23682368
text-decoration: none;
23692369
opacity: 0;
23702370
}
2371-
/* TODO: Remove (https://github.com/jquery/web-base-template/issues/143) */
2371+
/* TODO: Remove (https://github.com/jquery/jquery-wp-content/issues/143) */
23722372
#content .toc-linked a {
23732373
text-decoration: none;
23742374
}

themes/plugins.jquery.com/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* @override
2-
http://stage.plugins.jquery.com/web-base-template/themes/plugins.jquery.com/style.css
3-
http://dev.plugins.jquery.com/web-base-template/themes/plugins.jquery.com/style.css */
2+
http://stage.plugins.jquery.com/jquery-wp-content/themes/plugins.jquery.com/style.css
3+
http://dev.plugins.jquery.com/jquery-wp-content/themes/plugins.jquery.com/style.css */
44

55

66
/*

wp-config-sample.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
define('ABSPATH', dirname(__FILE__) . '/');
6565

6666
/** jQuery.com configuration file */
67-
require( dirname( __FILE__ ) . '/web-base-template/config.php' );
67+
require( dirname( __FILE__ ) . '/jquery-wp-content/config.php' );
6868

6969
/** Sets up WordPress vars and included files. */
7070
require_once(ABSPATH . 'wp-settings.php');

0 commit comments

Comments
 (0)