Re: [pmwiki-users] Spaces in page names

2007-03-12 Thread Oliver Betz
Hans wrote:

 For a link to TechnicalInformation this is sufficient:
 
   [[Technical Information]]
 
 even this: [[technical information]]
 
 or this: [[tech(nical) info(rmation)]]
  resulting in link text tech info

people should be aware that your examples result in _two_ pages 
technicalinformation and TechnicalInformation.

Oliver
-- 
Oliver Betz, Muenchen


___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] Spaces in page names

2007-03-12 Thread Hans
Monday, March 12, 2007, 8:27:36 AM, Oliver wrote:

 For a link to TechnicalInformation this is sufficient:
 
   [[Technical Information]]
 
 even this: [[technical information]]
 
 or this: [[tech(nical) info(rmation)]]
  resulting in link text tech info

 people should be aware that your examples result in _two_ pages 
 technicalinformation and TechnicalInformation.

I did test this and for me all the link variations resolve to point to
page TechnicalInformation, not any other.

There seems to be something else causing links to two pages instead.
I don't know what though.


Hans


___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] Spaces in page names

2007-03-12 Thread Oliver Betz
Kathryn Andersen wrote:

( [[Technical Information]], [[technical information]] ...)

  people should be aware that your examples result in _two_ pages 
  technicalinformation and TechnicalInformation.
 
 If they do, then your setup is broken.  A normal PmWiki setup will
 turn
 [[technical information]]
 to a link to TechnicalInformation
 
 The spaces are significant, indicating how the capitalization of the

I see - sorry for the wrong report, Hans!

Oliver
-- 
Oliver Betz, Muenchen


___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


[pmwiki-users] Spaces in page names

2007-03-11 Thread Steven Benmosh
I know there is a way to display page names with a space, but I could
not find how to do it with a few searches.

I know this is a newbie question, but could someone please reminde me:

I want to create a new page named Technical Information. When I use
[[Technical Information]], the new page is called
TechnicalInformation, instead.

What is the variable that I need to set, and where (config.php?) to
allow the preservation of spaces in page names displays?

Is there another way to either create or display the page this way
without using a variable?

Thanks,

Z.

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] Spaces in page names

2007-03-11 Thread Petko Yotov
On Sunday 11 March 2007 15:32, Steven Benmosh wrote:
 I know there is a way to display page names with a space, but I could
 not find how to do it with a few searches.

 I know this is a newbie question, but could someone please reminde me:

 I want to create a new page named Technical Information. When I use
 [[Technical Information]], the new page is called
 TechnicalInformation, instead.

 What is the variable that I need to set, and where (config.php?) to
 allow the preservation of spaces in page names displays?

 Is there another way to either create or display the page this way
 without using a variable?


Currently you cannot have spaces in page names (or urls), but you can have a 
different page title by setting in the page:
  (:title Technical Information:)

Or even:
  (:title {*$Namespaced}:)

And in pagelists you can use {=$Namespaced}.

{*Namespaced} and {*$Groupspaced} variables contain the spaced version of 
the page name and group.

Petko

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] Spaces in page names

2007-03-11 Thread Aleks
Use something like that

[[TechnicalInformation |Technical Information]]

Aleks

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steven Benmosh
Sent: Sunday, March 11, 2007 7:33 AM
To: pmwiki-users@pmichaud.com
Subject: [pmwiki-users] Spaces in page names

I know there is a way to display page names with a space, but I could
not find how to do it with a few searches.

I know this is a newbie question, but could someone please reminde me:

I want to create a new page named Technical Information. When I use
[[Technical Information]], the new page is called
TechnicalInformation, instead.

What is the variable that I need to set, and where (config.php?) to
allow the preservation of spaces in page names displays?

Is there another way to either create or display the page this way
without using a variable?

Thanks,

Z.

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] Spaces in page names

2007-03-11 Thread Hans
Sunday, March 11, 2007, 8:01:38 PM, Aleks wrote:

 Use something like that

 [[TechnicalInformation |Technical Information]]

For a link to TechnicalInformation this is sufficient:

  [[Technical Information]]

even this: [[technical information]]

or this: [[tech(nical) info(rmation)]]
 resulting in link text tech info


Hans


___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] Spaces in page names

2007-03-11 Thread Steven Benmosh

Thanks Mark, that did the trick.

Thanks also for all the other suggestions, I am in the process of reading
the links.

Z.

On 3/11/07, Mark Trumpold [EMAIL PROTECTED] wrote:


Hi

I think this is what you mean

##  Set $SpaceWikiWords if you want WikiWords to automatically
##  have spaces before each sequence of capital letters.
$SpaceWikiWords = 1; # turn on WikiWord spacing

It is in your config.php in the local directory

More info ... http://pmwiki.com/wiki/PmWiki/BasicVariables

Or

http://pmwiki.com/wiki/Cookbook/SpacedWikiWords


Mark

On 11/3/07 4:32 PM, Steven Benmosh [EMAIL PROTECTED] wrote:

 I know there is a way to display page names with a space, but I could
 not find how to do it with a few searches.

 I know this is a newbie question, but could someone please reminde me:

 I want to create a new page named Technical Information. When I use
 [[Technical Information]], the new page is called
 TechnicalInformation, instead.

 What is the variable that I need to set, and where (config.php?) to
 allow the preservation of spaces in page names displays?

 Is there another way to either create or display the page this way
 without using a variable?

 Thanks,

 Z.

 ___
 pmwiki-users mailing list
 pmwiki-users@pmichaud.com
 http://www.pmichaud.com/mailman/listinfo/pmwiki-users



___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users