]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/log
SourceForge/phpwiki.git
23 years agoMoving FrontPage to HomePage.
wainstead [Fri, 6 Apr 2001 18:07:19 +0000 (18:07 +0000)]
Moving FrontPage to HomePage.

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

23 years agoAttempt to fix the recognition of international characters within
dairiki [Wed, 14 Mar 2001 19:48:29 +0000 (19:48 +0000)]
Attempt to fix the recognition of international characters within
WikiWords.

Older (pre 3.x) PCRE libraries, which are used by some PHPs do not
support POSIX named character classes (e.g. [:alnum:]).

I've added a new function, pcre_fix_posix_classes(), which
(only if necessary) will replace POSIX named classes in a regexp
with an enumerated equivalent.

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

23 years agoRemove extraneous <P> from HTML output.
dairiki [Wed, 14 Mar 2001 19:45:42 +0000 (19:45 +0000)]
Remove extraneous <P> from HTML output.

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

23 years agoMinor typo fix.
dairiki [Wed, 14 Mar 2001 19:45:12 +0000 (19:45 +0000)]
Minor typo fix.

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

23 years agoJust fixed a typo in a comment.
wainstead [Sun, 11 Mar 2001 17:56:36 +0000 (17:56 +0000)]
Just fixed a typo in a comment.

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

23 years agoAdded a flowerbox comment at the top of the file, explaining the whole
wainstead [Sun, 11 Mar 2001 17:51:54 +0000 (17:51 +0000)]
Added a flowerbox comment at the top of the file, explaining the whole
file in general.

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

23 years agoRecognize international characters in WikiWords.
dairiki [Wed, 7 Mar 2001 16:45:20 +0000 (16:45 +0000)]
Recognize international characters in WikiWords.

We do this by using POSIX character classes (like [[:upper:]]) in the
perl regexps.  Getting this to work involves calling setlocale().
(See comments in lib/config.php for more details.)

I suspect my current hacks will not work in all PHP environments.  I'd
appreciate success/failure reports.

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

23 years agoSplit BumpyWords in page titles.
dairiki [Mon, 5 Mar 2001 23:39:07 +0000 (23:39 +0000)]
Split BumpyWords in page titles.

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

23 years agoMinor code cleanup: don't htmlspecialchar page title, since GeneratePage()
dairiki [Mon, 5 Mar 2001 23:38:16 +0000 (23:38 +0000)]
Minor code cleanup: don't htmlspecialchar page title, since GeneratePage()
does this for us.

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

23 years agoSplit BumpyWords in page title.
dairiki [Mon, 5 Mar 2001 23:37:32 +0000 (23:37 +0000)]
Split BumpyWords in page title.

Also minor code cleanup: ###BROWSE_PAGE### and ###ACTION### make no sense
for the MESSAGE template.

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

23 years agoChanged my email address and the project homepage, where appropriate.
wainstead [Sat, 3 Mar 2001 19:43:14 +0000 (19:43 +0000)]
Changed my email address and the project homepage, where appropriate.

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

23 years agoAdded new intermap entries from http://usemod.com/intermap.txt.
dairiki [Sat, 3 Mar 2001 19:29:48 +0000 (19:29 +0000)]
Added new intermap entries from http://usemod.com/intermap.txt.

Also fixed bug: only urlencode "page" name when it's really a
query arg.  (If it's in PATH_INFO, it shouldn't be urlencoded.)

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

