WpVersion::Findable specs
This commit is contained in:
202
spec/lib/common/models/wp_version/findable_spec.rb
Normal file
202
spec/lib/common/models/wp_version/findable_spec.rb
Normal file
@@ -0,0 +1,202 @@
|
||||
# encoding: UTF-8
|
||||
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'WpVersion::Findable' do
|
||||
let(:fixtures_dir) { MODELS_FIXTURES + '/wp_version/findable/' }
|
||||
let(:uri) { URI.parse('http://example.com/') }
|
||||
let(:generator_urls) {
|
||||
{
|
||||
rss_generator: uri.merge('feed/').to_s,
|
||||
rdf_generator: uri.merge('feed/rdf/').to_s,
|
||||
atom_generator: uri.merge('feed/atom/').to_s,
|
||||
comments_rss_generator: uri.merge('comments/feed/').to_s,
|
||||
sitemap_generator: uri.merge('sitemap.xml').to_s
|
||||
}
|
||||
}
|
||||
|
||||
# Dynamic creation for all generator methods
|
||||
WpVersion.methods.grep(/^find_from_.*_generator$/).each do |method|
|
||||
dir_name = method.to_s[%r{^find_from_(.*)$}, 1]
|
||||
|
||||
describe "::#{method}" do
|
||||
let(:url) { generator_urls[dir_name.to_sym] || uri.to_s }
|
||||
|
||||
after do
|
||||
fixture = fixtures_dir + dir_name + @fixture
|
||||
stub_request_to_fixture(url: url, fixture: fixture)
|
||||
|
||||
WpVersion.send(method, uri).should == @expected
|
||||
end
|
||||
|
||||
context 'when generator not found' do
|
||||
it 'returns nil' do
|
||||
@fixture = '/no_generator.html'
|
||||
@expected = nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when version not found' do
|
||||
it 'returns nil' do
|
||||
@fixture = '/no_version.html'
|
||||
@expected = nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when invalid version' do
|
||||
it 'returns nil' do
|
||||
@fixture = '/invalid_version.html'
|
||||
@expected = nil
|
||||
end
|
||||
end
|
||||
|
||||
it 'returns 3.3.2' do
|
||||
@fixture = '/3.3.2.html'
|
||||
@expected = '3.3.2'
|
||||
end
|
||||
|
||||
it 'returns 3.4-beta4' do
|
||||
@fixture = '/3.4-beta4.html'
|
||||
@expected = '3.4-beta4'
|
||||
end
|
||||
|
||||
if method == :find_from_meta_generator
|
||||
it 'returns 3.5' do
|
||||
@fixture = '/3.5_minified.html'
|
||||
@expected = '3.5'
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
describe '::find_from_advanced_fingerprinting' do
|
||||
let(:fixture_dir) { fixtures_dir + 'advanced_fingerprinting/' }
|
||||
let(:wp_content_dir) { 'wp-content' }
|
||||
let(:wp_plugins_dir) { wp_content_dir + '/plugins' }
|
||||
let(:versions_xml) { fixture_dir + 'wp_versions.xml' }
|
||||
|
||||
after do
|
||||
version = WpVersion.send(
|
||||
:find_from_advanced_fingerprinting,
|
||||
uri, wp_content_dir, wp_plugins_dir, versions_xml
|
||||
)
|
||||
version.should == @expected
|
||||
end
|
||||
|
||||
context 'when' do
|
||||
it 'returns nil' do
|
||||
stub_request(:get, /.*/).to_return(status: 404, body: '')
|
||||
@expected = nil
|
||||
end
|
||||
end
|
||||
|
||||
it 'returns 3.2.1' do
|
||||
stub_request_to_fixture(
|
||||
url: uri.merge('wp-admin/js/wp-fullscreen.js').to_s,
|
||||
fixture: fixture_dir + '3.2.1.js'
|
||||
)
|
||||
|
||||
@expected = '3.2.1'
|
||||
end
|
||||
end
|
||||
|
||||
describe '::find_from_readme' do
|
||||
let(:url) { uri.merge('readme.html').to_s }
|
||||
|
||||
after do
|
||||
fixture = fixtures_dir + 'readme' + @fixture
|
||||
stub_request_to_fixture(url: url, fixture: fixture)
|
||||
|
||||
WpVersion.send(:find_from_readme, uri).should == @expected
|
||||
end
|
||||
|
||||
context 'when version not found' do
|
||||
it 'returns nil' do
|
||||
@fixture = '/empty_version.html'
|
||||
@expected = nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when invalid version' do
|
||||
it 'returns nil' do
|
||||
@fixture = '/invalid_version.html'
|
||||
@expected = nil
|
||||
end
|
||||
end
|
||||
|
||||
it 'returns 3.3.2' do
|
||||
@fixture = '/3.3.2.html'
|
||||
@expected = '3.3.2'
|
||||
end
|
||||
end
|
||||
|
||||
describe '::find_from_links_opml' do
|
||||
let(:url) { uri.merge('wp-links-opml.php') }
|
||||
|
||||
after do
|
||||
fixture = fixtures_dir + 'links_opml' + @fixture
|
||||
stub_request_to_fixture(url: url, fixture: fixture)
|
||||
|
||||
WpVersion.send(:find_from_links_opml, uri).should == @expected
|
||||
end
|
||||
|
||||
it 'returns 3.4.2' do
|
||||
@fixture = '/3.4.2.xml'
|
||||
@expected = '3.4.2'
|
||||
end
|
||||
|
||||
context 'when no generator' do
|
||||
it 'returns nil' do
|
||||
@fixture = '/no_generator.xml'
|
||||
@expected = nil
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '::find' do
|
||||
# Stub all WpVersion::find_from_* to return nil
|
||||
def stub_all_to_nil
|
||||
WpVersion.methods.grep(/^find_from_/).each do |method|
|
||||
WpVersion.stub(method).and_return(nil)
|
||||
end
|
||||
end
|
||||
|
||||
let(:wp_content_dir) { 'wp-content' }
|
||||
let(:wp_plugins_dir) { wp_content_dir + '/plugins' }
|
||||
let(:version_xml) {}
|
||||
|
||||
after do
|
||||
version = WpVersion.find(uri, wp_content_dir, wp_plugins_dir, version_xml)
|
||||
version.should == @expected
|
||||
if @expected
|
||||
version.found_from.should == @found_from
|
||||
end
|
||||
end
|
||||
|
||||
context 'when no version found' do
|
||||
it 'returns nil' do
|
||||
stub_all_to_nil()
|
||||
@expected = nil
|
||||
end
|
||||
end
|
||||
|
||||
WpVersion.methods.grep(/^find_from_/).each do |method|
|
||||
number = "#{rand(5)}.#{rand(3)}"
|
||||
found_from = method[/^find_from_(.*)/, 1].sub('_', ' ')
|
||||
|
||||
context "when found from #{found_from}" do
|
||||
it "returns the correct WpVersion" do
|
||||
stub_all_to_nil()
|
||||
|
||||
WpVersion.stub(method).and_return(number)
|
||||
|
||||
@expected = WpVersion.new(uri, number: number)
|
||||
@found_from = found_from
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
38
spec/samples/common/models/wp_version/findable/meta_generator/3.3.2.html
Executable file
38
spec/samples/common/models/wp_version/findable/meta_generator/3.3.2.html
Executable file
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 6]>
|
||||
<html id="ie6" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<html id="ie7" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html id="ie8" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||||
<html dir="ltr" lang="en-US">
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Wordpress 3.3.2 | Just another WordPress site</title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/style.css" />
|
||||
<link rel="pingback" href="http://lamp/wordpress-3.3.2/xmlrpc.php" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<meta name='robots' content='noindex,nofollow' />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Feed" href="http://lamp/wordpress-3.3.2/?feed=rss2" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Comments Feed" href="http://lamp/wordpress-3.3.2/?feed=comments-rss2" />
|
||||
<link rel='stylesheet' id='admin-bar-css' href='http://lamp/wordpress-3.3.2/wp-includes/css/admin-bar.css?ver=20111209' type='text/css' media='all' />
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://lamp/wordpress-3.3.2/xmlrpc.php?rsd" />
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://lamp/wordpress-3.3.2/wp-includes/wlwmanifest.xml" />
|
||||
<meta name="generator" content="WordPress 3.3.2" />
|
||||
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
|
||||
<style type="text/css" media="print">#wpadminbar { display:none; }</style>
|
||||
<style type="text/css" media="screen">
|
||||
html { margin-top: 28px !important; }
|
||||
* html body { margin-top: 28px !important; }
|
||||
</style>
|
||||
</head>
|
||||
</html>
|
||||
32
spec/samples/common/models/wp_version/findable/meta_generator/3.4-beta4.html
Executable file
32
spec/samples/common/models/wp_version/findable/meta_generator/3.4-beta4.html
Executable file
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 6]>
|
||||
<html id="ie6" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<html id="ie7" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html id="ie8" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||||
<html dir="ltr" lang="en-US">
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Wordpress 3.4 beta 4 | Just another WordPress site</title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="http://lamp/wordpress-3.4-beta-4/wp-content/themes/twentyeleven/style.css" />
|
||||
<link rel="pingback" href="http://lamp/wordpress-3.4-beta-4/xmlrpc.php" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://lamp/wordpress-3.4-beta-4/wp-content/themes/twentyeleven/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<meta name='robots' content='noindex,nofollow' />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.4 beta 4 » Feed" href="http://lamp/wordpress-3.4-beta-4/?feed=rss2" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.4 beta 4 » Comments Feed" href="http://lamp/wordpress-3.4-beta-4/?feed=comments-rss2" />
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://lamp/wordpress-3.4-beta-4/xmlrpc.php?rsd" />
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://lamp/wordpress-3.4-beta-4/wp-includes/wlwmanifest.xml" />
|
||||
<meta name="generator" content="WordPress 3.4-beta4" />
|
||||
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
|
||||
</head>
|
||||
</html>
|
||||
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 6]>
|
||||
<html id="ie6" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<html id="ie7" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html id="ie8" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||||
<html dir="ltr" lang="en-US">
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Wordpress 3.3.2 | Just another WordPress site</title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/style.css" />
|
||||
<link rel="pingback" href="http://lamp/wordpress-3.3.2/xmlrpc.php" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<meta name='robots' content='noindex,nofollow' />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Feed" href="http://lamp/wordpress-3.3.2/?feed=rss2" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Comments Feed" href="http://lamp/wordpress-3.3.2/?feed=comments-rss2" />
|
||||
<link rel='stylesheet' id='admin-bar-css' href='http://lamp/wordpress-3.3.2/wp-includes/css/admin-bar.css?ver=20111209' type='text/css' media='all' />
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://lamp/wordpress-3.3.2/xmlrpc.php?rsd" />
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://lamp/wordpress-3.3.2/wp-includes/wlwmanifest.xml" />
|
||||
<meta name="generator" content="WordPress 5506" />
|
||||
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
|
||||
<style type="text/css" media="print">#wpadminbar { display:none; }</style>
|
||||
<style type="text/css" media="screen">
|
||||
html { margin-top: 28px !important; }
|
||||
* html body { margin-top: 28px !important; }
|
||||
</style>
|
||||
</head>
|
||||
</html>
|
||||
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 6]>
|
||||
<html id="ie6" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<html id="ie7" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html id="ie8" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||||
<html dir="ltr" lang="en-US">
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Wordpress 3.3.2 | Just another WordPress site</title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/style.css" />
|
||||
<link rel="pingback" href="http://lamp/wordpress-3.3.2/xmlrpc.php" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<meta name='robots' content='noindex,nofollow' />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Feed" href="http://lamp/wordpress-3.3.2/?feed=rss2" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Comments Feed" href="http://lamp/wordpress-3.3.2/?feed=comments-rss2" />
|
||||
<link rel='stylesheet' id='admin-bar-css' href='http://lamp/wordpress-3.3.2/wp-includes/css/admin-bar.css?ver=20111209' type='text/css' media='all' />
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://lamp/wordpress-3.3.2/xmlrpc.php?rsd" />
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://lamp/wordpress-3.3.2/wp-includes/wlwmanifest.xml" />
|
||||
<meta name="generator" content="WordPress" />
|
||||
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
|
||||
<style type="text/css" media="print">#wpadminbar { display:none; }</style>
|
||||
<style type="text/css" media="screen">
|
||||
html { margin-top: 28px !important; }
|
||||
* html body { margin-top: 28px !important; }
|
||||
</style>
|
||||
</head>
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="http://lamp/wp-content/plugins/google-sitemap-generator/sitemap.xsl"?><!-- generator="wordpress/3.3.2" -->
|
||||
<!-- sitemap-generator-url="http://www.arnebrachhold.de" sitemap-generator-version="3.2.8" -->
|
||||
<!-- generated-on="21 January, 2013 12:14 pm" -->
|
||||
@@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="http://lamp/wp-content/plugins/google-sitemap-generator/sitemap.xsl"?><!-- generator="wordpress/3.4-beta4" -->
|
||||
<!-- sitemap-generator-url="http://www.arnebrachhold.de" sitemap-generator-version="3.2.8" -->
|
||||
<!-- generated-on="21 January, 2013 12:14 pm" -->
|
||||
@@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="http://lamp/wp-content/plugins/google-sitemap-generator/sitemap.xsl"?><!-- generator="wordpress/355" -->
|
||||
<!-- sitemap-generator-url="http://www.arnebrachhold.de" sitemap-generator-version="3.2.8" -->
|
||||
<!-- generated-on="21 January, 2013 12:14 pm" -->
|
||||
@@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="http://lamp/wp-content/plugins/google-sitemap-generator/sitemap.xsl"?>
|
||||
<!-- sitemap-generator-url="http://www.arnebrachhold.de" sitemap-generator-version="3.2.8" -->
|
||||
<!-- generated-on="21 January, 2013 12:14 pm" -->
|
||||
@@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="http://lamp/wp-content/plugins/google-sitemap-generator/sitemap.xsl"?><!-- generator="wordpress" -->
|
||||
<!-- sitemap-generator-url="http://www.arnebrachhold.de" sitemap-generator-version="3.2.8" -->
|
||||
<!-- generated-on="21 January, 2013 12:14 pm" -->
|
||||
@@ -1,171 +0,0 @@
|
||||
/* Default WordPress by Matthew Mullenweg http://photomatt.net
|
||||
This is just a basic layout, with only the bare minimum defined.
|
||||
Please tweak this and make it your own. :)
|
||||
*/
|
||||
|
||||
a {
|
||||
color: #069;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #039;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #39c;
|
||||
}
|
||||
|
||||
acronym, abbr {
|
||||
border-bottom: 1px dashed #333;
|
||||
}
|
||||
|
||||
acronym, abbr, span.caps {
|
||||
cursor: help;
|
||||
font-size: 90%;
|
||||
letter-spacing: .07em;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 5px solid #ccc;
|
||||
margin-left: 1.5em;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Georgia, "Times New Roman", Times, serif;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
border-bottom: 2px solid #ccc;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
p, li {
|
||||
line-height: 130%;
|
||||
}
|
||||
|
||||
.b2calendarcell {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.b2calendaremptycell {
|
||||
}
|
||||
|
||||
.b2calendarheadercell {
|
||||
background: #808080;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.b2calendarlinkpost {
|
||||
color: #f00;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.b2calendarmonth {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.b2calendarrow {
|
||||
color: #0f0;
|
||||
}
|
||||
|
||||
.b2calendartable {
|
||||
background: #fff;
|
||||
border: 1px solid #000;
|
||||
}
|
||||
|
||||
.b2calendartoday {
|
||||
color: #00f;
|
||||
}
|
||||
|
||||
.credit {
|
||||
font-size: 11px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.feedback {
|
||||
text-align: right;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.meta, .meta a {
|
||||
color: #808080;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.storytitle a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin: 0 160px 0 20px;
|
||||
}
|
||||
|
||||
#header {
|
||||
background-color: #808080;
|
||||
margin: 0;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
#header a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#header a:hover {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
#menu {
|
||||
background-color: #000;
|
||||
border-left: 3px solid #666;
|
||||
padding-bottom: 10px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 65px;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
#menu form {
|
||||
margin: 0 0 0 13px;
|
||||
}
|
||||
|
||||
#menu input {
|
||||
background-color: #ccc;
|
||||
border: 2px solid #666;
|
||||
}
|
||||
|
||||
#menu ul {
|
||||
color: #ccc;
|
||||
font-variant: small-caps;
|
||||
font-weight: bold;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
#menu ul ul {
|
||||
font-variant: normal;
|
||||
font-weight: normal;
|
||||
line-height: 100%;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#menu ul ul li {
|
||||
line-height: 115%;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
#menu ul ul li a {
|
||||
color: #fff;
|
||||
height: 13px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#menu ul ul li a:hover {
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
@@ -1,995 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>WordPress > ReadMe</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<style>
|
||||
<!--
|
||||
body {
|
||||
font-family: Georgia, "Times New Roman", Times, serif;
|
||||
margin-left: 15%;
|
||||
margin-right: 15%;
|
||||
}
|
||||
p, li {
|
||||
line-height: 135%;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 18px;
|
||||
font-weight: lighter;
|
||||
color: #006;
|
||||
}
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
}
|
||||
.params {
|
||||
border-color: #cccccc;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
padding: 5px;
|
||||
margin: 5px;
|
||||
margin-left: 20px;
|
||||
margin-right: 80px;
|
||||
font-family: arial,helvetica,sans-serif;
|
||||
font-size:12px;
|
||||
}
|
||||
ul, ol { margin: 0px; padding: 0px; padding-left: 20px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; }
|
||||
-->
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" text="#000000">
|
||||
<table width="600" border="0" cellspacing="0" cellpadding="0" align="center">
|
||||
<tr>
|
||||
<td> <p align="center"><img src="http://wordpress.org/images/wordpress.gif" alt="WordPress" /><br />
|
||||
<font size="2" face="Georgia, Times New Roman, Times, serif">0.71</font></p>
|
||||
<p align="center">Weblog / News Publishing Tool</p>
|
||||
<p align="center"><a href="#requirements">Requirements</a> - <a href="#installation">Installation</a>
|
||||
- <a href="#templates">Template(s)</a> - <a href="#usage">Query String
|
||||
Usage</a> - <a href="#xmlrpc">XML-RPC (Blogger API)</a> - <a href="#postviaemail">Post
|
||||
Via Email</a> - <a href="#notes">Notes</a></p>
|
||||
<a name="requirements"></a> <h1>Requirements:</h1>
|
||||
<ul>
|
||||
<li><strong>PHP4</strong> (version 4.0.6 or higher)</li>
|
||||
<li><strong>MySQL</strong> (version 3.23.23 or higher)</li>
|
||||
<li>Perl (optional - only for the spellchecker)</li>
|
||||
<li>... and a link to <a href="http://wordpress.org" target="_blank">http://wordpress.org</a>
|
||||
on your site.</li>
|
||||
</ul>
|
||||
<p>The link will help promote <a href="http://wordpress.org">WordPress</a>
|
||||
and is its only mean of promotion. </p>
|
||||
<p>WordPress is built from b2, which comes from Michel V. We wouldn't be
|
||||
here without him, so why don't you grab him something from his <a href="http://www.amazon.com/exec/obidos/registry-address-select-done/1XKLC38KDUPXR/103-8901342-4908609">wishlist</a>?</p>
|
||||
<p>This document is currently beta stage, we'll be updating it extensively
|
||||
as WordPress matures.</p>
|
||||
<h1 id="installation">Installation:</h1>
|
||||
<h2>New users: 5-minute install.</h2>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open b2config.php in a text editor, and modify the variables as explained
|
||||
in the comments. Comments are lines that start with # or /* or //</li>
|
||||
<li>Upload everything. This release is designed to sit in your root folder,
|
||||
IE the folder where your WordPress-powered page will reside.</li>
|
||||
<li>CHMOD 666 the <code>weblogs.com.changes.cache</code> file.</li>
|
||||
<li> Launch <a href="wp-admin/wp-install.php">wp-install.php</a> in your
|
||||
browser. This should setup the MySQL database for your blog. If there
|
||||
is an error, double check your b2config.php file, and try again. If
|
||||
it fails again, please go to the <a href="http://wordpress.org/support/">support
|
||||
forums</a> and make a post with all the information about the failure
|
||||
(error messages, etc), and your setup (the PHP and MySQL versions on
|
||||
your server, and the browser you were using). <strong>Note the password
|
||||
given to you.</strong></li>
|
||||
<li> Go to <a href="b2login.php">b2login.php</a> and sign in with the
|
||||
login "admin" and the password given to you by the install
|
||||
script. Then click on the menu 'My Profile', and change the password.
|
||||
Note: you need javascript enabled to launch the profile popup window.</li>
|
||||
</ol>
|
||||
<h2>Some notes:</h2>
|
||||
<ul>
|
||||
<li>Whenever you want to post something, just open a browser and go to
|
||||
b2login.php to log in and post.</li>
|
||||
<li>You can also use a bookmarklet and/or a sidebar (IE5+/NS6+) to post.</li>
|
||||
<li> You can also post through the Blogger API, <a href="#xmlrpc">click
|
||||
here</a> for more info.</li>
|
||||
<li> Your site's blog is on b2.php (simple template) and index.php (CSS
|
||||
template), you can rename this file to index.php or any other name you
|
||||
fancy (provided it bears the php extension or is interpreted as a php
|
||||
file by your server).</li>
|
||||
<li> You can also copy b2.php into a new file and modify that new file,
|
||||
it will work too ;)</li>
|
||||
</ul>
|
||||
<h2>Users upgrading from b2 v0.6.1 to WordPress v0.7:</h2>
|
||||
<ul>
|
||||
<li>All you <em>really</em> have to do is replace all the files with newer
|
||||
versions and run <a href="javascript:window.close()">b2-2-wp.php</a>
|
||||
and you should be ready to go.</li>
|
||||
<li>If you're using an older version of b2, it's probably a good idea
|
||||
to upgrade to at least .6.1 before making the leap to WordPress.</li>
|
||||
<li>The templates are so much better, and there is so much more going
|
||||
on than before it's probably worth it to start from scratch and work
|
||||
back to your design.</li>
|
||||
<li>You <em>must</em> update your <code>b2config.php</code>. There's all
|
||||
sort of new stuff in there.</li>
|
||||
<li>WordPress issues should be discussed in our <a href="http://wordpress.org/support/">support
|
||||
forums</a>.</li>
|
||||
<li><strong>Back up</strong> your database before you do anything. Yes,
|
||||
you. Right now.</li>
|
||||
</ul>
|
||||
<h1 id="templates">Template(s):</h1>
|
||||
<h2>First notes:</h2>
|
||||
<ul>
|
||||
<li>Enclosed is an example of a template, in the file b2.php. You can
|
||||
rename this file to "index.php"or something else (recent b2
|
||||
versions have a default index.php, which is an elaborate CSS-based template).</li>
|
||||
<li>You can have any number of template files, since all they do is extract
|
||||
the posts from the database.</li>
|
||||
<li>Pseudo-template for the comments is in b2comments.php. You needn't
|
||||
rename this file, but you can edit it.</li>
|
||||
<li>The only thing to remember is that it's not actually a template, but
|
||||
a PHP file that you're manipulating. So when you see "don't delete
|
||||
this line", you know you mustn't, unless you want to have a broken
|
||||
page.</li>
|
||||
<li>Required lines are: the first lines that call blog.header.php, the
|
||||
lines with the "while" statement, and the ones with just "}"
|
||||
(it ends the while loop).</li>
|
||||
<li>Between the "while" line and the "}", is the template
|
||||
for your posts.</li>
|
||||
</ul>
|
||||
<h2>Notes about parameters:</h2>
|
||||
<ol>
|
||||
<li> Some template tags can accept optional parameters between the parenthesis
|
||||
<strong>()</strong>.</li>
|
||||
<li>To add a parameter to a tag, enclose it between quotes and put it
|
||||
between the <strong>()</strong>.<br />
|
||||
Example: <code><?php my_tag("my parameter"); ?></code></li>
|
||||
<li>You may have to put several parameters, for that you separate them
|
||||
with commas.<br />
|
||||
Example: <code><?php my_tag("first param","second param"); ?></code></li>
|
||||
<li>The order of parameters is important. If a function accepts 2 parameters
|
||||
and you only want to set the second one, you still have to provide the
|
||||
first one, and so on for any number of parameters.<br />
|
||||
Example: <code><?php my_tag("","second param"); ?></code></li>
|
||||
<li>Some template tags, like the_date(), display something only if in
|
||||
some conditions. They generally accept parameters to display something
|
||||
before and after them only when they display something.<br />
|
||||
Example: <code><?php the_title("<h1>","</h1>"); ?></code> would
|
||||
display <h1>title of the post</h1> only if the post has a title<br />
|
||||
<br />
|
||||
</li>
|
||||
</ol>
|
||||
<h1>Template tags:</h1>
|
||||
<blockquote> <strong><?php the_date() ?></strong> <span style="font-family: 'Courier New',Courrier,mono; color: #ff9900; font-weight: bold;">*</span><br />
|
||||
the date of the post. example: 03.07.01 (default is dd.mm.yy).<br />
|
||||
the date is displayed only on new days. for example if you got 10 posts
|
||||
on the same day, the date for this day is displayed only once.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>format string (default: "d.m.y")</li>
|
||||
<li>string to display before the date (default is blank)</li>
|
||||
<li>string to display after the date (default is blank)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong><?php the_time() ?></strong><br />
|
||||
the time of the post. example: 18:37:00 (default is hh:mm:ss)<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>format string (default: "H:i:s")</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong>Note:</strong> you can change the way the date & time are
|
||||
displayed in the Options page.<br />
|
||||
once you understand the format strings for the date & time (explained
|
||||
in the Options page), you can change the display right on the template:
|
||||
for example, <strong>the_date(</strong><em>"d.m.Y"</em><strong>)</strong>
|
||||
to have dates like 25.12.2001, <strong>the_time(</strong><em>"B"</em><strong>)</strong>
|
||||
to have Swatch Internet Time.<br />
|
||||
If you change the display of the date on the template, changing it from
|
||||
the options page won't have any effect.br /> <br />
|
||||
<strong>Note about the_date():</strong> if you want all your posts to
|
||||
bear the date, you'll have to use the_time() instead, with a date format
|
||||
string. for example, to have all your posts show like "25.12.2001
|
||||
@ 8:04:50 AM" you'll have the_time("d.m.Y @ g:i:s A").
|
||||
you can also repeat this template tag 2 times with 2 different formats:
|
||||
the_time("d.m.Y") for the date, and then later the_time("g:i:s
|
||||
A") for the time of the day.<br />
|
||||
<br />
|
||||
<strong><?php the_weekday() ?></strong><br />
|
||||
This displays the day of the week when the post was made. It works like
|
||||
the_time(), in that it would appear at every post. Weekdays can be obtained
|
||||
with a custom date format string in the_time() or the_date(), but for
|
||||
non-english weekdays you have to edit b2config.php<br />
|
||||
<strong>Note: this tag is OBSOLETE, the_time() and the_date() now use
|
||||
weekdays/months from b2config.php</strong><br />
|
||||
<br />
|
||||
<strong><?php the_weekday_date() ?></strong> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
Like the_weekday(), but works like the_date(), in that it would appear
|
||||
only on new days.<br />
|
||||
<strong>Note: this tag is OBSOLETE, the_time() and the_date() now use
|
||||
weekdays/months from b2config.php</strong><br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>string to display before the weekday_date (default is blank)</li>
|
||||
<li>string to display after the weekday_date (default is blank)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php the_ID() ?><br />
|
||||
</strong>the ID (number) of the post.<br />
|
||||
<br />
|
||||
<strong><?php the_title() ?><br />
|
||||
</strong>The title of the post.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>string to display before the title (default is blank)</li>
|
||||
<li>string to display after the title (default is blank)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php the_content() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>The text of the post.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>text to display for the link to the complete entry (default is
|
||||
<em>'(more...)'</em>)</li>
|
||||
<li>0 or 1, whether you want to show the teaser message or not, when
|
||||
showing the complete text (default is 1)</li>
|
||||
<li>a filename of another template, if you want the 'more' link to
|
||||
link to a different template for the complete text of the extended
|
||||
entry (default is the current template)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
For example <em><?php the_content("read more","0","blah.php")
|
||||
?></em> would display a link to <em>blah.php</em>, with the link text
|
||||
<em>read more</em>, and won't display the teaser message.<br />
|
||||
<br />
|
||||
<span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span>
|
||||
To enter an extended entry, just type <em><!--more--></em> in your
|
||||
entry. The part before that comment is the teaser, the part after it is
|
||||
the extended entry. To force the extended entry not to show the teaser
|
||||
message, type <em><!--noteaser--></em> somewhere in your entry.<br />
|
||||
<br />
|
||||
<span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span>
|
||||
To enter an entry with several pages, just type <em><!--nextpage--></em>
|
||||
in your entry to start a new page.<br />
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php next_post() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>Displays a link to the next post(s). (Generally you might want
|
||||
to use that tag only in single-post templates)<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>format string for the link (default is "%", where % is replaced
|
||||
with the title of the next post)</li>
|
||||
<li>text to display to announce the link (default is "next post: ")</li>
|
||||
<li>"yes" or "no": display the title of the post, or no (default is
|
||||
"yes")</li>
|
||||
<li>"yes" or "no": display a link to the next post only if the next
|
||||
post is in the same category (default is "no")</li>
|
||||
<li>number: which next post ? if you make it '2', the 2nd next post
|
||||
is linked instead of the 1st next one (default is "1", which means
|
||||
first next post)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php previous_post() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>Displays a link to the previous post(s). (Generally you might
|
||||
want to use that tag only in single-post templates)<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>format string for the link (default is "%", where % is replaced
|
||||
with the title of the previous post)</li>
|
||||
<li>text to display to announce the link (default is "previous post:
|
||||
")</li>
|
||||
<li>"yes" or "no": display the title of the post, or no (default is
|
||||
"yes")</li>
|
||||
<li>"yes" or "no": display a link to the next post only if the previous
|
||||
post is in the same category (default is "no")</li>
|
||||
<li>number: which previous post ? if you make it '2', the 2nd previous
|
||||
post is linked instead of the 1st previous post (default is "1",
|
||||
which means first previous post)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php next_posts() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>Display the URL portion of a link to the next set of posts. <br />
|
||||
Generally you would use this in a template to navigate to the next "set"
|
||||
of posts when the "Show Options" settings for the site is set to "posts
|
||||
paged". The displayed string can be used to construct a link. When the
|
||||
site options are not set to 'posts paged", the next and previous functions
|
||||
will display nothing.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>Max page number to use. Default "0"; no limit</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php next_posts_link() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong> Displays a full link to the next "set" of posts only if show
|
||||
options set to "posts paged" and only if there is another page or partial
|
||||
page of data.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>A user supplied string. Default "Next Page >>"</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php previous_posts() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>Displays the URL portion of a link to the previous posts.<br />
|
||||
Generally you would use this in a template to navigate to the previous
|
||||
"set" of posts when the "Show Options" settings for the site is set to
|
||||
"posts paged". The displayed string can then be used to construct a link.
|
||||
When the site options are not set to 'posts paged", the next and previous
|
||||
functions will display nothing.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>No parameters.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php previous_posts_link() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong> Displays a full link to the previous "set" of posts only if
|
||||
show options set to "posts paged" and if there is a previous set, otherwise
|
||||
nothing is displayed.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>A user supplied string. Default "<< Previous Page"</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php posts_nav_link() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>The function displays a complete navigation set of links including
|
||||
a user definable "separator" with the ability to supply a the text string
|
||||
to be used for the "previous" and "next" links.<br />
|
||||
The default result will produce the following string:<br />
|
||||
<p align="center"><< Previous Page :: Next Page >></p>
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>A user supplied "separator" string. Default " :: "</li>
|
||||
<li>A user supplied "previous" string. Default "<< Previous
|
||||
Page"</li>
|
||||
<li>A user supplied "next" string. Default "Next Page >>"</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php link_pages() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>Displays links to the pages of the post if it's a multiple pages
|
||||
post.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>string to display before the tag (default is "<br />", a newline)</li>
|
||||
<li>string to display after the tag (default is "<br />", a newline)</li>
|
||||
<li>"next" or "number": display links like "next/previous page" or
|
||||
links to each page with the number of the page "1 2 3 4 etc" (default
|
||||
is "number")</li>
|
||||
<li>string to display the "next page" link (default is "next page")</li>
|
||||
<li>string to display the "previous page" link (default is "previous
|
||||
page")</li>
|
||||
<li>format string for the "number of page" link (default is "%", where
|
||||
% is replaced by the number of the page)</li>
|
||||
<li>file name, in case you want to load the posts with multiple pages
|
||||
in a different template (default is the current template)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php the_author() ?></strong><br />
|
||||
The author of the post.<br />
|
||||
Depending on the user's profile settings, it can display whether their
|
||||
nickname, login name, first name, last name, both first& last name,
|
||||
or last & first name. look below for more author-related template
|
||||
tags. <br />
|
||||
<br />
|
||||
<strong><?php the_category() ?><br />
|
||||
</strong>the name of the category the post belongs to. you can as an admin
|
||||
add categories, and rename them if needed. default category is 'General',
|
||||
you can rename it too.<br />
|
||||
<br />
|
||||
<strong><?php the_category_ID() ?><br />
|
||||
</strong>The ID (number) of the category the post belongs to. This is
|
||||
static data thatyou can use, for example to associate a category to an
|
||||
image, or a css style.<br />
|
||||
<br />
|
||||
<strong><?php trackback_rdf() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span></strong><br />
|
||||
This will include the RDF data that can be used by some weblog tools to
|
||||
locate your posts' trackback URLs.<br />
|
||||
You should put this tag after the <?php the_content() ?> tag in
|
||||
your template, or just before the end of the loop.<br />
|
||||
<br />
|
||||
<strong><?php dropdown_cats() ?><br />
|
||||
</strong>this is a special tag, meant to be used in the template, but
|
||||
outside of the b2 loop. it will display a list of <option name="<em>x</em>"><em>category-name</em></option>,
|
||||
where <em>x</em> is the number of the category and <em>category-name</em>
|
||||
is the name of it.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>0 or 1, depending if you want to have an option to display all
|
||||
categories (default is 1)</li>
|
||||
<li>text to display for the option to show all categories (default
|
||||
is "All")</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
you can use it like this: <br />
|
||||
<br />
|
||||
<code><form action="<?php echo $PHP_SELF ?>" method="get"><br />
|
||||
<?php dropdown_cats() ?><br />
|
||||
<input type="submit" name="submit" value="view" /><br />
|
||||
</form></code> <br />
|
||||
<br />
|
||||
<strong><?php list_cats() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>this is a special tag, meant to be used in the template, but
|
||||
outside of the b2 loop. it will display a list of the categories, with
|
||||
links to them. like in b2archive.php, each category is on a line, the
|
||||
only way you can change this is by editing b2.template.functions.php<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>0 or 1, depending if you want to have an option to display all
|
||||
categories (default is 1)</li>
|
||||
<li>text to display for the option to show all categories (default
|
||||
is 'All')</li>
|
||||
<li>sort by: possible values are 'name' and 'ID' (default is 'ID')</li>
|
||||
<li>sorting order: possible values are 'asc' for ascending or 'desc'
|
||||
for descending (default is 'asc')</li>
|
||||
<li>filename, in case you want to display the categories' posts in
|
||||
another template (default is current template)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong><?php bloginfo() ?></strong> <span style="font-family: 'Courier New',Courrier,mono; color: #ff9900; font-weight: bold;">*</span><br />
|
||||
This tag is out of the b2 loop.<br />
|
||||
It outputs info about your weblog.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>string: can be 'name' to display the name of your weblog (you
|
||||
set it in b2config.php), 'url', 'description', 'admin_email', 'rss_url'
|
||||
to display the URL of your b2rss.xml file, 'pingback_url' to display
|
||||
the URL of your xmlrpc.php file<br />
|
||||
(default string is 'name')</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong><?php single_post_title() ?></strong> <span style="font-family: 'Courier New',Courrier,mono; color: #ff9900; font-weight: bold;">*</span><br />
|
||||
This tag is out of the b2 loop.<br />
|
||||
It outputs the title of the post when you load the page with ?p= (see
|
||||
'Usage' section for explanation). When the weblog page is loaded without
|
||||
?p=, this tag doesn't display anything. Generally, you could use it like
|
||||
this:<br />
|
||||
<title><?php bloginfo('name') ?><?php single_post_title()
|
||||
?></title><br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>prefix string that will appear before the post's title (default
|
||||
is ' :: ')</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong><?php single_cat_title() ?></strong> <span style="font-family: 'Courier New',Courrier,mono; color: #ff9900; font-weight: bold;">*</span><br />
|
||||
This tag is out of the b2 loop.<br />
|
||||
It outputs the title of the category when you load the page with ?cat=
|
||||
(see 'Usage' section for explanation). When the weblog page is loaded
|
||||
without ?cat=, this tag doesn't display anything. Generally, you could
|
||||
use it like this:<br />
|
||||
<title><?php bloginfo('name') ?><?php single_cat_title()
|
||||
?></title><br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>prefix string that will appear before the category's title (default
|
||||
is ' :: ')</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong><?php single_month_title() ?></strong> <span style="font-family: 'Courier New',Courrier,mono; color: #ff9900; font-weight: bold;">*</span><br />
|
||||
This tag is out of the b2 loop.<br />
|
||||
It outputs the name of the month when you load the page with ?m= (see
|
||||
'Usage' section for explanation). When the weblog page is loaded without
|
||||
?m=, this tag doesn't display anything. Generally, you could use it like
|
||||
this:<br />
|
||||
<title><?php bloginfo('name') ?><?php single_month_title()
|
||||
?></title><br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>prefix string that will appear before the month's name (default
|
||||
is ' :: ')</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong>Note:</strong> The above three functions can be used together
|
||||
to produce the Title of the page:<br>
|
||||
<title><?php bloginfo('name') ?><?php single_post_title('
|
||||
:: ') ?><?php single_cat_title(' :: ') ?><?php single_month_title('
|
||||
:: ') ?></title><br />
|
||||
Only one, if any, of these functions will produce output, thus the page
|
||||
Title can be customize to the task being done. <br />
|
||||
<br />
|
||||
<br />
|
||||
<strong>More about the author</strong> of the post ? Here goes:<br />
|
||||
<br />
|
||||
<strong><?php the_author_email() ?> - </strong> the author's email.<br />
|
||||
<strong><?php the_author_url() ?></strong> - the author's url.<br />
|
||||
<strong><?php the_author_email() ?></strong> - the author's number
|
||||
of posts.<br />
|
||||
<strong><?php the_author_icq() ?></strong> - the author's ICQ number.<br />
|
||||
<strong><?php the_author_aim() ?></strong> - the author's AIM handle.<br />
|
||||
<strong><?php the_author_yim() ?></strong> - the author's Yahoo
|
||||
Messenger handle.<br />
|
||||
<strong><?php the_author_msn() ?></strong> - the author's MSN Messenger
|
||||
handle.<br />
|
||||
<strong><?php the_author_posts() ?></strong> - the author's post
|
||||
count.<br />
|
||||
<strong><?php the_author_login() ?></strong> - the author's login
|
||||
name in b2. If you want some static data about the author, this is what
|
||||
you're searching for. You can, for example, associate a picture with an
|
||||
author, like this: <em><img src="pictures/<?php the_author_login()
|
||||
?>.jpg" border="0"></em><br />
|
||||
<strong><?php the_author_ID() ?></strong> - the author's ID number
|
||||
in b2. This number is automatically set when the user registers: to see
|
||||
the ID of an user, go to the Team page. This is static data too, so you
|
||||
can use it like the_author_login() in associating stuff with authors.<br />
|
||||
<br />
|
||||
<strong><br />
|
||||
Tags for permalinks</strong> are:<br />
|
||||
<br />
|
||||
<strong><?php permalink_anchor() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span></strong><br />
|
||||
this will display <a name="..."></a>, replacing
|
||||
"..." with the ID or the title of the post in the database.<br />
|
||||
<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>string for kind of anchor: either 'id' that displays '50', or
|
||||
'title' that displays 'title_of_post_50' (default is 'id')</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong><?php permalink_link() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>this will display the name of the file followed by #ID to link
|
||||
to the post, in the month archive if archive-mode is "monthly".<br />
|
||||
note: this tag does not display the link, for this you've got to type
|
||||
<a href="<?php permalink_link() ?>">text of the
|
||||
link</a>.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>file name, in case you want to link the archive to a different
|
||||
template (default is the current template)</li>
|
||||
<li>string for kind of link: either 'id' that appends '#50' to the
|
||||
link, or 'title' that appends '#title_of_post_50' (default is 'id')</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php permalink_single() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span><br />
|
||||
</strong>this will display the name of the file followed by #ID to link
|
||||
to the entire post (the linked page will also show the extended text on
|
||||
that post if it is an extended entry, and the comments).<br />
|
||||
note: this tag does not display the link, for this you've got to type
|
||||
<a href="<?php permalink_single() ?>">text of the
|
||||
link</a>.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>file name, in case you want to use a different template for single
|
||||
posts (default is the current template)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<strong>Tags for comments, trackback, and pingback</strong> are:<br />
|
||||
<br />
|
||||
<strong><?php comments_popup_script() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span></strong><br />
|
||||
This will include the javascript that is required to open comments, trackback
|
||||
and pingback in popup windows.<br />
|
||||
You should put this tag before the </head> tag in your template.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>width (default is 400)</li>
|
||||
<li>height (default is 400)</li>
|
||||
<li>file name, in case you want to use a different template for comments
|
||||
(default is b2commentspopup.php)</li>
|
||||
<li>file name, in case you want to use a different template for TrackBacks
|
||||
(default is b2trackbackpopup.php)</li>
|
||||
<li>file name, in case you want to use a different template for Pingbacks
|
||||
(default is b2pingbackspopup.php)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php comments_popup_link() ?><span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span></strong><br />
|
||||
This will display the link to open comments in a popup window, with the
|
||||
number of comments.<br />
|
||||
To edit the popup window's template, edit the file b2commentspopup.php
|
||||
(it's the default one for comments popup).<br />
|
||||
<br />
|
||||
Note:<br />
|
||||
The same tags exist for TrackBack and Pingback, respectively named '<b>trackback_popup_link()</b>'
|
||||
and '<b>pingback_popup_link()</b>'. They take the same parameters.<br />
|
||||
<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>string for comment-less posts (default is "no comments")</li>
|
||||
<li>string for posts with one comment (default is "1 comment")</li>
|
||||
<li>string for posts with 2 or more comments (default is "% comments")<br />
|
||||
Note here that the sign "%" is then replaced by the number
|
||||
of comments.</li>
|
||||
<li>string for CSS class, so you can have a styled link with class=""
|
||||
(default is empty, no CSS class applied)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php comments_link() ?><br />
|
||||
</strong> This is a bit like permalink_link, it will display an URL to
|
||||
the comments page, but again you'll have to create the link tag.<br />
|
||||
<br />
|
||||
Note:<br />
|
||||
The same tags exist for TrackBack and Pingback, respectively named '<b>trackback_link()</b>'
|
||||
and '<b>pingback_link()</b>'. They take the same parameters.<br />
|
||||
<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>file name, in case you want to use a different template for comments
|
||||
(default is the current template)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<strong><?php comments_number() ?></strong> <br />
|
||||
This displays the number of comments that have been posted on this post.
|
||||
Example: "5 comments".<br />
|
||||
<br />
|
||||
Note:<br />
|
||||
The same tags exist for TrackBack and Pingback, respectively named '<b>trackback_number()</b>'
|
||||
and '<b>pingback_number()</b>'. They take the same parameters.<br />
|
||||
<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>string for comment-less posts (default is "no comments")</li>
|
||||
<li>string for posts with one comment (default is "1 comment")</li>
|
||||
<li>string for posts with 2 or more comments (default is "% comments")<br />
|
||||
Note here that the sign "%" is then replaced by the number
|
||||
of comments.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
Example: <em><?php comments_number("no comment","1 comment","%
|
||||
comments") ?></em><br />
|
||||
<br />
|
||||
This tag differs from v0.5's tag because in v0.5 and prior, it would only
|
||||
display a number, not a text with it, so you could have terrible things
|
||||
like "1 comments" (doh !)<br />
|
||||
<br />
|
||||
<strong>Necessary: <?php include("b2comments.php") ?></strong><br />
|
||||
you'll put this line where you want the comments to be placed on your
|
||||
page.<br />
|
||||
typically, under the post itself. don't worry, the comments only appear
|
||||
if the page is called in the comments mode. (like this: url?c=1)<br />
|
||||
<br />
|
||||
<strong>Necessary: <?php include("b2trackback.php") ?></strong><br />
|
||||
you'll put this line where you want the TrackBacks to be placed on your
|
||||
page.<br />
|
||||
typically, under the post itself. don't worry, the TrackBacks only appear
|
||||
if the page is called in the TrackBacks mode. (like this: url?tb=1)<br />
|
||||
<br />
|
||||
<strong>Necessary: <?php include("b2pingbacks.php") ?></strong><br />
|
||||
you'll put this line where you want the Pingbacks to be placed on your
|
||||
page.<br />
|
||||
typically, under the post itself. don't worry, the Pingbacks only appear
|
||||
if the page is called in the Pingbacks mode. (like this: url?pb=1)<br />
|
||||
<br />
|
||||
<br />
|
||||
<strong>Tags that go in b2comments.php, b2trackback.php, b2pingbacks.php:</strong>
|
||||
(these are easy too)<br />
|
||||
<br />
|
||||
<strong><?php comment_author() ?></strong><br />
|
||||
<strong><?php comment_author_email() ?> </strong> - displays the
|
||||
e-mail address, but not the link<br />
|
||||
<strong><?php comment_author_url() ?> </strong>- displays the url,
|
||||
but not the link<br />
|
||||
<br />
|
||||
<strong><?php comment_author_email_link() ?> </strong> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span>-
|
||||
displays a link to the comment's author's e-mail<br />
|
||||
<strong><?php comment_author_url_link() ?> </strong> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span>-
|
||||
displays a link to the comment's author's website<br />
|
||||
<div class="params">Parameters for <strong>comment_author_email_link()</strong>
|
||||
and <strong>comment_author_url_link()</strong>:
|
||||
<ul>
|
||||
<li>string for the link (default: "email"/"url" depending on the tag)</li>
|
||||
<li>string to display before the link (default is " - ")</li>
|
||||
<li>string to display after the link (default is blank)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong><?php comment_author_IP() ?></strong> - displays the IP
|
||||
of the comment's author<br />
|
||||
<strong><?php comment_text() ?><br />
|
||||
<?php comment_date() ?> </strong>- unlike the_date(), this tag appears
|
||||
on every comment<strong><br />
|
||||
<?php comment_time() ?></strong><br />
|
||||
<div class="params">Parameters for <strong>comment_date()</strong> and
|
||||
<strong>comment_time()</strong>:
|
||||
<ul>
|
||||
<li>format string (default is "d.m.y"/"H:i:s" depending on the tag)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<strong><?php trackback_url() ?> <span style="font-family: Courier New, Courrier, mono; color: #ff9900; font-weight:bold;">*</span></strong><br />
|
||||
This tag is out of the b2 TrackBacks loop.<br />
|
||||
It will output the URL to TrackBack the post, that other people can copy
|
||||
and use in b2's posting interface to trackback this post.<br />
|
||||
<div class="params">Parameters:
|
||||
<ul>
|
||||
<li>no parameter</li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
In b2comments.php b2trackback.php and b2pingbacks.php, like in the main
|
||||
template file, please keep the first PHP lines, the "while"
|
||||
lines, and the "}" lines.<br />
|
||||
You can modify the form, but do not remove "<?php echo ... ?>"
|
||||
and all the name="..." attributes.<br />
|
||||
<br />
|
||||
<br />
|
||||
To <strong>include your archives:</strong><br />
|
||||
<br />
|
||||
<strong><?php include("b2archives.php") ?></strong><br />
|
||||
this will include the links to your archives, one link per line.<br />
|
||||
if your archive mode is "monthly", it will display the names
|
||||
of the months and the years, like "july 2001".<br />
|
||||
if your archive mode is "post by post", it will display the
|
||||
titles of your posts, one title per line. if a post is untitled it will
|
||||
display the ID (number) of this post.<br />
|
||||
<br />
|
||||
<br />
|
||||
To <strong>include the calendar:</strong><br />
|
||||
<br />
|
||||
<strong><?php include("b2calendar.php") ?></strong><br />
|
||||
this will include a table with the current month's calendar, each day
|
||||
when you posted shows a link to this day's posts. You can customise this
|
||||
table with CSS classes:
|
||||
<div class="params"> <strong>.b2calendarmonth {}</strong><br />
|
||||
<i>the style that is used to display the month and year</i><br />
|
||||
<strong>.b2calendartable {}</strong><br />
|
||||
<i>the style of the <table> tag (border etc...)</i><br />
|
||||
<strong>.b2calendarrow {}</strong><br />
|
||||
<i>the style of the <tr> tag</i><br />
|
||||
<strong>.b2calendarheadercell {}</strong><br />
|
||||
<i>the style of the <td> tag that shows the weekdays
|
||||
on the top of the table</i><br />
|
||||
<strong>.b2calendarcell {}</strong><br />
|
||||
<i>the style of the <td> tags that show the days</i><br />
|
||||
<strong>.b2calendaremptycell {}</strong><br />
|
||||
<i>the style of the <td> tags that are empty</i><br />
|
||||
<strong>.b2calendarlinkpost {}</strong><br />
|
||||
<i>the style of the link to the post</i><br />
|
||||
<strong>.b2calendartoday {}</strong><br />
|
||||
<i>the style of the day if it is today</i> </div>
|
||||
</blockquote>
|
||||
<a name="usage"></a> <h1>Query String Usage:</h1>
|
||||
<p>WordPress relies a lot on the query string, these variables passed with
|
||||
the URL (note: to pass variables in the querystring, preceed the first
|
||||
variable name with a '?' question mark and every other variables with
|
||||
a '&' sign.)</p>
|
||||
<p>Most of the time you won't have to do anything about it, but if you want
|
||||
to know how it works, it's here:</p>
|
||||
<p>How to use the query string:</p>
|
||||
<blockquote> index.php<strong>?m=200107</strong> will display the month
|
||||
of July 2001.<br />
|
||||
<br />
|
||||
index.php<strong>?m=20010701</strong> will display all posts from July
|
||||
1st, 2001.<br />
|
||||
<br />
|
||||
index.php<strong>?w=20</strong> will display the posts from the 20th week
|
||||
of the year, where January 1st is in the first week (according to PHP).<br />
|
||||
<br />
|
||||
index.php<strong>?p=50</strong> will display the post labeled #50 in the
|
||||
database.<br />
|
||||
<br />
|
||||
index.php<strong>?s=blue+house</strong> will display the posts that match
|
||||
the search request "blue house".<br />
|
||||
here is the code for a simple search box:<br />
|
||||
<br />
|
||||
<code><form name="searchform" action="<?php echo
|
||||
$PHP_SELF ?>" method="get"><br />
|
||||
<input type="text" name="s" /><br />
|
||||
<input type="submit" name="submit" value="search"
|
||||
/><br />
|
||||
</form> </code><br />
|
||||
<br />
|
||||
index.php<strong>?cat=1</strong> will display all posts that belong to
|
||||
category #1 (1 is the default). you can add/rename/delete categories from
|
||||
b2's interface.<br />
|
||||
<br />
|
||||
index.php<strong>?author=1</strong> will display all posts from the author
|
||||
#1<br />
|
||||
<br />
|
||||
index.php<strong>?p=50&c=1</strong> will display the comments and a form
|
||||
to add a comment below the post.<br />
|
||||
you should use this variable only with <strong>p=</strong>, example: index.php<strong>?p=50&c=1</strong>.<br />
|
||||
<br />
|
||||
index.php<strong>?p=50&tb=1</strong> will display the TrackBacks to the
|
||||
post #50.<br />
|
||||
you should use this variable only with <strong>p=</strong>, example: index.php<strong>?p=50&tb=1</strong>.<br />
|
||||
<br />
|
||||
index.php<strong>?p=50&pb=1</strong> will display the Pingbacks to the
|
||||
post #50.<br />
|
||||
you should use this variable only with <strong>p=</strong>, example: index.php<strong>?p=50&pb=1</strong>.<br />
|
||||
<br />
|
||||
index.php<strong>?p=50&more=1</strong> will display the extended entries'
|
||||
text. this, too, should be used only with <strong>p=</strong>, for individual
|
||||
entries.<br />
|
||||
<br />
|
||||
index.php<strong>?p=50&page=1</strong> will display the first page of
|
||||
post #50. this, again, should be used only with <strong>p=</strong>, for
|
||||
individual entries.<br />
|
||||
<br />
|
||||
You can also mix these variables, example: index.php<strong>?m=200107&s=hotdog</strong>
|
||||
will display the posts that match the search request "hotdog",
|
||||
but only in July 2001. </blockquote>
|
||||
<p> </p>
|
||||
<a name="xmlrpc"></a> <h1>XML-RPC Interface:</h1>
|
||||
<p>WordPress now has a XMLRPC interface. The only API available right now
|
||||
is the Blogger API (complete specs <a href="http://www.tswoam.co.uk/blogger_method_listing.html">here</a>).
|
||||
There are talks about a new API that would cover a lot of weblog/CMS systems
|
||||
in the future: when it's ready, WordPress will support it.</p>
|
||||
<p> The <a href="http://plant.blogger.com/api">Blogger API</a> has been
|
||||
completely emulated on WordPress, with some little differences:</p>
|
||||
<ul>
|
||||
<li>using <em>blogger.getRecentPosts</em> with the number 'zero' returns
|
||||
all posts in the blog</li>
|
||||
<li><em>blogger.getTemplate</em> fetches your file $blogfilename (as specified
|
||||
in the config), while <em>blogger.setTemplate</em> overwrites it with
|
||||
the edited data</li>
|
||||
<li><em>blogger.getUsersBlogs</em> is a dummy function that returns '1'
|
||||
and $blogname, since b2 supports only one blog as of now</li>
|
||||
</ul>
|
||||
<p>If you use blogger.newPost, your post is submitted without title and
|
||||
in category #1.</p>
|
||||
<p> However, you can type <title>my title</title> and/or <category>2<category>
|
||||
in the body of your post to make its title be 'my title' and its category
|
||||
be #2 (refer to your categories section to find out the ID numbers of
|
||||
the categories). b2 would then delete that extra info from the body of
|
||||
your post once it is posted.</p>
|
||||
<p> You can now post to your b2 blog with tools like <a href="http://blogbuddy.sourceforge.net">BlogBuddy</a>,
|
||||
<a href="http://bloggar.cjb.net">Bloggar</a>, <a href="http://www.ubique.ch/wapblogger/">WapBlogger</a>
|
||||
(post from your Wap cellphone!), <a href="http://radio.userland.com">Radio
|
||||
Userland</a> (which means you can use Radio's email-to-blog feature),
|
||||
and other tools that support the Blogger API ! :)</p>
|
||||
<p>Your XMLRPC server/path are as described here: if you login to b2 on
|
||||
http://mydomain.com/me/b2login.php, then you have:</p>
|
||||
<ul>
|
||||
<li>server: http://example.com/me</li>
|
||||
<li>path: /me/xmlrpc.php</li>
|
||||
<li>complete URL (just in case): http://example.com/me/xmlrpc.php</li>
|
||||
</ul>
|
||||
<p>There's also a b2-specific method: b2.getCategories. Request it with
|
||||
3 strings: blog_ID (use '1'), username, password. The response is an array
|
||||
of structs with strings categoryID and categoryName.<br />
|
||||
<br />
|
||||
</p>
|
||||
<p> </p>
|
||||
<a name="postviaemail"></a> <h1>Post via Email:</h1>
|
||||
<p>You can post news from an email client!<br />
|
||||
But first you'll have to edit b2config.php, filling the appropriate values
|
||||
for your POP3 email account (this interface doesn't support IMAP yet,
|
||||
only POP3, sorry).</p>
|
||||
<p> Once you have edited the config options, you can make your webserver
|
||||
execute b2mail.php every set amount of time (depending on your host's
|
||||
performance, this script can be resource intensive, so don't make it run
|
||||
every minute or you'll be kicked).</p>
|
||||
<p>You can do it with Cron-jobs, or if your host doesn't support it you
|
||||
can look into the various website-monitoring services, and make them check
|
||||
your b2mail.php URL.</p>
|
||||
<h2> Preliminary advice:</h2>
|
||||
<p> It is strongly advised to send your email as text-only (Outlook and
|
||||
Outlook Express default to 'html', which may cause problems), but HTML
|
||||
email could work (the script would strip all your html tags though...).</p>
|
||||
<p>It is also advised not to use your public email address, but create a
|
||||
new one especially for this script. If you use your public email address
|
||||
and the script goes crazy posting every email on your blog and deleting
|
||||
all your emails, I can't take responsibility for this.</p>
|
||||
<p>Make sure you delete any email sent to your blog in your 'Sent' folder
|
||||
too, just in case (you don't want someone to find your login and password
|
||||
in the 'Sent' folder).</p>
|
||||
<p> The script will <i>delete</i> the emails that were used to post stuff
|
||||
on your weblog if it successfully posted your stuff. If it didn't manage
|
||||
to post, the email is not deleted.</p>
|
||||
<h2>How to post:</h2>
|
||||
<p>Now to post something, here's how your email should look like:</p>
|
||||
<div class="params"> <b>To:</b> address@domain.com <span style='color: #999'>(you
|
||||
set it in the config file)</span><br />
|
||||
<b>Subject:</b> blog:the post's title <span style='color: #999'>(you can
|
||||
change 'blog:' in the config file)</span><br />
|
||||
<b>Body:</b><br>
|
||||
login:password <span style='color: #999'>(example: <i>Jack:Starwars</i>)</span><br />
|
||||
The content of the post, blah blah blah.<br />
|
||||
More blah blah. ___ </div>
|
||||
<p> Subject must start with 'blog:', or any string you set in the config
|
||||
file (so that the script doesn't check EVERY email in your mailbox).</p>
|
||||
<p>Body's first line must always be login:password, else the script will
|
||||
just skip the email.<br />
|
||||
If you don't use '___' (or any body terminator that you set in the config
|
||||
file), the script will post the whole body, which is not what you want
|
||||
if you send email with Yahoo or Hotmail (you don't want their ads on your
|
||||
blog, do you ?).</p>
|
||||
<h2>Special cases for mobile phone email:</h2>
|
||||
<p> Some mobile phone service providers may allow you to send email with
|
||||
your mobile phone or PDA, but on such devices you can't always include
|
||||
line breaks. In such case, you have to set <i>$use_phoneemail = 1</i>
|
||||
in b2config.php, and then here's how you write the email:</p>
|
||||
<div class="params"> <b>To:</b> address@domain.com<br />
|
||||
<b>Subject:</b> blog:the post's title <b>:::</b><br />
|
||||
<b>Body:</b><br>
|
||||
login:password <b>:::</b> The content of the post, blah blah blah.___
|
||||
</div>
|
||||
<p>You will have to append ':::' (or whatever string you set in the config
|
||||
file) after the subject, and after the login:password.<br />
|
||||
<br />
|
||||
Some mobile phone service providers may not allow you to set a subject,
|
||||
and they'll make the subject be the first characters of the body, in which
|
||||
case you would send an email like this:</p>
|
||||
<div class="params"> <b>To:</b> address@domain.com<br />
|
||||
<b>Body:</b><br>
|
||||
blog:the post's title <b>:::</b> login:password <b>:::</b> The content
|
||||
of the post, blah blah blah.___ </div>
|
||||
<p> </p>
|
||||
<a name="notes"></a> <h1>Notes: </h1>
|
||||
<p>On multi-user:</p>
|
||||
<p>New users can register with <code>b2register.php</code>. Then you (as
|
||||
an admin) click the "+" next to their name on the Team page
|
||||
in admin to upgrade their level to 1 or more, so they can post. If you
|
||||
don't want an user to post anymore, just click "-" until their
|
||||
level is 0.</p>
|
||||
<p>Note: you can now disable users registration altogether from the config
|
||||
file.</p>
|
||||
<p><strong>Levels</strong>:</p>
|
||||
<ul>
|
||||
<li> 0 - new user: can't post.</li>
|
||||
<li>1 - user: can post & edit/delete their own posts.</li>
|
||||
<li>3 & more - admin: can post, edit/delete other people's posts,
|
||||
and change the options.</li>
|
||||
<li>Any user whose level is higher than 1, can edit/delete the posts and
|
||||
change the level of users whose level is inferior. Example: a level
|
||||
2 user is not an admin, but can edit the posts of level 1 users, and
|
||||
up the level of a new user from 0 to 1.</li>
|
||||
</ul>
|
||||
<p>Usually, you'll want to have a team of only level 1 users except you.
|
||||
;)</p>
|
||||
<p><strong>Note:</strong> you can modify a variable in b2config.php, to
|
||||
enable new users to post once they've registered.</p>
|
||||
<p>If you don't want users to register on your blog at all, just delete
|
||||
b2register.php once you've registered your user account. </p>
|
||||
<h1><br />
|
||||
Final notes:</h1>
|
||||
<ul>
|
||||
<li>WordPress is functional, but a lot of coding and code clean-up remain
|
||||
to be done.</li>
|
||||
<li>If you've got suggestions, ideas, or comments, or if you found a bug,
|
||||
why not joining us in the <a href="http://wordpress.org/support/">Support
|
||||
Forums</a>?</li>
|
||||
<li>If you can code in PHP, you'll see the structure of WordPress is flexible
|
||||
enough to allow for more functions and sections to be added.</li>
|
||||
</ul>
|
||||
<h1><br />
|
||||
Copyright notes:</h1>
|
||||
<ul>
|
||||
<li> Wherever third party code has been used, credit has been given in
|
||||
the code's comments.</li>
|
||||
<li>WordPress is released under the <acronym title="GNU Public License">GPL</acronym>
|
||||
(see license.txt).</li>
|
||||
</ul></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p> </p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,248 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress—ReadMe</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<style type="text/css" media="screen">
|
||||
<!--
|
||||
body {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
font-family: Georgia, "Times New Roman", Times, serif;
|
||||
margin-left: 25%;
|
||||
margin-right: 25%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #006;
|
||||
font-size: 18px;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.tag {
|
||||
background: #FFFF99
|
||||
color: #000;
|
||||
}
|
||||
|
||||
|
||||
|
||||
p, li {
|
||||
line-height: 140%;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
.file {
|
||||
background: #d4f5ff;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.tag {
|
||||
background: #FFFF99;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
padding: 5px 5px 5px 20px;
|
||||
}
|
||||
|
||||
.params {
|
||||
border: 1px solid #ccc;
|
||||
font: 12px arial,helvetica,sans-serif;
|
||||
margin: 5px;
|
||||
margin-left: 20px;
|
||||
margin-right: 80px;
|
||||
padding: 5px;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p style="text-align: center"><img alt="WordPress" src="http://wordpress.org/images/wordpress.gif" /> <br />
|
||||
Version 1.0.1</p>
|
||||
<p style="text-align: center">Weblog / News Publishing Tool</p>
|
||||
<p style="text-align: center"><a href="#requirements">Requirements</a> - <a href="#installation">Installation</a> - <a href="#templates">Template(s)</a> - <a href="#usage">Query String Usage</a> - <a href="#xmlrpc">XML-RPC (Blogging APIs)</a> - <a href="#postviaemail">Post Via Email</a> - <a href="#notes">Notes</a></p>
|
||||
<h1 id="requirements">Requirements:</h1>
|
||||
<ul>
|
||||
<li><strong>PHP4</strong> (version 4.0.6 or higher)</li>
|
||||
<li><strong>MySQL</strong> (version 3.23.23 or higher)</li>
|
||||
<li>... and a link to <a href="http://wordpress.org">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>The link will help promote <a href="http://wordpress.org">WordPress</a> and is its only mean of promotion. </p>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2</a>, which comes from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>. </p>
|
||||
<p>This document is currently <em>beta</em> stage, we'll be updating it extensively as WordPress matures. There is also <a href="http://wordpress.org/docs/">online documentation</a> under development, as well as a <a href="http://wiki.wordpress.org">wiki</a>.</p>
|
||||
<h1 id="installation">Installation:</h1>
|
||||
<h2>New users: 5-minute install.</h2>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Upload everything. This release is designed to sit in your root folder; i.e, the folder where your WordPress-powered page will reside.</li>
|
||||
<li>(Optional) If you're going to use it, the weblogs.com cache file needs to be writable by the web server. <a href="http://www.evolt.org/article/A_quick_and_dirty_chmod_Tutorial/18/541/">CHMOD 666</a> the <span class="file"><code>wp-content/link-update-cache.xml</code></span> file. </li>
|
||||
<li>
|
||||
<p>Point your browser to <span class="file">wp-admin/install-config.php</span>. This will create a configuration file for your installation. You'll need to know your database name, username, password, and host name.</p>
|
||||
<p>Alternately, you may open <span class="file">wp-config-sample.php</span> in a text editor and insert your database name, username, password, and host name as indicated in the comments. (Comments are lines that start with <code>/*</code> or <code>//</code>.) Save this file as <span class="file">wp-config.php</span>, and upload it.</p>
|
||||
</li>
|
||||
<li> Launch <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the MySQL database for your blog. <strong>Note the password given to you.</strong> If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> and make a post with all the information about the failure (error messages, etc), and your setup (the PHP and MySQL versions on your server, and the browser you were using). </li>
|
||||
<li> The install script should then send you to the login page. Sign in with the username "admin" and the password generated during the installation. Then click on the item 'My Profile', and change the password. The login page may also be accessed by going to <span class="file"><a href="wp-login.php">wp-login.php</a></span>.</li>
|
||||
</ol>
|
||||
<h2>Some notes:</h2>
|
||||
<ul>
|
||||
<li>Whenever you want to post something, just open a browser and go to <span class="file"><a href="wp-login.php">wp-login.php</a></span> to log in and post.</li>
|
||||
<li>You can also use a bookmarklet and/or a sidebar (IE5+/NS6+) to post.</li>
|
||||
<li> You can also post through the Blogger, MetaWeblog, and MovableType APIs, <a href="#xmlrpc">click here</a> for more info.</li>
|
||||
<li> By default, your site's blog is located at <span class="file">index.php</span>, which is an elaborate .CSS-based template. There is a non-.CSS template you can also use, called <span class="file">wp.php</span>. You can rename either of these files as any other name you fancy (provided it bears the php extension or is interpreted as a php file by your server).</li>
|
||||
</ul>
|
||||
|
||||
<h2>Preface for all upgrades:</h2>
|
||||
<ul><li><strong>Back up</strong> your database before you do anything. </li>
|
||||
<li>If you haven't already, we strongly suggest that you <strong>BACK UP</strong> your database.</li>
|
||||
<li>Have you <strong>BACKED UP</strong> your database? Yeah? GREAT!</li>
|
||||
<li>If you don't know how to do this, <a href="http://wordpress.org/support/10/1384">this script</a> may help.</li>
|
||||
</ul>
|
||||
|
||||
<h2>Upgrading from any previous WordPress to v1.0.1:</h2>
|
||||
<ul>
|
||||
<li><strong>Backup your database.</strong> Yes, you. Right now.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ul>
|
||||
<h2>Note on upgrading to v1.0.1:</h2>
|
||||
<ul>
|
||||
<li>It is <strong>strongly</strong> recommended that you use the new <span class="file"> index.php</span> for your templates, rather than simply upgrading your old one. Sure, it'll take a little time, but you'll be much happier with the results when you do!</li>
|
||||
|
||||
<h2>Upgrading from b2 v0.6.1/v0.6.2.2 to WordPress v1.0.1:</h2>
|
||||
<ul>
|
||||
<li><strong>Back up</strong> your database before you do anything. Yes, you. Right now.</li>
|
||||
<li>You <em>must</em> configure <span class="file"><code>wp-config.php</code></span> as indicated in the "5-minute install" section.</li>
|
||||
<li>All you <em>really</em> have to do is replace all the files with newer versions and run <span class="file">wp-admin/upgrade.php</span> and you should be ready to go.</li>
|
||||
<li>There is also an import script at <span class="file">wp-admin/import-b2.php</span>.</li>
|
||||
<li>If you're using an older version of b2, it's probably a good idea to upgrade to at least .6.1 before making the leap to WordPress.</li>
|
||||
<li>The templates are better and structured slightly differently, so it might be worth it to start from scratch and work back to your design.</li>
|
||||
<li>WordPress issues should be discussed in our <a href="http://wordpress.org/support/">support forums</a>.</li>
|
||||
</ul>
|
||||
|
||||
<h2>Upgrading to WordPress v1.0.1 from Movable Type, Textpattern, GreyMatter, & Blogger</h2>
|
||||
<ul>
|
||||
<li>Did we mention <strong>BACKING UP</strong> your database first?</li>
|
||||
<li>Each of these tools has an import script available. They are all located in the wp-admin directory, and must first be configured with your database information before they are executed.
|
||||
<li>Detailed importing instructions are given during the execution of the import script.
|
||||
<li>Textpattern: run <span class="file"><a href="wp-admin/import-textpattern.php">wp-admin/import-textpattern.php</a></span>.</li>
|
||||
<li>GreyMatter: run <span class="file"><a href="wp-admin/import-greymatter.php">wp-admin/import-greymatter.php</a></span>.</li>
|
||||
<li>Blogger: run <span class="file"><a href="wp-admin/import-blogger.php">wp-admin/import-blogger.php</a></span>.</li>
|
||||
<li>Movable Type: run <a href="wp-admin/import-mt.php" class="file">wp-admin/import-mt.php</a>. </li>
|
||||
</ul>
|
||||
|
||||
<h1 id="templates">Templates:</h1>
|
||||
<p>For information about WordPress templates, please see our <a href="http://wordpress.org/docs/template/">online documentation on them</a>. </p>
|
||||
<h2>First notes:</h2>
|
||||
<h1 id="usage">Query String Usage:</h1>
|
||||
<p>WordPress relies a lot on the query string. These variables passed with the URL (note: to pass variables in the querystring, preceed the first variable name with a '?' question mark and every other variables with a '&' sign.)</p>
|
||||
<p>Most of the time you won't have to do anything about it, but if you want to know how it works, it's here:</p>
|
||||
<p>How to use the query string:</p>
|
||||
<p>index.php<strong>?m=200107</strong> will display the month of July 2001.</p>
|
||||
<p>index.php<strong>?m=20010701</strong> will display all posts from July 1st, 2001.</p>
|
||||
<p>index.php<strong>?w=20</strong> will display the posts from the 20th week of the year, where January 1st is in the first week (according to PHP).</p>
|
||||
<p>index.php<strong>?p=50</strong> will display the post labeled #50 in the database.</p>
|
||||
<p>index.php<strong>?s=blue+house</strong> will display the posts that match the search request "blue house".<br />
|
||||
here is the code for a simple search box:</p>
|
||||
<p><code><form name="searchform" action="<?php echo $PHP_SELF ?>" method="get"><br />
|
||||
<input type="text" name="s" /><br />
|
||||
<input type="submit" name="submit" value="search" /><br />
|
||||
</form> </code></p>
|
||||
<p>index.php<strong>?cat=1</strong> will display all posts that belong to category #1 (1 is the default). you can add/rename/delete categories from WordPress's interface.</p>
|
||||
<p>index.php<strong>?author=1</strong> will display all posts from the author #1</p>
|
||||
<p>index.php<strong>?p=50&c=1</strong> will display the comments and a form to add a comment below the post.<br />
|
||||
you should use this variable only with <strong>p=</strong>, example: index.php<strong>?p=50&c=1</strong>.</p>
|
||||
<p>index.php<strong>?p=50&page=1</strong> will display the first page of post #50. this, again, should be used only with <strong>p=</strong>, for individual entries.</p>
|
||||
<p>You can also mix these variables, example: index.php<strong>?m=200107&s=hotdog</strong> will display the posts that match the search request "hotdog", but only in July 2001.</p>
|
||||
<h1 id="xmlrpc">XML-RPC Interface:</h1>
|
||||
<p>WordPress has an XMLRPC interface. Currently supported APIs are the <a href="http://www.blogger.com/developers/api/1_docs/">Blogger API</a>, <a href="http://www.xmlrpc.com/metaWeblogApi">metaWeblog API</a>, and the <a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">MovableType API</a>. There are talks about a new API that would cover a lot of weblog/CMS systems in the future: when it's ready, WordPress will support it.</p>
|
||||
<p> The <a href="http://www.blogger.com/developers/api/1_docs/">Blogger API</a> has been completely emulated on WordPress, with some little differences:</p>
|
||||
<ul>
|
||||
<li>using <em>blogger.getRecentPosts</em> with the number 'zero' returns all posts in the blog</li>
|
||||
<li><em>blogger.getTemplate</em> fetches your file $blogfilename (as specified in the config), while <em>blogger.setTemplate</em> overwrites it with the edited data</li>
|
||||
<li><em>blogger.getUsersBlogs</em> is a dummy function that returns '1' and $blogname, since WordPress supports only one blog as of now</li>
|
||||
</ul>
|
||||
<p>If you use blogger.newPost, your post is submitted without title and in category #1.</p>
|
||||
<p> However, you can type <title>my title</title> and/or <category>2<category> in the body of your post to make its title be 'my title' and its category be #2 (refer to your categories section to find out the ID numbers of the categories). b2 would then delete that extra info from the body of your post once it is posted.</p>
|
||||
<p>The <a href="http://www.xmlrpc.com/metaWeblogApi">metaWeblog</a> and <a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">MovableType</a> APIs are currently supported with the following exceptions:</p>
|
||||
<ul>
|
||||
<li>metaWeblog.newMediaObject, mt.getRecentPostTitles, and mt.getTrackbackPings are not yet implemented</li>
|
||||
<li>mt.supportedTextFilters is a dummy stub function that returns an empty string</li>
|
||||
<li>keywords are not supported in the MovableType API</li>
|
||||
</ul>
|
||||
<br />
|
||||
Extended entries in the <a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">MovableType API</a> are automatically converted to/from the WordPress <!--more--> tag.<br />
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://blogbuddy.sourceforge.net">BlogBuddy</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://www.ubique.ch/wapblogger/">WapBlogger</a> (post from your Wap cellphone!), <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.zempt.com/">Zempt</a>, <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :)</p>
|
||||
<p>Your XMLRPC server/path are as described here: if you login to WordPress on http://example.com/me/wp-login.php, then you have:</p>
|
||||
<ul>
|
||||
<li>server: http://example.com/ (some tools will just want the 'example.com' hostname part)</li>
|
||||
<li>path: /me/xmlrpc.php</li>
|
||||
<li>complete URL (just in case): http://example.com/me/xmlrpc.php</li>
|
||||
</ul>
|
||||
<p>There's also a b2-specific method: b2.getCategories. Request it with 3 strings: blog_ID (use '1'), username, password. The response is an array of structs with strings categoryID and categoryName.</p>
|
||||
<h1 id="postviaemail">Post via Email:</h1>
|
||||
<p>You can post news from an email client!<br />
|
||||
But first you'll have to edit the options on the options screen, filling the appropriate values for your POP3 email account (this interface doesn't support IMAP yet, only POP3, sorry).</p>
|
||||
<p> Once you have edited the options, you can make your webserver execute wp-mail.php every set amount of time (depending on your host's performance, this script can be resource intensive, so don't make it run every minute or you'll be kicked).</p>
|
||||
<p>You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your wp-mail.php URL.</p>
|
||||
<h2> Preliminary advice:</h2>
|
||||
<p> It is strongly advised to send your email as text-only (Outlook and Outlook Express default to 'html', which may cause problems), but HTML email could work (the script would strip all your html tags though...).</p>
|
||||
<p>It is also advised not to use your public email address, but create a new one especially for this script. If you use your public email address and the script goes crazy posting every email on your blog and deleting all your emails, I can't take responsibility for this.</p>
|
||||
<p>Make sure you delete any email sent to your blog in your 'Sent' folder too, just in case (you don't want someone to find your login and password in the 'Sent' folder).</p>
|
||||
<p> The script will <i>delete</i> the emails that were used to post stuff on your weblog if it successfully posted your stuff. If it didn't manage to post, the email is not deleted.</p>
|
||||
<h2>How to post:</h2>
|
||||
<p>Now to post something, here's how your email should look like:</p>
|
||||
<div class="params"> <b>To:</b> address@example.com <span
|
||||
|
||||
style="color: rgb(153, 153, 153);">(you set it in the config file)</span><br />
|
||||
<b>Subject:</b> blog:the post's title <span
|
||||
|
||||
style="color: rgb(153, 153, 153);">(you can change 'blog:' in the config file)</span><br />
|
||||
<b>Body:</b><br />
|
||||
login:password <span style="color: rgb(153, 153, 153);">(example: <i>Jack:Starwars</i>)</span><br />
|
||||
The content of the post, blah blah blah.<br />
|
||||
More blah blah. ___ </div>
|
||||
<p> Subject must start with 'blog:', or any string you set in the config file (so that the script doesn't check EVERY email in your mailbox).</p>
|
||||
<p>Body's first line must always be login:password, else the script will just skip the email.</p>
|
||||
<p> If you don't use '___' (or any body terminator that you set in the config file), the script will post the whole body, which is not what you want if you send email with Yahoo or Hotmail (you don't want their ads on your blog, do you ?).</p>
|
||||
<h2>Special cases for mobile phone email:</h2>
|
||||
<p> Some mobile phone service providers may allow you to send email with your mobile phone or PDA, but on such devices you can't always include line breaks. In such case, you have to set <i>use_phoneemail = true</i> in the options, and then here's how you write the email:</p>
|
||||
<div class="params"> <b>To:</b> address@example.com<br />
|
||||
<b>Subject:</b> blog:the post's title <b>:::</b><br />
|
||||
<b>Body:</b><br />
|
||||
login:password <b>:::</b> The content of the post, blah blah blah.___ </div>
|
||||
<p>You will have to append ':::' (or whatever string you set in the config file) after the subject, and after the login:password.</p>
|
||||
<p>Some mobile phone service providers may not allow you to set a subject, and they'll make the subject be the first characters of the body, in which case you would send an email like this:</p>
|
||||
<div class="params"> <b>To:</b> address@example.com<br />
|
||||
<b>Body:</b><br />
|
||||
blog:the post's title <b>:::</b> login:password <b>:::</b> The content of the post, blah blah blah.___ </div>
|
||||
<h1 id="notes">Notes:</h1>
|
||||
<p>On multi-user:</p>
|
||||
<p>New users can register with <span class="file">wp-register.php</span>. Then you (as an admin) click the "+" next to their name on the Team page in admin to upgrade their level to 1 or more, so they can post. If you don't want an user to post anymore, just click "-" until their level is 0.</p>
|
||||
<p>Note: you can now disable users registration altogether from the config file.</p>
|
||||
<p><strong>User Levels</strong>:</p>
|
||||
<ul>
|
||||
<li>0 - new user: can't post.</li>
|
||||
<li>1 - user: can post & edit/delete their own posts.</li>
|
||||
<li>3 & higher - admin: can post, edit/delete other people's posts, and change the options.</li>
|
||||
<li>Any user whose level is higher than 1, can edit/delete the posts and change the level of users whose level is inferior. Example: a level 2 user is not an admin, but can edit the posts of level 1 users, and up the level of a new user from 0 to 1.</li>
|
||||
</ul>
|
||||
<p>Usually, you'll want to have a team of only level 1 users except you. ;)</p>
|
||||
<p><strong>Note:</strong> you can modify an option on the option screens, to enable new users to post once they've registered.</p>
|
||||
<p>If you don't want users to register on your blog at all, just delete wp-register.php once you've registered your user account. </p>
|
||||
<h1> Final notes:</h1>
|
||||
<ul>
|
||||
<li>If you've got suggestions, ideas, or comments, or if you found a bug, why not joining us in the <a href="http://wordpress.org/support/">Support Forums</a>?</li>
|
||||
<li>If you can code in PHP, you'll see the structure of WordPress is flexible enough to allow for more functions and sections to be added.</li>
|
||||
</ul>
|
||||
<h1>Copyright notes:</h1>
|
||||
<ul>
|
||||
<li>Wherever third party code has been used, credit has been given in the code’s comments.</li>
|
||||
<li>WordPress is released under the <acronym title="GNU Public License">GPL</acronym> (see license.txt).</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,302 +0,0 @@
|
||||
/* Default WordPress by Dave Shea || http://mezzoblue.com
|
||||
Modifications by Matthew Mullenweg || http://photomatt.net
|
||||
This is just a basic layout, with only the bare minimum defined.
|
||||
Please tweak this and make it your own. :)
|
||||
*/
|
||||
|
||||
a {
|
||||
color: #675;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #342;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #9a8;
|
||||
}
|
||||
|
||||
acronym, abbr {
|
||||
border-bottom: 1px dashed #333;
|
||||
}
|
||||
|
||||
acronym, abbr, span.caps {
|
||||
cursor: help;
|
||||
font-size: 90%;
|
||||
letter-spacing: .07em;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 5px solid #ccc;
|
||||
margin-left: 1.5em;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #fff;
|
||||
border: solid 2px #565;
|
||||
border-bottom: solid 1px #565;
|
||||
border-top: solid 3px #565;
|
||||
color: #000;
|
||||
font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
cite {
|
||||
font-size: 90%;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h2 {
|
||||
border-bottom: 1px dotted #ccc;
|
||||
font: 95% "Times New Roman", Times, serif;
|
||||
letter-spacing: 0.2em;
|
||||
margin: 15px 0 2px 0;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
border-bottom: dotted 1px #eee;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
ol#comments li p {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
p, li, .feedback {
|
||||
font: 90%/175% 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
/* classes used by the_meta() */
|
||||
ul.post-meta {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
ul.post-meta span.post-meta-key {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.credit {
|
||||
background: #90a090;
|
||||
border-top: double 3px #aba;
|
||||
color: #fff;
|
||||
font-size: 11px;
|
||||
margin: 10px 0 0 0;
|
||||
padding: 3px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.credit a:link, .credit a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.feedback {
|
||||
color: #ccc;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.meta {
|
||||
font-size: .75em;
|
||||
}
|
||||
|
||||
.meta li, ul.post-meta li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.meta ul {
|
||||
display: inline;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.meta, .meta a {
|
||||
color: #808080;
|
||||
font-weight: normal;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.storytitle {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.storytitle a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#commentform #name, #commentform #email, #commentform #url, #commentform textarea {
|
||||
background: #fff;
|
||||
border: 1px solid #333;
|
||||
padding: .2em;
|
||||
}
|
||||
|
||||
#commentform textarea {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#commentlist li ul {
|
||||
border-left: 1px solid #ddd;
|
||||
font-size: 110%;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin: 30px 13em 0 3em;
|
||||
padding-right: 60px;
|
||||
}
|
||||
|
||||
#header {
|
||||
background: #90a090;
|
||||
border-bottom: double 3px #aba;
|
||||
border-left: solid 1px #9a9;
|
||||
border-right: solid 1px #565;
|
||||
border-top: solid 1px #9a9;
|
||||
font: italic normal 230% 'Times New Roman', Times, serif;
|
||||
letter-spacing: 0.2em;
|
||||
margin: 0;
|
||||
padding: 15px 10px 15px 60px;
|
||||
}
|
||||
|
||||
#header a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#header a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#menu {
|
||||
background: #fff;
|
||||
border-left: 1px dotted #ccc;
|
||||
border-top: solid 3px #e0e6e0;
|
||||
padding: 20px 0 10px 30px;
|
||||
position: absolute;
|
||||
right: 2px;
|
||||
top: 0;
|
||||
width: 11em;
|
||||
}
|
||||
|
||||
#menu form {
|
||||
margin: 0 0 0 13px;
|
||||
}
|
||||
|
||||
#menu input#s {
|
||||
width: 80%;
|
||||
background: #eee;
|
||||
border: 1px solid #999;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#menu ul {
|
||||
color: #ccc;
|
||||
font-weight: bold;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding-left: 3px;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
|
||||
#menu ul li {
|
||||
font: italic normal 110% 'Times New Roman', Times, serif;
|
||||
letter-spacing: 0.1em;
|
||||
margin-top: 10px;
|
||||
padding-bottom: 2px; /*border-bottom: dotted 1px #ccc;*/
|
||||
}
|
||||
|
||||
#menu ul ul {
|
||||
font-variant: normal;
|
||||
font-weight: normal;
|
||||
line-height: 100%;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#menu ul ul li {
|
||||
border: 0;
|
||||
font: normal normal 70%/115% 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
letter-spacing: 0;
|
||||
margin-top: 0;
|
||||
padding: 0;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
#menu ul ul li a {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#menu ul ul li a:hover {
|
||||
border-bottom: 1px solid #809080;
|
||||
}
|
||||
|
||||
#menu ul ul ul.children {
|
||||
font-size: 142%;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
#wp-calendar {
|
||||
border: 1px solid #ddd;
|
||||
empty-cells: show;
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
#wp-calendar #next a {
|
||||
padding-right: 10px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#wp-calendar #prev a {
|
||||
padding-left: 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#wp-calendar a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#wp-calendar a:hover {
|
||||
background: #e0e6e0;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#wp-calendar caption {
|
||||
color: #999;
|
||||
font-size: 16px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#wp-calendar td {
|
||||
color: #ccc;
|
||||
font: normal 12px 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
letter-spacing: normal;
|
||||
padding: 2px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-calendar td.pad:hover {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#wp-calendar td:hover, #wp-calendar #today {
|
||||
background: #eee;
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
#wp-calendar th {
|
||||
font-style: normal;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
@@ -1,160 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress › ReadMe</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<style type="text/css" media="screen">
|
||||
<!--
|
||||
html {
|
||||
background: #eee;
|
||||
}
|
||||
body {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
font-family: Georgia, "Times New Roman", Times, serif;
|
||||
margin-left: 25%;
|
||||
margin-right: 25%;
|
||||
padding: .2em 2em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #006;
|
||||
font-size: 18px;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
p, li, dt {
|
||||
line-height: 140%;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
padding: 5px 5px 5px 20px;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1 style="text-align: center"><img alt="WordPress" src="http://wordpress.org/images/wordpress.gif" /> <br />
|
||||
Version 1.2</h1>
|
||||
<p style="text-align: center"> Semantic Personal Publishing Platform </p>
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg </p>
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://wiki.wordpress.org/">The WordPress Wiki</a></dt>
|
||||
<dd>A wiki is like a web page than anyone can contribute to, and the WordPress wiki documentation has grown rich from the many who have contributed to it. It is usually up-to-date and well-hyperlinked. The only downside is it can be hard to find your way around your first time. Use the search box at the top.</dd>
|
||||
<dt><a href="http://wordpress.org/docs/">The official documentation</a></dt>
|
||||
<dd>The documentation on wordpress.org represents the official resources we've made available. Beyond reference, this includes tutorials and guides for doing different things with WordPress. As I write this, it is a little sparse, but we're doing our best to enrich this resource so by the time you read this sentence the docs may be bursting with information. </dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often. </dd>
|
||||
<dt><a href="http://faq.wordpress.net/">Frequently Asked Questions Blog </a></dt>
|
||||
<dd>In addition to the FAQ on the wiki and the main website, there is a new FAQ blog that several members of the documentation team are updating. The FAQ itself is run with WordPress. </dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible. </dd>
|
||||
<dt><a href="http://wiki.wordpress.org/index.php/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion amoung people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (irc.freenode.net #wordpresss) </dd>
|
||||
</dl>
|
||||
<h1 id="requirements">System Recomendations </h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.1</strong> or higher</li>
|
||||
<li>MySQL version <strong>3.23.23</strong> or higher</li>
|
||||
<li>... and a link to <a href="http://wordpress.org">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>The Apache <code>mod_rewrite</code> is required for some optional functionality. </p>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>. </p>
|
||||
<h1 id="installation">Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details</li>
|
||||
<li>Save the file as <code>wp-config.php</code> </li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Launch <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather. </li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 1.2:</h2>
|
||||
<ol>
|
||||
<li>Upload the new files, and be careful not to overwrite anything important</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a></span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<p>If you are coming from 1.0 or greater, your existing templates should work perfectly. If you are coming from a version earlier than 1.0 you will need to modify your templates slightly. Use the default <code>index.php</code> as your guide. </p>
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can import from a number of systems. First you need to get WordPress installed and working as described above, then you can run one of the following import scripts:</p>
|
||||
<ul>
|
||||
<li> <a href="wp-admin/import-mt.php"> Import Movable Type </a></li>
|
||||
<li><a href="wp-admin/import-rss.php">Import RSS 2.0</a></li>
|
||||
<li><a href="wp-admin/import-blogger.php">Import Blogger</a></li>
|
||||
<li><a href="wp-admin/import-b2.php">Import b2</a></li>
|
||||
<li><a href="wp-admin/import-livejournal.php">Import LiveJournal</a></li>
|
||||
<li><a href="wp-admin/import-textpattern.php">Import Textpattern</a></li>
|
||||
<li><a href="wp-admin/import-greymatter.php">Import Greymatter </a></li>
|
||||
</ul>
|
||||
<h1 id="templates">Templates</h1>
|
||||
<p>The template tags are too numerous and flexible to adequetely document here, so please see our <a href="http://wordpress.org/docs/template/">online documentation</a>. </p>
|
||||
<h1>Query String Usage</h1>
|
||||
<p>WordPress can be manipulated quite a bit through the query string. To pass variables in the querystring, proceed the first variable name with a '?' question mark and every other variables with a '&' sign. You may never use this, but it is useful to know. </p>
|
||||
<p>index.php<strong>?m=200107</strong> will display the month of July 2001.</p>
|
||||
<p>index.php<strong>?m=20010701</strong> will display all posts from July 1st, 2001.</p>
|
||||
<p>index.php<strong>?w=20</strong> will display the posts from the 20th week of the year, where January 1st is in the first week (according to PHP).</p>
|
||||
<p>index.php<strong>?p=50</strong> will display the post labeled #50 in the database.</p>
|
||||
<p>index.php<strong>?s=blue+house</strong> will display the posts that match the search request "blue house".</p>
|
||||
<p>index.php<strong>?cat=1</strong> will display all posts that belong to category #1 (1 is the default). you can add/rename/delete categories from WordPress's interface.</p>
|
||||
<p>index.php<strong>?author=1</strong> will display all posts from the author #1</p>
|
||||
<p>index.php<strong>?p=50&page=1</strong> will display the first page of post #50. this, again, should be used only with <strong>p=</strong>, for individual entries.</p>
|
||||
<p>You can also mix these variables, example: index.php<strong>?m=200107&s=hotdog</strong> will display the posts that match the search request "hotdog", but only in July 2001.</p>
|
||||
<h1 id="xmlrpc">XML-RPC Interface</h1>
|
||||
<p>WordPress has an XMLRPC interface. We currently support the <a href="http://www.blogger.com/developers/api/1_docs/">Blogger API</a>, <a href="http://www.xmlrpc.com/metaWeblogApi">metaWeblog API</a>, and the <a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">MovableType API</a>. </p>
|
||||
<p> The <a href="http://www.blogger.com/developers/api/1_docs/">Blogger API</a> has been completely emulated on WordPress, with some little differences:</p>
|
||||
<ul>
|
||||
<li>using <em>blogger.getRecentPosts</em> with the number 'zero' returns all posts in the blog</li>
|
||||
<li><em>blogger.getTemplate</em> fetches your file $blogfilename (as specified in the config), while <em>blogger.setTemplate</em> overwrites it with the edited data</li>
|
||||
<li><em>blogger.getUsersBlogs</em> is a dummy function that returns '1' and $blogname, since WordPress supports only one blog as of now</li>
|
||||
</ul>
|
||||
<p>If you use blogger.newPost, your post is submitted without title and in category #1.</p>
|
||||
<p> However, you can type <code><title>my title</title></code> and/or <code><category>2<category></code> in the body of your post to make its title be 'my title' and its category be #2 (refer to your categories section to find out the ID numbers of the categories). b2 would then delete that extra info from the body of your post once it is posted.</p>
|
||||
<p>The <a href="http://www.xmlrpc.com/metaWeblogApi">metaWeblog</a> and <a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">MovableType</a> APIs are currently supported with the following exceptions:</p>
|
||||
<ul>
|
||||
<li>metaWeblog.newMediaObject, mt.getRecentPostTitles, and mt.getTrackbackPings are not yet implemented</li>
|
||||
<li>mt.supportedTextFilters is a dummy stub function that returns an empty string</li>
|
||||
<li>keywords are not supported in the MovableType API</li>
|
||||
</ul>
|
||||
<p>Extended entries in the <a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">MovableType API</a> are automatically converted to/from the WordPress <code><!--more--></code> tag.</p>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://blogbuddy.sourceforge.net">BlogBuddy</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://www.ubique.ch/wapblogger/">WapBlogger</a> (post from your Wap cellphone!), <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.zempt.com/">Zempt</a>, <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :)</p>
|
||||
<p>Your XMLRPC server/path are as described here: if you login to WordPress on <code>http://example.com/me/wp-login.php</code>, then you have:</p>
|
||||
<ul>
|
||||
<li>Server: <code>http://example.com/</code> (some tools will just want the 'example.com' hostname part)</li>
|
||||
<li>Path: <code>/me/xmlrpc.php</code></li>
|
||||
<li>complete URL (just in case): <code>http://example.com/me/xmlrpc.php</code></li>
|
||||
</ul>
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL. </p>
|
||||
<p> Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address dicrete. The script will <i>delete</i> emails that are successfully posted. </p>
|
||||
<h1 id="notes">User Levels </h1>
|
||||
<p>You may allow or disallow user registration in your <a href="wp-admin/options-general.php">General options</a>. If "new users can blog" is disabled you must first raise the level of a newly registered user to allow them to post. Click the plus sign next to their name on the <a href="wp-admin/users.php">Users</a> page. </p>
|
||||
<h2>User Levels</h2>
|
||||
<ul>
|
||||
<li>0 - New User </li>
|
||||
<li>1 - User can post, edit, and delete their own posts.</li>
|
||||
<li>5+ - Admin; can post, edit, delete other people's posts, and change the options.</li>
|
||||
<li>Any user whose level is higher than 1, can edit and delete the posts and change the level of lower users. Example: a level 2 user is not an admin, but can edit the posts of level 1 users, and up the level of a new user from 0 to 1.</li>
|
||||
</ul>
|
||||
<p>Usually you want to have a team of level 1 users except for you.</p>
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a></li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the documentation in the wiki. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <acronym title="GNU Public License">GPL</acronym> (see <a href="license.txt">license.txt</a>).</p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,303 +0,0 @@
|
||||
/* Default WordPress by Dave Shea || http://mezzoblue.com
|
||||
Modifications by Matthew Mullenweg || http://photomatt.net
|
||||
This is just a basic layout, with only the bare minimum defined.
|
||||
Please tweak this and make it your own. :)
|
||||
*/
|
||||
|
||||
a {
|
||||
color: #675;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #342;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #9a8;
|
||||
}
|
||||
|
||||
acronym, abbr {
|
||||
border-bottom: 1px dashed #333;
|
||||
}
|
||||
|
||||
acronym, abbr, span.caps {
|
||||
cursor: help;
|
||||
font-size: 90%;
|
||||
letter-spacing: .07em;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 5px solid #ccc;
|
||||
margin-left: 1.5em;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #fff;
|
||||
border: solid 2px #565;
|
||||
border-bottom: solid 1px #565;
|
||||
border-top: solid 3px #565;
|
||||
color: #000;
|
||||
font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
cite {
|
||||
font-size: 90%;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h2 {
|
||||
border-bottom: 1px dotted #ccc;
|
||||
font: 95% "Times New Roman", Times, serif;
|
||||
letter-spacing: 0.2em;
|
||||
margin: 15px 0 2px 0;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
border-bottom: dotted 1px #eee;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
ol#comments li p {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
p, li, .feedback {
|
||||
font: 90%/175% 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
/* classes used by the_meta() */
|
||||
ul.post-meta {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
ul.post-meta span.post-meta-key {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.credit {
|
||||
background: #90a090;
|
||||
border-top: double 3px #aba;
|
||||
color: #fff;
|
||||
font-size: 11px;
|
||||
margin: 10px 0 0 0;
|
||||
padding: 3px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.credit a:link, .credit a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.feedback {
|
||||
color: #ccc;
|
||||
text-align: right;
|
||||
clear: all;
|
||||
}
|
||||
|
||||
.meta {
|
||||
font-size: .75em;
|
||||
}
|
||||
|
||||
.meta li, ul.post-meta li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.meta ul {
|
||||
display: inline;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.meta, .meta a {
|
||||
color: #808080;
|
||||
font-weight: normal;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.storytitle {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.storytitle a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#commentform #name, #commentform #email, #commentform #url, #commentform textarea {
|
||||
background: #fff;
|
||||
border: 1px solid #333;
|
||||
padding: .2em;
|
||||
}
|
||||
|
||||
#commentform textarea {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#commentlist li ul {
|
||||
border-left: 1px solid #ddd;
|
||||
font-size: 110%;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin: 30px 13em 0 3em;
|
||||
padding-right: 60px;
|
||||
}
|
||||
|
||||
#header {
|
||||
background: #90a090;
|
||||
border-bottom: double 3px #aba;
|
||||
border-left: solid 1px #9a9;
|
||||
border-right: solid 1px #565;
|
||||
border-top: solid 1px #9a9;
|
||||
font: italic normal 230% 'Times New Roman', Times, serif;
|
||||
letter-spacing: 0.2em;
|
||||
margin: 0;
|
||||
padding: 15px 10px 15px 60px;
|
||||
}
|
||||
|
||||
#header a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#header a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#menu {
|
||||
background: #fff;
|
||||
border-left: 1px dotted #ccc;
|
||||
border-top: solid 3px #e0e6e0;
|
||||
padding: 20px 0 10px 30px;
|
||||
position: absolute;
|
||||
right: 2px;
|
||||
top: 0;
|
||||
width: 11em;
|
||||
}
|
||||
|
||||
#menu form {
|
||||
margin: 0 0 0 13px;
|
||||
}
|
||||
|
||||
#menu input#s {
|
||||
width: 80%;
|
||||
background: #eee;
|
||||
border: 1px solid #999;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#menu ul {
|
||||
color: #ccc;
|
||||
font-weight: bold;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding-left: 3px;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
|
||||
#menu ul li {
|
||||
font: italic normal 110% 'Times New Roman', Times, serif;
|
||||
letter-spacing: 0.1em;
|
||||
margin-top: 10px;
|
||||
padding-bottom: 2px; /*border-bottom: dotted 1px #ccc;*/
|
||||
}
|
||||
|
||||
#menu ul ul {
|
||||
font-variant: normal;
|
||||
font-weight: normal;
|
||||
line-height: 100%;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#menu ul ul li {
|
||||
border: 0;
|
||||
font: normal normal 70%/115% 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
letter-spacing: 0;
|
||||
margin-top: 0;
|
||||
padding: 0;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
#menu ul ul li a {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#menu ul ul li a:hover {
|
||||
border-bottom: 1px solid #809080;
|
||||
}
|
||||
|
||||
#menu ul ul ul.children {
|
||||
font-size: 142%;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
#wp-calendar {
|
||||
border: 1px solid #ddd;
|
||||
empty-cells: show;
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
#wp-calendar #next a {
|
||||
padding-right: 10px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#wp-calendar #prev a {
|
||||
padding-left: 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#wp-calendar a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#wp-calendar a:hover {
|
||||
background: #e0e6e0;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#wp-calendar caption {
|
||||
color: #999;
|
||||
font-size: 16px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#wp-calendar td {
|
||||
color: #ccc;
|
||||
font: normal 12px 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
letter-spacing: normal;
|
||||
padding: 2px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-calendar td.pad:hover {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#wp-calendar td:hover, #wp-calendar #today {
|
||||
background: #eee;
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
#wp-calendar th {
|
||||
font-style: normal;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
@@ -1,126 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress › ReadMe</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<style type="text/css" media="screen">
|
||||
<!--
|
||||
html {
|
||||
background: #eee;
|
||||
}
|
||||
body {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
font-family: Georgia, "Times New Roman", Times, serif;
|
||||
margin-left: 25%;
|
||||
margin-right: 25%;
|
||||
padding: .2em 2em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #006;
|
||||
font-size: 18px;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
p, li, dt {
|
||||
line-height: 140%;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
padding: 5px 5px 5px 20px;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1 style="text-align: center"><img alt="WordPress" src="http://wordpress.org/images/wordpress.gif" /> <br />
|
||||
Version 1.5</h1>
|
||||
<p style="text-align: center"> Semantic Personal Publishing Platform </p>
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg </p>
|
||||
|
||||
<h1 id="installation">Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details</li>
|
||||
<li>Save the file as <code>wp-config.php</code> </li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Launch <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather. </li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 1.5:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified </li>
|
||||
<li>Upload the new files</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a></span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available. </dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often. </dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web. </dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible. </dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion amoung people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (irc.freenode.net #wordpresss) </dd>
|
||||
</dl>
|
||||
|
||||
<h1 id="requirements">System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.1</strong> or higher</li>
|
||||
<li>MySQL version <strong>3.23.23</strong> or higher</li>
|
||||
<li>... and a link to <a href="http://wordpress.org">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>. </p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_from_other_blogging_software">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1 id="templates">XML-RPC Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://blogbuddy.sourceforge.net">BlogBuddy</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://www.ubique.ch/wapblogger/">WapBlogger</a> (post from your Wap cellphone!), <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.zempt.com/">Zempt</a>, <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL. </p>
|
||||
<p> Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address dicrete. The script will <i>delete</i> emails that are successfully posted. </p>
|
||||
<h1 id="notes">User Levels </h1>
|
||||
<p>You may allow or disallow user registration in your <a href="wp-admin/options-general.php">General options</a>. If "new users can blog" is disabled you must first raise the level of a newly registered user to allow them to post. Click the plus sign next to their name on the <a href="wp-admin/users.php">Users</a> page. </p>
|
||||
<h2>User Levels</h2>
|
||||
<ul>
|
||||
<li>0 - New User </li>
|
||||
<li>1 - User can post, edit, and delete their own posts.</li>
|
||||
<li>5+ - Admin; can post, edit, delete other people's posts, and change the options.</li>
|
||||
<li>Any user whose level is higher than 1, can edit and delete the posts and change the level of lower users. Example: a level 2 user is not an admin, but can edit the posts of level 1 users, and up the level of a new user from 0 to 1.</li>
|
||||
</ul>
|
||||
<p>Usually you want to have a team of level 1 users except for you.</p>
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a></li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,610 +0,0 @@
|
||||
/*
|
||||
Theme Name: WordPress Default
|
||||
Theme URI: http://wordpress.org/
|
||||
Description: The default WordPress theme based on the famous <a href="http://binarybonsai.com/kubrick/">Kubrick</a>.
|
||||
Version: 1.5
|
||||
Author: Michael Heilemann
|
||||
Author URI: http://binarybonsai.com/
|
||||
|
||||
Kubrick v1.5
|
||||
http://binarybonsai.com/kubrick/
|
||||
|
||||
This theme was designed and built by Michael Heilemann,
|
||||
whose blog you will find at http://binarybonsai.com/
|
||||
|
||||
The CSS, XHTML and design is released under GPL:
|
||||
http://www.opensource.org/licenses/gpl-license.php
|
||||
|
||||
|
||||
*** REGARDING IMAGES ***
|
||||
All CSS that involves the use of images, can be found in the 'index.php' file.
|
||||
This is to ease installation inside subdirectories of a server.
|
||||
|
||||
Have fun, and don't be afraid to contact me if you have questions.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Begin Typography & Colors */
|
||||
body {
|
||||
font-size: 62.5%; /* Resets 1em to 10px */
|
||||
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
background-color: #d5d6d7;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#page {
|
||||
background-color: white;
|
||||
border: 1px solid #959596;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#header {
|
||||
background-color: #73a0c5;
|
||||
}
|
||||
|
||||
#content {
|
||||
font-size: 1.2em
|
||||
}
|
||||
|
||||
.widecolumn .entry p {
|
||||
font-size: 1.05em;
|
||||
}
|
||||
|
||||
.narrowcolumn .entry, .widecolumn .entry {
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
.widecolumn {
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
.narrowcolumn .postmetadata {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.alt {
|
||||
background-color: #f8f8f8;
|
||||
border-top: 1px solid #ddd;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
|
||||
#footer {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
small {
|
||||
font-family: Arial, Helvetica, Sans-Serif;
|
||||
font-size: 0.9em;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.description {
|
||||
font-size: 1.2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
|
||||
h2.pagetitle {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
|
||||
#sidebar h2 {
|
||||
font-family: 'Lucida Grande', Verdana, Sans-Serif;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
h1, h1 a, h1 a:hover, h1 a:visited, .description {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, #sidebar h2, #wp-calendar caption, cite {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.entry p a:visited {
|
||||
color: #b85b5a;
|
||||
}
|
||||
|
||||
.commentlist li, #commentform input, #commentform textarea {
|
||||
font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
}
|
||||
|
||||
.commentlist li {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.commentlist cite, .commentlist cite a {
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.commentlist p {
|
||||
font-weight: normal;
|
||||
line-height: 1.5em;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
#commentform p {
|
||||
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
}
|
||||
|
||||
.commentmetadata {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
}
|
||||
|
||||
small, #sidebar ul ul li, #sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
code {
|
||||
font: 1.1em 'Courier New', Courier, Fixed;
|
||||
}
|
||||
|
||||
acronym, abbr, span.caps
|
||||
{
|
||||
font-size: 0.9em;
|
||||
letter-spacing: .07em;
|
||||
}
|
||||
|
||||
a, h2 a:hover, h3 a:hover {
|
||||
color: #06c;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #147;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#wp-calendar #prev a {
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
#wp-calendar a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#wp-calendar caption {
|
||||
font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-calendar th {
|
||||
font-style: normal;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
/* End Typography & Colors */
|
||||
|
||||
|
||||
|
||||
/* Begin Structure */
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#page {
|
||||
background-color: white;
|
||||
margin: 20px auto;
|
||||
padding: 0;
|
||||
width: 760px;
|
||||
border: 1px solid #959596;
|
||||
}
|
||||
|
||||
#header {
|
||||
padding: 0;
|
||||
margin: 0 auto;
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
background-color: #73a0c5;
|
||||
}
|
||||
|
||||
#headerimg {
|
||||
margin: 0;
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.narrowcolumn {
|
||||
float: left;
|
||||
padding: 0 0 20px 45px;
|
||||
margin: 0px 0 0;
|
||||
width: 450px;
|
||||
}
|
||||
|
||||
.widecolumn {
|
||||
padding: 10px 0 20px 0;
|
||||
margin: 5px 0 0 150px;
|
||||
width: 450px;
|
||||
}
|
||||
|
||||
.post {
|
||||
margin: 0 0 40px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.widecolumn .post {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.narrowcolumn .postmetadata {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.widecolumn .postmetadata {
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
#footer {
|
||||
padding: 0 0 0 1px;
|
||||
margin: 0 auto;
|
||||
width: 760px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
margin: 0;
|
||||
padding: 20px 0;
|
||||
text-align: center;
|
||||
}
|
||||
/* End Structure */
|
||||
|
||||
|
||||
|
||||
/* Begin Headers */
|
||||
h1 {
|
||||
padding-top: 70px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.description {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 30px 0 0;
|
||||
}
|
||||
|
||||
h2.pagetitle {
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#sidebar h2 {
|
||||
margin: 5px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
padding: 0;
|
||||
margin: 30px 0 0;
|
||||
}
|
||||
|
||||
h3.comments {
|
||||
padding: 0;
|
||||
margin: 40px auto 20px ;
|
||||
}
|
||||
/* End Headers */
|
||||
|
||||
|
||||
|
||||
/* Begin Images */
|
||||
p img {
|
||||
padding: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* Using 'class="alignright"' on an image will (who would've
|
||||
thought?!) align the image to the right. And using 'class="centered',
|
||||
will of course center the image. This is much better than using
|
||||
align="center", being much more futureproof (and valid) */
|
||||
|
||||
img.centered {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
img.alignright {
|
||||
padding: 4px;
|
||||
margin: 0 0 2px 7px;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
img.alignleft {
|
||||
padding: 4px;
|
||||
margin: 0 7px 2px 0;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.alignright {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.alignleft {
|
||||
float: left
|
||||
}
|
||||
/* End Images */
|
||||
|
||||
|
||||
|
||||
/* Begin Lists
|
||||
|
||||
Special stylized non-IE bullets
|
||||
Do not work in Internet Explorer, which merely default to normal bullets. */
|
||||
|
||||
html>body .entry ul {
|
||||
margin-left: 0px;
|
||||
padding: 0 0 0 30px;
|
||||
list-style: none;
|
||||
padding-left: 10px;
|
||||
text-indent: -10px;
|
||||
}
|
||||
|
||||
html>body .entry li {
|
||||
margin: 7px 0 8px 10px;
|
||||
}
|
||||
|
||||
.entry ul li:before, #sidebar ul ul li:before {
|
||||
content: "\00BB \0020";
|
||||
}
|
||||
|
||||
.entry ol {
|
||||
padding: 0 0 0 35px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.entry ol li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.postmetadata ul, .postmetadata li {
|
||||
display: inline;
|
||||
list-style-type: none;
|
||||
list-style-image: none;
|
||||
}
|
||||
|
||||
#sidebar ul, #sidebar ul ol {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#sidebar ul li {
|
||||
list-style-type: none;
|
||||
list-style-image: none;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#sidebar ul p, #sidebar ul select {
|
||||
margin: 5px 0 8px;
|
||||
}
|
||||
|
||||
#sidebar ul ul, #sidebar ul ol {
|
||||
margin: 5px 0 0 10px;
|
||||
}
|
||||
|
||||
#sidebar ul ul ul, #sidebar ul ol {
|
||||
margin: 0 0 0 10px;
|
||||
}
|
||||
|
||||
ol li, #sidebar ul ol li {
|
||||
list-style: decimal outside;
|
||||
}
|
||||
|
||||
#sidebar ul ul li, #sidebar ul ol li {
|
||||
margin: 3px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
/* End Entry Lists */
|
||||
|
||||
|
||||
|
||||
/* Begin Form Elements */
|
||||
#searchform {
|
||||
margin: 10px auto;
|
||||
padding: 5px 3px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#sidebar #searchform #s {
|
||||
width: 115px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#sidebar #searchsubmit {
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.entry form { /* This is mainly for password protected posts, makes them look better. */
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
select {
|
||||
width: 130px;
|
||||
}
|
||||
|
||||
#commentform input {
|
||||
width: 170px;
|
||||
padding: 2px;
|
||||
margin: 5px 5px 1px 0;
|
||||
}
|
||||
|
||||
#commentform textarea {
|
||||
width: 100%;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#commentform #submit {
|
||||
margin: 0;
|
||||
float: right;
|
||||
}
|
||||
/* End Form Elements */
|
||||
|
||||
|
||||
|
||||
/* Begin Comments*/
|
||||
.alt {
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.commentlist {
|
||||
padding: 0;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.commentlist li {
|
||||
margin: 15px 0 3px;
|
||||
padding: 5px 10px 3px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.commentlist p {
|
||||
margin: 10px 5px 10px 0;
|
||||
}
|
||||
|
||||
#commentform p {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.nocomments {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.commentmetadata {
|
||||
margin: 0;
|
||||
display: block;
|
||||
}
|
||||
/* End Comments */
|
||||
|
||||
|
||||
|
||||
/* Begin Sidebar */
|
||||
#sidebar
|
||||
{
|
||||
padding: 20px 0 10px 0;
|
||||
margin-left: 545px;
|
||||
width: 190px;
|
||||
}
|
||||
|
||||
#sidebar form {
|
||||
margin: 0;
|
||||
}
|
||||
/* End Sidebar */
|
||||
|
||||
|
||||
|
||||
/* Begin Calendar */
|
||||
#wp-calendar {
|
||||
empty-cells: show;
|
||||
margin: 10px auto 0;
|
||||
width: 155px;
|
||||
}
|
||||
|
||||
#wp-calendar #next a {
|
||||
padding-right: 10px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#wp-calendar #prev a {
|
||||
padding-left: 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#wp-calendar a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#wp-calendar caption {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#wp-calendar td {
|
||||
padding: 3px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-calendar td.pad:hover { /* Doesn't work in IE */
|
||||
background-color: #fff; }
|
||||
/* End Calendar */
|
||||
|
||||
|
||||
|
||||
/* Begin Various Tags & Classes */
|
||||
acronym, abbr, span.caps {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
acronym, abbr {
|
||||
border-bottom: 1px dashed #999;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 15px 30px 0 10px;
|
||||
padding-left: 20px;
|
||||
border-left: 5px solid #ddd;
|
||||
}
|
||||
|
||||
blockquote cite {
|
||||
margin: 5px 0 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
hr {
|
||||
display: none;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.navigation {
|
||||
display: block;
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
/* End Various Tags & Classes*/
|
||||
|
||||
|
||||
|
||||
/* "Daisy, Daisy, give me your answer do. I'm half crazy all for the love of you.
|
||||
It won't be a stylish marriage, I can't afford a carriage.
|
||||
But you'll look sweet upon the seat of a bicycle built for two." */
|
||||
@@ -1,120 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress › ReadMe</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<style type="text/css" media="screen">
|
||||
<!--
|
||||
html {
|
||||
background: #eee;
|
||||
}
|
||||
body {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
font-family: Georgia, "Times New Roman", Times, serif;
|
||||
margin-left: 25%;
|
||||
margin-right: 25%;
|
||||
padding: .2em 2em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #006;
|
||||
font-size: 18px;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
p, li, dt {
|
||||
line-height: 140%;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
padding: 5px 5px 5px 20px;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1 style="text-align: center"><img alt="WordPress" src="http://wordpress.org/images/wordpress.gif" /> <br />
|
||||
Version 2.0</h1>
|
||||
<p style="text-align: center"> Semantic Personal Publishing Platform </p>
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg </p>
|
||||
|
||||
<h1 id="installation">Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details</li>
|
||||
<li>Save the file as <code>wp-config.php</code> </li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather. </li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.0:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified </li>
|
||||
<li>Upload the new files</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a></span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available. </dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often. </dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web. </dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible. </dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion amoung people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (irc.freenode.net #wordpresss) </dd>
|
||||
</dl>
|
||||
|
||||
<h1 id="requirements">System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.1</strong> or higher</li>
|
||||
<li>MySQL version <strong>3.23.23</strong> or higher</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>. </p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_from_other_blogging_software">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1 id="templates">XML-RPC Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://blogbuddy.sourceforge.net">BlogBuddy</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://www.ubique.ch/wapblogger/">WapBlogger</a> (post from your Wap cellphone!), <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.zempt.com/">Zempt</a>, <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL. </p>
|
||||
<p> Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address dicrete. The script will <i>delete</i> emails that are successfully posted. </p>
|
||||
<h1 id="roles">User Roles </h1>
|
||||
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a></li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,622 +0,0 @@
|
||||
/*
|
||||
Theme Name: WordPress Default
|
||||
Theme URI: http://wordpress.org/
|
||||
Description: The default WordPress theme based on the famous <a href="http://binarybonsai.com/kubrick/">Kubrick</a>.
|
||||
Version: 1.5
|
||||
Author: Michael Heilemann
|
||||
Author URI: http://binarybonsai.com/
|
||||
|
||||
Kubrick v1.5
|
||||
http://binarybonsai.com/kubrick/
|
||||
|
||||
This theme was designed and built by Michael Heilemann,
|
||||
whose blog you will find at http://binarybonsai.com/
|
||||
|
||||
The CSS, XHTML and design is released under GPL:
|
||||
http://www.opensource.org/licenses/gpl-license.php
|
||||
|
||||
|
||||
*** REGARDING IMAGES ***
|
||||
All CSS that involves the use of images, can be found in the 'index.php' file.
|
||||
This is to ease installation inside subdirectories of a server.
|
||||
|
||||
Have fun, and don't be afraid to contact me if you have questions.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Begin Typography & Colors */
|
||||
body {
|
||||
font-size: 62.5%; /* Resets 1em to 10px */
|
||||
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
background-color: #d5d6d7;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#page {
|
||||
background-color: white;
|
||||
border: 1px solid #959596;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#header {
|
||||
background-color: #73a0c5;
|
||||
}
|
||||
|
||||
#content {
|
||||
font-size: 1.2em
|
||||
}
|
||||
|
||||
.widecolumn .entry p {
|
||||
font-size: 1.05em;
|
||||
}
|
||||
|
||||
.narrowcolumn .entry, .widecolumn .entry {
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
.widecolumn {
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
.narrowcolumn .postmetadata {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.alt {
|
||||
background-color: #f8f8f8;
|
||||
border-top: 1px solid #ddd;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
|
||||
#footer {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
small {
|
||||
font-family: Arial, Helvetica, Sans-Serif;
|
||||
font-size: 0.9em;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#headerimg .description {
|
||||
font-size: 1.2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
|
||||
h2.pagetitle {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
|
||||
#sidebar h2 {
|
||||
font-family: 'Lucida Grande', Verdana, Sans-Serif;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
h1, h1 a, h1 a:hover, h1 a:visited, #headerimg .description {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, #sidebar h2, #wp-calendar caption, cite {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.entry p a:visited {
|
||||
color: #b85b5a;
|
||||
}
|
||||
|
||||
.commentlist li, #commentform input, #commentform textarea {
|
||||
font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
}
|
||||
|
||||
.commentlist li {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.commentlist cite, .commentlist cite a {
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.commentlist p {
|
||||
font-weight: normal;
|
||||
line-height: 1.5em;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
#commentform p {
|
||||
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
}
|
||||
|
||||
.commentmetadata {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
}
|
||||
|
||||
small, #sidebar ul ul li, #sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
code {
|
||||
font: 1.1em 'Courier New', Courier, Fixed;
|
||||
}
|
||||
|
||||
acronym, abbr, span.caps
|
||||
{
|
||||
font-size: 0.9em;
|
||||
letter-spacing: .07em;
|
||||
}
|
||||
|
||||
a, h2 a:hover, h3 a:hover {
|
||||
color: #06c;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #147;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#wp-calendar #prev a {
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
#wp-calendar a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#wp-calendar caption {
|
||||
font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-calendar th {
|
||||
font-style: normal;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
/* End Typography & Colors */
|
||||
|
||||
|
||||
|
||||
/* Begin Structure */
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#page {
|
||||
background-color: white;
|
||||
margin: 20px auto;
|
||||
padding: 0;
|
||||
width: 760px;
|
||||
border: 1px solid #959596;
|
||||
}
|
||||
|
||||
#header {
|
||||
padding: 0;
|
||||
margin: 0 auto;
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
background-color: #73a0c5;
|
||||
}
|
||||
|
||||
#headerimg {
|
||||
margin: 0;
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.narrowcolumn {
|
||||
float: left;
|
||||
padding: 0 0 20px 45px;
|
||||
margin: 0px 0 0;
|
||||
width: 450px;
|
||||
}
|
||||
|
||||
.widecolumn {
|
||||
padding: 10px 0 20px 0;
|
||||
margin: 5px 0 0 150px;
|
||||
width: 450px;
|
||||
}
|
||||
|
||||
.post {
|
||||
margin: 0 0 40px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.widecolumn .post {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.narrowcolumn .postmetadata {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.widecolumn .postmetadata {
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.widecolumn .smallattachment {
|
||||
text-align: center;
|
||||
float: left;
|
||||
width: 128px;
|
||||
margin: 5px 5px 5px 0px;
|
||||
}
|
||||
|
||||
.widecolumn .attachment {
|
||||
text-align: center;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
|
||||
.postmetadata {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#footer {
|
||||
padding: 0 0 0 1px;
|
||||
margin: 0 auto;
|
||||
width: 760px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
margin: 0;
|
||||
padding: 20px 0;
|
||||
text-align: center;
|
||||
}
|
||||
/* End Structure */
|
||||
|
||||
|
||||
|
||||
/* Begin Headers */
|
||||
h1 {
|
||||
padding-top: 70px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 30px 0 0;
|
||||
}
|
||||
|
||||
h2.pagetitle {
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#sidebar h2 {
|
||||
margin: 5px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
padding: 0;
|
||||
margin: 30px 0 0;
|
||||
}
|
||||
|
||||
h3.comments {
|
||||
padding: 0;
|
||||
margin: 40px auto 20px ;
|
||||
}
|
||||
/* End Headers */
|
||||
|
||||
|
||||
|
||||
/* Begin Images */
|
||||
p img {
|
||||
padding: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* Using 'class="alignright"' on an image will (who would've
|
||||
thought?!) align the image to the right. And using 'class="centered',
|
||||
will of course center the image. This is much better than using
|
||||
align="center", being much more futureproof (and valid) */
|
||||
|
||||
img.centered {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
img.alignright {
|
||||
padding: 4px;
|
||||
margin: 0 0 2px 7px;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
img.alignleft {
|
||||
padding: 4px;
|
||||
margin: 0 7px 2px 0;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.alignright {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.alignleft {
|
||||
float: left
|
||||
}
|
||||
/* End Images */
|
||||
|
||||
|
||||
|
||||
/* Begin Lists
|
||||
|
||||
Special stylized non-IE bullets
|
||||
Do not work in Internet Explorer, which merely default to normal bullets. */
|
||||
|
||||
html>body .entry ul {
|
||||
margin-left: 0px;
|
||||
padding: 0 0 0 30px;
|
||||
list-style: none;
|
||||
padding-left: 10px;
|
||||
text-indent: -10px;
|
||||
}
|
||||
|
||||
html>body .entry li {
|
||||
margin: 7px 0 8px 10px;
|
||||
}
|
||||
|
||||
.entry ul li:before, #sidebar ul ul li:before {
|
||||
content: "\00BB \0020";
|
||||
}
|
||||
|
||||
.entry ol {
|
||||
padding: 0 0 0 35px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.entry ol li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.postmetadata ul, .postmetadata li {
|
||||
display: inline;
|
||||
list-style-type: none;
|
||||
list-style-image: none;
|
||||
}
|
||||
|
||||
#sidebar ul, #sidebar ul ol {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#sidebar ul li {
|
||||
list-style-type: none;
|
||||
list-style-image: none;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#sidebar ul p, #sidebar ul select {
|
||||
margin: 5px 0 8px;
|
||||
}
|
||||
|
||||
#sidebar ul ul, #sidebar ul ol {
|
||||
margin: 5px 0 0 10px;
|
||||
}
|
||||
|
||||
#sidebar ul ul ul, #sidebar ul ol {
|
||||
margin: 0 0 0 10px;
|
||||
}
|
||||
|
||||
ol li, #sidebar ul ol li {
|
||||
list-style: decimal outside;
|
||||
}
|
||||
|
||||
#sidebar ul ul li, #sidebar ul ol li {
|
||||
margin: 3px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
/* End Entry Lists */
|
||||
|
||||
|
||||
|
||||
/* Begin Form Elements */
|
||||
#searchform {
|
||||
margin: 10px auto;
|
||||
padding: 5px 3px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#sidebar #searchform #s {
|
||||
width: 115px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#sidebar #searchsubmit {
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.entry form { /* This is mainly for password protected posts, makes them look better. */
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
select {
|
||||
width: 130px;
|
||||
}
|
||||
|
||||
#commentform input {
|
||||
width: 170px;
|
||||
padding: 2px;
|
||||
margin: 5px 5px 1px 0;
|
||||
}
|
||||
|
||||
#commentform textarea {
|
||||
width: 100%;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#commentform #submit {
|
||||
margin: 0;
|
||||
float: right;
|
||||
}
|
||||
/* End Form Elements */
|
||||
|
||||
|
||||
|
||||
/* Begin Comments*/
|
||||
.alt {
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.commentlist {
|
||||
padding: 0;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.commentlist li {
|
||||
margin: 15px 0 3px;
|
||||
padding: 5px 10px 3px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.commentlist p {
|
||||
margin: 10px 5px 10px 0;
|
||||
}
|
||||
|
||||
#commentform p {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.nocomments {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.commentmetadata {
|
||||
margin: 0;
|
||||
display: block;
|
||||
}
|
||||
/* End Comments */
|
||||
|
||||
|
||||
|
||||
/* Begin Sidebar */
|
||||
#sidebar
|
||||
{
|
||||
padding: 20px 0 10px 0;
|
||||
margin-left: 545px;
|
||||
width: 190px;
|
||||
}
|
||||
|
||||
#sidebar form {
|
||||
margin: 0;
|
||||
}
|
||||
/* End Sidebar */
|
||||
|
||||
|
||||
|
||||
/* Begin Calendar */
|
||||
#wp-calendar {
|
||||
empty-cells: show;
|
||||
margin: 10px auto 0;
|
||||
width: 155px;
|
||||
}
|
||||
|
||||
#wp-calendar #next a {
|
||||
padding-right: 10px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#wp-calendar #prev a {
|
||||
padding-left: 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#wp-calendar a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#wp-calendar caption {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#wp-calendar td {
|
||||
padding: 3px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-calendar td.pad:hover { /* Doesn't work in IE */
|
||||
background-color: #fff; }
|
||||
/* End Calendar */
|
||||
|
||||
|
||||
|
||||
/* Begin Various Tags & Classes */
|
||||
acronym, abbr, span.caps {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
acronym, abbr {
|
||||
border-bottom: 1px dashed #999;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 15px 30px 0 10px;
|
||||
padding-left: 20px;
|
||||
border-left: 5px solid #ddd;
|
||||
}
|
||||
|
||||
blockquote cite {
|
||||
margin: 5px 0 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
hr {
|
||||
display: none;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.navigation {
|
||||
display: block;
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
/* End Various Tags & Classes*/
|
||||
|
||||
|
||||
|
||||
/* "Daisy, Daisy, give me your answer do. I'm half crazy all for the love of you.
|
||||
It won't be a stylish marriage, I can't afford a carriage.
|
||||
But you'll look sweet upon the seat of a bicycle built for two." */
|
||||
@@ -1,120 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress › ReadMe</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<style type="text/css" media="screen">
|
||||
<!--
|
||||
html {
|
||||
background: #eee;
|
||||
}
|
||||
body {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
font-family: Georgia, "Times New Roman", Times, serif;
|
||||
margin-left: 25%;
|
||||
margin-right: 25%;
|
||||
padding: .2em 2em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #006;
|
||||
font-size: 18px;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
p, li, dt {
|
||||
line-height: 140%;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
padding: 5px 5px 5px 20px;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1 style="text-align: center"><img alt="WordPress" src="http://wordpress.org/images/wordpress.gif" /> <br />
|
||||
Version 2.0</h1>
|
||||
<p style="text-align: center"> Semantic Personal Publishing Platform </p>
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg </p>
|
||||
|
||||
<h1 id="installation">Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details</li>
|
||||
<li>Save the file as <code>wp-config.php</code> </li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather. </li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.0:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified </li>
|
||||
<li>Upload the new files</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a></span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available. </dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often. </dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web. </dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible. </dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion amoung people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (irc.freenode.net #wordpresss) </dd>
|
||||
</dl>
|
||||
|
||||
<h1 id="requirements">System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.1</strong> or higher</li>
|
||||
<li>MySQL version <strong>3.23.23</strong> or higher</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>. </p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_from_other_blogging_software">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1 id="templates">XML-RPC Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://blogbuddy.sourceforge.net">BlogBuddy</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://www.ubique.ch/wapblogger/">WapBlogger</a> (post from your Wap cellphone!), <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.zempt.com/">Zempt</a>, <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL. </p>
|
||||
<p> Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address dicrete. The script will <i>delete</i> emails that are successfully posted. </p>
|
||||
<h1 id="roles">User Roles </h1>
|
||||
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a></li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,626 +0,0 @@
|
||||
/*
|
||||
Theme Name: WordPress Default
|
||||
Theme URI: http://wordpress.org/
|
||||
Description: The default WordPress theme based on the famous <a href="http://binarybonsai.com/kubrick/">Kubrick</a>.
|
||||
Version: 1.5
|
||||
Author: Michael Heilemann
|
||||
Author URI: http://binarybonsai.com/
|
||||
|
||||
Kubrick v1.5
|
||||
http://binarybonsai.com/kubrick/
|
||||
|
||||
This theme was designed and built by Michael Heilemann,
|
||||
whose blog you will find at http://binarybonsai.com/
|
||||
|
||||
The CSS, XHTML and design is released under GPL:
|
||||
http://www.opensource.org/licenses/gpl-license.php
|
||||
|
||||
|
||||
*** REGARDING IMAGES ***
|
||||
All CSS that involves the use of images, can be found in the 'index.php' file.
|
||||
This is to ease installation inside subdirectories of a server.
|
||||
|
||||
Have fun, and don't be afraid to contact me if you have questions.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Begin Typography & Colors */
|
||||
body {
|
||||
font-size: 62.5%; /* Resets 1em to 10px */
|
||||
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
background-color: #d5d6d7;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#page {
|
||||
background-color: white;
|
||||
border: 1px solid #959596;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#header {
|
||||
background-color: #73a0c5;
|
||||
}
|
||||
|
||||
#content {
|
||||
font-size: 1.2em
|
||||
}
|
||||
|
||||
.widecolumn .entry p {
|
||||
font-size: 1.05em;
|
||||
}
|
||||
|
||||
.narrowcolumn .entry, .widecolumn .entry {
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
.widecolumn {
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
.narrowcolumn .postmetadata {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.alt {
|
||||
background-color: #f8f8f8;
|
||||
border-top: 1px solid #ddd;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
|
||||
#footer {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
small {
|
||||
font-family: Arial, Helvetica, Sans-Serif;
|
||||
font-size: 0.9em;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.description {
|
||||
font-size: 1.2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
|
||||
h2.pagetitle {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
|
||||
#sidebar h2 {
|
||||
font-family: 'Lucida Grande', Verdana, Sans-Serif;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
h1, h1 a, h1 a:hover, h1 a:visited, .description {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, #sidebar h2, #wp-calendar caption, cite {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.entry p a:visited {
|
||||
color: #b85b5a;
|
||||
}
|
||||
|
||||
.commentlist li, #commentform input, #commentform textarea {
|
||||
font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
}
|
||||
|
||||
.commentlist li {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.commentlist cite, .commentlist cite a {
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.commentlist p {
|
||||
font-weight: normal;
|
||||
line-height: 1.5em;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
#commentform p {
|
||||
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
}
|
||||
|
||||
.commentmetadata {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
}
|
||||
|
||||
small, #sidebar ul ul li, #sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
code {
|
||||
font: 1.1em 'Courier New', Courier, Fixed;
|
||||
}
|
||||
|
||||
acronym, abbr, span.caps
|
||||
{
|
||||
font-size: 0.9em;
|
||||
letter-spacing: .07em;
|
||||
}
|
||||
|
||||
a, h2 a:hover, h3 a:hover {
|
||||
color: #06c;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #147;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#wp-calendar #prev a {
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
#wp-calendar a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#wp-calendar caption {
|
||||
font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-calendar th {
|
||||
font-style: normal;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
/* End Typography & Colors */
|
||||
|
||||
|
||||
|
||||
/* Begin Structure */
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#page {
|
||||
background-color: white;
|
||||
margin: 20px auto;
|
||||
padding: 0;
|
||||
width: 760px;
|
||||
border: 1px solid #959596;
|
||||
}
|
||||
|
||||
#header {
|
||||
padding: 0;
|
||||
margin: 0 auto;
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
background-color: #73a0c5;
|
||||
}
|
||||
|
||||
#headerimg {
|
||||
margin: 0;
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.narrowcolumn {
|
||||
float: left;
|
||||
padding: 0 0 20px 45px;
|
||||
margin: 0px 0 0;
|
||||
width: 450px;
|
||||
}
|
||||
|
||||
.widecolumn {
|
||||
padding: 10px 0 20px 0;
|
||||
margin: 5px 0 0 150px;
|
||||
width: 450px;
|
||||
}
|
||||
|
||||
.post {
|
||||
margin: 0 0 40px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.widecolumn .post {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.narrowcolumn .postmetadata {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.widecolumn .postmetadata {
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.widecolumn .smallattachment {
|
||||
text-align: center;
|
||||
float: left;
|
||||
width: 128px;
|
||||
margin: 5px 5px 5px 0px;
|
||||
}
|
||||
|
||||
.widecolumn .attachment {
|
||||
text-align: center;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
|
||||
.postmetadata {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#footer {
|
||||
padding: 0 0 0 1px;
|
||||
margin: 0 auto;
|
||||
width: 760px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
margin: 0;
|
||||
padding: 20px 0;
|
||||
text-align: center;
|
||||
}
|
||||
/* End Structure */
|
||||
|
||||
|
||||
|
||||
/* Begin Headers */
|
||||
h1 {
|
||||
padding-top: 70px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.description {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 30px 0 0;
|
||||
}
|
||||
|
||||
h2.pagetitle {
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#sidebar h2 {
|
||||
margin: 5px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
padding: 0;
|
||||
margin: 30px 0 0;
|
||||
}
|
||||
|
||||
h3.comments {
|
||||
padding: 0;
|
||||
margin: 40px auto 20px ;
|
||||
}
|
||||
/* End Headers */
|
||||
|
||||
|
||||
|
||||
/* Begin Images */
|
||||
p img {
|
||||
padding: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* Using 'class="alignright"' on an image will (who would've
|
||||
thought?!) align the image to the right. And using 'class="centered',
|
||||
will of course center the image. This is much better than using
|
||||
align="center", being much more futureproof (and valid) */
|
||||
|
||||
img.centered {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
img.alignright {
|
||||
padding: 4px;
|
||||
margin: 0 0 2px 7px;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
img.alignleft {
|
||||
padding: 4px;
|
||||
margin: 0 7px 2px 0;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.alignright {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.alignleft {
|
||||
float: left
|
||||
}
|
||||
/* End Images */
|
||||
|
||||
|
||||
|
||||
/* Begin Lists
|
||||
|
||||
Special stylized non-IE bullets
|
||||
Do not work in Internet Explorer, which merely default to normal bullets. */
|
||||
|
||||
html>body .entry ul {
|
||||
margin-left: 0px;
|
||||
padding: 0 0 0 30px;
|
||||
list-style: none;
|
||||
padding-left: 10px;
|
||||
text-indent: -10px;
|
||||
}
|
||||
|
||||
html>body .entry li {
|
||||
margin: 7px 0 8px 10px;
|
||||
}
|
||||
|
||||
.entry ul li:before, #sidebar ul ul li:before {
|
||||
content: "\00BB \0020";
|
||||
}
|
||||
|
||||
.entry ol {
|
||||
padding: 0 0 0 35px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.entry ol li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.postmetadata ul, .postmetadata li {
|
||||
display: inline;
|
||||
list-style-type: none;
|
||||
list-style-image: none;
|
||||
}
|
||||
|
||||
#sidebar ul, #sidebar ul ol {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#sidebar ul li {
|
||||
list-style-type: none;
|
||||
list-style-image: none;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#sidebar ul p, #sidebar ul select {
|
||||
margin: 5px 0 8px;
|
||||
}
|
||||
|
||||
#sidebar ul ul, #sidebar ul ol {
|
||||
margin: 5px 0 0 10px;
|
||||
}
|
||||
|
||||
#sidebar ul ul ul, #sidebar ul ol {
|
||||
margin: 0 0 0 10px;
|
||||
}
|
||||
|
||||
ol li, #sidebar ul ol li {
|
||||
list-style: decimal outside;
|
||||
}
|
||||
|
||||
#sidebar ul ul li, #sidebar ul ol li {
|
||||
margin: 3px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
/* End Entry Lists */
|
||||
|
||||
|
||||
|
||||
/* Begin Form Elements */
|
||||
#searchform {
|
||||
margin: 10px auto;
|
||||
padding: 5px 3px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#sidebar #searchform #s {
|
||||
width: 115px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#sidebar #searchsubmit {
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.entry form { /* This is mainly for password protected posts, makes them look better. */
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
select {
|
||||
width: 130px;
|
||||
}
|
||||
|
||||
#commentform input {
|
||||
width: 170px;
|
||||
padding: 2px;
|
||||
margin: 5px 5px 1px 0;
|
||||
}
|
||||
|
||||
#commentform textarea {
|
||||
width: 100%;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#commentform #submit {
|
||||
margin: 0;
|
||||
float: right;
|
||||
}
|
||||
/* End Form Elements */
|
||||
|
||||
|
||||
|
||||
/* Begin Comments*/
|
||||
.alt {
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.commentlist {
|
||||
padding: 0;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.commentlist li {
|
||||
margin: 15px 0 3px;
|
||||
padding: 5px 10px 3px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.commentlist p {
|
||||
margin: 10px 5px 10px 0;
|
||||
}
|
||||
|
||||
#commentform p {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.nocomments {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.commentmetadata {
|
||||
margin: 0;
|
||||
display: block;
|
||||
}
|
||||
/* End Comments */
|
||||
|
||||
|
||||
|
||||
/* Begin Sidebar */
|
||||
#sidebar
|
||||
{
|
||||
padding: 20px 0 10px 0;
|
||||
margin-left: 545px;
|
||||
width: 190px;
|
||||
}
|
||||
|
||||
#sidebar form {
|
||||
margin: 0;
|
||||
}
|
||||
/* End Sidebar */
|
||||
|
||||
|
||||
|
||||
/* Begin Calendar */
|
||||
#wp-calendar {
|
||||
empty-cells: show;
|
||||
margin: 10px auto 0;
|
||||
width: 155px;
|
||||
}
|
||||
|
||||
#wp-calendar #next a {
|
||||
padding-right: 10px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#wp-calendar #prev a {
|
||||
padding-left: 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#wp-calendar a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#wp-calendar caption {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#wp-calendar td {
|
||||
padding: 3px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-calendar td.pad:hover { /* Doesn't work in IE */
|
||||
background-color: #fff; }
|
||||
/* End Calendar */
|
||||
|
||||
|
||||
|
||||
/* Begin Various Tags & Classes */
|
||||
acronym, abbr, span.caps {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
acronym, abbr {
|
||||
border-bottom: 1px dashed #999;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 15px 30px 0 10px;
|
||||
padding-left: 20px;
|
||||
border-left: 5px solid #ddd;
|
||||
}
|
||||
|
||||
blockquote cite {
|
||||
margin: 5px 0 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
hr {
|
||||
display: none;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.navigation {
|
||||
display: block;
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
/* End Various Tags & Classes*/
|
||||
|
||||
|
||||
|
||||
/* "Daisy, Daisy, give me your answer do. I'm half crazy all for the love of you.
|
||||
It won't be a stylish marriage, I can't afford a carriage.
|
||||
But you'll look sweet upon the seat of a bicycle built for two." */
|
||||
@@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress › ReadMe</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" href="wp-admin/install.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo" style="text-align: center">
|
||||
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
|
||||
<br /> Version 2.2
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code></li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.2:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1>System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.2</strong> or higher.</li>
|
||||
<li>MySQL version <strong>4.0</strong> or higher.</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1>XML-RPC and Atom Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://windowslivewriter.spaces.live.com/">Windows Live Writer</a>, <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address dicrete. The script will <i>delete</i> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,100 +0,0 @@
|
||||
var WPAjax = Class.create();
|
||||
Object.extend(WPAjax.prototype, Ajax.Request.prototype);
|
||||
Object.extend(WPAjax.prototype, {
|
||||
WPComplete: false, // onComplete function
|
||||
WPError: false, // onWPError function
|
||||
defaultUrl: '', // We get these from WPAjaxL10n
|
||||
permText: '',
|
||||
strangeText: '',
|
||||
whoaText: '',
|
||||
|
||||
initialize: function(url, responseEl) {
|
||||
var tempObj = this;
|
||||
this.transport = Ajax.getTransport();
|
||||
if ( !this.transport )
|
||||
return false;
|
||||
this.setOptions( {
|
||||
parameters: 'cookie=' + encodeURIComponent(document.cookie),
|
||||
onComplete: function(transport) { // transport = XMLHttpRequest object
|
||||
if ( tempObj.parseAjaxResponse() ) {
|
||||
if ( 'function' == typeof tempObj.WPComplete )
|
||||
tempObj.WPComplete(transport);
|
||||
} else if ( 'function' == typeof tempObj.WPError ) // if response corresponds to an error (bad data, say, not 404)
|
||||
tempObj.WPError(transport);
|
||||
}
|
||||
});
|
||||
this.url = url ? url : this.defaultUrl;
|
||||
this.getResponseElement(responseEl);
|
||||
},
|
||||
addArg: function(key, value) {
|
||||
var a = [];
|
||||
a[encodeURIComponent(key)] = encodeURIComponent(value);
|
||||
this.options.parameters = $H(this.options.parameters).merge($H(a));
|
||||
},
|
||||
getResponseElement: function(r) {
|
||||
var p = $(r + '-p');
|
||||
if ( !p ) {
|
||||
new Insertion.Bottom(r, "<span id='" + r + "-p'></span>");
|
||||
var p = $(r + '-p');
|
||||
}
|
||||
this.myResponseElement = p;
|
||||
},
|
||||
parseAjaxResponse: function() { // 1 = good, 0 = strange (bad data?), -1 = you lack permission
|
||||
if ( this.transport.responseXML && typeof this.transport.responseXML == 'object' && ( this.transport.responseXML.xml || 'undefined' == typeof this.transport.responseXML.xml ) ) {
|
||||
var err = this.transport.responseXML.getElementsByTagName('wp_error');
|
||||
if ( err[0] ) {
|
||||
var msg = $A(err).inject( '', function(a, b) { return a + '<p>' + b.firstChild.nodeValue + '</p>'; } );
|
||||
Element.update(this.myResponseElement,'<div class="error">' + msg + '</div>');
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
var r = this.transport.responseText;
|
||||
if ( isNaN(r) ) {
|
||||
Element.update(this.myResponseElement,'<div class="error"><p>' + r + '</p></div>');
|
||||
return false;
|
||||
}
|
||||
var r = parseInt(r,10);
|
||||
if ( -1 == r ) {
|
||||
Element.update(this.myResponseElement,"<div class='error'><p>" + this.permText + "</p></div>");
|
||||
return false;
|
||||
} else if ( 0 == r ) {
|
||||
Element.update(this.myResponseElement,"<div class='error'><p>" + this.strangeText + "</p></div>");
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
},
|
||||
addOnComplete: function(f) {
|
||||
if ( 'function' == typeof f ) { var of = this.WPComplete; this.WPComplete = function(t) { if ( of ) of(t); f(t); } }
|
||||
},
|
||||
addOnWPError: function(f) {
|
||||
if ( 'function' == typeof f ) { var of = this.WPError; this.WPError = function(t) { if ( of ) of(t); f(t); } }
|
||||
},
|
||||
notInitialized: function() {
|
||||
return this.transport ? false : true;
|
||||
}
|
||||
});
|
||||
|
||||
Event.observe( window, 'load', function() { Object.extend(WPAjax.prototype, WPAjaxL10n); }, false )
|
||||
|
||||
Ajax.activeSendCount = 0;
|
||||
Ajax.Responders.register( {
|
||||
onCreate: function() {
|
||||
Ajax.activeSendCount++;
|
||||
if ( 1 != Ajax.activeSendCount )
|
||||
return;
|
||||
wpBeforeUnload = window.onbeforeunload;
|
||||
window.onbeforeunload = function() {
|
||||
return WPAjax.whoaText;
|
||||
}
|
||||
},
|
||||
onLoading: function() { // Can switch to onLoaded if we lose data
|
||||
Ajax.activeSendCount--;
|
||||
if ( 0 != Ajax.activeSendCount )
|
||||
return;
|
||||
window.onbeforeunload = wpBeforeUnload;
|
||||
}
|
||||
});
|
||||
|
||||
//Pretty func adapted from ALA http://www.alistapart.com/articles/gettingstartedwithajax
|
||||
function getNodeValue(tree,el){try { var r = tree.getElementsByTagName(el)[0].firstChild.nodeValue; } catch(err) { var r = null; } return r; }
|
||||
@@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo" style="text-align: center">
|
||||
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
|
||||
<br /> Version 2.5
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code></li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.5:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1>System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.3</strong> or higher.</li>
|
||||
<li>MySQL version <strong>4.0</strong> or higher.</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1>XML-RPC and Atom Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://windowslivewriter.spaces.live.com/">Windows Live Writer</a>, <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,254 +0,0 @@
|
||||
var ImageDialog = {
|
||||
preInit : function() {
|
||||
var url;
|
||||
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
if (url = tinyMCEPopup.getParam("external_image_list_url"))
|
||||
document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>');
|
||||
},
|
||||
|
||||
init : function() {
|
||||
var f = document.forms[0], ed = tinyMCEPopup.editor;
|
||||
|
||||
// Setup browse button
|
||||
document.getElementById('srcbrowsercontainer').innerHTML = getBrowserHTML('srcbrowser','src','image','theme_advanced_image');
|
||||
if (isVisible('srcbrowser'))
|
||||
document.getElementById('src').style.width = '180px';
|
||||
|
||||
e = ed.selection.getNode();
|
||||
|
||||
this.fillFileList('image_list', 'tinyMCEImageList');
|
||||
|
||||
if (e.nodeName == 'IMG') {
|
||||
f.src.value = ed.dom.getAttrib(e, 'src');
|
||||
f.alt.value = ed.dom.getAttrib(e, 'alt');
|
||||
f.border.value = this.getAttrib(e, 'border');
|
||||
f.vspace.value = this.getAttrib(e, 'vspace');
|
||||
f.hspace.value = this.getAttrib(e, 'hspace');
|
||||
f.width.value = ed.dom.getAttrib(e, 'width');
|
||||
f.height.value = ed.dom.getAttrib(e, 'height');
|
||||
f.insert.value = ed.getLang('update');
|
||||
f.class_name.value = ed.dom.getAttrib(e, 'class');
|
||||
this.styleVal = ed.dom.getAttrib(e, 'style');
|
||||
selectByValue(f, 'image_list', f.src.value);
|
||||
selectByValue(f, 'align', this.getAttrib(e, 'align'));
|
||||
this.updateStyle();
|
||||
}
|
||||
},
|
||||
|
||||
fillFileList : function(id, l) {
|
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl;
|
||||
|
||||
l = window[l];
|
||||
|
||||
if (l && l.length > 0) {
|
||||
lst.options[lst.options.length] = new Option('', '');
|
||||
|
||||
tinymce.each(l, function(o) {
|
||||
lst.options[lst.options.length] = new Option(o[0], o[1]);
|
||||
});
|
||||
} else
|
||||
dom.remove(dom.getParent(id, 'tr'));
|
||||
},
|
||||
|
||||
update : function() {
|
||||
var f = document.forms[0], nl = f.elements, ed = tinyMCEPopup.editor, args = {}, el;
|
||||
|
||||
tinyMCEPopup.restoreSelection();
|
||||
|
||||
if (f.src.value === '') {
|
||||
if (ed.selection.getNode().nodeName == 'IMG') {
|
||||
ed.dom.remove(ed.selection.getNode());
|
||||
ed.execCommand('mceRepaint');
|
||||
}
|
||||
|
||||
tinyMCEPopup.close();
|
||||
return;
|
||||
}
|
||||
|
||||
if (!ed.settings.inline_styles) {
|
||||
args = tinymce.extend(args, {
|
||||
vspace : nl.vspace.value,
|
||||
hspace : nl.hspace.value,
|
||||
border : nl.border.value,
|
||||
align : getSelectValue(f, 'align')
|
||||
});
|
||||
} else
|
||||
args.style = this.styleVal;
|
||||
|
||||
tinymce.extend(args, {
|
||||
src : f.src.value,
|
||||
alt : f.alt.value,
|
||||
width : f.width.value,
|
||||
height : f.height.value,
|
||||
'class' : f.class_name.value
|
||||
});
|
||||
|
||||
el = ed.selection.getNode();
|
||||
|
||||
if (el && el.nodeName == 'IMG') {
|
||||
ed.dom.setAttribs(el, args);
|
||||
} else {
|
||||
ed.execCommand('mceInsertContent', false, '<img id="__mce_tmp" src="javascript:;" />', {skip_undo : 1});
|
||||
ed.dom.setAttribs('__mce_tmp', args);
|
||||
ed.dom.setAttrib('__mce_tmp', 'id', '');
|
||||
ed.undoManager.add();
|
||||
}
|
||||
|
||||
tinyMCEPopup.close();
|
||||
},
|
||||
|
||||
updateStyle : function() {
|
||||
var dom = tinyMCEPopup.dom, st, v, cls, oldcls, rep, f = document.forms[0];
|
||||
|
||||
if (tinyMCEPopup.editor.settings.inline_styles) {
|
||||
st = tinyMCEPopup.dom.parseStyle(this.styleVal);
|
||||
|
||||
// Handle align
|
||||
v = getSelectValue(f, 'align');
|
||||
cls = f.class_name.value || '';
|
||||
cls = cls ? cls.replace(/alignright\s*|alignleft\s*|aligncenter\s*/g, '') : '';
|
||||
cls = cls ? cls.replace(/^\s*(.+?)\s*$/, '$1') : '';
|
||||
if (v) {
|
||||
if (v == 'left' || v == 'right') {
|
||||
st['float'] = v;
|
||||
delete st['vertical-align'];
|
||||
oldcls = cls ? ' '+cls : '';
|
||||
f.class_name.value = 'align' + v + oldcls;
|
||||
} else {
|
||||
st['vertical-align'] = v;
|
||||
delete st['float'];
|
||||
f.class_name.value = cls;
|
||||
}
|
||||
} else {
|
||||
delete st['float'];
|
||||
delete st['vertical-align'];
|
||||
f.class_name.value = cls;
|
||||
}
|
||||
|
||||
// Handle border
|
||||
v = f.border.value;
|
||||
if (v || v == '0') {
|
||||
if (v == '0')
|
||||
st['border'] = '0';
|
||||
else
|
||||
st['border'] = v + 'px solid black';
|
||||
} else
|
||||
delete st['border'];
|
||||
|
||||
// Handle hspace
|
||||
v = f.hspace.value;
|
||||
if (v) {
|
||||
delete st['margin'];
|
||||
st['margin-left'] = v + 'px';
|
||||
st['margin-right'] = v + 'px';
|
||||
} else {
|
||||
delete st['margin-left'];
|
||||
delete st['margin-right'];
|
||||
}
|
||||
|
||||
// Handle vspace
|
||||
v = f.vspace.value;
|
||||
if (v) {
|
||||
delete st['margin'];
|
||||
st['margin-top'] = v + 'px';
|
||||
st['margin-bottom'] = v + 'px';
|
||||
} else {
|
||||
delete st['margin-top'];
|
||||
delete st['margin-bottom'];
|
||||
}
|
||||
|
||||
// Merge
|
||||
st = tinyMCEPopup.dom.parseStyle(dom.serializeStyle(st));
|
||||
this.styleVal = dom.serializeStyle(st);
|
||||
}
|
||||
},
|
||||
|
||||
getAttrib : function(e, at) {
|
||||
var ed = tinyMCEPopup.editor, dom = ed.dom, v, v2;
|
||||
|
||||
if (ed.settings.inline_styles) {
|
||||
switch (at) {
|
||||
case 'align':
|
||||
if (v = dom.getStyle(e, 'float'))
|
||||
return v;
|
||||
|
||||
if (v = dom.getStyle(e, 'vertical-align'))
|
||||
return v;
|
||||
|
||||
break;
|
||||
|
||||
case 'hspace':
|
||||
v = dom.getStyle(e, 'margin-left')
|
||||
v2 = dom.getStyle(e, 'margin-right');
|
||||
if (v && v == v2)
|
||||
return parseInt(v.replace(/[^0-9]/g, ''));
|
||||
|
||||
break;
|
||||
|
||||
case 'vspace':
|
||||
v = dom.getStyle(e, 'margin-top')
|
||||
v2 = dom.getStyle(e, 'margin-bottom');
|
||||
if (v && v == v2)
|
||||
return parseInt(v.replace(/[^0-9]/g, ''));
|
||||
|
||||
break;
|
||||
|
||||
case 'border':
|
||||
v = 0;
|
||||
|
||||
tinymce.each(['top', 'right', 'bottom', 'left'], function(sv) {
|
||||
sv = dom.getStyle(e, 'border-' + sv + '-width');
|
||||
|
||||
// False or not the same as prev
|
||||
if (!sv || (sv != v && v !== 0)) {
|
||||
v = 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
if (sv)
|
||||
v = sv;
|
||||
});
|
||||
|
||||
if (v)
|
||||
return parseInt(v.replace(/[^0-9]/g, ''));
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (v = dom.getAttrib(e, at))
|
||||
return v;
|
||||
|
||||
return '';
|
||||
},
|
||||
|
||||
resetImageData : function() {
|
||||
var f = document.forms[0];
|
||||
|
||||
f.width.value = f.height.value = "";
|
||||
},
|
||||
|
||||
updateImageData : function() {
|
||||
var f = document.forms[0], t = ImageDialog;
|
||||
|
||||
if (f.width.value == "")
|
||||
f.width.value = t.preloadImg.width;
|
||||
|
||||
if (f.height.value == "")
|
||||
f.height.value = t.preloadImg.height;
|
||||
},
|
||||
|
||||
getImageData : function() {
|
||||
var f = document.forms[0];
|
||||
|
||||
this.preloadImg = new Image();
|
||||
this.preloadImg.onload = this.updateImageData;
|
||||
this.preloadImg.onerror = this.resetImageData;
|
||||
this.preloadImg.src = tinyMCEPopup.editor.documentBaseURI.toAbsolute(f.src.value);
|
||||
}
|
||||
};
|
||||
|
||||
ImageDialog.preInit();
|
||||
tinyMCEPopup.onInit.add(ImageDialog.init, ImageDialog);
|
||||
@@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo" style="text-align: center">
|
||||
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
|
||||
<br /> Version 2.5
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code></li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.5:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1>System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.3</strong> or higher.</li>
|
||||
<li>MySQL version <strong>4.0</strong> or higher.</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1>XML-RPC and Atom Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://windowslivewriter.spaces.live.com/">Windows Live Writer</a>, <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,126 +0,0 @@
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
var LinkDialog = {
|
||||
preInit : function() {
|
||||
var url;
|
||||
|
||||
if (url = tinyMCEPopup.getParam("external_link_list_url"))
|
||||
document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>');
|
||||
},
|
||||
|
||||
init : function() {
|
||||
var f = document.forms[0], ed = tinyMCEPopup.editor;
|
||||
|
||||
// Setup browse button
|
||||
document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser', 'href', 'file', 'theme_advanced_link');
|
||||
if (isVisible('hrefbrowser'))
|
||||
document.getElementById('href').style.width = '180px';
|
||||
|
||||
this.fillClassList('class_list');
|
||||
this.fillFileList('link_list', 'tinyMCELinkList');
|
||||
this.fillTargetList('target_list');
|
||||
|
||||
if (e = ed.dom.getParent(ed.selection.getNode(), 'A')) {
|
||||
f.href.value = ed.dom.getAttrib(e, 'href');
|
||||
f.linktitle.value = ed.dom.getAttrib(e, 'title');
|
||||
f.insert.value = ed.getLang('update');
|
||||
selectByValue(f, 'link_list', f.href.value);
|
||||
selectByValue(f, 'target_list', ed.dom.getAttrib(e, 'target'));
|
||||
selectByValue(f, 'class_list', ed.dom.getAttrib(e, 'class'));
|
||||
}
|
||||
},
|
||||
|
||||
update : function() {
|
||||
var f = document.forms[0], ed = tinyMCEPopup.editor, e, b;
|
||||
|
||||
tinyMCEPopup.restoreSelection();
|
||||
|
||||
// Remove element if there is no href
|
||||
if (!f.href.value) {
|
||||
e = ed.dom.getParent(ed.selection.getNode(), 'A');
|
||||
if (e) {
|
||||
tinyMCEPopup.execCommand("mceBeginUndoLevel");
|
||||
b = ed.selection.getBookmark();
|
||||
ed.dom.remove(e, 1);
|
||||
ed.selection.moveToBookmark(b);
|
||||
tinyMCEPopup.execCommand("mceEndUndoLevel");
|
||||
tinyMCEPopup.close();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
ed.execCommand('mceInsertLink', false, {
|
||||
href : f.href.value,
|
||||
title : f.linktitle.value,
|
||||
target : f.target_list ? f.target_list.options[f.target_list.selectedIndex].value : null,
|
||||
'class' : f.class_list ? f.class_list.options[f.class_list.selectedIndex].value : null
|
||||
});
|
||||
|
||||
tinyMCEPopup.close();
|
||||
},
|
||||
|
||||
checkPrefix : function(n) {
|
||||
if (n.value && Validator.isEmail(n) && !/^\s*mailto:/i.test(n.value) && confirm(tinyMCEPopup.getLang('advanced_dlg.link_is_email')))
|
||||
n.value = 'mailto:' + n.value;
|
||||
|
||||
if (/^\s*www./i.test(n.value) && confirm(tinyMCEPopup.getLang('advanced_dlg.link_is_external')))
|
||||
n.value = 'http://' + n.value;
|
||||
},
|
||||
|
||||
fillFileList : function(id, l) {
|
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl;
|
||||
|
||||
l = window[l];
|
||||
|
||||
if (l && l.length > 0) {
|
||||
lst.options[lst.options.length] = new Option('', '');
|
||||
|
||||
tinymce.each(l, function(o) {
|
||||
lst.options[lst.options.length] = new Option(o[0], o[1]);
|
||||
});
|
||||
} else
|
||||
dom.remove(dom.getParent(id, 'tr'));
|
||||
},
|
||||
|
||||
fillClassList : function(id) {
|
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl;
|
||||
|
||||
if (v = tinyMCEPopup.getParam('theme_advanced_styles')) {
|
||||
cl = [];
|
||||
|
||||
tinymce.each(v.split(';'), function(v) {
|
||||
var p = v.split('=');
|
||||
|
||||
cl.push({'title' : p[0], 'class' : p[1]});
|
||||
});
|
||||
} else
|
||||
cl = tinyMCEPopup.editor.dom.getClasses();
|
||||
|
||||
if (cl.length > 0) {
|
||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), '');
|
||||
|
||||
tinymce.each(cl, function(o) {
|
||||
lst.options[lst.options.length] = new Option(o.title || o['class'], o['class']);
|
||||
});
|
||||
} else
|
||||
dom.remove(dom.getParent(id, 'tr'));
|
||||
},
|
||||
|
||||
fillTargetList : function(id) {
|
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v;
|
||||
|
||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), '');
|
||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('advanced_dlg.link_target_same'), '_self');
|
||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('advanced_dlg.link_target_blank'), '_blank');
|
||||
|
||||
if (v = tinyMCEPopup.getParam('theme_advanced_link_targets')) {
|
||||
tinymce.each(v.split(','), function(v) {
|
||||
v = v.split('=');
|
||||
lst.options[lst.options.length] = new Option(v[0], v[1]);
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
LinkDialog.preInit();
|
||||
tinyMCEPopup.onInit.add(LinkDialog.init, LinkDialog);
|
||||
@@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo" style="text-align: center">
|
||||
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
|
||||
<br /> Version 2.6
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code></li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.6:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1>System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.3</strong> or higher.</li>
|
||||
<li>MySQL version <strong>4.0</strong> or higher.</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1>XML-RPC and Atom Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://windowslivewriter.spaces.live.com/">Windows Live Writer</a>, <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,222 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "042b5463d848123f945c211604b14c38_20080710a",
|
||||
"entries" : [
|
||||
{ "url" : "js/common.js?ver=20080318" },
|
||||
{ "url" : "../wp-includes/js/tw-sack.js?ver=1.6.1" },
|
||||
{ "url" : "../wp-includes/js/quicktags.js?ver=3958" },
|
||||
{ "url" : "../wp-includes/js/colorpicker.js?ver=3517" },
|
||||
{ "url" : "js/editor.js?ver=20080710" },
|
||||
{ "url" : "../wp-includes/js/prototype.js?ver=1.6" },
|
||||
{ "url" : "../wp-includes/js/wp-ajax-response.js?ver=20080316" },
|
||||
{ "url" : "../wp-includes/js/autosave.js?ver=20080622" },
|
||||
{ "url" : "../wp-includes/js/wp-lists.js?ver=20080411" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/scriptaculous.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/builder.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/dragdrop.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/effects.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/slider.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/sound.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/controls.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/crop/cropper.js?ver=20070118" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.js?ver=1.2.6" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.form.js?ver=2.02" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.color.js?ver=2.0-4561" },
|
||||
{ "url" : "../wp-includes/js/jquery/interface.js?ver=1.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/suggest.js?ver=1.1b" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.schedule.js?ver=20" },
|
||||
{ "url" : "../wp-includes/js/thickbox/thickbox.js?ver=3.1-20080430" },
|
||||
{ "url" : "../wp-includes/js/swfupload/swfupload.js?ver=2.0.2-20080430" },
|
||||
{ "url" : "../wp-includes/js/swfupload/plugins/swfupload.graceful_degradation.js?ver=2.0.2" },
|
||||
{ "url" : "../wp-includes/js/swfupload/plugins/swfupload.queue.js?ver=2.0.2" },
|
||||
{ "url" : "../wp-includes/js/swfupload/handlers.js?ver=2.0.2-20080407" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.core.js?ver=1.5.1" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.tabs.js?ver=1.5.1" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.sortable.js?ver=1.5.1" },
|
||||
{ "url" : "js/cat.js?ver=20071101" },
|
||||
{ "url" : "js/categories.js?ver=20071031" },
|
||||
{ "url" : "js/tags.js?ver=20071031" },
|
||||
{ "url" : "js/custom-fields.js?ver=20070823" },
|
||||
{ "url" : "js/password-strength-meter.js?ver=20070405" },
|
||||
{ "url" : "js/edit-comments.js?ver=20080311" },
|
||||
{ "url" : "js/users.js?ver=20070823" },
|
||||
{ "url" : "js/forms.js?ver=20080401" },
|
||||
{ "url" : "js/xfn.js?ver=3517" },
|
||||
{ "url" : "js/upload.js?ver=20070518" },
|
||||
{ "url" : "js/postbox.js?ver=20080128" },
|
||||
{ "url" : "js/slug.js?ver=20080208" },
|
||||
{ "url" : "js/post.js?ver=20080629" },
|
||||
{ "url" : "js/page.js?ver=20080318" },
|
||||
{ "url" : "js/link.js?ver=20080131" },
|
||||
{ "url" : "js/comment.js?ver=20080219" },
|
||||
{ "url" : "js/gallery.js?ver=20080709" },
|
||||
{ "url" : "js/media-upload.js?ver=20080710" },
|
||||
{ "url" : "js/widgets.js?ver=20080503" },
|
||||
{ "url" : "js/word-count.js?ver=20080423" },
|
||||
{ "url" : "js/wp-gears.js?ver=20080511" },
|
||||
{ "url" : "js/theme-preview.js?ver=20080625" },
|
||||
{ "url" : "wp-admin.css?ver=2.6" },
|
||||
{ "url" : "rtl.css?ver=2.6" },
|
||||
{ "url" : "css/ie.css?ver=2.6" },
|
||||
{ "url" : "css/ie-rtl.css?ver=2.6" },
|
||||
{ "url" : "css/colors-classic.css?ver=2.6" },
|
||||
{ "url" : "css/colors-classic-rtl.css?ver=2.6" },
|
||||
{ "url" : "css/colors-fresh.css?ver=2.6" },
|
||||
{ "url" : "css/colors-fresh-rtl.css?ver=2.6" },
|
||||
{ "url" : "css/global.css?ver=2.6" },
|
||||
{ "url" : "css/global-rtl.css?ver=2.6" },
|
||||
{ "url" : "css/media.css?ver=20080709" },
|
||||
{ "url" : "css/media-rtl.css?ver=20080709" },
|
||||
{ "url" : "css/widgets.css?ver=2.6" },
|
||||
{ "url" : "css/widgets-rtl.css?ver=2.6" },
|
||||
{ "url" : "css/dashboard.css?ver=2.6" },
|
||||
{ "url" : "css/dashboard-rtl.css?ver=2.6" },
|
||||
{ "url" : "css/install.css?ver=20080708" },
|
||||
{ "url" : "css/install-rtl.css?ver=20080708" },
|
||||
{ "url" : "css/theme-editor.css?ver=2.6" },
|
||||
{ "url" : "css/theme-editor-rtl.css?ver=2.6" },
|
||||
{ "url" : "css/press-this.css?ver=20080710" },
|
||||
{ "url" : "css/press-this-rtl.css?ver=20080710" },
|
||||
{ "url" : "css/press-this-ie.css?ver=20080710" },
|
||||
{ "url" : "css/press-this-ie-rtl.css?ver=20080710" },
|
||||
{ "url" : "../wp-includes/js/thickbox/thickbox.css?ver=20080613" },
|
||||
{ "url" : "css/login.css?ver=2.6" },
|
||||
{ "url" : "css/login-rtl.css?ver=2.6" },
|
||||
|
||||
{ "url" : "images/align-center.png" },
|
||||
{ "url" : "images/align-left.png" },
|
||||
{ "url" : "images/align-none.png" },
|
||||
{ "url" : "images/align-right.png" },
|
||||
{ "url" : "images/browse-happy.gif" },
|
||||
{ "url" : "images/bubble_bg.gif" },
|
||||
{ "url" : "images/comment-grey-bubble.png" },
|
||||
{ "url" : "images/comment-pill.gif" },
|
||||
{ "url" : "images/comment-stalk-classic.gif" },
|
||||
{ "url" : "images/comment-stalk-fresh.gif" },
|
||||
{ "url" : "images/comment-stalk-rtl.gif" },
|
||||
{ "url" : "images/date-button.gif" },
|
||||
{ "url" : "images/fade-butt.png" },
|
||||
{ "url" : "images/gear.png" },
|
||||
{ "url" : "images/logo-ghost.png" },
|
||||
{ "url" : "images/logo-login.gif" },
|
||||
{ "url" : "images/logo.gif" },
|
||||
{ "url" : "images/media-button-gallery.gif" },
|
||||
{ "url" : "images/media-button-image.gif" },
|
||||
{ "url" : "images/media-button-music.gif" },
|
||||
{ "url" : "images/media-button-other.gif" },
|
||||
{ "url" : "images/media-button-video.gif" },
|
||||
{ "url" : "images/media-buttons.gif" },
|
||||
{ "url" : "images/tab.png" },
|
||||
{ "url" : "images/tail.gif" },
|
||||
{ "url" : "images/toggle-arrow-rtl.gif" },
|
||||
{ "url" : "images/toggle-arrow.gif" },
|
||||
{ "url" : "images/wordpress-logo.png" },
|
||||
{ "url" : "images/xit.gif" },
|
||||
{ "url" : "images/loading-publish.gif" },
|
||||
{ "url" : "images/loading.gif" },
|
||||
{ "url" : "images/required.gif" },
|
||||
{ "url" : "images/no.png" },
|
||||
{ "url" : "images/yes.png" },
|
||||
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/code.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/default.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/document.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/text.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/video.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png" },
|
||||
{ "url" : "../wp-includes/images/rss.png" },
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif" },
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png" },
|
||||
{ "url" : "../wp-includes/js/swfupload/swfupload_f9.swf" },
|
||||
|
||||
{ "url" : "../wp-includes/js/tinymce/tiny_mce_popup.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/utils/mctabs.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/utils/validate.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/utils/form_utils.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/utils/editable_selects.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/js/pasteword.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/js/pastetext.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/js/media.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/color_picker.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/charmap.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/image.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/link.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/source_editor.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/anchor.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js?ver=311d" },
|
||||
{ "url" : "../wp-includes/js/tinymce/tiny_mce.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/editor_template.js?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/editor_plugin.js?ver=311" },
|
||||
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/source_editor.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/anchor.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/image.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/link.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/color_picker.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/charmap.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/media.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/pasteword.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/blank.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/pastetext.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/fullscreen/fullscreen.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/template.htm?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/editimage.html?ver=311d" },
|
||||
{ "url" : "../wp-includes/js/tinymce/wp-mce-help.php?ver=311" },
|
||||
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/ui.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/dialog.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/window.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/spellchecker/css/content.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/css/content.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/css/content.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/css/media.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/css/pasteword.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/css/blank.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage.css?ver=311d" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage-rtl.css?ver=311" },
|
||||
{ "url" : "../wp-includes/js/tinymce/wordpress.css?ver=311" },
|
||||
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/icons.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/colorpicker.jpg" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/fm.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/gotmoxie.png" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/sflogo.png" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/butt2.png" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/fade-butt.png" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/tabs.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/down_arrow.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/default/img/progress.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/default/img/menu_check.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/drag.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/flash.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/flv_player.swf" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/quicktime.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/realmedia.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/shockwave.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/windowsmedia.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/trans.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/more.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/more_bug.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/page.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/page_bug.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/toolbars.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/img/image.png" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/img/delete.png" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/help.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/image.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/media.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/video.gif" },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/audio.gif" }
|
||||
]}
|
||||
@@ -1,217 +0,0 @@
|
||||
|
||||
(function() {
|
||||
tinymce.create('tinymce.plugins.wpEditImage', {
|
||||
|
||||
init : function(ed, url) {
|
||||
var t = this;
|
||||
|
||||
t.url = url;
|
||||
t._createButtons();
|
||||
|
||||
// Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('...');
|
||||
ed.addCommand('WP_EditImage', function() {
|
||||
var el = ed.selection.getNode();
|
||||
|
||||
if ( ed.dom.getAttrib(el, 'class').indexOf('mceItem') != -1 || el.nodeName != 'IMG' )
|
||||
return;
|
||||
|
||||
tb_show('', url + '/editimage.html?ver=311c&TB_iframe=true');
|
||||
tinymce.DOM.setStyle( ['TB_overlay','TB_window','TB_load'], 'z-index', '999999' );
|
||||
});
|
||||
|
||||
ed.onInit.add(function(ed) {
|
||||
tinymce.dom.Event.add(ed.getWin(), 'scroll', function(e) {
|
||||
ed.plugins.wpeditimage.hideButtons();
|
||||
});
|
||||
});
|
||||
|
||||
ed.onBeforeExecCommand.add(function(ed, cmd, ui, val) {
|
||||
ed.plugins.wpeditimage.hideButtons();
|
||||
});
|
||||
|
||||
ed.onSaveContent.add(function(ed, o) {
|
||||
ed.plugins.wpeditimage.hideButtons();
|
||||
});
|
||||
|
||||
ed.onMouseUp.add(function(ed, e) {
|
||||
if ( tinymce.isOpera ) {
|
||||
if ( e.target.nodeName == 'IMG' )
|
||||
ed.plugins.wpeditimage.showButtons(e.target);
|
||||
} else if ( ! tinymce.isWebKit ) {
|
||||
var n = ed.selection.getNode(), DL;
|
||||
|
||||
if ( n.nodeName == 'IMG' && (DL = ed.dom.getParent(n, 'DL')) ) {
|
||||
window.setTimeout(function(){
|
||||
var ed = tinyMCE.activeEditor, n = ed.selection.getNode(), DL = ed.dom.getParent(n, 'DL');
|
||||
|
||||
if ( n.width != (parseInt(ed.dom.getStyle(DL, 'width')) - 10) ) {
|
||||
ed.dom.setStyle(DL, 'width', parseInt(n.width)+10);
|
||||
ed.execCommand('mceRepaint');
|
||||
}
|
||||
}, 100);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
ed.onMouseDown.add(function(ed, e) {
|
||||
if ( tinymce.isOpera || e.target.nodeName != 'IMG' ) {
|
||||
t.hideButtons();
|
||||
return;
|
||||
}
|
||||
ed.plugins.wpeditimage.showButtons(e.target);
|
||||
});
|
||||
|
||||
ed.onKeyPress.add(function(ed, e) {
|
||||
var DL, DIV;
|
||||
|
||||
if ( e.keyCode == 13 && (DL = ed.dom.getParent(ed.selection.getNode(), 'DL')) ) {
|
||||
var P = ed.dom.create('p', {}, ' ');
|
||||
if ( (DIV = DL.parentNode) && DIV.nodeName == 'DIV' )
|
||||
ed.dom.insertAfter( P, DIV );
|
||||
else ed.dom.insertAfter( P, DL );
|
||||
|
||||
tinymce.dom.Event.cancel(e);
|
||||
ed.selection.select(P);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
ed.onBeforeSetContent.add(function(ed, o) {
|
||||
o.content = t._do_shcode(o.content);
|
||||
});
|
||||
|
||||
ed.onPostProcess.add(function(ed, o) {
|
||||
if (o.get)
|
||||
o.content = t._get_shcode(o.content);
|
||||
});
|
||||
},
|
||||
|
||||
_do_shcode : function(co) {
|
||||
return co.replace(/\[(?:wp_)?caption([^\]]+)\]([\s\S]+?)\[\/(?:wp_)?caption\][\s\u00a0]*/g, function(a,b,c){
|
||||
b = b.replace(/\\'|\\'|\\'/g, ''').replace(/\\"|\\"/g, '"');
|
||||
c = c.replace(/\\'|\\'/g, ''').replace(/\\"/g, '"');
|
||||
var id = b.match(/id=['"]([^'"]+)/i), cls = b.match(/align=['"]([^'"]+)/i);
|
||||
var w = b.match(/width=['"]([0-9]+)/), cap = b.match(/caption=['"]([^'"]+)/i);
|
||||
|
||||
id = ( id && id[1] ) ? id[1] : '';
|
||||
cls = ( cls && cls[1] ) ? cls[1] : 'alignnone';
|
||||
w = ( w && w[1] ) ? w[1] : '';
|
||||
cap = ( cap && cap[1] ) ? cap[1] : '';
|
||||
if ( ! w || ! cap ) return c;
|
||||
|
||||
var div_cls = (cls == 'aligncenter') ? 'mceTemp mceIEcenter' : 'mceTemp';
|
||||
|
||||
return '<div class="'+div_cls+'"><dl id="'+id+'" class="wp-caption '+cls+'" style="width: '+(10+parseInt(w))+
|
||||
'px"><dt class="wp-caption-dt">'+c+'</dt><dd class="wp-caption-dd">'+cap+'</dd></dl></div>';
|
||||
});
|
||||
},
|
||||
|
||||
_get_shcode : function(co) {
|
||||
return co.replace(/<div class="mceTemp[^"]*">\s*<dl([^>]+)>\s*<dt[^>]+>([\s\S]+?)<\/dt>\s*<dd[^>]+>(.+?)<\/dd>\s*<\/dl>\s*<\/div>\s*/gi, function(a,b,c,cap){
|
||||
var id = b.match(/id=['"]([^'"]+)/i), cls = b.match(/class=['"]([^'"]+)/i);
|
||||
var w = c.match(/width=['"]([0-9]+)/);
|
||||
|
||||
id = ( id && id[1] ) ? id[1] : '';
|
||||
cls = ( cls && cls[1] ) ? cls[1] : 'alignnone';
|
||||
w = ( w && w[1] ) ? w[1] : '';
|
||||
|
||||
if ( ! w || ! cap ) return c;
|
||||
cls = cls.match(/align[^ '"]+/) || 'alignnone';
|
||||
cap = cap.replace(/<\S[^<>]*>/gi, '').replace(/'/g, ''').replace(/"/g, '"');
|
||||
|
||||
return '[caption id="'+id+'" align="'+cls+'" width="'+w+'" caption="'+cap+'"]'+c+'[/caption]';
|
||||
});
|
||||
},
|
||||
|
||||
showButtons : function(n) {
|
||||
var t = this, ed = tinyMCE.activeEditor, p1, p2, vp, DOM = tinymce.DOM, X, Y;
|
||||
|
||||
if (ed.dom.getAttrib(n, 'class').indexOf('mceItem') != -1)
|
||||
return;
|
||||
|
||||
vp = ed.dom.getViewPort(ed.getWin());
|
||||
p1 = DOM.getPos(ed.getContentAreaContainer());
|
||||
p2 = ed.dom.getPos(n);
|
||||
|
||||
X = Math.max(p2.x - vp.x, 0) + p1.x;
|
||||
Y = Math.max(p2.y - vp.y, 0) + p1.y;
|
||||
|
||||
DOM.setStyles('wp_editbtns', {
|
||||
'top' : Y+5+'px',
|
||||
'left' : X+5+'px',
|
||||
'display' : 'block'
|
||||
});
|
||||
|
||||
t.btnsTout = window.setTimeout( function(){ed.plugins.wpeditimage.hideButtons();}, 5000 );
|
||||
},
|
||||
|
||||
hideButtons : function() {
|
||||
if ( tinymce.DOM.isHidden('wp_editbtns') ) return;
|
||||
|
||||
tinymce.DOM.hide('wp_editbtns');
|
||||
window.clearTimeout(this.btnsTout);
|
||||
},
|
||||
|
||||
_createButtons : function() {
|
||||
var t = this, ed = tinyMCE.activeEditor, DOM = tinymce.DOM;
|
||||
|
||||
DOM.remove('wp_editbtns');
|
||||
|
||||
var wp_editbtns = DOM.add(document.body, 'div', {
|
||||
id : 'wp_editbtns',
|
||||
style : 'display:none;'
|
||||
});
|
||||
|
||||
var wp_editimgbtn = DOM.add('wp_editbtns', 'img', {
|
||||
src : t.url+'/img/image.png',
|
||||
id : 'wp_editimgbtn',
|
||||
width : '24',
|
||||
height : '24',
|
||||
title : ed.getLang('wpeditimage.edit_img')
|
||||
});
|
||||
|
||||
wp_editimgbtn.onmousedown = function(e) {
|
||||
var ed = tinyMCE.activeEditor;
|
||||
ed.windowManager.bookmark = ed.selection.getBookmark('simple');
|
||||
ed.execCommand("WP_EditImage");
|
||||
this.parentNode.style.display = 'none';
|
||||
};
|
||||
|
||||
var wp_delimgbtn = DOM.add('wp_editbtns', 'img', {
|
||||
src : t.url+'/img/delete.png',
|
||||
id : 'wp_delimgbtn',
|
||||
width : '24',
|
||||
height : '24',
|
||||
title : ed.getLang('wpeditimage.del_img')
|
||||
});
|
||||
|
||||
wp_delimgbtn.onmousedown = function(e) {
|
||||
var ed = tinyMCE.activeEditor, el = ed.selection.getNode(), p;
|
||||
|
||||
if ( el.nodeName == 'IMG' && ed.dom.getAttrib(el, 'class').indexOf('mceItem') == -1 ) {
|
||||
if ( (p = ed.dom.getParent(el, 'div')) && ed.dom.hasClass(p, 'mceTemp') )
|
||||
ed.dom.remove(p);
|
||||
else if ( (p = ed.dom.getParent(el, 'A')) && p.childNodes.length == 1 )
|
||||
ed.dom.remove(p);
|
||||
else ed.dom.remove(el);
|
||||
|
||||
this.parentNode.style.display = 'none';
|
||||
ed.execCommand('mceRepaint');
|
||||
return false;
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
getInfo : function() {
|
||||
return {
|
||||
longname : 'Edit Image',
|
||||
author : 'WordPress',
|
||||
authorurl : 'http://wordpress.org',
|
||||
infourl : '',
|
||||
version : "1.0"
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
tinymce.PluginManager.add('wpeditimage', tinymce.plugins.wpEditImage);
|
||||
})();
|
||||
@@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo" style="text-align: center">
|
||||
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
|
||||
<br /> Version 2.7
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code></li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.7:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1>System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.3</strong> or higher.</li>
|
||||
<li>MySQL version <strong>4.0</strong> or higher.</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1>XML-RPC and Atom Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://windowslivewriter.spaces.live.com/">Windows Live Writer</a>, <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,172 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "4b51a58d4927f3b7d9212528af2c121c_20081201",
|
||||
"entries" : [
|
||||
{ "url" : "js/common.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/tw-sack.js?ver=1.6.1" },
|
||||
{ "url" : "../wp-includes/js/quicktags.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/colorpicker.js?ver=3517" },
|
||||
{ "url" : "js/editor.js?ver=20081129" },
|
||||
{ "url" : "../wp-includes/js/prototype.js?ver=1.6" },
|
||||
{ "url" : "../wp-includes/js/wp-ajax-response.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/autosave.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/wp-lists.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/wp-scriptaculous.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/builder.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/dragdrop.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/effects.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/slider.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/sound.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/controls.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/crop/cropper.js?ver=20070118" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.js?ver=1.2.6" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.form.js?ver=2.02" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.color.js?ver=2.0-4561" },
|
||||
{ "url" : "../wp-includes/js/jquery/interface.js?ver=1.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/suggest.js?ver=1.1b" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.schedule.js?ver=20" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.hotkeys.js?ver=0.0.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.table-hotkeys.js?ver=20081128" },
|
||||
{ "url" : "../wp-includes/js/thickbox/thickbox.js?ver=3.1-20090123" },
|
||||
{ "url" : "../wp-includes/js/swfupload/swfupload.js?ver=2.2.0-20081031" },
|
||||
{ "url" : "../wp-includes/js/swfupload/plugins/swfupload.graceful_degradation.js?ver=2.2.0-20081031" },
|
||||
{ "url" : "../wp-includes/js/swfupload/plugins/swfupload.swfobject.js?ver=2.2.0-20081031" },
|
||||
{ "url" : "../wp-includes/js/swfupload/plugins/swfupload.queue.js?ver=2.2.0-20081031" },
|
||||
{ "url" : "../wp-includes/js/swfupload/handlers.js?ver=2.2.0-20081201" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.core.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.tabs.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.sortable.js?ver=1.5.2c" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.draggable.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.resizable.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.dialog.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/comment-reply.js?ver=20081210" },
|
||||
{ "url" : "js/cat.js?ver=20081210" },
|
||||
{ "url" : "js/categories.js?ver=20081210" },
|
||||
{ "url" : "js/tags.js?ver=20081210" },
|
||||
{ "url" : "js/custom-fields.js?ver=20081210" },
|
||||
{ "url" : "js/password-strength-meter.js?ver=20081210" },
|
||||
{ "url" : "js/edit-comments.js?ver=20081210" },
|
||||
{ "url" : "js/users.js?ver=20081210" },
|
||||
{ "url" : "js/xfn.js?ver=3517" },
|
||||
{ "url" : "js/postbox.js?ver=20081210" },
|
||||
{ "url" : "js/slug.js?ver=20081210" },
|
||||
{ "url" : "js/post.js?ver=20081210" },
|
||||
{ "url" : "js/page.js?ver=20081210" },
|
||||
{ "url" : "js/link.js?ver=20081210" },
|
||||
{ "url" : "js/comment.js?ver=20081210" },
|
||||
{ "url" : "js/gallery.js?ver=20081210" },
|
||||
{ "url" : "js/media-upload.js?ver=20081210" },
|
||||
{ "url" : "js/widgets.js?ver=20081210" },
|
||||
{ "url" : "js/word-count.js?ver=20081210" },
|
||||
{ "url" : "js/wp-gears.js?ver=20081210" },
|
||||
{ "url" : "js/theme-preview.js?ver=20081210" },
|
||||
{ "url" : "js/inline-edit-post.js?ver=20081210" },
|
||||
{ "url" : "js/inline-edit-tax.js?ver=20081210" },
|
||||
{ "url" : "js/plugin-install.js?ver=20081210" },
|
||||
{ "url" : "js/farbtastic.js?ver=1.2" },
|
||||
{ "url" : "js/dashboard.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/hoverIntent.js?ver=20081210" },
|
||||
{ "url" : "wp-admin.css?ver=20081210" },
|
||||
{ "url" : "rtl.css?ver=20081210" },
|
||||
{ "url" : "css/ie.css?ver=20081210" },
|
||||
{ "url" : "css/ie-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/colors-classic.css?ver=20081210" },
|
||||
{ "url" : "css/colors-classic-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/colors-fresh.css?ver=20081210" },
|
||||
{ "url" : "css/colors-fresh-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/colors-classic.css?ver=20081210" },
|
||||
{ "url" : "css/colors-classic-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/global.css?ver=20081210" },
|
||||
{ "url" : "css/global-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/media.css?ver=20081210" },
|
||||
{ "url" : "css/media-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/widgets.css?ver=20081210" },
|
||||
{ "url" : "css/widgets-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/dashboard.css?ver=20081210" },
|
||||
{ "url" : "css/dashboard-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/install.css?ver=20081210" },
|
||||
{ "url" : "css/install-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/theme-editor.css?ver=20081210" },
|
||||
{ "url" : "css/theme-editor-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/press-this.css?ver=20081210" },
|
||||
{ "url" : "css/press-this-rtl.css?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/thickbox/thickbox.css?ver=20081210" },
|
||||
{ "url" : "css/login.css?ver=20081210" },
|
||||
{ "url" : "css/login-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/plugin-install.css?ver=20081210" },
|
||||
{ "url" : "css/plugin-install-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/farbtastic.css?ver=1.2" },
|
||||
{ "url" : "css/farbtastic-rtl.css?ver=1.2" },
|
||||
|
||||
{ "url" : "images/align-center.png" },
|
||||
{ "url" : "images/align-left.png" },
|
||||
{ "url" : "images/align-none.png" },
|
||||
{ "url" : "images/align-right.png" },
|
||||
{ "url" : "images/archive-link.png" },
|
||||
{ "url" : "images/blue-grad.png" },
|
||||
{ "url" : "images/browse-happy.gif" },
|
||||
{ "url" : "images/bubble_bg.gif" },
|
||||
{ "url" : "images/bubble_bg-rtl.gif" },
|
||||
{ "url" : "images/button-grad.png" },
|
||||
{ "url" : "images/button-grad-active.png" },
|
||||
{ "url" : "images/comment-grey-bubble.png" },
|
||||
{ "url" : "images/date-button.gif" },
|
||||
{ "url" : "images/ed-bg.gif" },
|
||||
{ "url" : "images/fade-butt.png" },
|
||||
{ "url" : "images/fav.png" },
|
||||
{ "url" : "images/fav-arrow.gif" },
|
||||
{ "url" : "images/fav-arrow-rtl.gif" },
|
||||
{ "url" : "images/fav-top.png" },
|
||||
{ "url" : "images/generic.png" },
|
||||
{ "url" : "images/gray-grad.png" },
|
||||
{ "url" : "images/icons32.png" },
|
||||
{ "url" : "images/icons32-vs.png" },
|
||||
{ "url" : "images/list.png" },
|
||||
{ "url" : "images/list-vs.png" },
|
||||
{ "url" : "images/loading.gif" },
|
||||
{ "url" : "images/loading-publish.gif" },
|
||||
{ "url" : "images/logo.gif" },
|
||||
{ "url" : "images/logo-ghost.png" },
|
||||
{ "url" : "images/logo-login.gif" },
|
||||
{ "url" : "images/media-button-image.gif" },
|
||||
{ "url" : "images/media-button-music.gif" },
|
||||
{ "url" : "images/media-button-other.gif" },
|
||||
{ "url" : "images/media-button-video.gif" },
|
||||
{ "url" : "images/menu.png" },
|
||||
{ "url" : "images/menu-vs.png" },
|
||||
{ "url" : "images/menu-arrows.gif" },
|
||||
{ "url" : "images/menu-bits.gif" },
|
||||
{ "url" : "images/menu-bits-rtl.gif" },
|
||||
{ "url" : "images/menu-dark.gif" },
|
||||
{ "url" : "images/menu-dark-rtl.gif" },
|
||||
{ "url" : "images/no.png" },
|
||||
{ "url" : "images/required.gif" },
|
||||
{ "url" : "images/resize.gif" },
|
||||
{ "url" : "images/screen-options-left.gif" },
|
||||
{ "url" : "images/screen-options-right.gif" },
|
||||
{ "url" : "images/screen-options-right-up.gif" },
|
||||
{ "url" : "images/se.png" },
|
||||
{ "url" : "images/star.gif" },
|
||||
{ "url" : "images/toggle-arrow.gif" },
|
||||
{ "url" : "images/toggle-arrow-rtl.gif" },
|
||||
{ "url" : "images/white-grad.png" },
|
||||
{ "url" : "images/white-grad-active.png" },
|
||||
{ "url" : "images/wordpress-logo.png" },
|
||||
{ "url" : "images/wp-logo.gif" },
|
||||
{ "url" : "images/xit.gif" },
|
||||
{ "url" : "images/yes.png" },
|
||||
|
||||
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/code.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/default.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/document.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/text.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/video.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png" },
|
||||
{ "url" : "../wp-includes/images/rss.png" },
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif" },
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png" }
|
||||
]}
|
||||
@@ -1,60 +0,0 @@
|
||||
var wpAjax = jQuery.extend( {
|
||||
unserialize: function( s ) {
|
||||
var r = {}; if ( !s ) { return r; }
|
||||
var q = s.split('?'); if ( q[1] ) { s = q[1]; }
|
||||
var pp = s.split('&');
|
||||
for ( var i in pp ) {
|
||||
if ( jQuery.isFunction(pp.hasOwnProperty) && !pp.hasOwnProperty(i) ) { continue; }
|
||||
var p = pp[i].split('=');
|
||||
r[p[0]] = p[1];
|
||||
}
|
||||
return r;
|
||||
},
|
||||
parseAjaxResponse: function( x, r, e ) { // 1 = good, 0 = strange (bad data?), -1 = you lack permission
|
||||
var parsed = {};
|
||||
var re = jQuery('#' + r).html('');
|
||||
if ( x && typeof x == 'object' && x.getElementsByTagName('wp_ajax') ) {
|
||||
parsed.responses = [];
|
||||
parsed.errors = false;
|
||||
var err = '';
|
||||
jQuery('response', x).each( function() {
|
||||
var th = jQuery(this);
|
||||
var child = jQuery(this.firstChild);
|
||||
var response = { action: th.attr('action'), what: child.get(0).nodeName, id: child.attr('id'), oldId: child.attr('old_id'), position: child.attr('position') };
|
||||
response.data = jQuery( 'response_data', child ).text();
|
||||
response.supplemental = {};
|
||||
if ( !jQuery( 'supplemental', child ).children().each( function() {
|
||||
response.supplemental[this.nodeName] = jQuery(this).text();
|
||||
} ).size() ) { response.supplemental = false }
|
||||
response.errors = [];
|
||||
if ( !jQuery('wp_error', child).each( function() {
|
||||
var code = jQuery(this).attr('code');
|
||||
var anError = { code: code, message: this.firstChild.nodeValue, data: false };
|
||||
var errorData = jQuery('wp_error_data[code="' + code + '"]', x);
|
||||
if ( errorData ) { anError.data = errorData.get(); }
|
||||
var formField = jQuery( 'form-field', errorData ).text();
|
||||
if ( formField ) { code = formField; }
|
||||
if ( e ) { wpAjax.invalidateForm( jQuery('#' + e + ' :input[name="' + code + '"]' ).parents('.form-field:first') ); }
|
||||
err += '<p>' + anError.message + '</p>';
|
||||
response.errors.push( anError );
|
||||
parsed.errors = true;
|
||||
} ).size() ) { response.errors = false; }
|
||||
parsed.responses.push( response );
|
||||
} );
|
||||
if ( err.length ) { re.html( '<div class="error">' + err + '</div>' ); }
|
||||
return parsed;
|
||||
}
|
||||
if ( isNaN(x) ) { return !re.html('<div class="error"><p>' + x + '</p></div>'); }
|
||||
x = parseInt(x,10);
|
||||
if ( -1 == x ) { return !re.html('<div class="error"><p>' + wpAjax.noPerm + '</p></div>'); }
|
||||
else if ( 0 === x ) { return !re.html('<div class="error"><p>' + wpAjax.broken + '</p></div>'); }
|
||||
return true;
|
||||
},
|
||||
invalidateForm: function ( selector ) {
|
||||
return jQuery( selector ).addClass( 'form-invalid' ).change( function() { jQuery(this).removeClass( 'form-invalid' ); } );
|
||||
},
|
||||
validateForm: function( selector ) {
|
||||
selector = jQuery( selector );
|
||||
return !wpAjax.invalidateForm( selector.find('.form-required').andSelf().filter('.form-required:has(:input[value=""]), .form-required:input[value=""]') ).size();
|
||||
}
|
||||
}, wpAjax || { noPerm: 'You do not have permission to do that.', broken: 'An unidentified error has occurred.' } );
|
||||
@@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo" style="text-align: center">
|
||||
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
|
||||
<br /> Version 2.7
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code></li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.7:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1>System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.3</strong> or higher.</li>
|
||||
<li>MySQL version <strong>4.0</strong> or higher.</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1>XML-RPC and Atom Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://windowslivewriter.spaces.live.com/">Windows Live Writer</a>, <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,172 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "c15b142b7f4676d28007b378f3d92e3a_20081201",
|
||||
"entries" : [
|
||||
{ "url" : "js/common.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/tw-sack.js?ver=1.6.1" },
|
||||
{ "url" : "../wp-includes/js/quicktags.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/colorpicker.js?ver=3517" },
|
||||
{ "url" : "js/editor.js?ver=20081129" },
|
||||
{ "url" : "../wp-includes/js/prototype.js?ver=1.6" },
|
||||
{ "url" : "../wp-includes/js/wp-ajax-response.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/autosave.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/wp-lists.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/wp-scriptaculous.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/builder.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/dragdrop.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/effects.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/slider.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/sound.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/scriptaculous/controls.js?ver=1.8.0" },
|
||||
{ "url" : "../wp-includes/js/crop/cropper.js?ver=20070118" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.js?ver=1.2.6" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.form.js?ver=2.02" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.color.js?ver=2.0-4561" },
|
||||
{ "url" : "../wp-includes/js/jquery/interface.js?ver=1.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/suggest.js?ver=1.1b" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.schedule.js?ver=20" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.hotkeys.js?ver=0.0.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/jquery.table-hotkeys.js?ver=20081128" },
|
||||
{ "url" : "../wp-includes/js/thickbox/thickbox.js?ver=3.1-20080430" },
|
||||
{ "url" : "../wp-includes/js/swfupload/swfupload.js?ver=2.2.0-20081031" },
|
||||
{ "url" : "../wp-includes/js/swfupload/plugins/swfupload.graceful_degradation.js?ver=2.2.0-20081031" },
|
||||
{ "url" : "../wp-includes/js/swfupload/plugins/swfupload.swfobject.js?ver=2.2.0-20081031" },
|
||||
{ "url" : "../wp-includes/js/swfupload/plugins/swfupload.queue.js?ver=2.2.0-20081031" },
|
||||
{ "url" : "../wp-includes/js/swfupload/handlers.js?ver=2.2.0-20081201" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.core.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.tabs.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.sortable.js?ver=1.5.2c" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.draggable.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.resizable.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/jquery/ui.dialog.js?ver=1.5.2" },
|
||||
{ "url" : "../wp-includes/js/comment-reply.js?ver=20081210" },
|
||||
{ "url" : "js/cat.js?ver=20081210" },
|
||||
{ "url" : "js/categories.js?ver=20081210" },
|
||||
{ "url" : "js/tags.js?ver=20081210" },
|
||||
{ "url" : "js/custom-fields.js?ver=20081210" },
|
||||
{ "url" : "js/password-strength-meter.js?ver=20081210" },
|
||||
{ "url" : "js/edit-comments.js?ver=20081210" },
|
||||
{ "url" : "js/users.js?ver=20081210" },
|
||||
{ "url" : "js/xfn.js?ver=3517" },
|
||||
{ "url" : "js/postbox.js?ver=20081210" },
|
||||
{ "url" : "js/slug.js?ver=20081210" },
|
||||
{ "url" : "js/post.js?ver=20081210" },
|
||||
{ "url" : "js/page.js?ver=20081210" },
|
||||
{ "url" : "js/link.js?ver=20081210" },
|
||||
{ "url" : "js/comment.js?ver=20081210" },
|
||||
{ "url" : "js/gallery.js?ver=20081210" },
|
||||
{ "url" : "js/media-upload.js?ver=20081210" },
|
||||
{ "url" : "js/widgets.js?ver=20081210" },
|
||||
{ "url" : "js/word-count.js?ver=20081210" },
|
||||
{ "url" : "js/wp-gears.js?ver=20081210" },
|
||||
{ "url" : "js/theme-preview.js?ver=20081210" },
|
||||
{ "url" : "js/inline-edit-post.js?ver=20081210" },
|
||||
{ "url" : "js/inline-edit-tax.js?ver=20081210" },
|
||||
{ "url" : "js/plugin-install.js?ver=20081210" },
|
||||
{ "url" : "js/farbtastic.js?ver=1.2" },
|
||||
{ "url" : "js/dashboard.js?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/hoverIntent.js?ver=20081210" },
|
||||
{ "url" : "wp-admin.css?ver=20081210" },
|
||||
{ "url" : "rtl.css?ver=20081210" },
|
||||
{ "url" : "css/ie.css?ver=20081210" },
|
||||
{ "url" : "css/ie-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/colors-classic.css?ver=20081210" },
|
||||
{ "url" : "css/colors-classic-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/colors-fresh.css?ver=20081210" },
|
||||
{ "url" : "css/colors-fresh-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/colors-classic.css?ver=20081210" },
|
||||
{ "url" : "css/colors-classic-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/global.css?ver=20081210" },
|
||||
{ "url" : "css/global-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/media.css?ver=20081210" },
|
||||
{ "url" : "css/media-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/widgets.css?ver=20081210" },
|
||||
{ "url" : "css/widgets-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/dashboard.css?ver=20081210" },
|
||||
{ "url" : "css/dashboard-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/install.css?ver=20081210" },
|
||||
{ "url" : "css/install-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/theme-editor.css?ver=20081210" },
|
||||
{ "url" : "css/theme-editor-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/press-this.css?ver=20081210" },
|
||||
{ "url" : "css/press-this-rtl.css?ver=20081210" },
|
||||
{ "url" : "../wp-includes/js/thickbox/thickbox.css?ver=20081210" },
|
||||
{ "url" : "css/login.css?ver=20081210" },
|
||||
{ "url" : "css/login-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/plugin-install.css?ver=20081210" },
|
||||
{ "url" : "css/plugin-install-rtl.css?ver=20081210" },
|
||||
{ "url" : "css/farbtastic.css?ver=1.2" },
|
||||
{ "url" : "css/farbtastic-rtl.css?ver=1.2" },
|
||||
|
||||
{ "url" : "images/align-center.png" },
|
||||
{ "url" : "images/align-left.png" },
|
||||
{ "url" : "images/align-none.png" },
|
||||
{ "url" : "images/align-right.png" },
|
||||
{ "url" : "images/archive-link.png" },
|
||||
{ "url" : "images/blue-grad.png" },
|
||||
{ "url" : "images/browse-happy.gif" },
|
||||
{ "url" : "images/bubble_bg.gif" },
|
||||
{ "url" : "images/bubble_bg-rtl.gif" },
|
||||
{ "url" : "images/button-grad.png" },
|
||||
{ "url" : "images/button-grad-active.png" },
|
||||
{ "url" : "images/comment-grey-bubble.png" },
|
||||
{ "url" : "images/date-button.gif" },
|
||||
{ "url" : "images/ed-bg.gif" },
|
||||
{ "url" : "images/fade-butt.png" },
|
||||
{ "url" : "images/fav.png" },
|
||||
{ "url" : "images/fav-arrow.gif" },
|
||||
{ "url" : "images/fav-arrow-rtl.gif" },
|
||||
{ "url" : "images/fav-top.png" },
|
||||
{ "url" : "images/generic.png" },
|
||||
{ "url" : "images/gray-grad.png" },
|
||||
{ "url" : "images/icons32.png" },
|
||||
{ "url" : "images/icons32-vs.png" },
|
||||
{ "url" : "images/list.png" },
|
||||
{ "url" : "images/list-vs.png" },
|
||||
{ "url" : "images/loading.gif" },
|
||||
{ "url" : "images/loading-publish.gif" },
|
||||
{ "url" : "images/logo.gif" },
|
||||
{ "url" : "images/logo-ghost.png" },
|
||||
{ "url" : "images/logo-login.gif" },
|
||||
{ "url" : "images/media-button-image.gif" },
|
||||
{ "url" : "images/media-button-music.gif" },
|
||||
{ "url" : "images/media-button-other.gif" },
|
||||
{ "url" : "images/media-button-video.gif" },
|
||||
{ "url" : "images/menu.png" },
|
||||
{ "url" : "images/menu-vs.png" },
|
||||
{ "url" : "images/menu-arrows.gif" },
|
||||
{ "url" : "images/menu-bits.gif" },
|
||||
{ "url" : "images/menu-bits-rtl.gif" },
|
||||
{ "url" : "images/menu-dark.gif" },
|
||||
{ "url" : "images/menu-dark-rtl.gif" },
|
||||
{ "url" : "images/no.png" },
|
||||
{ "url" : "images/required.gif" },
|
||||
{ "url" : "images/resize.gif" },
|
||||
{ "url" : "images/screen-options-left.gif" },
|
||||
{ "url" : "images/screen-options-right.gif" },
|
||||
{ "url" : "images/screen-options-right-up.gif" },
|
||||
{ "url" : "images/se.png" },
|
||||
{ "url" : "images/star.gif" },
|
||||
{ "url" : "images/toggle-arrow.gif" },
|
||||
{ "url" : "images/toggle-arrow-rtl.gif" },
|
||||
{ "url" : "images/white-grad.png" },
|
||||
{ "url" : "images/white-grad-active.png" },
|
||||
{ "url" : "images/wordpress-logo.png" },
|
||||
{ "url" : "images/wp-logo.gif" },
|
||||
{ "url" : "images/xit.gif" },
|
||||
{ "url" : "images/yes.png" },
|
||||
|
||||
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/code.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/default.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/document.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/text.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/video.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png" },
|
||||
{ "url" : "../wp-includes/images/rss.png" },
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif" },
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png" }
|
||||
]}
|
||||
@@ -1,161 +0,0 @@
|
||||
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
/* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
#TB_window {
|
||||
font: 12px "Lucida Grande", Verdana, Arial, sans-serif;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#TB_secondLine {
|
||||
font: 10px "Lucida Grande", Verdana, Arial, sans-serif;
|
||||
color:#666666;
|
||||
}
|
||||
|
||||
#TB_window a:link {color: #666666;}
|
||||
#TB_window a:visited {color: #666666;}
|
||||
#TB_window a:hover {color: #000;}
|
||||
#TB_window a:active {color: #666666;}
|
||||
#TB_window a:focus{color: #666666;}
|
||||
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
#TB_overlay {
|
||||
position: fixed;
|
||||
z-index:100;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
height:100%;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.TB_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
|
||||
.TB_overlayBG {
|
||||
background-color:#000;
|
||||
filter:alpha(opacity=75);
|
||||
-moz-opacity: 0.75;
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
* html #TB_overlay { /* ie6 hack */
|
||||
position: absolute;
|
||||
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
||||
}
|
||||
|
||||
#TB_window {
|
||||
position: fixed;
|
||||
background: #ffffff;
|
||||
z-index: 102;
|
||||
color:#000000;
|
||||
display:none;
|
||||
text-align:left;
|
||||
top:50%;
|
||||
left:50%;
|
||||
border: 1px solid #555;
|
||||
-moz-box-shadow: rgba(0,0,0,1) 0 4px 30px;
|
||||
-webkit-box-shadow: rgba(0,0,0,1) 0 4px 30px;
|
||||
-khtml-box-shadow: rgba(0,0,0,1) 0 4px 30px;
|
||||
box-shadow: rgba(0,0,0,1) 0 4px 30px;
|
||||
}
|
||||
|
||||
* html #TB_window { /* ie6 hack */
|
||||
position: absolute;
|
||||
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
||||
}
|
||||
|
||||
#TB_window img#TB_Image {
|
||||
display:block;
|
||||
margin: 15px 0 0 15px;
|
||||
border-right: 1px solid #ccc;
|
||||
border-bottom: 1px solid #ccc;
|
||||
border-top: 1px solid #666;
|
||||
border-left: 1px solid #666;
|
||||
}
|
||||
|
||||
#TB_caption{
|
||||
height:25px;
|
||||
padding:7px 30px 10px 25px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
#TB_closeWindow{
|
||||
height:25px;
|
||||
padding:11px 25px 10px 0;
|
||||
float:right;
|
||||
}
|
||||
|
||||
#TB_closeAjaxWindow{
|
||||
padding:6px 10px 0;
|
||||
text-align:right;
|
||||
float:right;
|
||||
}
|
||||
|
||||
#TB_ajaxWindowTitle{
|
||||
float:left;
|
||||
padding:6px 10px 0;
|
||||
}
|
||||
|
||||
#TB_title{
|
||||
background-color:#e8e8e8;
|
||||
height:27px;
|
||||
}
|
||||
|
||||
#TB_ajaxContent{
|
||||
clear:both;
|
||||
padding:2px 15px 15px 15px;
|
||||
overflow:auto;
|
||||
text-align:left;
|
||||
line-height:1.4em;
|
||||
}
|
||||
|
||||
#TB_ajaxContent.TB_modal{
|
||||
padding:15px;
|
||||
}
|
||||
|
||||
#TB_ajaxContent p{
|
||||
padding:5px 0px 5px 0px;
|
||||
}
|
||||
|
||||
#TB_load{
|
||||
position: fixed;
|
||||
display:none;
|
||||
z-index:103;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
background-color: #E8E8E8;
|
||||
border: 1px solid #555;
|
||||
margin: -45px 0pt 0pt -125px;
|
||||
padding: 40px 15px 15px;
|
||||
}
|
||||
|
||||
* html #TB_load { /* ie6 hack */
|
||||
position: absolute;
|
||||
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
||||
}
|
||||
|
||||
#TB_HideSelect{
|
||||
z-index:99;
|
||||
position:fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color:#fff;
|
||||
border:none;
|
||||
filter:alpha(opacity=0);
|
||||
-moz-opacity: 0;
|
||||
opacity: 0;
|
||||
height:100%;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
* html #TB_HideSelect { /* ie6 hack */
|
||||
position: absolute;
|
||||
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
||||
}
|
||||
|
||||
#TB_iframeContent{
|
||||
clear:both;
|
||||
border:none;
|
||||
margin-bottom:-1px;
|
||||
_margin-bottom:1px;
|
||||
}
|
||||
@@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo" style="text-align: center">
|
||||
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
|
||||
<br /> Version 2.8.2
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code></li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.8.2:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1>System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.3</strong> or higher.</li>
|
||||
<li>MySQL version <strong>4.0</strong> or higher.</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1>XML-RPC and Atom Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://windowslivewriter.spaces.live.com/">Windows Live Writer</a>, <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,76 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "ae52efa2f066ffc235840dc615f051d7",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png" },
|
||||
{ "url" : "images/align-left.png" },
|
||||
{ "url" : "images/align-none.png" },
|
||||
{ "url" : "images/align-right.png" },
|
||||
{ "url" : "images/archive-link.png" },
|
||||
{ "url" : "images/blue-grad.png" },
|
||||
{ "url" : "images/browse-happy.gif" },
|
||||
{ "url" : "images/bubble_bg.gif" },
|
||||
{ "url" : "images/bubble_bg-rtl.gif" },
|
||||
{ "url" : "images/button-grad.png" },
|
||||
{ "url" : "images/button-grad-active.png" },
|
||||
{ "url" : "images/comment-grey-bubble.png" },
|
||||
{ "url" : "images/date-button.gif" },
|
||||
{ "url" : "images/ed-bg.gif" },
|
||||
{ "url" : "images/fade-butt.png" },
|
||||
{ "url" : "images/fav.png" },
|
||||
{ "url" : "images/fav-arrow.gif" },
|
||||
{ "url" : "images/fav-arrow-rtl.gif" },
|
||||
{ "url" : "images/fav-top.png" },
|
||||
{ "url" : "images/generic.png" },
|
||||
{ "url" : "images/gray-grad.png" },
|
||||
{ "url" : "images/icons32.png" },
|
||||
{ "url" : "images/icons32-vs.png" },
|
||||
{ "url" : "images/list.png" },
|
||||
{ "url" : "images/list-vs.png" },
|
||||
{ "url" : "images/wpspin_light.gif" },
|
||||
{ "url" : "images/wpspin_dark.gif" },
|
||||
{ "url" : "images/logo.gif" },
|
||||
{ "url" : "images/logo-ghost.png" },
|
||||
{ "url" : "images/logo-login.gif" },
|
||||
{ "url" : "images/media-button-image.gif" },
|
||||
{ "url" : "images/media-button-music.gif" },
|
||||
{ "url" : "images/media-button-other.gif" },
|
||||
{ "url" : "images/media-button-video.gif" },
|
||||
{ "url" : "images/menu.png" },
|
||||
{ "url" : "images/menu-vs.png" },
|
||||
{ "url" : "images/menu-arrows.gif" },
|
||||
{ "url" : "images/menu-bits.gif" },
|
||||
{ "url" : "images/menu-bits-rtl.gif" },
|
||||
{ "url" : "images/menu-dark.gif" },
|
||||
{ "url" : "images/menu-dark-rtl.gif" },
|
||||
{ "url" : "images/no.png" },
|
||||
{ "url" : "images/required.gif" },
|
||||
{ "url" : "images/resize.gif" },
|
||||
{ "url" : "images/screen-options-left.gif" },
|
||||
{ "url" : "images/screen-options-right.gif" },
|
||||
{ "url" : "images/screen-options-right-up.gif" },
|
||||
{ "url" : "images/se.png" },
|
||||
{ "url" : "images/star.gif" },
|
||||
{ "url" : "images/toggle-arrow.gif" },
|
||||
{ "url" : "images/toggle-arrow-rtl.gif" },
|
||||
{ "url" : "images/white-grad.png" },
|
||||
{ "url" : "images/white-grad-active.png" },
|
||||
{ "url" : "images/wordpress-logo.png" },
|
||||
{ "url" : "images/wp-logo.gif" },
|
||||
{ "url" : "images/xit.gif" },
|
||||
{ "url" : "images/yes.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/code.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/default.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/document.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/text.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/video.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png" },
|
||||
{ "url" : "../wp-includes/images/rss.png" },
|
||||
{ "url" : "../wp-includes/images/blank.gif" },
|
||||
{ "url" : "../wp-includes/images/upload.png" },
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif" },
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png" }
|
||||
]}
|
||||
@@ -1,42 +0,0 @@
|
||||
=== Akismet ===
|
||||
Contributors: matt, ryan, andy, mdawaffe, tellyworth
|
||||
Tags: akismet, comments, spam
|
||||
Requires at least: 2.0
|
||||
Tested up to: 2.8.2
|
||||
|
||||
Akismet checks your comments against the Akismet web service to see if they look like spam or not.
|
||||
|
||||
== Description ==
|
||||
|
||||
Akismet checks your comments against the Akismet web service to see if they look like spam or not and lets you
|
||||
review the spam it catches under your blog's "Comments" admin screen.
|
||||
|
||||
Want to show off how much spam Akismet has caught for you? Just put `<?php akismet_counter(); ?>` in your template.
|
||||
|
||||
See also: [WP Stats plugin](http://wordpress.org/extend/plugins/stats/).
|
||||
|
||||
PS: You'll need a [WordPress.com API key](http://wordpress.com/api-keys/) to use it.
|
||||
|
||||
== Installation ==
|
||||
|
||||
Upload the Akismet plugin to your blog, Activate it, then enter your [WordPress.com API key](http://wordpress.com/api-keys/).
|
||||
|
||||
1, 2, 3: You're done!
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 2.2.6 =
|
||||
|
||||
* Fix a global warning introduced in 2.2.5
|
||||
* Add changelog and additional readme.txt tags
|
||||
* Fix an array conversion warning in some versions of PHP
|
||||
* Support a new WPCOM_API_KEY constant for easier use with WordPress MU
|
||||
|
||||
= 2.2.5 =
|
||||
|
||||
* Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls
|
||||
|
||||
= 2.2.4 =
|
||||
|
||||
* Fixed a key problem affecting the stats feature in WordPress MU
|
||||
* Provide additional blog information in Akismet API calls
|
||||
@@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo" style="text-align: center">
|
||||
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
|
||||
<br /> Version 2.8.5
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code></li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.8.5:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1>System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.3</strong> or higher.</li>
|
||||
<li>MySQL version <strong>4.0</strong> or higher.</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1>XML-RPC and Atom Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://windowslivewriter.spaces.live.com/">Windows Live Writer</a>, <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,76 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "ae52efa2f066ffc235840dc615f051d7",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png" },
|
||||
{ "url" : "images/align-left.png" },
|
||||
{ "url" : "images/align-none.png" },
|
||||
{ "url" : "images/align-right.png" },
|
||||
{ "url" : "images/archive-link.png" },
|
||||
{ "url" : "images/blue-grad.png" },
|
||||
{ "url" : "images/browse-happy.gif" },
|
||||
{ "url" : "images/bubble_bg.gif" },
|
||||
{ "url" : "images/bubble_bg-rtl.gif" },
|
||||
{ "url" : "images/button-grad.png" },
|
||||
{ "url" : "images/button-grad-active.png" },
|
||||
{ "url" : "images/comment-grey-bubble.png" },
|
||||
{ "url" : "images/date-button.gif" },
|
||||
{ "url" : "images/ed-bg.gif" },
|
||||
{ "url" : "images/fade-butt.png" },
|
||||
{ "url" : "images/fav.png" },
|
||||
{ "url" : "images/fav-arrow.gif" },
|
||||
{ "url" : "images/fav-arrow-rtl.gif" },
|
||||
{ "url" : "images/fav-top.png" },
|
||||
{ "url" : "images/generic.png" },
|
||||
{ "url" : "images/gray-grad.png" },
|
||||
{ "url" : "images/icons32.png" },
|
||||
{ "url" : "images/icons32-vs.png" },
|
||||
{ "url" : "images/list.png" },
|
||||
{ "url" : "images/list-vs.png" },
|
||||
{ "url" : "images/wpspin_light.gif" },
|
||||
{ "url" : "images/wpspin_dark.gif" },
|
||||
{ "url" : "images/logo.gif" },
|
||||
{ "url" : "images/logo-ghost.png" },
|
||||
{ "url" : "images/logo-login.gif" },
|
||||
{ "url" : "images/media-button-image.gif" },
|
||||
{ "url" : "images/media-button-music.gif" },
|
||||
{ "url" : "images/media-button-other.gif" },
|
||||
{ "url" : "images/media-button-video.gif" },
|
||||
{ "url" : "images/menu.png" },
|
||||
{ "url" : "images/menu-vs.png" },
|
||||
{ "url" : "images/menu-arrows.gif" },
|
||||
{ "url" : "images/menu-bits.gif" },
|
||||
{ "url" : "images/menu-bits-rtl.gif" },
|
||||
{ "url" : "images/menu-dark.gif" },
|
||||
{ "url" : "images/menu-dark-rtl.gif" },
|
||||
{ "url" : "images/no.png" },
|
||||
{ "url" : "images/required.gif" },
|
||||
{ "url" : "images/resize.gif" },
|
||||
{ "url" : "images/screen-options-left.gif" },
|
||||
{ "url" : "images/screen-options-right.gif" },
|
||||
{ "url" : "images/screen-options-right-up.gif" },
|
||||
{ "url" : "images/se.png" },
|
||||
{ "url" : "images/star.gif" },
|
||||
{ "url" : "images/toggle-arrow.gif" },
|
||||
{ "url" : "images/toggle-arrow-rtl.gif" },
|
||||
{ "url" : "images/white-grad.png" },
|
||||
{ "url" : "images/white-grad-active.png" },
|
||||
{ "url" : "images/wordpress-logo.png" },
|
||||
{ "url" : "images/wp-logo.gif" },
|
||||
{ "url" : "images/xit.gif" },
|
||||
{ "url" : "images/yes.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/code.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/default.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/document.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/text.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/video.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png" },
|
||||
{ "url" : "../wp-includes/images/rss.png" },
|
||||
{ "url" : "../wp-includes/images/blank.gif" },
|
||||
{ "url" : "../wp-includes/images/upload.png" },
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif" },
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png" }
|
||||
]}
|
||||
@@ -1,46 +0,0 @@
|
||||
=== Akismet ===
|
||||
Contributors: matt, ryan, andy, mdawaffe, tellyworth
|
||||
Tags: akismet, comments, spam
|
||||
Requires at least: 2.0
|
||||
Tested up to: 2.8.4
|
||||
|
||||
Akismet checks your comments against the Akismet web service to see if they look like spam or not.
|
||||
|
||||
== Description ==
|
||||
|
||||
Akismet checks your comments against the Akismet web service to see if they look like spam or not and lets you
|
||||
review the spam it catches under your blog's "Comments" admin screen.
|
||||
|
||||
Want to show off how much spam Akismet has caught for you? Just put `<?php akismet_counter(); ?>` in your template.
|
||||
|
||||
See also: [WP Stats plugin](http://wordpress.org/extend/plugins/stats/).
|
||||
|
||||
PS: You'll need a [WordPress.com API key](http://wordpress.com/api-keys/) to use it.
|
||||
|
||||
== Installation ==
|
||||
|
||||
Upload the Akismet plugin to your blog, Activate it, then enter your [WordPress.com API key](http://wordpress.com/api-keys/).
|
||||
|
||||
1, 2, 3: You're done!
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 2.2.7 =
|
||||
|
||||
* Add a new AKISMET_VERSION constant
|
||||
|
||||
= 2.2.6 =
|
||||
|
||||
* Fix a global warning introduced in 2.2.5
|
||||
* Add changelog and additional readme.txt tags
|
||||
* Fix an array conversion warning in some versions of PHP
|
||||
* Support a new WPCOM_API_KEY constant for easier use with WordPress MU
|
||||
|
||||
= 2.2.5 =
|
||||
|
||||
* Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls
|
||||
|
||||
= 2.2.4 =
|
||||
|
||||
* Fixed a key problem affecting the stats feature in WordPress MU
|
||||
* Provide additional blog information in Akismet API calls
|
||||
@@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo" style="text-align: center">
|
||||
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
|
||||
<br /> Version 2.8.6
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right;">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory.</li>
|
||||
<li>Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code></li>
|
||||
<li>Upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">/wp-admin/install.php</a></span> in your browser. This should setup the tables needed for your blog. If there is an error, double check your <span class="file">wp-config.php</span> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>Note the password given to you.</strong></li>
|
||||
<li> The install script should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username <code>admin</code> and the password generated during the installation. You can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
|
||||
<h2>Upgrading from any previous WordPress to 2.8.6:</h2>
|
||||
<ol>
|
||||
<li>Delete your old WP files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
<h2>Template Changes</h2>
|
||||
<p>If you have customized your templates you will probably have to make some changes to them. If you're converting your 1.2 or earlier templates, <a href="http://codex.wordpress.org/Upgrade_1.2_to_1.5">we've created a special guide for you</a>. </p>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex </a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The Development Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Bookmark and check often.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet </a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress IRC Channel</a></dt>
|
||||
<dd>Finally, there is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1>System Recommendations</h1>
|
||||
<ul>
|
||||
<li>PHP version <strong>4.3</strong> or higher.</li>
|
||||
<li>MySQL version <strong>4.0</strong> or higher.</li>
|
||||
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
|
||||
|
||||
<h1>Upgrading from another system</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above.</p>
|
||||
|
||||
<h1>XML-RPC and Atom Interface</h1>
|
||||
<p>You can now post to your WordPress blog with tools like <a href="http://windowslivewriter.spaces.live.com/">Windows Live Writer</a>, <a href="http://ecto.kung-foo.tv/">Ecto</a>, <a href="http://bloggar.com/">Bloggar</a>, <a href="http://radio.userland.com">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the Blogging APIs! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> URL.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We've eliminated user levels in order to make way for the much more flexible roles system introduced in 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1> Final notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress now has a robust plugin API that makes extending the code easy. If you are a developer interested in utilizing this see the <a href="http://codex.wordpress.org/Plugin_API">plugin documentation in the Codex</a>. In most all cases you shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr> (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,76 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "ae52efa2f066ffc235840dc615f051d7",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png" },
|
||||
{ "url" : "images/align-left.png" },
|
||||
{ "url" : "images/align-none.png" },
|
||||
{ "url" : "images/align-right.png" },
|
||||
{ "url" : "images/archive-link.png" },
|
||||
{ "url" : "images/blue-grad.png" },
|
||||
{ "url" : "images/browse-happy.gif" },
|
||||
{ "url" : "images/bubble_bg.gif" },
|
||||
{ "url" : "images/bubble_bg-rtl.gif" },
|
||||
{ "url" : "images/button-grad.png" },
|
||||
{ "url" : "images/button-grad-active.png" },
|
||||
{ "url" : "images/comment-grey-bubble.png" },
|
||||
{ "url" : "images/date-button.gif" },
|
||||
{ "url" : "images/ed-bg.gif" },
|
||||
{ "url" : "images/fade-butt.png" },
|
||||
{ "url" : "images/fav.png" },
|
||||
{ "url" : "images/fav-arrow.gif" },
|
||||
{ "url" : "images/fav-arrow-rtl.gif" },
|
||||
{ "url" : "images/fav-top.png" },
|
||||
{ "url" : "images/generic.png" },
|
||||
{ "url" : "images/gray-grad.png" },
|
||||
{ "url" : "images/icons32.png" },
|
||||
{ "url" : "images/icons32-vs.png" },
|
||||
{ "url" : "images/list.png" },
|
||||
{ "url" : "images/list-vs.png" },
|
||||
{ "url" : "images/wpspin_light.gif" },
|
||||
{ "url" : "images/wpspin_dark.gif" },
|
||||
{ "url" : "images/logo.gif" },
|
||||
{ "url" : "images/logo-ghost.png" },
|
||||
{ "url" : "images/logo-login.gif" },
|
||||
{ "url" : "images/media-button-image.gif" },
|
||||
{ "url" : "images/media-button-music.gif" },
|
||||
{ "url" : "images/media-button-other.gif" },
|
||||
{ "url" : "images/media-button-video.gif" },
|
||||
{ "url" : "images/menu.png" },
|
||||
{ "url" : "images/menu-vs.png" },
|
||||
{ "url" : "images/menu-arrows.gif" },
|
||||
{ "url" : "images/menu-bits.gif" },
|
||||
{ "url" : "images/menu-bits-rtl.gif" },
|
||||
{ "url" : "images/menu-dark.gif" },
|
||||
{ "url" : "images/menu-dark-rtl.gif" },
|
||||
{ "url" : "images/no.png" },
|
||||
{ "url" : "images/required.gif" },
|
||||
{ "url" : "images/resize.gif" },
|
||||
{ "url" : "images/screen-options-left.gif" },
|
||||
{ "url" : "images/screen-options-right.gif" },
|
||||
{ "url" : "images/screen-options-right-up.gif" },
|
||||
{ "url" : "images/se.png" },
|
||||
{ "url" : "images/star.gif" },
|
||||
{ "url" : "images/toggle-arrow.gif" },
|
||||
{ "url" : "images/toggle-arrow-rtl.gif" },
|
||||
{ "url" : "images/white-grad.png" },
|
||||
{ "url" : "images/white-grad-active.png" },
|
||||
{ "url" : "images/wordpress-logo.png" },
|
||||
{ "url" : "images/wp-logo.gif" },
|
||||
{ "url" : "images/xit.gif" },
|
||||
{ "url" : "images/yes.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/code.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/default.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/document.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/text.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/video.png" },
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png" },
|
||||
{ "url" : "../wp-includes/images/rss.png" },
|
||||
{ "url" : "../wp-includes/images/blank.gif" },
|
||||
{ "url" : "../wp-includes/images/upload.png" },
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif" },
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png" }
|
||||
]}
|
||||
@@ -1,48 +0,0 @@
|
||||
=== Akismet ===
|
||||
Contributors: matt, ryan, andy, mdawaffe, tellyworth, automattic
|
||||
Tags: akismet, comments, spam
|
||||
Requires at least: 2.0
|
||||
Tested up to: 2.8.5
|
||||
|
||||
Akismet checks your comments against the Akismet web service to see if they look like spam or not.
|
||||
|
||||
== Description ==
|
||||
|
||||
Akismet checks your comments against the Akismet web service to see if they look like spam or not and lets you
|
||||
review the spam it catches under your blog's "Comments" admin screen.
|
||||
|
||||
Want to show off how much spam Akismet has caught for you? Just put `<?php akismet_counter(); ?>` in your template.
|
||||
|
||||
See also: [WP Stats plugin](http://wordpress.org/extend/plugins/stats/).
|
||||
|
||||
PS: You'll need a [WordPress.com API key](http://wordpress.com/api-keys/) to use it.
|
||||
|
||||
== Installation ==
|
||||
|
||||
Upload the Akismet plugin to your blog, Activate it, then enter your [WordPress.com API key](http://wordpress.com/api-keys/).
|
||||
|
||||
1, 2, 3: You're done!
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 2.2.7 =
|
||||
|
||||
* Add a new AKISMET_VERSION constant
|
||||
* Reduce the possibility of over-counting spam when another spam filter plugin is in use
|
||||
* Disable the connectivity check when the API key is hard-coded for WPMU
|
||||
|
||||
= 2.2.6 =
|
||||
|
||||
* Fix a global warning introduced in 2.2.5
|
||||
* Add changelog and additional readme.txt tags
|
||||
* Fix an array conversion warning in some versions of PHP
|
||||
* Support a new WPCOM_API_KEY constant for easier use with WordPress MU
|
||||
|
||||
= 2.2.5 =
|
||||
|
||||
* Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls
|
||||
|
||||
= 2.2.4 =
|
||||
|
||||
* Fixed a key problem affecting the stats feature in WordPress MU
|
||||
* Provide additional blog information in Akismet API calls
|
||||
@@ -1,109 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo">
|
||||
<a href="http://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" width="250" height="68" /></a>
|
||||
<br /> Version 3.0
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory and upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser. It will take you through the process to set up a <code>wp-config.php</code> file with your database connection details.
|
||||
<ol>
|
||||
<li>If for some reason this doesn't work, don't worry. It doesn't work on all web hosts. Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code> and upload it.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser.</li>
|
||||
</ol>
|
||||
</li>
|
||||
<li>Once the configuration file is set up, the installer will set up the tables needed for your blog. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>If you did not enter a password, note the password given to you.</strong> If you did not provide a username, it will be <code>admin</code>.</li>
|
||||
<li>The installer should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username and password you chose during the installation. If a password was generated for you, you can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Upgrading</h1>
|
||||
<h2>Using the Automatic Upgrader</h2>
|
||||
<p>If you are upgrading from version 2.7 or higher, you can use the automatic upgrader:</p>
|
||||
<ol>
|
||||
<li>Open the <span class="file"><a href="wp-admin/update-core.php">wp-admin/update-core.php</a></span> in your browser and follow the instructions.</li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
|
||||
<h2>Upgrading Manually</h2>
|
||||
<ol>
|
||||
<li>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</li>
|
||||
<li>Delete your old WordPress files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
</ol>
|
||||
|
||||
<h2>Theme Template Changes</h2>
|
||||
<p>If you have customized your theme templates, you may have to make some changes across major versions.</p>
|
||||
|
||||
<h1>Migrating from other systems</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php" title="Import to WordPress">our import tools</a>.</p>
|
||||
|
||||
<h1>System Requirements</h1>
|
||||
<ul>
|
||||
<li><a href="http://php.net/">PHP</a> version <strong>4.3</strong> or higher.</li>
|
||||
<li><a href="http://www.mysql.com/">MySQL</a> version <strong>4.1.2</strong> or higher.</li>
|
||||
</ul>
|
||||
|
||||
<h2>System Recommendations</h2>
|
||||
<ul>
|
||||
<li>The <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||
<li>A link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex</a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The WordPress Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet</a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress <abbr title="Internet Relay Chat">IRC</abbr> Channel</a></dt>
|
||||
<dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1><abbr title="eXtensible Markup Language">XML</abbr>-<abbr title="Remote Procedure Call">RPC</abbr> and Atom Interface</h1>
|
||||
<p>You can post to your WordPress blog with tools like <a href="http://download.live.com/writer">Windows Live Writer</a>, <a href="http://illuminex.com/ecto/">Ecto</a>, <a href="http://bloggar.com/">w.bloggar</a>, <a href="http://radio.userland.com/">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the blogging <abbr title="application programming interface">API</abbr>s! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support"><abbr>XML</abbr>-<abbr>RPC</abbr> support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret <abbr title="Post Office Protocol version 3">POP3</abbr> account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with <a href="http://en.wikipedia.org/wiki/Cron">cron</a>-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> <abbr title="Uniform Resource Locator">URL</abbr>.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We introduced a very flexible roles system in version 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities" title="WordPress roles and capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1>Final Notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="http://codex.wordpress.org/Plugin_API" title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/" title="Donate to WordPress">donating</a>.</p>
|
||||
|
||||
<h1>Copyright</h1>
|
||||
<p>WordPress is released under the <abbr title="GNU Public License">GPL</abbr>v2 (see <a href="license.txt">license.txt</a>).</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,73 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "02f0f783bde10a914130292f1b57d409",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-left.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-none.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-right.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/archive-link.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/blue-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/comment-grey-bubble.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/date-button.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/ed-bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fade-butt.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/generic.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/gray-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/list.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/list-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_light.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-ghost.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-login.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-image.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-music.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-other.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-video.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-arrows.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/no.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/required.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/resize.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right-up.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/se.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/star.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wordpress-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wp-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/xit.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/yes.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/code.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/default.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/document.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/text.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/video.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/rss.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/blank.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/upload.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png", "ignoreQuery" : true }
|
||||
]}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,109 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo">
|
||||
<a href="http://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" width="250" height="68" /></a>
|
||||
<br /> Version 3.1
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory and upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser. It will take you through the process to set up a <code>wp-config.php</code> file with your database connection details.
|
||||
<ol>
|
||||
<li>If for some reason this doesn't work, don't worry. It doesn't work on all web hosts. Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code> and upload it.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser.</li>
|
||||
</ol>
|
||||
</li>
|
||||
<li>Once the configuration file is set up, the installer will set up the tables needed for your blog. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>If you did not enter a password, note the password given to you.</strong> If you did not provide a username, it will be <code>admin</code>.</li>
|
||||
<li>The installer should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username and password you chose during the installation. If a password was generated for you, you can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Updating</h1>
|
||||
<h2>Using the Automatic Updater</h2>
|
||||
<p>If you are updating from version 2.7 or higher, you can use the automatic updater:</p>
|
||||
<ol>
|
||||
<li>Open the <span class="file"><a href="wp-admin/update-core.php">wp-admin/update-core.php</a></span> in your browser and follow the instructions.</li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
|
||||
<h2>Updating Manually</h2>
|
||||
<ol>
|
||||
<li>Before you update anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</li>
|
||||
<li>Delete your old WordPress files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
</ol>
|
||||
|
||||
<h2>Theme Template Changes</h2>
|
||||
<p>If you have customized your theme templates, you may have to make some changes across major versions.</p>
|
||||
|
||||
<h1>Migrating from other systems</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php" title="Import to WordPress">our import tools</a>.</p>
|
||||
|
||||
<h1>System Requirements</h1>
|
||||
<ul>
|
||||
<li><a href="http://php.net/">PHP</a> version <strong>4.3</strong> or higher.</li>
|
||||
<li><a href="http://www.mysql.com/">MySQL</a> version <strong>4.1.2</strong> or higher.</li>
|
||||
</ul>
|
||||
|
||||
<h2>System Recommendations</h2>
|
||||
<ul>
|
||||
<li>The <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||
<li>A link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex</a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/news/">The WordPress Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet</a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress <abbr title="Internet Relay Chat">IRC</abbr> Channel</a></dt>
|
||||
<dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1><abbr title="eXtensible Markup Language">XML</abbr>-<abbr title="Remote Procedure Call">RPC</abbr> and Atom Interface</h1>
|
||||
<p>You can post to your WordPress blog with tools like <a href="http://download.live.com/writer">Windows Live Writer</a>, <a href="http://illuminex.com/ecto/">Ecto</a>, <a href="http://bloggar.com/">w.bloggar</a>, <a href="http://radio.userland.com/">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the blogging <abbr title="application programming interface">API</abbr>s! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support"><abbr>XML</abbr>-<abbr>RPC</abbr> support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret <abbr title="Post Office Protocol version 3">POP3</abbr> account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with <a href="http://en.wikipedia.org/wiki/Cron">cron</a>-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> <abbr title="Uniform Resource Locator">URL</abbr>.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We introduced a very flexible roles system in version 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities" title="WordPress roles and capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1>Final Notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="http://codex.wordpress.org/Plugin_API" title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/" title="Donate to WordPress">donating</a>.</p>
|
||||
|
||||
<h1>License</h1>
|
||||
<p>WordPress is free software, and is released under the terms of the <abbr title="GNU General Public License">GPL</abbr> version 2 or (at your option) any later version. See <a href="license.txt">license.txt</a>.</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,72 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "9f1d42cdc7a2098cb65588e29c61f113",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-left.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-none.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-right.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/archive-link.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/blue-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/comment-grey-bubble.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/date-button.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/ed-bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fade-butt.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/generic.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/gray-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/list.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_light.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-ghost.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-login.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-image.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-music.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-other.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-video.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-arrows.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/no.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/required.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/resize.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right-up.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/se.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/star.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wordpress-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wp-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/xit.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/yes.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/code.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/default.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/document.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/text.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/video.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/rss.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/blank.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/upload.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png", "ignoreQuery" : true }
|
||||
]}
|
||||
File diff suppressed because one or more lines are too long
@@ -1,109 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo">
|
||||
<a href="http://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" width="250" height="68" /></a>
|
||||
<br /> Version 3.2.1
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory and upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser. It will take you through the process to set up a <code>wp-config.php</code> file with your database connection details.
|
||||
<ol>
|
||||
<li>If for some reason this doesn't work, don't worry. It doesn't work on all web hosts. Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code> and upload it.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser.</li>
|
||||
</ol>
|
||||
</li>
|
||||
<li>Once the configuration file is set up, the installer will set up the tables needed for your blog. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>If you did not enter a password, note the password given to you.</strong> If you did not provide a username, it will be <code>admin</code>.</li>
|
||||
<li>The installer should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username and password you chose during the installation. If a password was generated for you, you can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Updating</h1>
|
||||
<h2>Using the Automatic Updater</h2>
|
||||
<p>If you are updating from version 2.7 or higher, you can use the automatic updater:</p>
|
||||
<ol>
|
||||
<li>Open the <span class="file"><a href="wp-admin/update-core.php">wp-admin/update-core.php</a></span> in your browser and follow the instructions.</li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
|
||||
<h2>Updating Manually</h2>
|
||||
<ol>
|
||||
<li>Before you update anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</li>
|
||||
<li>Delete your old WordPress files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
</ol>
|
||||
|
||||
<h2>Theme Template Changes</h2>
|
||||
<p>If you have customized your theme templates, you may have to make some changes across major versions.</p>
|
||||
|
||||
<h1>Migrating from other systems</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php" title="Import to WordPress">our import tools</a>.</p>
|
||||
|
||||
<h1>System Requirements</h1>
|
||||
<ul>
|
||||
<li><a href="http://php.net/">PHP</a> version <strong>5.2.4</strong> or higher.</li>
|
||||
<li><a href="http://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
|
||||
</ul>
|
||||
|
||||
<h2>System Recommendations</h2>
|
||||
<ul>
|
||||
<li>The <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||
<li>A link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex</a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/news/">The WordPress Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet</a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress <abbr title="Internet Relay Chat">IRC</abbr> Channel</a></dt>
|
||||
<dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1><abbr title="eXtensible Markup Language">XML</abbr>-<abbr title="Remote Procedure Call">RPC</abbr> and Atom Interface</h1>
|
||||
<p>You can post to your WordPress blog with tools like <a href="http://download.live.com/writer">Windows Live Writer</a>, <a href="http://illuminex.com/ecto/">Ecto</a>, <a href="http://bloggar.com/">w.bloggar</a>, <a href="http://radio.userland.com/">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the blogging <abbr title="application programming interface">API</abbr>s! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support"><abbr>XML</abbr>-<abbr>RPC</abbr> support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret <abbr title="Post Office Protocol version 3">POP3</abbr> account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with <a href="http://en.wikipedia.org/wiki/Cron">cron</a>-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> <abbr title="Uniform Resource Locator">URL</abbr>.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We introduced a very flexible roles system in version 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities" title="WordPress roles and capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1>Final Notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="http://codex.wordpress.org/Plugin_API" title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/" title="Donate to WordPress">donating</a>.</p>
|
||||
|
||||
<h1>License</h1>
|
||||
<p>WordPress is free software, and is released under the terms of the <abbr title="GNU General Public License">GPL</abbr> version 2 or (at your option) any later version. See <a href="license.txt">license.txt</a>.</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,72 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "4c4cab4ac02dd9b2bf8f0011808232cc",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-left.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-none.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-right.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/archive-link.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/blue-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/comment-grey-bubble.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/date-button.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/ed-bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fade-butt.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/generic.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/gray-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/list.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_light.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-ghost.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-login.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-image.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-music.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-other.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-video.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-arrows.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/no.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/required.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/resize.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right-up.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/se.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/star.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wordpress-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wp-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/xit.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/yes.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/code.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/default.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/document.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/text.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/video.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/rss.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/blank.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/upload.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png", "ignoreQuery" : true }
|
||||
]}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,109 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo">
|
||||
<a href="http://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" width="250" height="68" /></a>
|
||||
<br /> Version 3.2
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory and upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser. It will take you through the process to set up a <code>wp-config.php</code> file with your database connection details.
|
||||
<ol>
|
||||
<li>If for some reason this doesn't work, don't worry. It doesn't work on all web hosts. Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code> and upload it.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser.</li>
|
||||
</ol>
|
||||
</li>
|
||||
<li>Once the configuration file is set up, the installer will set up the tables needed for your blog. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>If you did not enter a password, note the password given to you.</strong> If you did not provide a username, it will be <code>admin</code>.</li>
|
||||
<li>The installer should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username and password you chose during the installation. If a password was generated for you, you can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Updating</h1>
|
||||
<h2>Using the Automatic Updater</h2>
|
||||
<p>If you are updating from version 2.7 or higher, you can use the automatic updater:</p>
|
||||
<ol>
|
||||
<li>Open the <span class="file"><a href="wp-admin/update-core.php">wp-admin/update-core.php</a></span> in your browser and follow the instructions.</li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
|
||||
<h2>Updating Manually</h2>
|
||||
<ol>
|
||||
<li>Before you update anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</li>
|
||||
<li>Delete your old WordPress files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
</ol>
|
||||
|
||||
<h2>Theme Template Changes</h2>
|
||||
<p>If you have customized your theme templates, you may have to make some changes across major versions.</p>
|
||||
|
||||
<h1>Migrating from other systems</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php" title="Import to WordPress">our import tools</a>.</p>
|
||||
|
||||
<h1>System Requirements</h1>
|
||||
<ul>
|
||||
<li><a href="http://php.net/">PHP</a> version <strong>5.2.4</strong> or higher.</li>
|
||||
<li><a href="http://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
|
||||
</ul>
|
||||
|
||||
<h2>System Recommendations</h2>
|
||||
<ul>
|
||||
<li>The <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||
<li>A link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex</a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/news/">The WordPress Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet</a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress <abbr title="Internet Relay Chat">IRC</abbr> Channel</a></dt>
|
||||
<dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1><abbr title="eXtensible Markup Language">XML</abbr>-<abbr title="Remote Procedure Call">RPC</abbr> and Atom Interface</h1>
|
||||
<p>You can post to your WordPress blog with tools like <a href="http://download.live.com/writer">Windows Live Writer</a>, <a href="http://illuminex.com/ecto/">Ecto</a>, <a href="http://bloggar.com/">w.bloggar</a>, <a href="http://radio.userland.com/">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the blogging <abbr title="application programming interface">API</abbr>s! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support"><abbr>XML</abbr>-<abbr>RPC</abbr> support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret <abbr title="Post Office Protocol version 3">POP3</abbr> account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with <a href="http://en.wikipedia.org/wiki/Cron">cron</a>-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> <abbr title="Uniform Resource Locator">URL</abbr>.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We introduced a very flexible roles system in version 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities" title="WordPress roles and capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1>Final Notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="http://codex.wordpress.org/Plugin_API" title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/" title="Donate to WordPress">donating</a>.</p>
|
||||
|
||||
<h1>License</h1>
|
||||
<p>WordPress is free software, and is released under the terms of the <abbr title="GNU General Public License">GPL</abbr> version 2 or (at your option) any later version. See <a href="license.txt">license.txt</a>.</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,72 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "4c4cab4ac02dd9b2bf8f0011808232cc",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-left.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-none.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-right.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/archive-link.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/blue-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/comment-grey-bubble.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/date-button.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/ed-bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fade-butt.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/generic.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/gray-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/list.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_light.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-ghost.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-login.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-image.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-music.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-other.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-video.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-arrows.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/no.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/required.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/resize.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right-up.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/se.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/star.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wordpress-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wp-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/xit.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/yes.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/code.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/default.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/document.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/text.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/video.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/rss.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/blank.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/upload.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png", "ignoreQuery" : true }
|
||||
]}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,165 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "5ac7244b5aa005b569735c705aaf614a",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-left.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-none.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-right.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/archive-link.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/blue-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/comment-grey-bubble.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/date-button.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/ed-bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fade-butt.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/generic.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/gray-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/list.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_light.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-ghost.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-login.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-image.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-music.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-other.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-video.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-arrows.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/no.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/required.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/resize.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right-up.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/se.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/star.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wordpress-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wp-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/xit.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/yes.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/code.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/default.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/document.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/text.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/video.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/rss.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/blank.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/upload.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/wp-tinymce.php", "src" : "../wp-includes/js/tinymce/wp-tinymce.php?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/tiny_mce.js", "src" : "../wp-includes/js/tinymce/tiny_mce.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/langs/wp-langs-en.js", "src" : "../wp-includes/js/tinymce/langs/wp-langs-en.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/utils/mctabs.js", "src" : "../wp-includes/js/tinymce/utils/mctabs.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/utils/validate.js", "src" : "../wp-includes/js/tinymce/utils/validate.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/utils/form_utils.js", "src" : "../wp-includes/js/tinymce/utils/form_utils.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/utils/editable_selects.js", "src" : "../wp-includes/js/tinymce/utils/editable_selects.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/tiny_mce_popup.js", "src" : "../wp-includes/js/tinymce/tiny_mce_popup.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/editor_template.js", "src" : "../wp-includes/js/tinymce/themes/advanced/editor_template.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/source_editor.htm", "src" : "../wp-includes/js/tinymce/themes/advanced/source_editor.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/anchor.htm", "src" : "../wp-includes/js/tinymce/themes/advanced/anchor.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/image.htm", "src" : "../wp-includes/js/tinymce/themes/advanced/image.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/link.htm", "src" : "../wp-includes/js/tinymce/themes/advanced/link.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/color_picker.htm", "src" : "../wp-includes/js/tinymce/themes/advanced/color_picker.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/charmap.htm", "src" : "../wp-includes/js/tinymce/themes/advanced/charmap.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/color_picker.js", "src" : "../wp-includes/js/tinymce/themes/advanced/js/color_picker.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/charmap.js", "src" : "../wp-includes/js/tinymce/themes/advanced/js/charmap.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/image.js", "src" : "../wp-includes/js/tinymce/themes/advanced/js/image.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/link.js", "src" : "../wp-includes/js/tinymce/themes/advanced/js/link.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/source_editor.js", "src" : "../wp-includes/js/tinymce/themes/advanced/js/source_editor.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/anchor.js", "src" : "../wp-includes/js/tinymce/themes/advanced/js/anchor.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/ui.css", "src" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/ui.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css", "src" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/dialog.css", "src" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/dialog.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/fullscreen/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/fullscreen/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/fullscreen/fullscreen.htm", "src" : "../wp-includes/js/tinymce/plugins/fullscreen/fullscreen.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/inlinepopups/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/template.htm", "src" : "../wp-includes/js/tinymce/plugins/inlinepopups/template.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/window.css", "src" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/window.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/media/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/js/media.js", "src" : "../wp-includes/js/tinymce/plugins/media/js/media.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/media.htm", "src" : "../wp-includes/js/tinymce/plugins/media/media.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/css/content.css", "src" : "../wp-includes/js/tinymce/plugins/media/css/content.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/css/media.css", "src" : "../wp-includes/js/tinymce/plugins/media/css/media.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/paste/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/js/pasteword.js", "src" : "../wp-includes/js/tinymce/plugins/paste/js/pasteword.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/js/pastetext.js", "src" : "../wp-includes/js/tinymce/plugins/paste/js/pastetext.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/pasteword.htm", "src" : "../wp-includes/js/tinymce/plugins/paste/pasteword.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/blank.htm", "src" : "../wp-includes/js/tinymce/plugins/paste/blank.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/paste/pastetext.htm", "src" : "../wp-includes/js/tinymce/plugins/paste/pastetext.htm?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/safari/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/safari/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/spellchecker/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/spellchecker/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/spellchecker/css/content.css", "src" : "../wp-includes/js/tinymce/plugins/spellchecker/css/content.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/tabfocus/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/tabfocus/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/wordpress/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/css/content.css", "src" : "../wp-includes/js/tinymce/plugins/wordpress/css/content.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/wpeditimage/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/editimage.html", "src" : "../wp-includes/js/tinymce/plugins/wpeditimage/editimage.html?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js", "src" : "../wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage.css", "src" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage-rtl.css", "src" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage-rtl.css?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpgallery/editor_plugin.js", "src" : "../wp-includes/js/tinymce/plugins/wpgallery/editor_plugin.js?ver=345-20111127", "ignoreQuery" : true },
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/icons.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/colorpicker.jpg", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/fm.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/gotmoxie.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/img/sflogo.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/fade-butt.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/tabs.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/down_arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/default/img/progress.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/default/img/menu_check.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/drag.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/flash.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/quicktime.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/realmedia.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/shockwave.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/windowsmedia.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/media/img/trans.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/spellchecker/img/wline.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/more.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/more_bug.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/page.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/page_bug.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/toolbars.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/help.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/image.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/media.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/video.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wordpress/img/audio.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/img/image.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/img/delete.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpgallery/img/delete.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpgallery/img/edit.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/tinymce/plugins/wpgallery/img/gallery.png", "ignoreQuery" : true }
|
||||
]}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,72 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "5ac7244b5aa005b569735c705aaf614a",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-left.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-none.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-right.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/archive-link.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/blue-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/comment-grey-bubble.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/date-button.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/ed-bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fade-butt.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/generic.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/gray-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/list.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_light.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-ghost.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-login.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-image.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-music.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-other.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-video.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-arrows.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/no.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/required.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/resize.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right-up.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/se.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/star.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wordpress-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wp-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/xit.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/yes.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/code.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/default.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/document.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/text.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/video.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/rss.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/blank.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/upload.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png", "ignoreQuery" : true }
|
||||
]}
|
||||
File diff suppressed because one or more lines are too long
@@ -1,109 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>WordPress › ReadMe</title>
|
||||
<link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="logo">
|
||||
<a href="http://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" width="250" height="68" /></a>
|
||||
<br /> Version 3.3
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
<h1>First Things First</h1>
|
||||
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||
<p style="text-align: right">— Matt Mullenweg</p>
|
||||
|
||||
<h1>Installation: Famous 5-minute install</h1>
|
||||
<ol>
|
||||
<li>Unzip the package in an empty directory and upload everything.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser. It will take you through the process to set up a <code>wp-config.php</code> file with your database connection details.
|
||||
<ol>
|
||||
<li>If for some reason this doesn't work, don't worry. It doesn't work on all web hosts. Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||
<li>Save the file as <code>wp-config.php</code> and upload it.</li>
|
||||
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser.</li>
|
||||
</ol>
|
||||
</li>
|
||||
<li>Once the configuration file is set up, the installer will set up the tables needed for your blog. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="http://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li>
|
||||
<li><strong>If you did not enter a password, note the password given to you.</strong> If you did not provide a username, it will be <code>admin</code>.</li>
|
||||
<li>The installer should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username and password you chose during the installation. If a password was generated for you, you can then click on 'Profile' to change the password.</li>
|
||||
</ol>
|
||||
|
||||
<h1>Updating</h1>
|
||||
<h2>Using the Automatic Updater</h2>
|
||||
<p>If you are updating from version 2.7 or higher, you can use the automatic updater:</p>
|
||||
<ol>
|
||||
<li>Open the <span class="file"><a href="wp-admin/update-core.php">wp-admin/update-core.php</a></span> in your browser and follow the instructions.</li>
|
||||
<li>You wanted more, perhaps? That's it!</li>
|
||||
</ol>
|
||||
|
||||
<h2>Updating Manually</h2>
|
||||
<ol>
|
||||
<li>Before you update anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</li>
|
||||
<li>Delete your old WordPress files, saving ones you've modified.</li>
|
||||
<li>Upload the new files.</li>
|
||||
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||
</ol>
|
||||
|
||||
<h2>Theme Template Changes</h2>
|
||||
<p>If you have customized your theme templates, you may have to make some changes across major versions.</p>
|
||||
|
||||
<h1>Migrating from other systems</h1>
|
||||
<p>WordPress can <a href="http://codex.wordpress.org/Importing_Content">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php" title="Import to WordPress">our import tools</a>.</p>
|
||||
|
||||
<h1>System Requirements</h1>
|
||||
<ul>
|
||||
<li><a href="http://php.net/">PHP</a> version <strong>5.2.4</strong> or higher.</li>
|
||||
<li><a href="http://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
|
||||
</ul>
|
||||
|
||||
<h2>System Recommendations</h2>
|
||||
<ul>
|
||||
<li>The <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||
<li>A link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Online Resources</h1>
|
||||
<p>If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:</p>
|
||||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex</a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/news/">The WordPress Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet</a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
<dt><a href="http://wordpress.org/support/">WordPress Support Forums</a></dt>
|
||||
<dd>If you've looked everywhere and still can't find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||
<dt><a href="http://codex.wordpress.org/IRC">WordPress <abbr title="Internet Relay Chat">IRC</abbr> Channel</a></dt>
|
||||
<dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="irc://irc.freenode.net/wordpress">irc.freenode.net #wordpress</a>)</dd>
|
||||
</dl>
|
||||
|
||||
<h1><abbr title="eXtensible Markup Language">XML</abbr>-<abbr title="Remote Procedure Call">RPC</abbr> and Atom Interface</h1>
|
||||
<p>You can post to your WordPress blog with tools like <a href="http://download.live.com/writer">Windows Live Writer</a>, <a href="http://illuminex.com/ecto/">Ecto</a>, <a href="http://bloggar.com/">w.bloggar</a>, <a href="http://radio.userland.com/">Radio Userland</a> (which means you can use Radio's email-to-blog feature), <a href="http://www.newzcrawler.com/">NewzCrawler</a>, and other tools that support the blogging <abbr title="application programming interface">API</abbr>s! :) You can read more about <a href="http://codex.wordpress.org/XML-RPC_Support"><abbr>XML</abbr>-<abbr>RPC</abbr> support on the Codex</a>.</p>
|
||||
|
||||
<h1>Post via Email</h1>
|
||||
<p>You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret <abbr title="Post Office Protocol version 3">POP3</abbr> account. Then you need to set up <code>wp-mail.php</code> to execute periodically to check the mailbox for new posts. You can do it with <a href="http://en.wikipedia.org/wiki/Cron">cron</a>-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your <code>wp-mail.php</code> <abbr title="Uniform Resource Locator">URL</abbr>.</p>
|
||||
<p>Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address discrete. The script will <em>delete</em> emails that are successfully posted.</p>
|
||||
|
||||
<h1>User Roles</h1>
|
||||
<p>We introduced a very flexible roles system in version 2.0. You can <a href="http://codex.wordpress.org/Roles_and_Capabilities" title="WordPress roles and capabilities">read more about Roles and Capabilities on the Codex</a>.</p>
|
||||
|
||||
<h1>Final Notes</h1>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <a href="http://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="http://codex.wordpress.org/Plugin_API" title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn't modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h1>Share the Love</h1>
|
||||
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||
|
||||
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/" title="Donate to WordPress">donating</a>.</p>
|
||||
|
||||
<h1>License</h1>
|
||||
<p>WordPress is free software, and is released under the terms of the <abbr title="GNU General Public License">GPL</abbr> version 2 or (at your option) any later version. See <a href="license.txt">license.txt</a>.</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,72 +0,0 @@
|
||||
{
|
||||
"betaManifestVersion" : 1,
|
||||
"version" : "5ac7244b5aa005b569735c705aaf614a",
|
||||
"entries" : [
|
||||
{ "url" : "images/align-center.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-left.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-none.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/align-right.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/archive-link.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/blue-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/bubble_bg-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/button-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/comment-grey-bubble.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/date-button.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/ed-bg.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fade-butt.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/fav-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/generic.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/gray-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/icons32-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/list.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_light.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/wpspin_dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-ghost.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/logo-login.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-image.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-music.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-other.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/media-button-video.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-vs.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-arrows.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-bits-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/menu-dark-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/no.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/required.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/resize.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/screen-options-right-up.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/se.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/star.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/toggle-arrow-rtl.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/white-grad-active.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wordpress-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/wp-logo.png", "ignoreQuery" : true }
|
||||
{ "url" : "images/xit.gif", "ignoreQuery" : true }
|
||||
{ "url" : "images/yes.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/archive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/audio.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/code.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/default.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/document.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/interactive.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/text.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/video.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/crystal/spreadsheet.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/rss.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/blank.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/images/upload.png", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/loadingAnimation.gif", "ignoreQuery" : true }
|
||||
{ "url" : "../wp-includes/js/thickbox/tb-close.png", "ignoreQuery" : true }
|
||||
]}
|
||||
File diff suppressed because one or more lines are too long
@@ -1,174 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 6]>
|
||||
<html id="ie6" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<html id="ie7" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html id="ie8" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||||
<html dir="ltr" lang="en-US">
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Wordpress 3.3.2 | Just another WordPress site</title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/style.css" />
|
||||
<link rel="pingback" href="http://lamp/wordpress-3.3.2/xmlrpc.php" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<meta name='robots' content='noindex,nofollow' />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Feed" href="http://lamp/wordpress-3.3.2/?feed=rss2" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Comments Feed" href="http://lamp/wordpress-3.3.2/?feed=comments-rss2" />
|
||||
<link rel='stylesheet' id='admin-bar-css' href='http://lamp/wordpress-3.3.2/wp-includes/css/admin-bar.css?ver=20111209' type='text/css' media='all' />
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://lamp/wordpress-3.3.2/xmlrpc.php?rsd" />
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://lamp/wordpress-3.3.2/wp-includes/wlwmanifest.xml" />
|
||||
<meta name="generator" content="WordPress 3.3.2" />
|
||||
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
|
||||
<style type="text/css" media="print">#wpadminbar { display:none; }</style>
|
||||
<style type="text/css" media="screen">
|
||||
html { margin-top: 28px !important; }
|
||||
* html body { margin-top: 28px !important; }
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body class="home blog logged-in admin-bar single-author two-column right-sidebar">
|
||||
<div id="page" class="hfeed">
|
||||
<header id="branding" role="banner">
|
||||
<hgroup>
|
||||
<h1 id="site-title"><span><a href="http://lamp/wordpress-3.3.2/" title="Wordpress 3.3.2" rel="home">Wordpress 3.3.2</a></span></h1>
|
||||
<h2 id="site-description">Just another WordPress site</h2>
|
||||
</hgroup>
|
||||
|
||||
<a href="http://lamp/wordpress-3.3.2/">
|
||||
<img src="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/images/headers/willow.jpg" width="1000" height="288" alt="" />
|
||||
</a>
|
||||
|
||||
<form method="get" id="searchform" action="http://lamp/wordpress-3.3.2/">
|
||||
<label for="s" class="assistive-text">Search</label>
|
||||
<input type="text" class="field" name="s" id="s" placeholder="Search" />
|
||||
<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
|
||||
</form>
|
||||
|
||||
<nav id="access" role="navigation">
|
||||
<h3 class="assistive-text">Main menu</h3>
|
||||
<div class="skip-link"><a class="assistive-text" href="#content" title="Skip to primary content">Skip to primary content</a></div>
|
||||
<div class="skip-link"><a class="assistive-text" href="#secondary" title="Skip to secondary content">Skip to secondary content</a></div>
|
||||
<div class="menu"><ul><li class="current_page_item"><a href="http://lamp/wordpress-3.3.2/" title="Home">Home</a></li><li class="page_item page-item-2"><a href="http://lamp/wordpress-3.3.2/?page_id=2">Sample Page</a></li></ul></div>
|
||||
</nav><!-- #access -->
|
||||
</header><!-- #branding -->
|
||||
|
||||
|
||||
<div id="main">
|
||||
<div id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><a href="http://lamp/wordpress-3.3.2/?p=1" title="Permalink to Hello world!" rel="bookmark">Hello world!</a></h1>
|
||||
|
||||
<div class="entry-meta">
|
||||
<span class="sep">Posted on </span><a href="http://lamp/wordpress-3.3.2/?p=1" title="1:05 pm" rel="bookmark"><time class="entry-date" datetime="2012-05-02T13:05:44+00:00" pubdate>May 2, 2012</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="http://lamp/wordpress-3.3.2/?author=1" title="View all posts by admin" rel="author">admin</a></span></span> </div><!-- .entry-meta -->
|
||||
|
||||
<div class="comments-link">
|
||||
<a href="http://lamp/wordpress-3.3.2/?p=1#comments" title="Comment on Hello world!">2</a> </div>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-meta">
|
||||
<span class="cat-links">
|
||||
<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="http://lamp/wordpress-3.3.2/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a> </span>
|
||||
|
||||
<span class="sep"> | </span>
|
||||
<span class="comments-link"><a href="http://lamp/wordpress-3.3.2/?p=1#comments" title="Comment on Hello world!"><b>2</b> Replies</a></span>
|
||||
|
||||
<span class="edit-link"><a class="post-edit-link" href="http://lamp/wordpress-3.3.2/wp-admin/post.php?post=1&action=edit" title="Edit Post">Edit</a></span> </footer><!-- #entry-meta -->
|
||||
</article><!-- #post-1 -->
|
||||
|
||||
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<div id="secondary" class="widget-area" role="complementary">
|
||||
<aside id="search-2" class="widget widget_search"> <form method="get" id="searchform" action="http://lamp/wordpress-3.3.2/">
|
||||
<label for="s" class="assistive-text">Search</label>
|
||||
<input type="text" class="field" name="s" id="s" placeholder="Search" />
|
||||
<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
|
||||
</form>
|
||||
</aside> <aside id="recent-posts-2" class="widget widget_recent_entries"> <h3 class="widget-title">Recent Posts</h3> <ul>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/?p=1" title="Hello world!">Hello world!</a></li>
|
||||
</ul>
|
||||
</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h3 class="widget-title">Recent Comments</h3><ul id="recentcomments"><li class="recentcomments">Pwet on <a href="http://lamp/wordpress-3.3.2/?p=1#comment-2">Hello world!</a></li><li class="recentcomments"><a href='http://wordpress.org/' rel='external nofollow' class='url'>Mr WordPress</a> on <a href="http://lamp/wordpress-3.3.2/?p=1#comment-1">Hello world!</a></li></ul></aside><aside id="archives-2" class="widget widget_archive"><h3 class="widget-title">Archives</h3> <ul>
|
||||
<li><a href='http://lamp/wordpress-3.3.2/?m=201205' title='May 2012'>May 2012</a></li>
|
||||
</ul>
|
||||
</aside><aside id="categories-2" class="widget widget_categories"><h3 class="widget-title">Categories</h3> <ul>
|
||||
<li class="cat-item cat-item-1"><a href="http://lamp/wordpress-3.3.2/?cat=1" title="View all posts filed under Uncategorized">Uncategorized</a>
|
||||
</li>
|
||||
</ul>
|
||||
</aside><aside id="meta-2" class="widget widget_meta"><h3 class="widget-title">Meta</h3> <ul>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/wp-admin/">Site Admin</a></li> <li><a href="http://lamp/wordpress-3.3.2/wp-login.php?action=logout&_wpnonce=56da14efc4">Log out</a></li>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/?feed=rss2" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/?feed=comments-rss2" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
|
||||
</ul>
|
||||
</aside> </div><!-- #secondary .widget-area -->
|
||||
|
||||
</div><!-- #main -->
|
||||
|
||||
<footer id="colophon" role="contentinfo">
|
||||
|
||||
|
||||
|
||||
<div id="site-generator">
|
||||
<a href="http://wordpress.org/" title="Semantic Personal Publishing Platform" rel="generator">Proudly powered by WordPress</a>
|
||||
</div>
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<script type='text/javascript' src='http://lamp/wordpress-3.3.2/wp-includes/js/admin-bar.js?ver=20111130'></script>
|
||||
<div id="wpadminbar" class="nojq nojs" role="navigation">
|
||||
<div class="quicklinks">
|
||||
<ul id="wp-admin-bar-root-default" class="ab-top-menu">
|
||||
<li id="wp-admin-bar-wp-logo" class="menupop"><a class="ab-item" tabindex="10" aria-haspopup="true" href="http://lamp/wordpress-3.3.2/wp-admin/about.php" title="About WordPress"><span class="ab-icon"></span></a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-wp-logo-default" class="ab-submenu">
|
||||
<li id="wp-admin-bar-about" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/about.php">About WordPress</a> </li></ul><ul id="wp-admin-bar-wp-logo-external" class="ab-sub-secondary ab-submenu">
|
||||
<li id="wp-admin-bar-wporg" class=""><a class="ab-item" tabindex="10" href="http://wordpress.org">WordPress.org</a> </li>
|
||||
<li id="wp-admin-bar-documentation" class=""><a class="ab-item" tabindex="10" href="http://codex.wordpress.org">Documentation</a> </li>
|
||||
<li id="wp-admin-bar-support-forums" class=""><a class="ab-item" tabindex="10" href="http://wordpress.org/support/">Support Forums</a> </li>
|
||||
<li id="wp-admin-bar-feedback" class=""><a class="ab-item" tabindex="10" href="http://wordpress.org/support/forum/requests-and-feedback">Feedback</a> </li></ul></div> </li>
|
||||
<li id="wp-admin-bar-site-name" class="menupop"><a class="ab-item" tabindex="10" aria-haspopup="true" href="http://lamp/wordpress-3.3.2/wp-admin/">Wordpress 3.3.2</a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-site-name-default" class="ab-submenu">
|
||||
<li id="wp-admin-bar-dashboard" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/">Dashboard</a> </li></ul><ul id="wp-admin-bar-appearance" class=" ab-submenu">
|
||||
<li id="wp-admin-bar-themes" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/themes.php">Themes</a> </li>
|
||||
<li id="wp-admin-bar-widgets" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/widgets.php">Widgets</a> </li>
|
||||
<li id="wp-admin-bar-menus" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/nav-menus.php">Menus</a> </li>
|
||||
<li id="wp-admin-bar-background" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/themes.php?page=custom-background">Background</a> </li>
|
||||
<li id="wp-admin-bar-header" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/themes.php?page=custom-header">Header</a> </li></ul></div> </li>
|
||||
<li id="wp-admin-bar-comments" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/edit-comments.php" title="0 comments awaiting moderation"><span class="ab-icon"></span><span id="ab-awaiting-mod" class="ab-label awaiting-mod pending-count count-0">0</span></a> </li>
|
||||
<li id="wp-admin-bar-new-content" class="menupop"><a class="ab-item" tabindex="10" aria-haspopup="true" href="http://lamp/wordpress-3.3.2/wp-admin/post-new.php" title="Add New"><span class="ab-icon"></span><span class="ab-label">New</span></a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-new-content-default" class="ab-submenu">
|
||||
<li id="wp-admin-bar-new-post" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/post-new.php">Post</a> </li>
|
||||
<li id="wp-admin-bar-new-media" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/media-new.php">Media</a> </li>
|
||||
<li id="wp-admin-bar-new-link" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/link-add.php">Link</a> </li>
|
||||
<li id="wp-admin-bar-new-page" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/post-new.php?post_type=page">Page</a> </li>
|
||||
<li id="wp-admin-bar-new-user" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/user-new.php">User</a> </li></ul></div> </li></ul><ul id="wp-admin-bar-top-secondary" class="ab-top-secondary ab-top-menu">
|
||||
<li id="wp-admin-bar-search" class=" admin-bar-search"><div class="ab-item ab-empty-item" tabindex="-1"><form action="http://lamp/wordpress-3.3.2/" method="get" id="adminbarsearch"><input class="adminbar-input" name="s" id="adminbar-search" tabindex="10" type="text" value="" maxlength="150" /><input type="submit" class="adminbar-button" value="Search"/></form></div> </li>
|
||||
<li id="wp-admin-bar-my-account" class="menupop with-avatar"><a class="ab-item" tabindex="10" aria-haspopup="true" href="http://lamp/wordpress-3.3.2/wp-admin/profile.php" title="My Account">Howdy, admin<img alt='' src='http://0.gravatar.com/avatar/64e1b8d34f425d19e1ee2ea7236d3028?s=16&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D16&r=G' class='avatar avatar-16 photo' height='16' width='16' /></a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-user-actions" class=" ab-submenu">
|
||||
<li id="wp-admin-bar-user-info" class=""><a class="ab-item" tabindex="-1" href="http://lamp/wordpress-3.3.2/wp-admin/profile.php"><img alt='' src='http://0.gravatar.com/avatar/64e1b8d34f425d19e1ee2ea7236d3028?s=64&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D64&r=G' class='avatar avatar-64 photo' height='64' width='64' /><span class='display-name'>admin</span></a> </li>
|
||||
<li id="wp-admin-bar-edit-profile" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/profile.php">Edit My Profile</a> </li>
|
||||
<li id="wp-admin-bar-logout" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-login.php?action=logout&_wpnonce=56da14efc4">Log Out</a> </li></ul></div> </li></ul> </div>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,138 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 6]>
|
||||
<html id="ie6" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<html id="ie7" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html id="ie8" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||||
<html dir="ltr" lang="en-US">
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Wordpress 3.4 beta 4 | Just another WordPress site</title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="http://lamp/wordpress-3.4-beta-4/wp-content/themes/twentyeleven/style.css" />
|
||||
<link rel="pingback" href="http://lamp/wordpress-3.4-beta-4/xmlrpc.php" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://lamp/wordpress-3.4-beta-4/wp-content/themes/twentyeleven/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<meta name='robots' content='noindex,nofollow' />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.4 beta 4 » Feed" href="http://lamp/wordpress-3.4-beta-4/?feed=rss2" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.4 beta 4 » Comments Feed" href="http://lamp/wordpress-3.4-beta-4/?feed=comments-rss2" />
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://lamp/wordpress-3.4-beta-4/xmlrpc.php?rsd" />
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://lamp/wordpress-3.4-beta-4/wp-includes/wlwmanifest.xml" />
|
||||
<meta name="generator" content="WordPress 3.4-beta4" />
|
||||
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
|
||||
</head>
|
||||
|
||||
<body class="home blog single-author two-column right-sidebar">
|
||||
<div id="page" class="hfeed">
|
||||
<header id="branding" role="banner">
|
||||
<hgroup>
|
||||
<h1 id="site-title"><span><a href="http://lamp/wordpress-3.4-beta-4/" title="Wordpress 3.4 beta 4" rel="home">Wordpress 3.4 beta 4</a></span></h1>
|
||||
<h2 id="site-description">Just another WordPress site</h2>
|
||||
</hgroup>
|
||||
|
||||
<a href="http://lamp/wordpress-3.4-beta-4/">
|
||||
<img src="http://lamp/wordpress-3.4-beta-4/wp-content/themes/twentyeleven/images/headers/wheel.jpg" width="1000" height="288" alt="" />
|
||||
</a>
|
||||
|
||||
<form method="get" id="searchform" action="http://lamp/wordpress-3.4-beta-4/">
|
||||
<label for="s" class="assistive-text">Search</label>
|
||||
<input type="text" class="field" name="s" id="s" placeholder="Search" />
|
||||
<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
|
||||
</form>
|
||||
|
||||
<nav id="access" role="navigation">
|
||||
<h3 class="assistive-text">Main menu</h3>
|
||||
<div class="skip-link"><a class="assistive-text" href="#content" title="Skip to primary content">Skip to primary content</a></div>
|
||||
<div class="skip-link"><a class="assistive-text" href="#secondary" title="Skip to secondary content">Skip to secondary content</a></div>
|
||||
<div class="menu"><ul><li class="current_page_item"><a href="http://lamp/wordpress-3.4-beta-4/" title="Home">Home</a></li><li class="page_item page-item-2"><a href="http://lamp/wordpress-3.4-beta-4/?page_id=2">Sample Page</a></li></ul></div>
|
||||
</nav><!-- #access -->
|
||||
</header><!-- #branding -->
|
||||
|
||||
|
||||
<div id="main">
|
||||
|
||||
<div id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><a href="http://lamp/wordpress-3.4-beta-4/?p=1" title="Permalink to Hello world!" rel="bookmark">Hello world!</a></h1>
|
||||
|
||||
<div class="entry-meta">
|
||||
<span class="sep">Posted on </span><a href="http://lamp/wordpress-3.4-beta-4/?p=1" title="4:29 pm" rel="bookmark"><time class="entry-date" datetime="2012-05-09T16:29:08+00:00" pubdate>May 9, 2012</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="http://lamp/wordpress-3.4-beta-4/?author=1" title="View all posts by admin" rel="author">admin</a></span></span> </div><!-- .entry-meta -->
|
||||
|
||||
<div class="comments-link">
|
||||
<a href="http://lamp/wordpress-3.4-beta-4/?p=1#comments" title="Comment on Hello world!">1</a> </div>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-meta">
|
||||
<span class="cat-links">
|
||||
<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="http://lamp/wordpress-3.4-beta-4/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a> </span>
|
||||
|
||||
<span class="sep"> | </span>
|
||||
<span class="comments-link"><a href="http://lamp/wordpress-3.4-beta-4/?p=1#comments" title="Comment on Hello world!"><b>1</b> Reply</a></span>
|
||||
|
||||
</footer><!-- #entry-meta -->
|
||||
</article><!-- #post-1 -->
|
||||
|
||||
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<div id="secondary" class="widget-area" role="complementary">
|
||||
<aside id="search-2" class="widget widget_search"> <form method="get" id="searchform" action="http://lamp/wordpress-3.4-beta-4/">
|
||||
<label for="s" class="assistive-text">Search</label>
|
||||
<input type="text" class="field" name="s" id="s" placeholder="Search" />
|
||||
<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
|
||||
</form>
|
||||
</aside> <aside id="recent-posts-2" class="widget widget_recent_entries"> <h3 class="widget-title">Recent Posts</h3> <ul>
|
||||
<li><a href="http://lamp/wordpress-3.4-beta-4/?p=1" title="Hello world!">Hello world!</a></li>
|
||||
</ul>
|
||||
</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h3 class="widget-title">Recent Comments</h3><ul id="recentcomments"><li class="recentcomments"><a href='http://wordpress.org/' rel='external nofollow' class='url'>Mr WordPress</a> on <a href="http://lamp/wordpress-3.4-beta-4/?p=1#comment-1">Hello world!</a></li></ul></aside><aside id="archives-2" class="widget widget_archive"><h3 class="widget-title">Archives</h3> <ul>
|
||||
<li><a href='http://lamp/wordpress-3.4-beta-4/?m=201205' title='May 2012'>May 2012</a></li>
|
||||
</ul>
|
||||
</aside><aside id="categories-2" class="widget widget_categories"><h3 class="widget-title">Categories</h3> <ul>
|
||||
<li class="cat-item cat-item-1"><a href="http://lamp/wordpress-3.4-beta-4/?cat=1" title="View all posts filed under Uncategorized">Uncategorized</a>
|
||||
</li>
|
||||
</ul>
|
||||
</aside><aside id="meta-2" class="widget widget_meta"><h3 class="widget-title">Meta</h3> <ul>
|
||||
<li><a href="http://lamp/wordpress-3.4-beta-4/wp-login.php">Log in</a></li>
|
||||
<li><a href="http://lamp/wordpress-3.4-beta-4/?feed=rss2" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://lamp/wordpress-3.4-beta-4/?feed=comments-rss2" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
|
||||
</ul>
|
||||
</aside> </div><!-- #secondary .widget-area -->
|
||||
|
||||
</div><!-- #main -->
|
||||
|
||||
<footer id="colophon" role="contentinfo">
|
||||
|
||||
|
||||
|
||||
<div id="site-generator">
|
||||
<a href="http://wordpress.org/" title="Semantic Personal Publishing Platform" rel="generator">Proudly powered by WordPress</a>
|
||||
</div>
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,174 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 6]>
|
||||
<html id="ie6" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<html id="ie7" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html id="ie8" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||||
<html dir="ltr" lang="en-US">
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Wordpress 3.3.2 | Just another WordPress site</title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/style.css" />
|
||||
<link rel="pingback" href="http://lamp/wordpress-3.3.2/xmlrpc.php" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<meta name='robots' content='noindex,nofollow' />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Feed" href="http://lamp/wordpress-3.3.2/?feed=rss2" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Comments Feed" href="http://lamp/wordpress-3.3.2/?feed=comments-rss2" />
|
||||
<link rel='stylesheet' id='admin-bar-css' href='http://lamp/wordpress-3.3.2/wp-includes/css/admin-bar.css?ver=20111209' type='text/css' media='all' />
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://lamp/wordpress-3.3.2/xmlrpc.php?rsd" />
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://lamp/wordpress-3.3.2/wp-includes/wlwmanifest.xml" />
|
||||
<meta name="generator" content="WordPress 5506" />
|
||||
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
|
||||
<style type="text/css" media="print">#wpadminbar { display:none; }</style>
|
||||
<style type="text/css" media="screen">
|
||||
html { margin-top: 28px !important; }
|
||||
* html body { margin-top: 28px !important; }
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body class="home blog logged-in admin-bar single-author two-column right-sidebar">
|
||||
<div id="page" class="hfeed">
|
||||
<header id="branding" role="banner">
|
||||
<hgroup>
|
||||
<h1 id="site-title"><span><a href="http://lamp/wordpress-3.3.2/" title="Wordpress 3.3.2" rel="home">Wordpress 3.3.2</a></span></h1>
|
||||
<h2 id="site-description">Just another WordPress site</h2>
|
||||
</hgroup>
|
||||
|
||||
<a href="http://lamp/wordpress-3.3.2/">
|
||||
<img src="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/images/headers/willow.jpg" width="1000" height="288" alt="" />
|
||||
</a>
|
||||
|
||||
<form method="get" id="searchform" action="http://lamp/wordpress-3.3.2/">
|
||||
<label for="s" class="assistive-text">Search</label>
|
||||
<input type="text" class="field" name="s" id="s" placeholder="Search" />
|
||||
<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
|
||||
</form>
|
||||
|
||||
<nav id="access" role="navigation">
|
||||
<h3 class="assistive-text">Main menu</h3>
|
||||
<div class="skip-link"><a class="assistive-text" href="#content" title="Skip to primary content">Skip to primary content</a></div>
|
||||
<div class="skip-link"><a class="assistive-text" href="#secondary" title="Skip to secondary content">Skip to secondary content</a></div>
|
||||
<div class="menu"><ul><li class="current_page_item"><a href="http://lamp/wordpress-3.3.2/" title="Home">Home</a></li><li class="page_item page-item-2"><a href="http://lamp/wordpress-3.3.2/?page_id=2">Sample Page</a></li></ul></div>
|
||||
</nav><!-- #access -->
|
||||
</header><!-- #branding -->
|
||||
|
||||
|
||||
<div id="main">
|
||||
<div id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><a href="http://lamp/wordpress-3.3.2/?p=1" title="Permalink to Hello world!" rel="bookmark">Hello world!</a></h1>
|
||||
|
||||
<div class="entry-meta">
|
||||
<span class="sep">Posted on </span><a href="http://lamp/wordpress-3.3.2/?p=1" title="1:05 pm" rel="bookmark"><time class="entry-date" datetime="2012-05-02T13:05:44+00:00" pubdate>May 2, 2012</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="http://lamp/wordpress-3.3.2/?author=1" title="View all posts by admin" rel="author">admin</a></span></span> </div><!-- .entry-meta -->
|
||||
|
||||
<div class="comments-link">
|
||||
<a href="http://lamp/wordpress-3.3.2/?p=1#comments" title="Comment on Hello world!">2</a> </div>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-meta">
|
||||
<span class="cat-links">
|
||||
<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="http://lamp/wordpress-3.3.2/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a> </span>
|
||||
|
||||
<span class="sep"> | </span>
|
||||
<span class="comments-link"><a href="http://lamp/wordpress-3.3.2/?p=1#comments" title="Comment on Hello world!"><b>2</b> Replies</a></span>
|
||||
|
||||
<span class="edit-link"><a class="post-edit-link" href="http://lamp/wordpress-3.3.2/wp-admin/post.php?post=1&action=edit" title="Edit Post">Edit</a></span> </footer><!-- #entry-meta -->
|
||||
</article><!-- #post-1 -->
|
||||
|
||||
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<div id="secondary" class="widget-area" role="complementary">
|
||||
<aside id="search-2" class="widget widget_search"> <form method="get" id="searchform" action="http://lamp/wordpress-3.3.2/">
|
||||
<label for="s" class="assistive-text">Search</label>
|
||||
<input type="text" class="field" name="s" id="s" placeholder="Search" />
|
||||
<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
|
||||
</form>
|
||||
</aside> <aside id="recent-posts-2" class="widget widget_recent_entries"> <h3 class="widget-title">Recent Posts</h3> <ul>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/?p=1" title="Hello world!">Hello world!</a></li>
|
||||
</ul>
|
||||
</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h3 class="widget-title">Recent Comments</h3><ul id="recentcomments"><li class="recentcomments">Pwet on <a href="http://lamp/wordpress-3.3.2/?p=1#comment-2">Hello world!</a></li><li class="recentcomments"><a href='http://wordpress.org/' rel='external nofollow' class='url'>Mr WordPress</a> on <a href="http://lamp/wordpress-3.3.2/?p=1#comment-1">Hello world!</a></li></ul></aside><aside id="archives-2" class="widget widget_archive"><h3 class="widget-title">Archives</h3> <ul>
|
||||
<li><a href='http://lamp/wordpress-3.3.2/?m=201205' title='May 2012'>May 2012</a></li>
|
||||
</ul>
|
||||
</aside><aside id="categories-2" class="widget widget_categories"><h3 class="widget-title">Categories</h3> <ul>
|
||||
<li class="cat-item cat-item-1"><a href="http://lamp/wordpress-3.3.2/?cat=1" title="View all posts filed under Uncategorized">Uncategorized</a>
|
||||
</li>
|
||||
</ul>
|
||||
</aside><aside id="meta-2" class="widget widget_meta"><h3 class="widget-title">Meta</h3> <ul>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/wp-admin/">Site Admin</a></li> <li><a href="http://lamp/wordpress-3.3.2/wp-login.php?action=logout&_wpnonce=56da14efc4">Log out</a></li>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/?feed=rss2" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/?feed=comments-rss2" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
|
||||
</ul>
|
||||
</aside> </div><!-- #secondary .widget-area -->
|
||||
|
||||
</div><!-- #main -->
|
||||
|
||||
<footer id="colophon" role="contentinfo">
|
||||
|
||||
|
||||
|
||||
<div id="site-generator">
|
||||
<a href="http://wordpress.org/" title="Semantic Personal Publishing Platform" rel="generator">Proudly powered by WordPress</a>
|
||||
</div>
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<script type='text/javascript' src='http://lamp/wordpress-3.3.2/wp-includes/js/admin-bar.js?ver=20111130'></script>
|
||||
<div id="wpadminbar" class="nojq nojs" role="navigation">
|
||||
<div class="quicklinks">
|
||||
<ul id="wp-admin-bar-root-default" class="ab-top-menu">
|
||||
<li id="wp-admin-bar-wp-logo" class="menupop"><a class="ab-item" tabindex="10" aria-haspopup="true" href="http://lamp/wordpress-3.3.2/wp-admin/about.php" title="About WordPress"><span class="ab-icon"></span></a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-wp-logo-default" class="ab-submenu">
|
||||
<li id="wp-admin-bar-about" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/about.php">About WordPress</a> </li></ul><ul id="wp-admin-bar-wp-logo-external" class="ab-sub-secondary ab-submenu">
|
||||
<li id="wp-admin-bar-wporg" class=""><a class="ab-item" tabindex="10" href="http://wordpress.org">WordPress.org</a> </li>
|
||||
<li id="wp-admin-bar-documentation" class=""><a class="ab-item" tabindex="10" href="http://codex.wordpress.org">Documentation</a> </li>
|
||||
<li id="wp-admin-bar-support-forums" class=""><a class="ab-item" tabindex="10" href="http://wordpress.org/support/">Support Forums</a> </li>
|
||||
<li id="wp-admin-bar-feedback" class=""><a class="ab-item" tabindex="10" href="http://wordpress.org/support/forum/requests-and-feedback">Feedback</a> </li></ul></div> </li>
|
||||
<li id="wp-admin-bar-site-name" class="menupop"><a class="ab-item" tabindex="10" aria-haspopup="true" href="http://lamp/wordpress-3.3.2/wp-admin/">Wordpress 3.3.2</a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-site-name-default" class="ab-submenu">
|
||||
<li id="wp-admin-bar-dashboard" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/">Dashboard</a> </li></ul><ul id="wp-admin-bar-appearance" class=" ab-submenu">
|
||||
<li id="wp-admin-bar-themes" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/themes.php">Themes</a> </li>
|
||||
<li id="wp-admin-bar-widgets" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/widgets.php">Widgets</a> </li>
|
||||
<li id="wp-admin-bar-menus" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/nav-menus.php">Menus</a> </li>
|
||||
<li id="wp-admin-bar-background" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/themes.php?page=custom-background">Background</a> </li>
|
||||
<li id="wp-admin-bar-header" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/themes.php?page=custom-header">Header</a> </li></ul></div> </li>
|
||||
<li id="wp-admin-bar-comments" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/edit-comments.php" title="0 comments awaiting moderation"><span class="ab-icon"></span><span id="ab-awaiting-mod" class="ab-label awaiting-mod pending-count count-0">0</span></a> </li>
|
||||
<li id="wp-admin-bar-new-content" class="menupop"><a class="ab-item" tabindex="10" aria-haspopup="true" href="http://lamp/wordpress-3.3.2/wp-admin/post-new.php" title="Add New"><span class="ab-icon"></span><span class="ab-label">New</span></a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-new-content-default" class="ab-submenu">
|
||||
<li id="wp-admin-bar-new-post" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/post-new.php">Post</a> </li>
|
||||
<li id="wp-admin-bar-new-media" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/media-new.php">Media</a> </li>
|
||||
<li id="wp-admin-bar-new-link" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/link-add.php">Link</a> </li>
|
||||
<li id="wp-admin-bar-new-page" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/post-new.php?post_type=page">Page</a> </li>
|
||||
<li id="wp-admin-bar-new-user" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/user-new.php">User</a> </li></ul></div> </li></ul><ul id="wp-admin-bar-top-secondary" class="ab-top-secondary ab-top-menu">
|
||||
<li id="wp-admin-bar-search" class=" admin-bar-search"><div class="ab-item ab-empty-item" tabindex="-1"><form action="http://lamp/wordpress-3.3.2/" method="get" id="adminbarsearch"><input class="adminbar-input" name="s" id="adminbar-search" tabindex="10" type="text" value="" maxlength="150" /><input type="submit" class="adminbar-button" value="Search"/></form></div> </li>
|
||||
<li id="wp-admin-bar-my-account" class="menupop with-avatar"><a class="ab-item" tabindex="10" aria-haspopup="true" href="http://lamp/wordpress-3.3.2/wp-admin/profile.php" title="My Account">Howdy, admin<img alt='' src='http://0.gravatar.com/avatar/64e1b8d34f425d19e1ee2ea7236d3028?s=16&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D16&r=G' class='avatar avatar-16 photo' height='16' width='16' /></a><div class="ab-sub-wrapper"><ul id="wp-admin-bar-user-actions" class=" ab-submenu">
|
||||
<li id="wp-admin-bar-user-info" class=""><a class="ab-item" tabindex="-1" href="http://lamp/wordpress-3.3.2/wp-admin/profile.php"><img alt='' src='http://0.gravatar.com/avatar/64e1b8d34f425d19e1ee2ea7236d3028?s=64&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D64&r=G' class='avatar avatar-64 photo' height='64' width='64' /><span class='display-name'>admin</span></a> </li>
|
||||
<li id="wp-admin-bar-edit-profile" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-admin/profile.php">Edit My Profile</a> </li>
|
||||
<li id="wp-admin-bar-logout" class=""><a class="ab-item" tabindex="10" href="http://lamp/wordpress-3.3.2/wp-login.php?action=logout&_wpnonce=56da14efc4">Log Out</a> </li></ul></div> </li></ul> </div>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user