-
Sometimes it is hard to reference information to a given page. You just want it in the wiki and search able.
So have an input screen that spawns a page without regard to being linked to another page.
2009-02-21 05:06:09 UTC by nobody
-
Update the search embedded function to differentiate between only titles, files, or body of pages.
For example:
%search(cls|title)% would only search titles for the text cls.
%search(cls|title,body)% would search page titles and bodies but ignore attachments.
Does search also use the and, or, and not operators like the page search input?.
2009-02-12 22:15:56 UTC by nobody
-
Perhaps have a parameter switch that emphasizes the number of times the terms come up in a page and order by that; or to alphabetize the page listings.
2009-02-12 21:53:10 UTC by nobody
-
Ability to choose on searching titles, files, or documents with check boxes.
2009-01-02 15:52:18 UTC by nobody
-
When searching on the wiki it will search the name of the attachment also.
When the result is some text on the title of the attachment, note that the file name that matches in the search results.
2008-12-18 20:05:05 UTC by nobody
-
Note the commenting. Should be broken out into it's own include file.
function find_tag returns character
(input ctext as character,
input ctag_begins as character,
input ctag_ends as character):
define variable start_offset as integer no-undo.
define variable end_offset as integer no-undo.
define variable working_text as character no-undo.
assign start_offset = index...
2008-11-12 16:59:46 UTC by nobody
-
Allow people to define an email list in the wiki. Emails sent out from the list automatically appear on the wiki.
2008-11-05 14:34:06 UTC by nobody
-
Allow the wiki software to hold more than one wiki - that is instances of the wiki. This way, upon login, the user's instance is provided and they see no other instance's data or settings.
One could still have a menu on the side to link into an instance of the wiki though. This is so there are multiple departments with segregated data.
The work around is to create a new broker and...
2008-10-15 20:08:31 UTC by scott_auge
-
Put the old title into the session of the person editing it?
Maybe forcing the person to delete the old page is the proper way of handling the situation?.
2008-10-06 18:59:49 UTC by scott_auge
-
Correct code to use:
FUNCTION SetVersion RETURNS DECIMAL:
DEFINE VARIABLE cVersion AS CHARACTER NO-UNDO.
ASSIGN cVersion = STRING(YEAR(TODAY), "9999")
+ STRING(MONTH(TODAY), "99")
+ STRING(DAY(TODAY), "99")
+ "."
+ STRING(TIME).
RETURN DECIMAL(cVersion).
END. /* FUNCTION...
2008-10-06 14:25:37 UTC by scott_auge