23 years agoFix for invalid HTML from doubly-indented list elements.
dairiki [Fri, 2 Mar 2001 21:16:05 +0000 (21:16 +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/trunk@460 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoStripped stuff about page references which are now obsolete.
wainstead [Fri, 2 Mar 2001 00:42:50 +0000 (00:42 +0000)]
Stripped stuff about page references which are now obsolete.

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

23 years agoAdded note that mSQL will not be supported in 1.3 unless someone else
wainstead [Fri, 2 Mar 2001 00:38:50 +0000 (00:38 +0000)]
Added note that mSQL will not be supported in 1.3 unless someone else
wants to keep it up to date.

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

23 years agoAttempts to clean up generated HTML.
dairiki [Fri, 2 Mar 2001 00:24:17 +0000 (00:24 +0000)]
Attempts to clean up generated HTML.

WikiTransform::SetHTMLMode():

  Eliminate the $tagtype argument, since somewhere along the line it
had lost all meaning.

  Check when pushing nested elements that the top-level element is of
a type which can contain other block-level elements. Elements of type
<p>, and <pre>, among others, are not allowed to contain other
block-level elements.

wtm_list_dl:
  Fix bug (which manifested itself only with non-empty <dt>s).

Some remaining problems which perhaps should be addressed:

Wtm_title_search, wtm_fulltext_search, wtm_mostpopular as well
as some of the the magic phpwiki: links (the ones which generate
forms) all generate some sort of block-level HTML element (either
<form>s or <dl>s.)  As noted above, these are not allowed within
<p> elements (and others).

Bold/italics:    __Bold ''BoldItalic__ Italic''
 ... it's contrived, but it will generate improperly nested HTML.

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

23 years agoStartTag(): minor beautification: get rid of extra spaces in start tags.
dairiki [Fri, 2 Mar 2001 00:16:53 +0000 (00:16 +0000)]
StartTag(): minor beautification: get rid of extra spaces in start tags.

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

23 years agoSF Patch #404963:
dairiki [Thu, 1 Mar 2001 01:59:00 +0000 (01:59 +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/trunk@454 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoMinor type correction.
dairiki [Wed, 28 Feb 2001 20:54:18 +0000 (20:54 +0000)]
Minor type correction.

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

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

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

23 years agoRecursive bug fix. (Ie. fix stupid bug introduced in the last bug fix.)
dairiki [Wed, 21 Feb 2001 17:16:44 +0000 (17:16 +0000)]
Recursive bug fix.  (Ie. fix stupid bug introduced in the last bug fix.)

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

23 years agoFix SF bug #132843 some more. Also add code to properly glean the
dairiki [Tue, 20 Feb 2001 13:44:03 +0000 (13:44 +0000)]
Fix SF bug #132843 some more.  Also add code to properly glean the
page name from obsolete 'index.php?PageName' style URLS.

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

23 years agoFix infinite redirect bug. (SF bug #132843.)
dairiki [Sat, 17 Feb 2001 21:52:08 +0000 (21:52 +0000)]
Fix infinite redirect bug. (SF bug #132843.)

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

23 years agoMissing semicolon on line 49, fixed.
wainstead [Sat, 17 Feb 2001 18:05:47 +0000 (18:05 +0000)]
Missing semicolon on line 49, fixed.

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

23 years agoFix typo.
dairiki [Sat, 17 Feb 2001 05:36:21 +0000 (05:36 +0000)]
Fix typo.

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

23 years agoRemove notes about $pagehash['refs'].
dairiki [Sat, 17 Feb 2001 05:35:56 +0000 (05:35 +0000)]
Remove notes about $pagehash['refs'].

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

23 years agoFixed my bug: date header in RecentChanges not updating correctly.
dairiki [Sat, 17 Feb 2001 00:47:08 +0000 (00:47 +0000)]
Fixed my bug: date header in RecentChanges not updating correctly.

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

23 years agoSmall bug fix
dairiki [Fri, 16 Feb 2001 05:10:54 +0000 (05:10 +0000)]
Small bug fix

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

23 years agoAdded support for creating our own NCSA style access_log's.
dairiki [Fri, 16 Feb 2001 04:43:08 +0000 (04:43 +0000)]
Added support for creating our own NCSA style access_log's.

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

23 years agowtm_table: Make LEFT, rather than CENTERED the default alignment
dairiki [Thu, 15 Feb 2001 21:37:08 +0000 (21:37 +0000)]
wtm_table: Make LEFT, rather than CENTERED the default alignment
for table cells.  I just went and edited some tables, and left
justification was what I wanted most often.  Also agrees with HTML.

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

23 years agoNew template token ###ROBOTS_META### to (attempt to) keep robots from
dairiki [Thu, 15 Feb 2001 21:35:03 +0000 (21:35 +0000)]
New template token ###ROBOTS_META### to (attempt to) keep robots from
indexing pages other than the 'action=browse' page.

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

23 years agoWhen creating default contents for non-existant pages, put [brackets]
dairiki [Thu, 15 Feb 2001 21:33:40 +0000 (21:33 +0000)]
When creating 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/trunk@438 96ab9672-09ca-45d6-a79d-3d69d39ca109

23 years agoRemove alternate colors for links, per Steve's request.
dairiki [Thu, 15 Feb 2001 21:33:06 +0000 (21:33 +0000)]
Remove alternate colors for links, per Steve's request.

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

23 years agoMinor bug/warning fixes.
dairiki [Thu, 15 Feb 2001 19:32:55 +0000 (19:32 +0000)]
Minor bug/warning fixes.

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

23 years agoIf we're expecting PATH_INFO, and don't get it, redirect to REQUEST_URI
dairiki [Thu, 15 Feb 2001 19:32:34 +0000 (19:32 +0000)]
If we're expecting PATH_INFO, and don't get it, redirect to REQUEST_URI
with a trailing '/' added.   This is to make the index.php script look
more like a 'directory', for consistencies sake.

Also apparently $PATH_INFO gets magic-quoted, so un-magic that.

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

23 years agoFixed (I think) SF bug #132469. The problem was that the value
dairiki [Thu, 15 Feb 2001 05:57:18 +0000 (05:57 +0000)]
Fixed (I think) SF bug #132469.  The problem was that the value
for VIRTUAL_PATH being auto-deduced by lib/config.php was wrong.

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

23 years agoVarious minor bug fixes and cleanups.
dairiki [Wed, 14 Feb 2001 22:02:05 +0000 (22:02 +0000)]
Various minor bug fixes and cleanups.

Also added the following new minor featurelets:
  Comments in index.php indicating how to set the PHP include_path if
  necessary.

  New config variable $DisabledActions --- one can list actions (eg.
  dumpserial) which should not be allowed, even by the administrator.

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

23 years agolog
dairiki [Wed, 14 Feb 2001 05:22:49 +0000 (05:22 +0000)]
log

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

23 years agolog
dairiki [Tue, 13 Feb 2001 05:54:38 +0000 (05:54 +0000)]
log

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

23 years agolog
dairiki [Mon, 12 Feb 2001 01:43:10 +0000 (01:43 +0000)]
log

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

23 years agoStarted new file to help users upgrade from previous versions of PhpWiki.
wainstead [Sun, 11 Feb 2001 20:18:58 +0000 (20:18 +0000)]
Started new file to help users upgrade from previous versions of PhpWiki.

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

23 years agoFix 'dump serialized pages' link
dairiki [Sat, 10 Feb 2001 22:41:29 +0000 (22:41 +0000)]
Fix 'dump serialized pages' link

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

23 years agoJeff hacks again: LOT's of changes.
dairiki [Sat, 10 Feb 2001 22:15:08 +0000 (22:15 +0000)]
Jeff hacks again: LOT's of changes.
Highlights:
  * Pagename in PATH_INFO support added.
  * Redid the user (admin)  authentication stuff.
    All access now through index.php.

See HISTORY for (a few) more details.

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

23 years agoFix type in wtm_fulltext_search()
dairiki [Fri, 9 Feb 2001 04:00:25 +0000 (04:00 +0000)]
Fix type in wtm_fulltext_search()

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

23 years agoDon't display $SignatureImg unless one is set in config.php
dairiki [Thu, 8 Feb 2001 18:19:16 +0000 (18:19 +0000)]
Don't display $SignatureImg unless one is set in config.php
Fix check for DB files in /tmp

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

23 years agoRender*() functions are no longer
dairiki [Thu, 8 Feb 2001 18:18:10 +0000 (18:18 +0000)]
Render*() functions are no longer

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

23 years agoRemove unused variable
dairiki [Thu, 8 Feb 2001 15:11:00 +0000 (15:11 +0000)]
Remove unused variable

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

23 years agoadded InterWiki linking based on patch by Gary Benson <garyb@ee.bath.ac.uk>
ahollosi [Thu, 8 Feb 2001 10:39:41 +0000 (10:39 +0000)]
added InterWiki linking based on patch by Gary Benson <garyb@ee.bath.ac.uk>

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

23 years agoadded InterWiki linking based on patch by Gary Benson <garyb@ee.bath.ac.uk>
ahollosi [Thu, 8 Feb 2001 10:29:44 +0000 (10:29 +0000)]
added InterWiki linking based on patch by Gary Benson <garyb@ee.bath.ac.uk>

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

23 years agoremoved references, added footnotes
ahollosi [Thu, 8 Feb 2001 09:10:26 +0000 (09:10 +0000)]
removed references, added footnotes

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

23 years agoremoved links to editlinks page
ahollosi [Thu, 8 Feb 2001 08:51:50 +0000 (08:51 +0000)]
removed links to editlinks page

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

23 years agoremoved editlinks template -- references are no longer in use
ahollosi [Thu, 8 Feb 2001 08:48:09 +0000 (08:48 +0000)]
removed editlinks template -- references are no longer in use

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

23 years agocorrected "Minor Edit" translation
ahollosi [Thu, 8 Feb 2001 08:43:50 +0000 (08:43 +0000)]
corrected "Minor Edit" translation

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

23 years agoAdded "minor edit, don't archive" checkbox to the templates for
dairiki [Thu, 8 Feb 2001 03:02:08 +0000 (03:02 +0000)]
Added "minor edit, don't archive" checkbox to the templates for
the non-english locales.

(My wife speaks spanish, so that one is probably okay.  The German
translation might be okay.  The others (Dutch and Swedish) I left
in English.)

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

23 years agoConvert references to footnotes when reading a zip dump
dairiki [Thu, 8 Feb 2001 02:34:32 +0000 (02:34 +0000)]
Convert references to footnotes when reading a zip dump

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

23 years agoSpelling fixes
dairiki [Thu, 8 Feb 2001 01:28:16 +0000 (01:28 +0000)]
Spelling fixes

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

23 years agoAdded "Minor edit, do not archive" checkbox on the edit form.
dairiki [Wed, 7 Feb 2001 22:14:35 +0000 (22:14 +0000)]
Added "Minor edit, do not archive" checkbox on the edit form.
(Sourceforge task #25913)

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

23 years agoMinor security bug fix.
dairiki [Wed, 7 Feb 2001 21:11:46 +0000 (21:11 +0000)]
Minor security bug fix.
The URL 'index.php?zip=all' should not get you to the wiki page
named 'zip=all'.

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

23 years agoFix bug #131372: diff hangs.
dairiki [Wed, 7 Feb 2001 18:35:09 +0000 (18:35 +0000)]
Fix bug #131372: diff hangs.

The problem had to do with subtleties introduced by the code
cleanups to remove the PHP4 warnings.

I've now added several assert()'s (only active under PHP4)
to perform further sanity checks.

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

23 years agoremoved references, added footnotes
ahollosi [Wed, 7 Feb 2001 17:21:33 +0000 (17:21 +0000)]
removed references, added footnotes

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

23 years agoclean up of SetHTMLMode() -- patch from Neil Brown
ahollosi [Wed, 7 Feb 2001 16:38:33 +0000 (16:38 +0000)]
clean up of SetHTMLMode() -- patch from Neil Brown

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

23 years agoJeff emerges from his hole long enough to fix a trivial bug which causes
dairiki [Tue, 6 Feb 2001 23:16:31 +0000 (23:16 +0000)]
Jeff emerges from his hole long enough to fix a trivial bug which causes
trouble when trying to restore a wiki from a zip archive which uses the
'binary' type MIME encoding.  This is only pertinent for zip archives
generated by certain old beta versions of phpwiki.

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

23 years agoredesign of transfrom.php: modularization
ahollosi [Sun, 4 Feb 2001 18:22:34 +0000 (18:22 +0000)]
redesign of transfrom.php: modularization
markup functions are now registered to WikiTransform object
first working version.
removed HTML mode "|", tab markup, and %%ADMIN-%% tokens.
(more functionality to be added)

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

23 years agomoved SetHTMLOutputMode(), RenderQuickSearch(), RenderFullSearch(), and RenderMostPop...
ahollosi [Sun, 4 Feb 2001 18:19:30 +0000 (18:19 +0000)]
moved SetHTMLOutputMode(), RenderQuickSearch(), RenderFullSearch(), and RenderMostPopular() to transform.php

git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@402 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