Return-Path: Delivered-To: apmail-incubator-jspwiki-dev-archive@minotaur.apache.org Received: (qmail 4926 invoked from network); 6 Mar 2010 19:26:22 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 6 Mar 2010 19:26:22 -0000 Received: (qmail 36810 invoked by uid 500); 6 Mar 2010 19:26:05 -0000 Delivered-To: apmail-incubator-jspwiki-dev-archive@incubator.apache.org Received: (qmail 36791 invoked by uid 500); 6 Mar 2010 19:26:05 -0000 Mailing-List: contact jspwiki-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jspwiki-dev@incubator.apache.org Delivered-To: mailing list jspwiki-dev@incubator.apache.org Received: (qmail 36783 invoked by uid 99); 6 Mar 2010 19:26:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Mar 2010 19:26:05 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of andrew.r.jaquith@gmail.com designates 209.85.221.193 as permitted sender) Received: from [209.85.221.193] (HELO mail-qy0-f193.google.com) (209.85.221.193) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Mar 2010 19:25:57 +0000 Received: by qyk31 with SMTP id 31so4303916qyk.8 for ; Sat, 06 Mar 2010 11:25:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=uFQTwZ2uVLyEAlaU6XwGUZS04N6qDBjqEV+QAsPJgac=; b=k6psQBUwa01jTr6f8WcB9YS6JI6Fro/NKGf+uHkoKazp2T7Zj2LqGWnog67/8affGI o53sQSws8FZDryTWjd/ypwF/QGnZ+cLP21e6IIt6QEGhYb4/IC6v7j4x8g6/uabmWQkI 8F/md0Ko9LUx3EEM5LjC6uM/Gby4+3+BbaaMA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=tg910FKv6B6dWArJhUXke9Mo+yaa9kRfaiRnW2kOzPk0etAQgexUyKdWqjMIEiVFgs lduChgiGyXHTUpZ8/XETPk5T6XUvF91RUCdeIOs/AMOm4+YMfJb9ib+CiSFtTI04LSW1 sgqTkP9RYik6EEBstuAqT6TNcPL9FwBoAx5Xw= MIME-Version: 1.0 Received: by 10.224.27.157 with SMTP id i29mr1351185qac.147.1267903536484; Sat, 06 Mar 2010 11:25:36 -0800 (PST) In-Reply-To: <3a6c97f01003061032i775d4dc1j6067fda21d93576d@mail.gmail.com> References: <3a6c97f01003061032i775d4dc1j6067fda21d93576d@mail.gmail.com> Date: Sat, 6 Mar 2010 14:25:36 -0500 Message-ID: Subject: Re: Removal of old UrlConstructors, WikiServlet From: Andrew Jaquith To: jspwiki-dev@incubator.apache.org Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org Ok -- checked it all in. I should have also mentioned that SpamFilter was also essentially dead code -- everything in it was already done (better) by the content-inspection stack. So I eliminated that too. Janne and Dirk -- this checkin also implements the fixes to the JSPs that allow editors to specify their own resources. Dirk, we will probably want to make some adjustments to your (new) wysiwyg.jsp; I've made some preliminary tweaks that you should take a look at. I'm happy to help tweak the editor JSP and/or EditActionBean to make it work nicely. Andrew On Sat, Mar 6, 2010 at 1:32 PM, Harry Metske wrote: > go ahead Andrew, "make my day" :-) > > regards, > Harry > > 2010/3/6 Andrew Jaquith > >> All -- >> >> I'm about to check in a batch of code. In it, I remove the >> Short/ShortView URLConstructors. These aren't used any longer because >> of the switch to StripesURLConstructor, which works identically to >> DefaultURLConstructor. >> >> Also: the DefaultUrlConstructor is merged into StripesUrlConstructor >> (quite easy, really). The URLConstructor interface method parsePage() >> is removed, also, because that is taken care of by the framework. >> (It's also not really a "constructor" method...) >> >> And, as a consequence, WikiServlet is also not needed. Its primary >> function was to help decode short URLs, but that's done by >> ShortUrlFilter now. >> >> Any objections before I commit? Nothing breaks, no real changes other >> than removal of dead code. >> >> Andrew >> >