Skip to content

Commit b51b2d0

Browse files
committedSep 7, 2012
Work through the remaining FIXME pages; put them in their correct categories,
and update aged markup as appropriate. Yes, I did check the new markup on the non-beta site too.
1 parent 5eb4baa commit b51b2d0

12 files changed

+58
-58
lines changed
 

‎cvsup.php

+7-9
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
Compiled snapshots for Windows users are also included.
2929
</p>
3030
';
31-
site_header("Using CVSup to maintain a local CVS repository", array("current" => "FIXME"));
31+
site_header("Using CVSup to maintain a local CVS repository", array("current" => "help"));
3232
?>
3333

3434
<h1>Using CVSup To Maintain A Local CVS Repository</h1>
@@ -50,29 +50,27 @@
5050
</li>
5151
<li>
5252
Create a php.cvsup file containing the following content:
53-
<pre>
54-
*default host=CVSup.php.net
53+
<pre class="info">*default host=CVSup.php.net
5554
*default base=/usr/src/php
5655
*default release=cvs
5756
*default compress
5857
*default tag=.
5958
*default delete use-rel-suffix
60-
php-src
61-
</pre>
62-
This will cause the php-src tree to be stored in <tt>/usr/src/php</tt>
59+
php-src</pre>
60+
This will cause the php-src tree to be stored in <code>/usr/src/php</code>
6361
(you need to create that directory manually).
6462
</li>
6563
<li>
6664
At a command prompt, simply type:
67-
<pre>cvsup php.cvsup</pre>
65+
<code>cvsup php.cvsup</code>
6866
</li>
6967
<li>
7068
If you are behind a firewall, you might need to use:
71-
<pre>cvsup -P - php.cvsup</pre>
69+
<code>cvsup -P - php.cvsup</code>
7270
</li>
7371
<li>
7472
To build PHP, you need to install a few utilities (GNU autoconf,
75-
libtool, bison). Cd into <tt>php-src</tt> and run
73+
libtool, bison). Cd into <code>php-src</code> and run
7674
<code>./buildconf</code>.
7775
</li>
7876
</ol>

‎git-php.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<a href="/git.php">Git</a>. No Git account is required.
2020
</p>
2121
';
22-
site_header("Using Git for PHP Development", array("current" => "FIXME"));
22+
site_header("Using Git for PHP Development", array("current" => "community"));
2323

