Hi,
On our site we have a section where the pdf documents are uploaded in different languages :
mysite.com/en/docs/fichier1.pdf
mysite.com/en/docs/fichier2.pdf
mysite.com/fr/docs/fichier1.pdf
mysite.com/fr/docs/fichier2.pdf
mysite.com/de/docs/fichier1.pdf
mysite.com/de/docs/fichier2.pdf, etc…
In think I could relatively easily get the total number of downloads per document (all languages included) using something similar to:
ExtraSectionCondition1="URL,\\/\\w{2}\\/docs\\/([^\\/]*)$
ExtraSectionFirstColumnValues1="URL,(\\/docs\\/.+)"
ExtraSectionFirstColumnFormat1="%s"
Unfortunately, the webmasters have decided to change the naming of the new files by adding the language prefixes to the pdf name (en_, fr_, de_):
mysite.com/en/docs/en_fichier3.pdf
mysite.com/fr/docs/fr_fichier3.pdf
mysite.com/de/docs/de_fichier3.pdf
Is there a way to get a table :
fichier1.pdf
fichier2.pdf
fichier3.pdf (that includes fr_fichier3.pdf + en_fichier3.pdf+ de_fichier3.pdf)
Many thanks for any suggestions.