raised history limit from 100 to 1000 on RIF's MoinMoin

I just made a change to RIF's installation of MoinMoin, raising the
number of changes displayed on the history page from 100 to 1000.  For
an example, see:

   http://www.w3.org/2005/rules/wg/wiki/Core/Positive_Conditions?action=info

This change require access to the server.  What I did was:

   $ cd /u/wiki/rules/data/plugin/action/

   $ cp var/lib/python-support/python2.4/MoinMoin/wikiaction.py longaction.py

   [ edit longaction.py ]
  
   diff:
     196c196
     < def do_info(pagename, request):
     ---
     > def execute(pagename, request):    # was called do_info  -- sandro
     359c359
     <             if count >= 100:
     ---
     >             if count >= 1000:

   [ test it ]

   $ mv longaction.py info.py

I announced this to the WG:
   http://lists.w3.org/Archives/Public/public-rif-wg/2007Oct/0083.html

I'd suggest we actually do the 100 => 1000 change to the global
wikiaction.py, but I wasn't going to just do that myself.

       -- Sandro

Received on Wednesday, 17 October 2007 12:08:38 UTC