Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 May 2006 13:48:20 +0000 (UTC)
From:      Renato Botelho <garga@FreeBSD.org>
To:        ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: ports/www Makefile ports/www/quickie Makefile distinfo pkg-descr pkg-plist ports/www/quickie/files freebsd.h patch-lib_file_regular.cc patch-lib_input_file.cc patch-lib_output_file.cc patch-lib_rcstring_list_sort_vers.cc patch-lib_simple_version_tool_checkin.cc pkg-message.in
Message-ID:  <200605171348.k4HDmLOp014849@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
garga       2006-05-17 13:48:19 UTC

  FreeBSD ports repository

  Modified files:
    www                  Makefile 
  Added files:
    www/quickie          Makefile distinfo pkg-descr pkg-plist 
    www/quickie/files    freebsd.h patch-lib_file_regular.cc 
                         patch-lib_input_file.cc 
                         patch-lib_output_file.cc 
                         patch-lib_rcstring_list_sort_vers.cc 
                         patch-lib_simple_version_tool_checkin.cc 
                         pkg-message.in 
  Log:
  Quickie is a small footprint, fast C++ Wiki engine; hence the name.
  
  The fundamental insight for this engine is that wiki pages are read far
  more often than they are modified. Thus, the generated HTML can be
  cached. It follows that the main code path will check that the .html
  file exists and simply copy it to stdout in the vast majority of cases.
  
  The .html file generated from each .wiki file is about the same size as
  the .wiki file itself, so there will be no particular I/O advantage,
  but there is a huge CPU advantage, and a significant memory footprint
  advantage, and since I want to run a wiki on a geriatric 20MB 33MHz 386
  machine, this is a good thing.
  
      Online demo: http://quickie.sourceforge.net/cgi-bin/quickie
  
  WWW: http://quickie.sourceforge.net/
  
  PR:             ports/97376
  Submitted by:   Shaun Amott <shaun@inerd.com>
  
  Revision  Changes    Path
  1.1406    +1 -0      ports/www/Makefile
  1.1       +71 -0     ports/www/quickie/Makefile (new)
  1.1       +6 -0      ports/www/quickie/distinfo (new)
  1.1       +43 -0     ports/www/quickie/files/freebsd.h (new)
  1.1       +23 -0     ports/www/quickie/files/patch-lib_file_regular.cc (new)
  1.1       +14 -0     ports/www/quickie/files/patch-lib_input_file.cc (new)
  1.1       +16 -0     ports/www/quickie/files/patch-lib_output_file.cc (new)
  1.1       +13 -0     ports/www/quickie/files/patch-lib_rcstring_list_sort_vers.cc (new)
  1.1       +14 -0     ports/www/quickie/files/patch-lib_simple_version_tool_checkin.cc (new)
  1.1       +17 -0     ports/www/quickie/files/pkg-message.in (new)
  1.1       +16 -0     ports/www/quickie/pkg-descr (new)
  1.1       +54 -0     ports/www/quickie/pkg-plist (new)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605171348.k4HDmLOp014849>