X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fwiki.c;h=b183fdbd42d24d043272c1fc06bef858d6658c99;hb=fa4703876cbb0330af860bb686d044ddb59dbadb;hp=34067244f533a9f5091dccacbc4c689632ef749f;hpb=80f0f2b99774b570d998109d565aecf46df5c06c;p=citadel.git diff --git a/webcit/wiki.c b/webcit/wiki.c index 34067244f..b183fdbd4 100644 --- a/webcit/wiki.c +++ b/webcit/wiki.c @@ -1,5 +1,21 @@ /* * Functions pertaining to rooms with a wiki view + * + * Copyright (c) 2009-2011 by the citadel.org team + * + * This program is open source software. You can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "webcit.h" @@ -85,7 +101,7 @@ void display_wiki_page_backend(const StrBuf *roomname, char *pagename, char *rev return; } - wc_printf("

" + wc_printf("

" "
" "" "
" @@ -160,14 +176,12 @@ void tmplput_display_wiki_history(StrBuf *Target, WCTemplputParams *TP) StrBuf *author = NewStrBuf(); StrBuf *node = NewStrBuf(); - wc_printf("
" - "" - ); + wc_printf("
"); wc_printf("", _("Date")); wc_printf("", _("Author")); - while(StrBuf_ServGetln(Buf), strcmp(ChrPtr(Buf), "000")) { + while((StrBuf_ServGetln(Buf) >= 0) && strcmp(ChrPtr(Buf), "000")) { rev_date = extract_long(ChrPtr(Buf), 1); webcit_fmt_date(rev_date_displayed, sizeof rev_date_displayed, rev_date, DATEFMT_FULL); @@ -203,7 +217,7 @@ void tmplput_display_wiki_history(StrBuf *Target, WCTemplputParams *TP) ChrPtr(rev_uuid), _("(show)") ); - wc_printf("", + wc_printf("", bstr("page"), ChrPtr(rev_uuid), _("(revert)") @@ -282,13 +296,10 @@ void tmplput_display_wiki_pagelist(StrBuf *Target, WCTemplputParams *TP) if (GetServerStatus(Buf, NULL) == 1) { StrBuf *pagetitle = NewStrBuf(); - wc_printf("
" - "
%s%s%s%s
" - ); - + wc_printf("
"); wc_printf("", _("Page title")); - while(StrBuf_ServGetln(Buf), strcmp(ChrPtr(Buf), "000")) { + while((StrBuf_ServGetln(Buf) >= 0) && strcmp(ChrPtr(Buf), "000")) { StrBufExtract_token(pagetitle, Buf, 1, '|'); if (!bmstrcasestr((char *)ChrPtr(pagetitle), "_HISTORY_")) { /* no history pages */ @@ -331,10 +342,6 @@ int wiki_Cleanup(void **ViewSpecific) } - - - - int ConditionalHaveWikiPage(StrBuf *Target, WCTemplputParams *TP) { const char *page; @@ -345,15 +352,19 @@ int ConditionalHaveWikiPage(StrBuf *Target, WCTemplputParams *TP) GetTemplateTokenString(Target, TP, 2, &pch, &len); return strcasecmp(page, pch) == 0; } + + int ConditionalHavewikiType(StrBuf *Target, WCTemplputParams *TP) { wcsession *WCC = WC; const char *pch; long len; - GetTemplateTokenString(Target, TP, 1, &pch, &len); + GetTemplateTokenString(Target, TP, 2, &pch, &len); return bmstrcasestr((char *)ChrPtr(WCC->Hdr->HR.ReqLine), pch) != NULL; } + + void InitModule_WIKI (void)
%s