
|
If you were logged in you would be able to see more operations.
|
|
|
|
The pattern (?:/[t|template|resourceRepresentationTemplate]/([A-Za-z0-9_\-]+))?(?:/[type|resourceRepresentationType]/(xhtml|pdf|excel))? which is present in all rules is not properly expressed. The brackets should be replaced by parenthesis.
The correct way to express the above pattern is
(?:/(?:t|template|resourceRepresentationTemplate)/([A-Za-z0-9_\-]+))?(?:/(?:type|resourceRepresentationType)/(xhtml|pdf|excel))?
|
|
Description
|
The pattern (?:/[t|template|resourceRepresentationTemplate]/([A-Za-z0-9_\-]+))?(?:/[type|resourceRepresentationType]/(xhtml|pdf|excel))? which is present in all rules is not properly expressed. The brackets should be replaced by parenthesis.
The correct way to express the above pattern is
(?:/(?:t|template|resourceRepresentationTemplate)/([A-Za-z0-9_\-]+))?(?:/(?:type|resourceRepresentationType)/(xhtml|pdf|excel))? |
Show » |
|