|
PmWiki /
PageTextVariables-TalkNested page text variablesNote: The following examples in this section describe a behavior, which was not defined as a feature by design, but which is more like a side effect. Be advised not to rely on nested PTVs, as their processing may change in the future. --Petko June 19, 2010, at 07:54 PM
Page text variables can be nested
Another way you may nest PTVs is to make (part of) the variable name a variable in itself:
Usage - otherData relevant to a page (the "Base" page) may now also be found in other groups. If the Base page is Main/HomePage, the data page could be Data-Main/HomePage. A new variable called // The pattern for figuring out the basename of a page $BaseNamePatterns['/^Data-/'] = ''; Your pattern may vary. Use page text variables in conditional markupPage text variables will be assigned/evaluated before any conditional markup is evaluated. This effectively means that you cannot declare a PTV within an if...else condition; and also that a PTV will have a value even if it is set within a Note: The following examples in this section describe a behavior, which was not defined as a feature by design, but which is more like a side effect. Be advised not to rely on conditionals when you set a PTV, as their processing may change in the future. --Petko June 19, 2010, at 07:54 PM In the example below, the condition will output the text '1 is equal to 1'; however, the value of 'cond1' will be 23, since both PTV assignments are evaluated (before the conditional), but the cond1:23 is evaluated last, and overrides the initial cond1:19.
You can however embed a conditional in a PTV assignment. Notice the format of the declaration below uses the non-hidden assignment form.
You cannot use the hidden form of PTV assignments, with an embedded condition. You basically get garbage output:
But, you can take advantage of the fact that PTV assignments are made before conditions are evaluated, and hide the PTV assignment within a condition which evaluates to false, and thus is not displayed. In the example below we're using embedded conditions, and so we number the if statements:
Other information:
Usage notesList names can be separated with leading spaces (a la Site.Blocklist or Site.InterMap), but list values may only have one leading space.
Lists can have leading or trailing spaces around the page variable name
What you can't doMismatch case in the page variable name
Have embedded (you really didn't expect that did you) spaces in the page variable name
Note that leading and trailing spaces in the page variable text are retained
Use natural page names, ie normal page name preprocessing does not occur
To use with conditional markup put the conditional markup in the variable
this won't work as page text variables are calculated prior to expressions.
See more examples at Test.Ptv Usage in code
SDVA($PageTextVarPatterns, array( 'var:' => '/^:*\\s*(\\w[-\\w]*)\\s*:[ \\t]?(.*)$/m', '(:var:...:)' => '/\\(: *(\\w[-\\w]*) *:(?!\\))\\s?(.*?):\\)/s')); QuestionsHow can I get the page text variable to be evaluated only when it is declared, rather than each time it is used? For example I want to do the following, where the link refers back to the page with the included text
(:Abstract:{Programme.Abstracts$RandomSection}:)
(:include {$:Abstract} lines=4:)
->[[{$:Abstract} | more ...]]
Is there a way to overwrite Page text variables, for including the same Template twice? E.g.: (:parameter:value1:) (:include TemplateThatUsesParameter:) (:parameter:value2:) (:include TemplateThatUsesParameter:) See Include with PTV, IncludeWithPTV2 It is possible to enable PTV definition in bulleted lists by entering this line in config.php $PageTextVarPatterns['* var:'] = '/^(\\**\\s*(\\w[-\\w]*)\\s*:[ \\t]?)(.*)($)/m'; Thanks to EemeliAro (from the Mailing list). Is it possible to use complex searches for PTV through pagelist? For example using regexp like this: (pagelist $MyVar="<regexp match pattern>")? Maybe a cookbook recipe can be provided for this? Also is there a possibility to achieve complex pagelist searches based on PTV-match conditions? For example to search for all pages where PTV1=<xxx> | PTV2!=<yyy>, or some other boolean expression... I wonder if this is something that can be cookbooked? Is there any possibillity to include PageTextVariables in some other MarkUp? Something like that: (:div id={{=$Name}$:project}}_small :)
Yes. Inspect the source to see that the following works. —Eemeli Aro July 28, 2009, at 06:29 AM
Can someone give me an example of using page text variables in a skin template? I read it can be done - but how? <!--markup:{*$:pagetextvar}-->
This is a talk page for improving PmWiki.PageTextVariables. |