Another nitpick with the poll plugin
-
Ripper^^
- Regular
- Posts: 50
- Joined: Mon Aug 15, 2005 7:49 am
- Location: Gainesville, Florida, USA
- Contact:
Another nitpick with the poll plugin
Is there somewhere i can find a switch or something in the files themselves to modify so that when you vote in a poll your browser does not refresh to the frontpage.
For example I don't use the traditional frontpage as the frontpage to my site, however wherever you are in my site, when you vote in a poll that is where your browser is directed for the results.
Optimally it would be nice for the refresh to leave you on whatever page you happen to be on at the time that you vote, but I would settle for it just refreshing to my more normal frontpage
Thanks in advance for any help.
Ripper^^
For example I don't use the traditional frontpage as the frontpage to my site, however wherever you are in my site, when you vote in a poll that is where your browser is directed for the results.
Optimally it would be nice for the refresh to leave you on whatever page you happen to be on at the time that you vote, but I would settle for it just refreshing to my more normal frontpage
Thanks in advance for any help.
Ripper^^
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Another nitpick with the poll plugin
Actually this is more a problem of the frontpage detection: The poll form submits to "/index.php?index.php". The reason is that the function tries to get the recent page and append it as an argument to the URL. With mod_rewrite this should work a bit better, I guess.
Anyways - now the frontpage sees that the request is not just "index.php" but "index.php?index.php" and thus thinks, it's not the actual frontpage anymore.
I've just committed a "fix" which does not append "index.php" in case this is the simple URL. You'll need to apply this patch to your include/functions_permalinks.inc.php file:
http://svn.berlios.de/viewcvs/serendipi ... 730&r2=874
Regards,
Garvin
Anyways - now the frontpage sees that the request is not just "index.php" but "index.php?index.php" and thus thinks, it's not the actual frontpage anymore.
I've just committed a "fix" which does not append "index.php" in case this is the simple URL. You'll need to apply this patch to your include/functions_permalinks.inc.php file:
http://svn.berlios.de/viewcvs/serendipi ... 730&r2=874
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
Ripper^^
- Regular
- Posts: 50
- Joined: Mon Aug 15, 2005 7:49 am
- Location: Gainesville, Florida, USA
- Contact:
ok, i applied that line to the include/functions_permalinks.inc.php file.
however, http://svn.berlios.de/viewcvs/serendipi ... 730&r2=874
says that should be line 688, in my file it was line number 530, does that matter?
however, http://svn.berlios.de/viewcvs/serendipi ... 730&r2=874
says that should be line 688, in my file it was line number 530, does that matter?
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hm, you're right.
I think the s9y frontpage detection of the static page plugin (you do use that to show your custom frontpage, right?) might be wacky there.
Could you look up this code in serendipity_event_staticpage.php:
and modify it to:
Those two debug statements should show up in your HTML when submitting the vote to your custom frontpage. Maybe you can tell me what it says for you.
Regards,
Garvin
I think the s9y frontpage detection of the static page plugin (you do use that to show your custom frontpage, right?) might be wacky there.
Could you look up this code in serendipity_event_staticpage.php:
Code: Select all
$args = implode('/', serendipity_getUriArguments($eventData, true));
if ($serendipity['rewrite'] != 'none') {
$nice_url = $serendipity['serendipityHTTPPath'] . $args;
} else {
$nice_url = $serendipity['serendipityHTTPPath'] . $serendipity['indexFile'] . '?/' . $args;
}
if ((empty($args) || trim($args) == $serendipity['indexFile']) && empty($serendipity['GET']['subpage'])) {
$serendipity['GET']['subpage'] = $this->getStartpage();
}
Code: Select all
$args = implode('/', serendipity_getUriArguments($eventData, true));
echo "DEBUG ARGS: " . print_r($args, true) . "<br />\n";
if ($serendipity['rewrite'] != 'none') {
$nice_url = $serendipity['serendipityHTTPPath'] . $args;
} else {
$nice_url = $serendipity['serendipityHTTPPath'] . $serendipity['indexFile'] . '?/' . $args;
}
echo "DEBUG SUBPAGE: " . print_R($serendipity['GET']['subpage'], true) . "<br />\n";
if ((empty($args) || trim($args) == $serendipity['indexFile']) && empty($serendipity['GET']['subpage'])) {
$serendipity['GET']['subpage'] = $this->getStartpage();
}
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
Ripper^^
- Regular
- Posts: 50
- Joined: Mon Aug 15, 2005 7:49 am
- Location: Gainesville, Florida, USA
- Contact:
ok, serendipity_event_staticpage.php has been updated accordingly. after voting the page was refreshed not to index.php?frontpage, but to index.php? which brings up index.php?frontpage.
the two debug arguments that show up at the bottom of the page display thusly:
DEBUG ARGS: index.php?
DEBUG SUBPAGE:
Hope that helps you Garvin
Thanks,
Ripper^^
the two debug arguments that show up at the bottom of the page display thusly:
DEBUG ARGS: index.php?
DEBUG SUBPAGE:
Hope that helps you Garvin
Thanks,
Ripper^^
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Could you please modify this part of the code from above:
to this:
This should remove the "?" at the end for propper comparison...?
Tell me if it works, then I can commit that.
Regards,
Garvin
Code: Select all
trim($args) == $serendipity['indexFile']
Code: Select all
trim($args, "? \t\n\r\0\x0B") == $serendipity['indexFile']
Tell me if it works, then I can commit that.
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
Ripper^^
- Regular
- Posts: 50
- Joined: Mon Aug 15, 2005 7:49 am
- Location: Gainesville, Florida, USA
- Contact:
ok, new addition pasted into serendipity_event_staticpage.php.
When voting from the frontpage http://www.theripper.com/ the URL refreshes to http://www.theripper.com/index.php? and shows the frontpage it's supposed to, and the debug arguments at the bottom of the page are thus:
DEBUG ARGS: index.php?
DEBUG SUBPAGE:
When voting from another page, the contributors page for example which is at http://www.theripper.com/index.php?/pag ... utors.html the URL refreshes to http://www.theripper.com/index.php?&/pa ... utors.html (note the & in the URL) and shows the standard serendipity frontpage which on my site is reached by index.php?frontpage, and the debug arguments at the bottom of the page are thus:
DEBUG ARGS: index.php?&/pages/contributors.html
DEBUG SUBPAGE:
hope this helps,
Ripper^^
p.s. I didn't know if i was supposed to undo the original patch to the include/functions_permalinks.inc.php file, so i did not undo it, but left it patched.
When voting from the frontpage http://www.theripper.com/ the URL refreshes to http://www.theripper.com/index.php? and shows the frontpage it's supposed to, and the debug arguments at the bottom of the page are thus:
DEBUG ARGS: index.php?
DEBUG SUBPAGE:
When voting from another page, the contributors page for example which is at http://www.theripper.com/index.php?/pag ... utors.html the URL refreshes to http://www.theripper.com/index.php?&/pa ... utors.html (note the & in the URL) and shows the standard serendipity frontpage which on my site is reached by index.php?frontpage, and the debug arguments at the bottom of the page are thus:
DEBUG ARGS: index.php?&/pages/contributors.html
DEBUG SUBPAGE:
hope this helps,
Ripper^^
p.s. I didn't know if i was supposed to undo the original patch to the include/functions_permalinks.inc.php file, so i did not undo it, but left it patched.
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Thanks to much for staying on board with me 
Please again edit the currentURL function in your include/functions_permalinks. Remember the line you inserted there?
Change it from this:
to this:
Note the two inserted (&)? parts. Those should rid you of the "&pages/contributors" string so that the link detection works again?
Regards,
Garvin
Please again edit the currentURL function in your include/functions_permalinks. Remember the line you inserted there?
Change it from this:
Code: Select all
$uri['path'] = preg_replace('@^' . preg_quote($serendipity['indexFile']) . '@i', '', $uri['path']);
Code: Select all
$uri['path'] = preg_replace('@^(&)?' . preg_quote($serendipity['indexFile']) . '(&)@i', '', $uri['path']);
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Yeay, cool. I'll commit the change then officially. 
Regards,
Garvin
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/