You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by "Greg Huber (JIRA)" <ji...@apache.org> on 2014/07/04 08:54:35 UTC

[jira] [Commented] (ROL-1792) Hit count increments with

    [ https://issues.apache.org/jira/browse/ROL-1792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14052204#comment-14052204 ] 

Greg Huber commented on ROL-1792:
---------------------------------

Ah, did not remember logging this, fixed in above commit.

> Hit count increments with <link rel="stylesheet" type="text/css" media="all" href="$model.weblog.stylesheet">
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: ROL-1792
>                 URL: https://issues.apache.org/jira/browse/ROL-1792
>             Project: Apache Roller
>          Issue Type: Bug
>          Components: Pings and Trackbacks
>    Affects Versions: 5.0
>            Reporter: Greg Huber
>            Assignee: Roller Unassigned
>            Priority: Trivial
>             Fix For: 5.1
>
>
> When <link rel="stylesheet" type="text/css" media="all" href="$model.weblog.stylesheet"> is included on a webpage it triggers another trip to the page servlet where it also can trigger an increment on the daily hits. Need some way of stopping this via only incrementing on weblog pages (not css):
> eg: (or something similar/better as will only increment on weblog home page)
> PageServlet:
> ...
> // allow for hit counting
>         if (!isSiteWide && pageRequest.isWeblogPageHit()) {
>             this.processHit(weblog, request.getRequestURL().toString(), request.getHeader("referer"));
>         }
> ...
> WeblogPageRequest:
> ...
> if (pathInfo != null && pathInfo.trim().length() > 0) {
> ..
> } else {
> // default view, weblog homepage
>  weblogPageHit = true;
> }
> ...



--
This message was sent by Atlassian JIRA
(v6.2#6252)