]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/log
SourceForge/phpwiki.git
22 years agoFixed bug: BackLinkSearchNextMatch needed the address of $res. It was release-1_2_1
wainstead [Fri, 21 Sep 2001 21:57:07 +0000 (21:57 +0000)]
Fixed bug: BackLinkSearchNextMatch needed the address of $res. It was
not incrementing $res[row] so it formed an infinite loop and phpwiki
would just time out.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@580 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoPatch by Gary Benson <gary@inauspicious.org>:
dairiki [Fri, 21 Sep 2001 19:59:13 +0000 (19:59 +0000)]
Patch by Gary Benson <gary@inauspicious.org>:
 Remove empty date headers when updating RecentChanges.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@579 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoEfficiency patch from Gary Benson <gary@inauspicious.org>: don't compute
dairiki [Fri, 21 Sep 2001 19:15:12 +0000 (19:15 +0000)]
Efficiency patch from Gary Benson <gary@inauspicious.org>: don't compute
MostPopular list unless it's needed.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@578 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoAdded link in FrontPage to PhpWikiAdministration.
wainstead [Mon, 17 Sep 2001 05:02:08 +0000 (05:02 +0000)]
Added link in FrontPage to PhpWikiAdministration.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@552 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoupdated my email address.
wainstead [Mon, 27 Aug 2001 03:55:13 +0000 (03:55 +0000)]
updated my email address.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@549 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoHad to revert... the phpwiki: placeholder inserts index.phpadmin.php
wainstead [Sun, 26 Aug 2001 17:11:53 +0000 (17:11 +0000)]
Had to revert... the phpwiki: placeholder inserts index.phpadmin.php
as a result. This is good enough for now.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@548 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoCorrection... made proper link to admin.php.
wainstead [Sun, 26 Aug 2001 17:07:19 +0000 (17:07 +0000)]
Correction... made proper link to admin.php.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@547 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoAdded line pointing to (but not linking to) the admin.php page.
wainstead [Sun, 26 Aug 2001 17:03:30 +0000 (17:03 +0000)]
Added line pointing to (but not linking to) the admin.php page.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@546 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoAdded PhpWikiAdministration to RecentChanges... this list should be
wainstead [Sun, 26 Aug 2001 16:44:28 +0000 (16:44 +0000)]
Added PhpWikiAdministration to RecentChanges... this list should be
dynamic however. For that matter I'd rather have a totally automated
RecentChanges like UseMod does.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@544 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoFixed bug in the page source; the "Emphasis" section was not rendering
wainstead [Sun, 26 Aug 2001 16:43:08 +0000 (16:43 +0000)]
Fixed bug in the page source; the "Emphasis" section was not rendering
correctly.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@543 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoFix SF bug #227748.
dairiki [Sat, 18 Aug 2001 05:09:09 +0000 (05:09 +0000)]
Fix SF bug #227748.

When using the flat-file back end, page names with slashes in them didn't work.
We fix this by urlencoding '%' '/' '\\' and ':' when they occur in page names.

WARNING: If any pages currently in your flat-file database contain any of
those characters in their titles, this change will make them invisible
to PhpWiki.  You should back them up before upgrading, and restore them
after upgrading.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@542 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoFixed SF Bug #233898. (MySQL backend insensitive to case in page names.)
dairiki [Sat, 18 Aug 2001 03:57:27 +0000 (03:57 +0000)]
Fixed SF Bug #233898.  (MySQL backend insensitive to case in page names.)

Note that this involves a change to the MySQL schema.  A convenient
mysql script, schemas/update.mysql.1.2.0-1.2.1, is provided which can
be used to update your schema in-place.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@541 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoAttempt to fix SF bug #413446.
dairiki [Sat, 18 Aug 2001 02:38:34 +0000 (02:38 +0000)]
Attempt to fix SF bug #413446.

I think this bug was due to using PHP's file() function to slurp in the
files (as an array of lines).  The files, being serialized data, consist
of only one (sometimes very long) line.  I think (at least in some PHPs)
this make the file() function unhappy.

