The searchhighlight plugin insert a <span> around all terms found in the page. It should not do that inside some tags :
- script : javascript parameters are broken
- mailto : email addresses are broken
...
Search found 8 matches
- Thu Jan 18, 2007 11:58 am
- Forum: Bugs
- Topic: searchhighlight plugin
- Replies: 1
- Views: 1587
- Sun Sep 03, 2006 10:37 am
- Forum: Bugs
- Topic: All categories URL should use "?frontpage"
- Replies: 8
- Views: 4341
- Tue Aug 29, 2006 4:45 pm
- Forum: Bugs
- Topic: All categories URL should use "?frontpage"
- Replies: 8
- Views: 4341
- Mon Aug 28, 2006 11:21 pm
- Forum: Bugs
- Topic: All categories URL should use "?frontpage"
- Replies: 8
- Views: 4341
I post a diff for the "all categories" url. This is always the "?frontpage" with or without static page. When a static page is made the front page, it is "/" or "index.php" which points to this static page. Then "all categories" whithout the patch is invalid because it points to the static page. I ...
- Fri Aug 25, 2006 8:25 pm
- Forum: Bugs
- Topic: All categories URL should use "?frontpage"
- Replies: 8
- Views: 4341
All categories URL should use "?frontpage"
When using static pages the frontpage is not the all categories page. This page is accessible with <index url>?frontpage
diff include/plugin_internal.inc.php.orig include/plugin_internal.inc.php
1514c1514
< $serendipity['serendipityHTTPPath'] . $serendipity['indexFile'],
---
> $serendipity ...
diff include/plugin_internal.inc.php.orig include/plugin_internal.inc.php
1514c1514
< $serendipity['serendipityHTTPPath'] . $serendipity['indexFile'],
---
> $serendipity ...
- Mon Aug 21, 2006 4:39 pm
- Forum: Bugs
- Topic: [at] in email should be %5Bat%5D
- Replies: 2
- Views: 1886
- Sun Aug 20, 2006 9:58 pm
- Forum: Bugs
- Topic: French translation
- Replies: 1
- Views: 1696
French translation
Here is a diff to correct some mistakes. Note that in French signs containing 2 symbols (;:!?) need a space before and a space after.
http://www.thalix.com/documents/diff
http://www.thalix.com/documents/diff
- Sun Aug 20, 2006 5:44 pm
- Forum: Bugs
- Topic: [at] in email should be %5Bat%5D
- Replies: 2
- Views: 1886
[at] in email should be %5Bat%5D
diff functions_comments.inc.php.orig functions_comments.inc.php
260c260
< $comment['email'] = htmlspecialchars(str_replace('@', '[at]', $comment['email']));
---
> $comment['email'] = htmlspecialchars(str_replace('@', '%5Bat%5D', $comment['email']));
[] are forbidden in w3c recommandations
260c260
< $comment['email'] = htmlspecialchars(str_replace('@', '[at]', $comment['email']));
---
> $comment['email'] = htmlspecialchars(str_replace('@', '%5Bat%5D', $comment['email']));
[] are forbidden in w3c recommandations