2424
$groups = array(
2525
"none" => "Choose One",
@@ -281,7 +281,9 @@
281281
<a href="http://pear.php.net/">the PEAR website</a>. If you have a new PECL
282282
extension you wish to contribute, bring it up on the appropriate
283283
<a href="http://pecl.php.net/support.php">PECL mailing list</a> first.
284-
<br />
284+
</p>
285+
286+
<p>
285287
Once your PEAR package has been approved, or you get the sense that
286288
people generally agree that your PECL contribution is worthwhile, you
287289
may apply for a Git account here. Specify the name of your PEAR package
@@ -381,7 +383,7 @@ class="max" value="<?php if (isset($_POST['password'])) echo clean($_POST['passw
381383
<td><input type="text" size="10" name="yesno" class="max" value="no" /></td>
382384
</tr>
383385
<tr>
384-
<th>Type of initial karma (who to send this request to):</th>
386+
<th class="subr">Type of initial karma (who to send this request to):</th>
385387
<td>
386388
<select name="group">
387389
<?php

‎mirror.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
mirroring page</a>.
1717
</p>
1818
';
19-
site_header("Information About This PHP Mirror Site", array("current" => "FIXME"));
19+
site_header("Information About This PHP Mirror Site", array("current" => "community"));
2020
?>
2121

2222
<h1>Information About This PHP Mirror Site</h1>

‎mirroring-stats.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// $Id$
33
$_SERVER['BASE_PAGE'] = 'mirroring-stats.php';
44
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
5-
site_header("Setting Up Local Stats", array("current" => "FIXME"));
5+
site_header("Setting Up Local Stats", array("current" => "community"));
66
?>
77

88
<h1>Setting Up Local Stats</h1>
@@ -26,15 +26,15 @@
2626
<li>
2727
<p>
2828
Install The Webalizer<br /><br />
29-
There is a <tt>configure</tt> file in the distribution now, and other setup options
30-
are also available. Consult the <tt>INSTALL</tt> file included in the package.
31-
Copy the executable to somewhere accessible, eg. <tt>/usr/bin</tt>.
29+
There is a <code>configure</code> file in the distribution now, and other setup options
30+
are also available. Consult the <code>INSTALL</code> file included in the package.
31+
Copy the executable to somewhere accessible, eg. <code>/usr/bin</code>.
3232
</p>
3333
</li>
3434
<li>
3535
<p>
3636
Grab <a href="/mirrorkit.tgz">mirrorkit.tgz</a>, extract
37-
<tt>stats/php.conf</tt> and edit the file.<br /><br />
37+
<code>stats/php.conf</code> and edit the file.<br /><br />
3838
This is the main conf file for The Webalizer. Specifically, you will want to
3939
change the lines which define where your log file sits, where the output
4040
should go, and the name of your host machine. Look for these settings:
@@ -47,7 +47,7 @@
4747
<p>
4848
Give it a test<br /><br />
4949
From the command line in the stats directory, type:
50-
<tt>webalizer -c php.conf</tt> You should get an index
50+
<code>webalizer -c php.conf</code> You should get an index
5151
file, a usage file for the current month, some images,
5252
and a history file.
5353
</p>

‎mirroring-troubles.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414
';
1515

16-
site_header("The PHP mirrors problem and troubleshooting guide", array("current" => "FIXME"));
16+
site_header("The PHP mirrors problem and troubleshooting guide", array("current" => "help"));
1717
?>
1818

1919
<h1>Common troubles that PHP.net mirrors face</h1>
@@ -33,15 +33,15 @@
3333
directory and disable it from there. For example:
3434
</p>
3535
<pre class="info">
36-
&lt;VirtualHost *:80>
37-
&lt;Directory /path/to/phpweb>
36+
&lt;VirtualHost *:80&gt;
37+
&lt;Directory /path/to/phpweb&gt;
3838
Options -Indexes -MultiViews
39-
&lt;/Directory>
39+
&lt;/Directory&gt;
4040

4141
DocumentRoot /path/to/phpweb
4242
ServerName ....
4343
....
44-
&lt;/VirtualHost>
44+
&lt;/VirtualHost&gt;
4545
</pre>
4646
<p>
4747
The <a href="mirroring.php#settings">mirror settings</a> example also
@@ -53,9 +53,9 @@
5353
<a name="content-type"></a>
5454
<h3>Improper Content-Type [<a href="/manual/en/faq.html.php">?</a>]</h3>
5555
<p>
56-
Some pages are returning incorrect <em>Content-Type</em> headers. For example,
57-
xx.php.net/manual/en/faq.html.php should be returning <em>text/html</em>
58-
instead of <em>application/x-httpd-php</em>. See also the Apache
56+
Some pages are returning incorrect <code>Content-Type</code> headers. For example,
57+
xx.php.net/manual/en/faq.html.php should be returning <code>text/html</code>
58+
instead of <code>application/x-httpd-php</code>. See also the Apache
5959
documentation describing
6060
<a href="http://httpd.apache.org/docs/content-negotiation.html">Content
6161
Negotiation</a>. This problem might be specific to
@@ -65,7 +65,7 @@
6565
<a name="manual-redirect"></a>
6666
<h3>Manual redirects [<a href="/manual/">?</a>]</h3>
6767
<p>
68-
By default, Apache inserts an alias for <em>/manual/</em> in the configuration
68+
By default, Apache inserts an alias for <code>/manual/</code> in the configuration
6969
and this causes problems for mirrors. So for example if you find that
7070
the manuals are listed on the documentation page but all of the links
7171
open up a search page, you probably suffer from this problem and must
@@ -76,7 +76,7 @@
7676
<h3>Broken manual shortcuts [<a href="/echo">?</a>]</h3>
7777
<p>
7878
If the shortcut features [e.g. xx.php.net/echo] are not working, be sure
79-
the manual files are really under <em>DOCUMENT_ROOT</em> and that the English
79+
the manual files are really under <code>DOCUMENT_ROOT</code> and that the English
8080
manual files are present. Also make sure that you have a correct
8181
ErrorDocument setting.
8282
</p>
@@ -94,7 +94,7 @@
9494
<p>
9595
The <a href="mirroring.php">mirroring guidelines</a> mention that Apache2
9696
enables a 'var' handler by default and this may be disabled by using
97-
<em>RemoveHandler var</em> in the configuration file.
97+
<code>RemoveHandler var</code> in the configuration file.
9898
</p>
9999

100100
<a name="msi"></a>
@@ -104,7 +104,7 @@
104104
when attempting to download the PHP Installer (a .msi file). Your web
105105
server configuration should be adjusted to force .msi files as
106106
'application/octet-stream'. In Apache this may be done by using:
107-
<em>AddType application/octet-stream .msi</em>
107+
<code>AddType application/octet-stream .msi</code>
108108
</p>
109109

110110
<a name="unlisted"></a>

‎mirroring.php

+21-21
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
';
2121
*/
2222

23-
site_header("Mirroring The PHP Website", array("current" => "FIXME"));
23+
site_header("Mirroring The PHP Website", array("current" => "community"));
2424

2525
// Get a minute to print out for the cron example
2626
function make_seed()
@@ -94,7 +94,7 @@ function make_seed()
9494

9595
<p>
9696
If you are not an official mirror (e.g. you mirror the site for your company's
97-
internal use), you should not rsync from <tt>rsync.php.net</tt> more frequently
97+
internal use), you should not rsync from <code>rsync.php.net</code> more frequently
9898
than once a day, or you may find your IP blocked. Also, please make
9999
an effort to only mirror those parts of the site that you actually need.
100100
(For example, <a href="#exclude">exclude the manual in all languages that you
@@ -134,22 +134,22 @@ function make_seed()
134134
</pre>
135135

136136
<p>
137-
after <tt>"--delete-after"</tt> in the command line above (substituting your
138-
prefered language code in place of <tt>'en'</tt>). You can also exclude the
137+
after <code>"--delete-after"</code> in the command line above (substituting your
138+
prefered language code in place of <code>'en'</code>). You can also exclude the
139139
whole distributions directory (and the related extra folder) by replacing
140-
<tt>"--exclude='distributions/manual/**'"</tt> with
141-
<tt>"--exclude='distributions/**' --exclude='extra/**'"</tt>.
140+
<code>"--exclude='distributions/manual/**'"</code> with
141+
<code>"--exclude='distributions/**' --exclude='extra/**'"</code>.
142142
</p>
143143

144144
<p>
145-
If <tt>/your/local/path</tt> isn't in your web document tree (why isn't it?),
146-
then symlink the <tt>phpweb/</tt> directory to the correct place on your
145+
If <code>/your/local/path</code> isn't in your web document tree (why isn't it?),
146+
then symlink the <code>phpweb/</code> directory to the correct place on your
147147
server.
148148
</p>
149149