Fixed to use fread() rather than file().  Also make sure to open files
in 'binary' mode.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@540 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoRemove debugging output cruft which should never have made it to the CVS
dairiki [Sat, 18 Aug 2001 02:05:28 +0000 (02:05 +0000)]
Remove debugging output cruft which should never have made it to the CVS
repository in the first place.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@539 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoFixed SF Bug #414789
dairiki [Sat, 18 Aug 2001 01:50:47 +0000 (01:50 +0000)]
Fixed SF Bug #414789

URLs like http://a.com/WikiWord were getting recognized as WikiWords
by ExtractWikiPageLinks, therefore resulting in erroneous entries
in the links table of those backends which have one.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@538 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoFix SF bug #418267.
dairiki [Sat, 18 Aug 2001 01:30:56 +0000 (01:30 +0000)]
Fix SF bug #418267.

Deeply nested lists resulted in a "Stack bounds exceeded in
SetHTMLOutputMode" fatal error.  Now we just clamp the nesting
depth to 10 (eleven leading '*'s are treated as if there were
only ten of them.)

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@537 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoAdded real back-link searches.
dairiki [Sat, 18 Aug 2001 00:35:10 +0000 (00:35 +0000)]
Added real back-link searches.
The pgsql and msql backends are completely untested at this point,
but they "should work".  (I.e.: they're probably broken now.)

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@536 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoAdded real back-link searches.
dairiki [Sat, 18 Aug 2001 00:34:27 +0000 (00:34 +0000)]
Added real back-link searches.
The pgsql and msql backends are completely untested at this point,
but they "should work".  (I.e.: they're probably broken now.)

The msql back-link search is a bit buggy, and will not find links
if they are split between two records ("lines") in the page store.
(The proper remedy for this is to implement the links table in
the msql back end.)

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@535 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoFix link to BuscarPagina.
dairiki [Tue, 17 Jul 2001 21:35:37 +0000 (21:35 +0000)]
Fix link to BuscarPagina.
(Reported by Aníbal Rojas <ard@valhallaproject.com>.)

Note the BuscarPagina should probably (I think) be renamed
to BuscarPágina.  (PaginaPrincipal, as well as other pages
probably need to have accents added as well.)

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@526 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoAdded missing page 'NotasDeLiberacion' containing a pointer
dairiki [Thu, 14 Jun 2001 00:41:26 +0000 (00:41 +0000)]
Added missing page 'NotasDeLiberacion' containing a pointer
to the English 'ReleaseNotes'.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@502 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoDeleted extraneous <form> tag (which was only emitted in admin mode).
dairiki [Thu, 14 Jun 2001 00:39:55 +0000 (00:39 +0000)]
Deleted extraneous <form> tag (which was only emitted in admin mode).

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@501 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoThe line-breaks in the file were screwed up somehow.
dairiki [Thu, 14 Jun 2001 00:38:31 +0000 (00:38 +0000)]
The line-breaks in the file were screwed up somehow.
They're now fixed, as suggested by Aníbal Rojas <ard@valhallaproject.com>.

Also, deleted extraneous <form> tag (which was only emitted in admin mode).

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@500 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoAdded Italian localizations by Marco Milanesi <kpanic@ada2.unipv.it>.
dairiki [Mon, 21 May 2001 16:10:32 +0000 (16:10 +0000)]
Added Italian localizations by Marco Milanesi <kpanic@ada2.unipv.it>.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@489 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoReran local/translate.sh.
dairiki [Mon, 21 May 2001 16:09:04 +0000 (16:09 +0000)]
Reran local/translate.sh.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@488 96ab9672-09ca-45d6-a79d-3d69d39ca109

22 years agoAdded call to setlocale(). In some PHP installations, it seems, gettext()
dairiki [Mon, 21 May 2001 16:06:50 +0000 (16:06 +0000)]
Added call to setlocale().  In some PHP installations, it seems, gettext()
will not work without it.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@487 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoUpdated. All changes since 1.2.0 are now documented (however cryptically)
dairiki [Tue, 6 Mar 2001 16:48:32 +0000 (16:48 +0000)]
Updated.  All changes since 1.2.0 are now documented (however cryptically)
in HISTORY.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@467 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoFix for invalid HTML from doubly-indented list elements.
dairiki [Fri, 2 Mar 2001 21:26:03 +0000 (21:26 +0000)]
Fix for invalid HTML from doubly-indented list elements.

This:
** Item

used to generate "<ul><ul><li>Item</ul></ul>" which is invalid.
Now we generate "<dl><dd><ul><li>Item</ul></dl>" which is valid.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@461 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoSome fixes to clean-up generated HTML.
dairiki [Fri, 2 Mar 2001 03:48:47 +0000 (03:48 +0000)]
Some fixes to clean-up generated HTML.
See comments made on SF Task# 26974 for details about problems
which remain.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@459 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoSF Patch #404963:
dairiki [Thu, 1 Mar 2001 01:48:43 +0000 (01:48 +0000)]
SF Patch #404963:
Updated German pgsrc by Jörg Rathlev <jrathlev@users.sourceforge.net>

I've done some work to complete the german translation
of the files in locale/de/pgsrc/. I've also slightly
modified some of the already translated german pages.

The only pages I've not (yet) translated are GuterStil
(english GoodStyle - hard to do since it's only a
quotation), PhpWikiAdministration and WabiSabi. All
other pages are included in the attached zip archive.

Joerg

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@453 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoFix SF bug #404646. Must quote htmlspecialchars in <textarea>.
dairiki [Tue, 27 Feb 2001 23:16:12 +0000 (23:16 +0000)]
Fix SF bug #404646.  Must quote htmlspecialchars in <textarea>.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@450 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoWhen creating the default contents for non-existant pages,
dairiki [Thu, 15 Feb 2001 21:25:02 +0000 (21:25 +0000)]
When creating the default contents for non-existant pages,
put [brackets] around page names which aren't BumpyWords.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@436 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoArguments to <input> tag should not be urlencoded().
dairiki [Thu, 15 Feb 2001 19:28:36 +0000 (19:28 +0000)]
Arguments to <input> tag should not be urlencoded().

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@433 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoFixes for PHP4 E_NOTICE warnings
dairiki [Sat, 10 Feb 2001 05:26:00 +0000 (05:26 +0000)]
Fixes for PHP4 E_NOTICE warnings

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@424 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoPropagate bug fixes from MAIN CVS branch into the stable release branch.
dairiki [Thu, 8 Feb 2001 18:28:31 +0000 (18:28 +0000)]
Propagate bug fixes from MAIN CVS branch into the stable release branch.

I have not added Arno's new transform.php code.
Should we?  (Is it functionally equivalent to the old code?)

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@422 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoThis commit was manufactured by cvs2svn to create branch release-1_2_0
(no author) [Fri, 2 Feb 2001 03:51:59 +0000 (03:51 +0000)]
This commit was manufactured by cvs2svn to create branch
'release-1_2-branch'.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/branches/release-1_2-branch@400 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoCorrected Ari's name.
wainstead [Fri, 2 Feb 2001 03:51:58 +0000 (03:51 +0000)]
Corrected Ari's name.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@399 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded note that this page is largely obsolete.
wainstead [Fri, 2 Feb 2001 03:23:05 +0000 (03:23 +0000)]
Added note that this page is largely obsolete.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@398 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded Ari.
wainstead [Fri, 2 Feb 2001 03:21:46 +0000 (03:21 +0000)]
Added Ari.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@397 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoMinor update.
wainstead [Fri, 2 Feb 2001 03:19:39 +0000 (03:19 +0000)]
Minor update.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@396 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoListed new features over version 1.0. There are a lot. They are big too.
wainstead [Fri, 2 Feb 2001 03:18:44 +0000 (03:18 +0000)]
Listed new features over version 1.0. There are a lot. They are big too.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@395 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoUpdated: listed flat file Wiki as stable, included URL to bug list on
wainstead [Fri, 2 Feb 2001 03:03:27 +0000 (03:03 +0000)]
Updated: listed flat file Wiki as stable, included URL to bug list on
Sourceforge.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@394 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded comment about the warnings on loading; updated the info about
wainstead [Fri, 2 Feb 2001 02:55:31 +0000 (02:55 +0000)]
Added comment about the warnings on loading; updated the info about
editing config.php, which was a little dated.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@393 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agofixed some mailto: links, added Pablo to spanish translation
ahollosi [Thu, 1 Feb 2001 07:12:59 +0000 (07:12 +0000)]
fixed some mailto: links, added Pablo to spanish translation

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@392 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoupdate to spanish locale by Pablo Roca Rozas
ahollosi [Thu, 1 Feb 2001 07:06:39 +0000 (07:06 +0000)]
update to spanish locale by Pablo Roca Rozas

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@391 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agorenamed 'PrimeraPlana' to 'PaginaPrincipal'
ahollosi [Thu, 1 Feb 2001 07:05:59 +0000 (07:05 +0000)]
renamed 'PrimeraPlana' to 'PaginaPrincipal'

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@390 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoWrote list of additions/changes for 1.2
wainstead [Thu, 1 Feb 2001 05:35:01 +0000 (05:35 +0000)]
Wrote list of additions/changes for 1.2

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@389 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoMinor addition of info, and a note on the stability and features in
wainstead [Thu, 1 Feb 2001 04:34:08 +0000 (04:34 +0000)]
Minor addition of info, and a note on the stability and features in
the flat file version.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@388 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoCommented out the GetAllWikiPageNames and SetAllWikiPageNames
wainstead [Thu, 1 Feb 2001 04:24:26 +0000 (04:24 +0000)]
Commented out the GetAllWikiPageNames and SetAllWikiPageNames
functions. They don't work yet... and as long as they are defined, the
lists of related pages appear at the bottom of all pages but have no
values in them.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@387 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoUpdated the opening statement (mSQL support isn't very new anymore ;-)
wainstead [Thu, 1 Feb 2001 04:12:38 +0000 (04:12 +0000)]
Updated the opening statement (mSQL support isn't very new anymore ;-)
and explained why there are missing features vs. the other database
implementations.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@386 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoRemoved the notice that PhpWiki did not work with 4.0.4 out of the
wainstead [Thu, 1 Feb 2001 02:50:51 +0000 (02:50 +0000)]
Removed the notice that PhpWiki did not work with 4.0.4 out of the
box.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@385 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoupdated German translation
ahollosi [Wed, 31 Jan 2001 07:56:11 +0000 (07:56 +0000)]
updated German translation

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@384 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoadded Jon Åslund
ahollosi [Wed, 31 Jan 2001 07:40:55 +0000 (07:40 +0000)]
added Jon Åslund

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@383 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded Swedish translation
ahollosi [Wed, 31 Jan 2001 07:38:10 +0000 (07:38 +0000)]
Added Swedish translation

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@382 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded Swedish translation by Jon Åslund
ahollosi [Wed, 31 Jan 2001 07:36:48 +0000 (07:36 +0000)]
Added Swedish translation by Jon Åslund

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@381 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoadded Swedish translation by Jon Åslund
ahollosi [Wed, 31 Jan 2001 07:26:26 +0000 (07:26 +0000)]
added Swedish translation by Jon Åslund

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@380 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoGoing back to version 1.5, this time with the signature Jan Hidder
wainstead [Wed, 31 Jan 2001 03:11:25 +0000 (03:11 +0000)]
Going back to version 1.5, this time with the signature Jan Hidder
used for InsertPage() that I removed, thus causing a bug. It feels
slower now though.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@379 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoFixed a bug in the loading of dbmlib.php; if the $whichdatabase was
wainstead [Wed, 31 Jan 2001 02:18:26 +0000 (02:18 +0000)]
Fixed a bug in the loading of dbmlib.php; if the $whichdatabase was
set to 'dbm' a logic error always set it to 'dba', which had
unpredictable results with PHP3.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@378 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoFixed some white space. No code changes.
wainstead [Wed, 31 Jan 2001 02:01:27 +0000 (02:01 +0000)]
Fixed some white space. No code changes.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@377 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoadded hint about loading mysql php-module (suggested by Jerritt)
ahollosi [Wed, 24 Jan 2001 18:36:17 +0000 (18:36 +0000)]
added hint about loading mysql php-module (suggested by Jerritt)

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@376 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agocorrected if-clause for 'dba' and 'default' (pointed out by kc7dx)
ahollosi [Sun, 21 Jan 2001 11:00:00 +0000 (11:00 +0000)]
corrected if-clause for 'dba' and 'default' (pointed out by kc7dx)

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@375 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded a new database configuration selection, 'default'. There is an
wainstead [Sat, 20 Jan 2001 21:52:21 +0000 (21:52 +0000)]
Added a new database configuration selection, 'default'. There is an
if/else that determines whether the user is running PHP3 or PHP4 and
sets $WhichDatabase to either 'dbm' or 'dba', and then the
corresponding library file (dbmlib.php or dbalib.php) is loaded.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@374 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded note at the top for users of PHP 4.0.4 or later about needing to
wainstead [Fri, 19 Jan 2001 22:47:02 +0000 (22:47 +0000)]
Added note at the top for users of PHP 4.0.4 or later about needing to
edit config.php first.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@373 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoUpdated the credits for Joel and Pablo
wainstead [Fri, 19 Jan 2001 22:38:59 +0000 (22:38 +0000)]
Updated the credits for Joel and Pablo

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@372 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoJoel Uckelman <uckelman@iastate.edu> contributed code changes
wainstead [Fri, 19 Jan 2001 22:20:30 +0000 (22:20 +0000)]
Joel Uckelman <uckelman@iastate.edu> contributed code changes
including a new database library file 'dbalib.php' that uses the new
interface library for DBM files. The changes in config.php still
default to the dbmlib.php library for now, and the user must set
'dba' in config.php if they are using PHP 4.0.4 or later. Tested
this (just barely) on a newly built PHP 4.0.4p1 on my RH6.2 box.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@371 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoExtractWikiPageLinks now recognizes references of the form [\d+]
ahollosi [Mon, 15 Jan 2001 12:32:57 +0000 (12:32 +0000)]
ExtractWikiPageLinks now recognizes references of the form [\d+]

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@370 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoinitial commit - text by Jan Nieuwenhuizen and me
ahollosi [Thu, 11 Jan 2001 09:54:12 +0000 (09:54 +0000)]
initial commit - text by Jan Nieuwenhuizen and me

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@369 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoReverted to version 1.4; there is a bug in Jan Hidders' patch for dbmlib.
wainstead [Tue, 9 Jan 2001 19:02:52 +0000 (19:02 +0000)]
Reverted to version 1.4; there is a bug in Jan Hidders' patch for dbmlib.
It causes a stack overflow in stdlib.php line 318.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@368 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoadded description to GeneratePage()
ahollosi [Tue, 9 Jan 2001 18:22:49 +0000 (18:22 +0000)]
added description to GeneratePage()

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@367 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoInstallation directions for flat file Wikis.
wainstead [Sat, 6 Jan 2001 19:30:31 +0000 (19:30 +0000)]
Installation directions for flat file Wikis.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@366 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoyet another E_NOTICED fixed and some comments added.
ahollosi [Thu, 4 Jan 2001 18:37:56 +0000 (18:37 +0000)]
yet another E_NOTICED fixed and some comments added.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@365 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoZERO/SINGLE_DEPTH renamed into ZERO/NESTED_LEVEL
ahollosi [Thu, 4 Jan 2001 18:34:15 +0000 (18:34 +0000)]
ZERO/SINGLE_DEPTH renamed into ZERO/NESTED_LEVEL
empty lines are now treated as tag '' (i.e. no tag) instead of '<p>'
normal text is now treated as '<p>' instead of tag ''
added and corrected some comments, some code cleanup

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@364 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoZERO/SINGLE_DEPTH renamed into ZERO/NESTED_LEVEL
ahollosi [Thu, 4 Jan 2001 18:32:43 +0000 (18:32 +0000)]
ZERO/SINGLE_DEPTH renamed into ZERO/NESTED_LEVEL

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@363 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agomoved UpdateRecentChanges() to savepage.php
ahollosi [Thu, 4 Jan 2001 18:32:25 +0000 (18:32 +0000)]
moved UpdateRecentChanges() to savepage.php
ZERO/SINGLE_DEPTH renamed into ZERO/NESTED_LEVEL
added and corrected some comments, some code cleanup

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@362 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agomoved UpdateRecentChanges() to savepage.php
ahollosi [Thu, 4 Jan 2001 18:30:32 +0000 (18:30 +0000)]
moved UpdateRecentChanges() to savepage.php

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@361 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoThere were two concatenation operators in a row, on lines 8
wainstead [Tue, 2 Jan 2001 00:10:28 +0000 (00:10 +0000)]
There were two concatenation operators in a row, on lines 8
and 9. This caused a syntax error.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@360 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agosquashed some E_NOTICE messages about unset variables
ahollosi [Mon, 1 Jan 2001 23:34:57 +0000 (23:34 +0000)]
squashed some E_NOTICE messages about unset variables

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@359 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agochanged two more calls to is_dir() and is_file() to file_exists in order to avoid...
ahollosi [Mon, 1 Jan 2001 23:18:46 +0000 (23:18 +0000)]
changed two more calls to is_dir() and is_file() to file_exists in order to avoid warnings

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@358 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agocleaned up some warnings reported by David LeBlanc
ahollosi [Mon, 1 Jan 2001 23:13:32 +0000 (23:13 +0000)]
cleaned up some warnings reported by David LeBlanc

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@357 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoParseAndLink() didn't handle unnamed phpwiki: links correctly - fixed.
ahollosi [Sat, 30 Dec 2000 21:48:15 +0000 (21:48 +0000)]
ParseAndLink() didn't handle unnamed phpwiki: links correctly - fixed.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@356 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agocleaned up ParseAndLink() function, consequences:
ahollosi [Sat, 30 Dec 2000 21:42:50 +0000 (21:42 +0000)]
cleaned up ParseAndLink() function, consequences:
- link['type']='unknwon' no longer exists (never happened anyway)
- link['type']='wiki' is now link['type']='wiki-simple'
- "phpwiki:" may appear in unnamed links as well
- LinkURL() function now takes second argument

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@355 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agosome code cleanup -- mostly cosmetic changes
ahollosi [Sat, 30 Dec 2000 21:09:13 +0000 (21:09 +0000)]
some code cleanup -- mostly cosmetic changes

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@354 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoadded Antti Kaihola and Jan Hidders
ahollosi [Fri, 22 Dec 2000 21:10:56 +0000 (21:10 +0000)]
added Antti Kaihola and Jan Hidders

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@353 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoran translate.sh to update .mo & .php files
ahollosi [Fri, 22 Dec 2000 20:18:13 +0000 (20:18 +0000)]
ran translate.sh to update .mo & .php files

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@352 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoInitial commit of Jan Hidders' changes to dbmlib.php. He added the
wainstead [Fri, 15 Dec 2000 03:11:41 +0000 (03:11 +0000)]
Initial commit of Jan Hidders' changes to dbmlib.php. He added the
code needed for the incoming/outgoing/most popular nearby
features. The only change I made was to revert the signature for
InsertPage, which he added a fourth parameter to. In fact it should
have a (shudder) global variable $WikiPageStore, which makes it
consistent with SaveCopyToArchive.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@351 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoBrought the function list in the lead comment box up to date.
wainstead [Tue, 12 Dec 2000 22:06:09 +0000 (22:06 +0000)]
Brought the function list in the lead comment box up to date.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@350 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoUpdated against the mysql.php file. This should be accurate and
wainstead [Tue, 12 Dec 2000 21:53:20 +0000 (21:53 +0000)]
Updated against the mysql.php file. This should be accurate and
finished for 1.2.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@349 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded a paragraph about the feature differences between the different
wainstead [Tue, 12 Dec 2000 21:24:50 +0000 (21:24 +0000)]
Added a paragraph about the feature differences between the different
database implementations.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@348 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoI will never finish this, so I'm removing it from the distribution.
wainstead [Tue, 12 Dec 2000 17:19:03 +0000 (17:19 +0000)]
I will never finish this, so I'm removing it from the distribution.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@347 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoBrought the manifest up to date. Some files were removed, others added
wainstead [Tue, 12 Dec 2000 17:11:14 +0000 (17:11 +0000)]
Brought the manifest up to date. Some files were removed, others added
to the lists of files in the distribution.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@346 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoupdate to Dutch translation by Jan Nieuwenhuizen
ahollosi [Mon, 11 Dec 2000 14:00:42 +0000 (14:00 +0000)]
update to Dutch translation by Jan Nieuwenhuizen

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@345 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agofixed bug in _iftoken() - variable-in-string-brackets were used in a way that causes...
ahollosi [Wed, 6 Dec 2000 23:12:02 +0000 (23:12 +0000)]
fixed bug in _iftoken() - variable-in-string-brackets were used in a way that causes problems for PHP3. Fix by Jan Hidders.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@344 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agofixed another bug in ExtractWikiPageLinks(): wiki_unknown-named was not recognized...
ahollosi [Wed, 6 Dec 2000 10:59:27 +0000 (10:59 +0000)]
fixed another bug in ExtractWikiPageLinks(): wiki_unknown-named was not recognized and named wiki links had the wrong linktext inserted into the wikilinks table

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@343 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded semicolon on line 153, which caused the file to not compile correctly.
wainstead [Fri, 24 Nov 2000 22:07:34 +0000 (22:07 +0000)]
Added semicolon on line 153, which caused the file to not compile correctly.
.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@342 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agofix newline bug in UpdateRecentChanges / fix for-loop boundary
ahollosi [Wed, 22 Nov 2000 22:17:06 +0000 (22:17 +0000)]
fix newline bug in UpdateRecentChanges / fix for-loop boundary

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@341 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agomore sophisticated search: match individual words, also excluding words possible
ahollosi [Sat, 18 Nov 2000 13:50:36 +0000 (13:50 +0000)]
more sophisticated search: match individual words, also excluding words possible

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@340 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoAdded Scott to the credits for patches.
wainstead [Fri, 17 Nov 2000 03:04:46 +0000 (03:04 +0000)]
Added Scott to the credits for patches.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@339 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoPatch from "Scott R. Anderson" <sra@diem.net> which allows the use
wainstead [Fri, 17 Nov 2000 03:01:26 +0000 (03:01 +0000)]
Patch from "Scott R. Anderson" <sra@diem.net> which allows the use
of $PHP_AUTH_USER if it's set; i.e. if a user is logged in their name
will appear in RecentChanges instead of REMOTE_HOST or REMOTE_ADDR.

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@338 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agofix for ExtractWikiPageLinks(): didn't care for '[[' escapes and thus detected invali...
ahollosi [Thu, 16 Nov 2000 08:52:51 +0000 (08:52 +0000)]
fix for ExtractWikiPageLinks(): didn't care for '[[' escapes and thus detected invalid links

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@337 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agocorrected title link
ahollosi [Mon, 13 Nov 2000 21:52:52 +0000 (21:52 +0000)]
corrected title link

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@336 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoadded config options for all mysql table names
ahollosi [Mon, 13 Nov 2000 14:54:08 +0000 (14:54 +0000)]
added config options for all mysql table names

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@335 96ab9672-09ca-45d6-a79d-3d69d39ca109