- June 10, 2008
- 35
- 1
- Home Country
- Spain
Hi all
Is there any way to get values of "Certification" and "Tagline?
I say this because there are some skins that show these data and is interesting to complete all fields.
Greetings.
Spanish.
Hola a todos
Hay alguna manera de conseguir que importe la "Certification" y "Tagline"?
Lo digo porque hay algunos skins que muestran esos datos y está interesante tener completo todo.
Saludos.
I added this and does not work
Yo he añadido eso y no funciona
Is there any way to get values of "Certification" and "Tagline?
I say this because there are some skins that show these data and is interesting to complete all fields.
Greetings.
Spanish.
Hola a todos
Hay alguna manera de conseguir que importe la "Certification" y "Tagline"?
Lo digo porque hay algunos skins que muestran esos datos y está interesante tener completo todo.
Saludos.
I added this and does not work
Code:
<!-- Certification -->
<parse name="certification" input="${details_page}" regex=">\s+USA:((?:G)|(?:PG)|(?:PG-13)|(?:R)|(?:X)|(?:NC-17))</a>" />
<set name="movie.certification" value="${certification[0][0]:htmldecode}" />
<!-- Runtime -->
<parse name="runtime" input="${details_page}" regex="${rx_runtime}"/>
<if test='${runtime[0][0]}!='>
<set name='movie.runtime' value='${runtime[0][0]:htmldecode}'/>
</if>
<!-- Tagline -->
<parse name="tagline" input="${details_page}" regex="<h5>Tagline:</h5>\s+([^\n\r]+?)(?:\s+)?<" />
<set name="movie.tagline" value="${tagline[0][0]:htmldecode}" />
Yo he añadido eso y no funciona