Re: [pmwiki-users] Pagelist again

2009-09-24 Thread Eemeli Aro
2009/9/24 DaveG pmw...@solidgone.com:
 pmw...@911networks.com wrote:
 This time I'm trying to make a pagelist sorted as most recent first,
 but does NOT contain specific wording in name:

 I want all the pages without -Draft.

 It looks like you're mixing regex with pagelists. Untested, but wouldn't
 it be:
 (:pagelist fmt=#news order=-ctime name=-Draft count=15 :)

Almost. Should be this:

(:pagelist fmt=#news order=-ctime name=-*-Draft count=15:)

or, as Hans suggested,

(:pagelist fmt=#news list=normal order=-ctime count=15:)

eemeli

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


[pmwiki-users] pmform - sender-mail and confirm a mail

2009-09-24 Thread Patrick Ogay Evolution
For our chorus I like to create a form so people can reserve places for
a concert. 

I like to improve the functinality here: 
http://www.baselinside.ch/Zeronove/Reservationen

at the moment the sender is: 
www-data www-d...@vps185.sui-inter.net  
can I assign an other sender? (or do I have to change server
configuration, urgh).

The other point is that I like to send a confirmation to the user,
when the form variable {$$Email} is set. 
I'm wondering how I can use this variable from config.php: 
$PmForm['maildemo'] = 'mailto=p...@ddy.ch,{$$Email} ...

thanks in advance for any hints.

regards
Patrick 



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


[pmwiki-users] pmform reply-to ? (or senderspecification).

2009-09-24 Thread Patrick Ogay Evolution
in the other post I asked wether the sender my be changed.

A reply-to would also be possibility 
(reply-to or replyto=n...@site.tld didn't work in 
$PmForm['maildemo'] = 'mailto=p...@ddy.ch reply-t...@ddy.ch

regards
Patrick




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


[pmwiki-users] Single column skin(s)?

2009-09-24 Thread Chris Lott
I'm in a bit of a time crunch and trying to find a single column (no
sidebar) pmwiki skin for a presentation. Any ideas?

I've only found one so far (JH and derivative JHMP), but they are
problematic because they don't include HTMLFooterFmt information for
some reason...

c

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


Re: [pmwiki-users] TextExtract (Search recipe) update

2009-09-24 Thread Hans

I got a question regars to default settings:

The markup=text option has all links deactivated.

I thought that this was sensible and essential for a text ouput mode
with minimal markup renderings. But I find that it could work
nearly just as well with links rendered active, and that other markup
modes may benefit from having links sometimes set as text and not
active. It is possible to have an independant option which sets links
active or as text only. But what should it be called, and what should
its default be, and can it have different defaults for different
markup options?

I can think of names for the option like textlinks= or activelinks=
links= would be nice, but pagelist has  a link= option, an di don't
want to confuse the two.

markup=code and markup=cut and markup=on have active links.
markup=text has text links, markup=source has just source code, no
special links handling or styling.

Any thought on this?


  ~Hans


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


Re: [pmwiki-users] Single column skin(s)?

2009-09-24 Thread edwin marte
You could use the Triad Skin. If you use markup (:noleft:) (:noright:) there
won't be any sidebar.

You could use the markup in any page or the group header as well. I guess
there must be a few others that you could do the same.

Regards,
Edwin

On Thu, Sep 24, 2009 at 1:31 PM, Chris Lott ch...@chrislott.org wrote:

 I'm in a bit of a time crunch and trying to find a single column (no
 sidebar) pmwiki skin for a presentation. Any ideas?

 I've only found one so far (JH and derivative JHMP), but they are
 problematic because they don't include HTMLFooterFmt information for
 some reason...

 c

 ___
 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] Single column skin(s)?

2009-09-24 Thread Derek Keller
http://www.pmwiki.org/wiki/Cookbook/MaguilaSkin?col=0

Derek

On Sep 24, 2009, at 11:31 AM, Chris Lott wrote:

 I'm in a bit of a time crunch and trying to find a single column (no
 sidebar) pmwiki skin for a presentation. Any ideas?

 I've only found one so far (JH and derivative JHMP), but they are
 problematic because they don't include HTMLFooterFmt information for
 some reason...

 c

 ___
 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] Single column skin(s)?

2009-09-24 Thread Hans
Thursday, September 24, 2009, 5:45:52 PM, edwin marte wrote:

 You could use the Triad Skin. If you use markup (:noleft:)
 (:noright:) there won't be any sidebar.

With Triad for presentation us eyou coul just click the 'Hide' links
left and right top to hide left and right bars, leaving you with a
single column content, plus header, action menu, footer etc.

you could also disable and hide left and right bars permanently from
config.php like this:

$EnableLeftBarToggle = 0;
$EnableRightBarToggle = 0; 
$EnableRightBar = 0;
SetTmplDisplay('PageLeftFmt',0);
$Skin = 'triad';

you see there is a var $EnableRightBar for the right column,
but it needs SetTmplDisplay('PageLeftFmt',0); to get rid of the left
column. The toogle variables will hide the toggle links and isable
toggling of SideBar and RightBar.


  ~Hans


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


Re: [pmwiki-users] Single column skin(s)?

2009-09-24 Thread Chris Cox
On Thu, 2009-09-24 at 08:31 -0800, Chris Lott wrote:
 I'm in a bit of a time crunch and trying to find a single column (no
 sidebar) pmwiki skin for a presentation. Any ideas?
 
 I've only found one so far (JH and derivative JHMP), but they are
 problematic because they don't include HTMLFooterFmt information for
 some reason...

One of the nicest things about PmWiki is how flexible it is.

It's actually VERY simple to create your own skin.  IMHO, you create
skins that are about 100% better than the ones that are on
the PmWiki site btw (no offense).  PmWiki is just so flexible.

I know that might not be the answer you are wanting.  But if you
take a bit of time to look at even the pmwiki skin, you should
be able to figure out just what all is possible.

For example the skin I made supports things like:

(:nonav:) Removes navigation menu
(:noaction:) Removed action menu
(:nologo:) Removes logo area
(:nosearch:) Removes search pane
(:noleft:)
(:noright:)
(:noheader:)
(:nofooter:)
... and some more...







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


[pmwiki-users] Sign-up sheet

2009-09-24 Thread Gary Spivey

I want to create a sign-up sheet using PmWiki. I want to display a table,
and have folks able to enter their usernames in the table where open spots
exist. When they enter their name, the system should replace the open spot
with their name. It would certainly be great if they can delete their name
as well. Tying the name entry and delete to some authentication scheme would
also be nice. 

Right now, I am simply using a wiki table, but that means that folks are
editing a wiki table - which isn't the simplest user interface for a sign-up
sheet. 

Does anybody have any idea how to do this well/easily in PmWiki?

-Gary


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