No match: "drupal:path:wildcard * general-network/% >>> default"
No match: "drupal:path:wildcard * africa-network/% >>> primafamed_africa"

Tried also:
No match: "drupal:path:wildcard = general-network/% >>> default"
No match: "drupal:path:wildcard = africa-network/% >>> primafamed_africa"

No match: "drupal:path:wildcard = general-network/%/% >>> default"
No match: "drupal:path:wildcard = africa-network/%/% >>> primafamed_africa"

No match: "drupal:path:wildcard = general-network/%/% >>> default"
No match: "drupal:path:wildcard = africa-network/%/% >>> primafamed_africa"

I want al the urls of
www.foobar.com/drupal/?q=africa-network/home-africa-network
and all variations of africa-network/*
To use the primafamed_africa theme

www.foobar.com/drupal/?q=general-network/about-us
and all variations of general-network/*
To use the default theme

A theme par sub network is the goal.

Debug info:

drupal:path
no debug information

drupal:path:wildcard
empty

pleas advice.

Comments

ikeigenwijs’s picture

also tried

No match: "drupal:path:wildcard * general-network/%/% >>> default"
No match: "drupal:path:wildcard * africa-network/%/% >>> primafamed_africa"

mkalkbrenner’s picture

Category: bug » support

Please read the included documentation or have a look at http://drupal.org/node/1064798#comment-5347188

The property "drupal:path:wildcard" makes no sense without a property "drupal:path" that declared a wildcard.

In your case you don't have to deal with wildcards at all. You simply require one single rule:

drupal:path = africa-network >>>primafamed_africa

This one matches "africa-network/*" and "africa-network".
If you don't want "africa-network" to match, you rule looks like this:

drupal:path = africa-network/% >>>primafamed_africa

Just to explain the wildcard feature. A rule like

drupal:path = africa-network/%my_wildcard >>>primafamed_africa

declares a named wildcard that could be used later in the rule chain:

drupal:path = africa-network/%my_wildcard
   drupal:path:wildcard my_wildcard = foo >>>primafamed_africa
   drupal:path:wildcard my_wildcard = bar >>>primafamed_africa
ikeigenwijs’s picture

Status: Active » Closed (fixed)

Thx a lot for the fast response!

It works now, i red and viewed the tutorial movies, but i clearly did not get it.