150150
<p>
151151
Official PHP mirror sites should provide the exact content coming from
152-
<tt>rsync.php.net</tt>, and should not be altered in any way not described
152+
<code>rsync.php.net</code>, and should not be altered in any way not described
153153
in the mirroring guidelines. Failing to do so can result in immediate
154154
removal of your mirror from our list.
155155
</p>
@@ -177,7 +177,7 @@ function make_seed()
177177
<h2>Setup Apache VirtualHost</h2>
178178

179179
<p>
180-
Make sure your web server is set up to serve up <tt>.php</tt> files
180+
Make sure your web server is set up to serve up <code>.php</code> files
181181
as PHP parsed files. If it isn't, add the mime-type to your config.
182182
</p>
183183
<p class="warn">
@@ -252,10 +252,10 @@ function make_seed()
252252
You should only start to set up an Apache virtualhost for an official
253253
mirror, if you have <a href="#rule">contacted us first</a>, and asked
254254
for a possible name for your mirror. The official names for PHP mirrors
255-
are in the convention: <tt>"xx.php.net"</tt>, where <tt>"xx"</tt> is
255+
are in the convention: <code>"xx.php.net"</code>, where <code>"xx"</code> is
256256
replaced by the 2-letter ISO country code of your mirror's location. If
257-
there already is a <tt>"xx.php.net"</tt>, then you will probably get
258-
<tt>"xx2.php.net"</tt>. Do not assume that you know the code you will
257+
there already is a <code>"xx.php.net"</code>, then you will probably get
258+
<code>"xx2.php.net"</code>. Do not assume that you know the code you will
259259
receive until your application has been reviewed and approved, and do
260260
not submit an application saying, for example, "We are applying to
261261
become DE.PHP.NET," because it's possible that the mirror already
@@ -267,10 +267,10 @@ function make_seed()
267267
<p>
268268
Before adding new official mirrors to our DNS, we require the maintainers
269269
to set up the mirrors with an address we can use as a CNAME in the DNS.
270-
This subdomain (<tt>the.cname.you.set.up.example.com</tt> in the above
270+
This subdomain (<code>the.cname.you.set.up.example.com</code> in the above
271271
example) will be checked by mirror admins before the mirror is added.
272272
Therefore it is important that the mirror is capable of serving requests
273-
for this name and the <tt>(www.)xx.php.net</tt> address provided by the
273+
for this name and the <code>(www.)xx.php.net</code> address provided by the
274274
mirror administrators.
275275
</p>
276276

@@ -281,7 +281,7 @@ function make_seed()
281281
or just a specific hostname/IP address. Consult
282282
<a href="http://httpd.apache.org/docs/vhosts/index.html">the Apache
283283
documentation</a> for the differences of the two methods. It is very
284-
important to use your <tt>xx.php.net</tt> address as the ServerName, so
284+
important to use your <code>xx.php.net</code> address as the ServerName, so
285285
URL redirections will keep the requests in the php.net domain, ensuring
286286
that the My PHP.net service will work.
287287
</p>
@@ -319,7 +319,7 @@ function make_seed()
319319
<p>
320320
Remember to specify the same rsync parameters you used to get
321321
the phpweb files. You should try to stagger your times a bit from the
322-
example to help spread the load on the <tt>rsync.php.net</tt> server.
322+
example to help spread the load on the <code>rsync.php.net</code> server.
323323
</p>
324324

325325
<h2>Sponsor Logo</h2>
@@ -332,7 +332,7 @@ function make_seed()
332332

333333
<ul>
334334
<li>Create a 120 x 60 pixel sized logo button.</li>
335-
<li>Copy it to your <tt>/www/htdocs/phpweb/backend</tt> folder as <tt>mirror.gif</tt>, <tt>mirror.jpg</tt> or <tt>mirror.png</tt>.</li>
335+
<li>Copy it to your <code>/www/htdocs/phpweb/backend</code> folder as <code>mirror.gif</code>, <code>mirror.jpg</code> or <code>mirror.png</code>.</li>
336336
<li>Go visit your mirror URL and check if it is there.</li>
337337
</ul>
338338

@@ -389,7 +389,7 @@ function make_seed()
389389
</li>
390390
<li>
391391
A hostname that we can use as a CNAME for the country-code-based
392-
name of the mirror (<tt>the.cname.you.set.up.example.com</tt> in the
392+
name of the mirror (<code>the.cname.you.set.up.example.com</code> in the
393393
above setup example). Using a name means you can move the mirror to
394394
another IP address without coordinating with us at all.
395395
</li>
@@ -407,8 +407,8 @@ function make_seed()
407407
</ul>
408408

409409
<p>
410-
There is a mailing list named <tt>"php-mirrors"</tt> at
411-
<tt>lists.php.net</tt> which we would appreciate if you could sign up to.
410+
There is a mailing list named <code>"php-mirrors"</code> at
411+
<code>lists.php.net</code> which we would appreciate if you could sign up to.
412412
This mailing list is extremly low traffic and only used for communication
413413
between mirror maintainers and the php.net webmasters.
414414
</p>

‎search.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"href" => $MYSITE . "phpnetimprovedsearch.src",
110110
"title" => "Add PHP.net search"
111111
);
112-
site_header("Search", array("link" => array($link), "current" => "FIXME"));
112+
site_header("Search", array("link" => array($link), "current" => "docs"));
113113
?>
114114
<p>
115115
The autocompleting search feature is accessible via the form elements at the top

‎security-note.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// $Id$
33
$_SERVER['BASE_PAGE'] = 'security-note.php';
44
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
5-
site_header("A Note on Security in PHP", array("current" => "FIXME"));
5+
site_header("A Note on Security in PHP", array("current" => "docs"));
66
?>
77

88
<h1>A Note on Security in PHP</h1>

‎source.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<a href="http://git.php.net/?p=web/php.git;a=summary">git.php.net</a>.
3333
</p>
3434
';
35-
site_header("Show Source", array("current" => "FIXME"));
35+
site_header("Show Source", array("current" => "community"));
3636

3737
// No file param specified
3838
if (!isset($_GET['url']) || (isset($_GET['url']) && !is_string($_GET['url']))) {

‎submit-event.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
55
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/posttohost.inc';
66
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/email-validation.inc';
7-
site_header("Submit an Event", array("current" => "FIXME"));
7+
site_header("Submit an Event", array("current" => "community"));
88

99
// No errors, processing depends on POST data
1010
$errors = array();

‎thanks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// $Id$
33
$_SERVER['BASE_PAGE'] = 'thanks.php';
44
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
5-
site_header("Thanks", array("current" => "FIXME"));
5+
site_header("Thanks", array("current" => "community"));
66
?>
77

88
<h1>Thanks</h1>

‎usage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// $Id$
33
$_SERVER['BASE_PAGE'] = 'usage.php';
44
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
5-
site_header("PHP Usage Stats", array("current" => "FIXME"));
5+
site_header("PHP Usage Stats", array("current" => "community"));
66
?>
77

88
<h1>Usage Stats for April 2007</h1>

0 commit comments

Comments
 (0)
Please sign in to comment.