Big +1 for me. I currently use the following code in the index page to work
around this issue:
8 /**
9 * Restore 404 Not Found errors
10 * @param context
11 * @return
12 */
13 HttpError onActivate(EventContext context)
14 {
15 if (context.getCount() == 0)
16 {
17 return null;
18 }
19
20 return new HttpError(404, "Resource not found.");
21 }
On Jul 31, 2013, at 10:14 AM, Massimo Lusetti <[email protected]> wrote:
> Hi devs,
> I would like to have
> https://issues.apache.org/jira/browse/TAP5-2070closed before 5.4 will
> go to beta stage.
>
> I mainly want to decide if the current behavior is acceptable for the
> majority or we need to change it, then we can discuss on the implementation.
>
> Please comment.
>
> --
> Massimo Lusetti