Re: [pmwiki-users] Category - Links not to include

2007-05-08 Thread christian . ridderstrom
On Mon, 7 May 2007, Patrick R. Michaud wrote: Oops, this should be: (:pagelist link={*$FullName} list=normal [[!{*$Name} :) For which of the following cases will the above work: * [[!SomeCategory]] * [[!Some Category]] * [[!Some category]] * [[!Some (category)]] /C -- Christian

Re: [pmwiki-users] Category - Links not to include

2007-05-08 Thread Patrick R. Michaud
On Tue, May 08, 2007 at 10:42:28AM +0200, [EMAIL PROTECTED] wrote: On Mon, 7 May 2007, Patrick R. Michaud wrote: Oops, this should be: (:pagelist link={*$FullName} list=normal [[!{*$Name} :) For which of the following cases will the above work: * [[!SomeCategory]] * [[!Some

Re: [pmwiki-users] Category - Links not to include

2007-05-08 Thread christian . ridderstrom
On Tue, 8 May 2007, Patrick R. Michaud wrote: (:pagelist link={*$FullName} list=normal [[!{*$Name} :) For which of the following cases will the above work: * [[!SomeCategory]] * [[!Some Category]] * [[!Some category]] * [[!Some (category)]] Oops, you're right -- it only works for the

Re: [pmwiki-users] Category - Links not to include

2007-05-08 Thread christian . ridderstrom
On Tue, 8 May 2007, Patrick R. Michaud wrote: Also, there's the option of using an http-link from Main.HomePage to the Category page. This won't be treated as a page link, and Main.HomePage won't be considered part of a category. I.e., instead of [[Category.Something]] use

Re: [pmwiki-users] Category - Links not to include

2007-05-08 Thread Patrick R. Michaud
On Tue, May 08, 2007 at 04:59:16PM +0200, [EMAIL PROTECTED] wrote: On Tue, 8 May 2007, Patrick R. Michaud wrote: I.e., instead of [[Category.Something]] use [[{Category.Something$PageUrl}]] to create a link to a category page that doesn't get counted by the link= option. I'm

Re: [pmwiki-users] Category - Links not to include

2007-05-08 Thread christian . ridderstrom
On Tue, 8 May 2007, Patrick R. Michaud wrote: Yikes... readability is awful here. Okay, how about in Site.InterMap : Category: {$ScriptUrl}/Category/ Then to create a link to a category page that isn't counted as a category link, one uses: [[Category:Something]] It looks ok. A

Re: [pmwiki-users] Category - Links not to include

2007-05-08 Thread Patrick R. Michaud
On Tue, May 08, 2007 at 05:37:35PM +0200, [EMAIL PROTECTED] wrote: [[Category:Something]] It looks ok. A bit counterintuitive that this link isn't counted when all the others are. InterMap and http-links are never counted as page links. It should probably be: Category:

[pmwiki-users] Category - Links not to include

2007-05-07 Thread Nicolas Pelletier
I have a problem with Categories. I have a category, named CatA that has 5 members. 5 pages with [[!CatA]] in them. They work fine, and all link to the Category.CatA page. I have also modified that page to include all members of the category after a short description of the category. The

Re: [pmwiki-users] Category - Links not to include

2007-05-07 Thread Petko Yotov
On Monday 07 May 2007 19:09, Nicolas Pelletier wrote: I have a problem with Categories. I have a category, named CatA that has 5 members. 5 pages with [[!CatA]] in them. They work fine, and all link to the Category.CatA page. I have also modified that page to include all members of the

Re: [pmwiki-users] Category - Links not to include

2007-05-07 Thread Kathryn Andersen
On Mon, May 07, 2007 at 01:09:24PM -0400, Nicolas Pelletier wrote: I have a category, named CatA that has 5 members. 5 pages with [[!CatA]] in them. I have also modified that page to include all members of the category after a short description of the category. Let's say that I want to

Re: [pmwiki-users] Category - Links not to include

2007-05-07 Thread Kathryn Andersen
On Tue, May 08, 2007 at 12:41:46AM +0200, Petko Yotov wrote: On Tuesday 08 May 2007 00:03, Kathryn Andersen wrote: b) You could specifically include only pages which contain [[! in them (:pagelist link={*$FullName} list=normal -[[!:) First, it should be [[! and not -[[! (minus means

Re: [pmwiki-users] Category - Links not to include

2007-05-07 Thread Nicolas Pelletier
Thanks for the help. If my understanding is correct, the category feature is replacing 'Category.' when it encounters '!' in links: i.e. changing [[!CatA]] by [[Category.CatA]]. Nothing more, nothing less. IMHO, I was expecting a little more, something more than just a link. A least to go

Re: [pmwiki-users] Category - Links not to include

2007-05-07 Thread Patrick R. Michaud
On Tue, May 08, 2007 at 12:41:46AM +0200, Petko Yotov wrote: On Tuesday 08 May 2007 00:03, Kathryn Andersen wrote: b) You could specifically include only pages which contain [[! in them (:pagelist link={*$FullName} list=normal -[[!:) First, it should be [[! and not -[[! (minus means

Re: [pmwiki-users] Category - Links not to include

2007-05-07 Thread Patrick R. Michaud
On Mon, May 07, 2007 at 09:59:43PM -0500, Patrick R. Michaud wrote: Actually, this won't speed up or slow things down that much. Both with and without the [[! search term, PmWiki will still read all of the pages in the resulting pagelist. Slightly more helpful would be: (:pagelist

Re: [pmwiki-users] Category - Links not to include

2007-05-07 Thread Nicolas Pelletier
Exactly what I need! Many thanks! On 5/7/07, Patrick R. Michaud [EMAIL PROTECTED] wrote: On Mon, May 07, 2007 at 09:59:43PM -0500, Patrick R. Michaud wrote: Actually, this won't speed up or slow things down that much. Both with and without the [[! search term, PmWiki will still read all of

Re: [pmwiki-users] Category - Links not to include

2007-05-07 Thread Petko Yotov
On Tuesday 08 May 2007 04:59, Patrick R. Michaud wrote: Senond, this will cause pmwiki to open for reading every single page (file) in the pagelist to make sure there is such string, and if there are many pages, it may be quite slow (running at 100% CPU). ... Actually, this won't speed up