GeoRSS aggregator and Layar augmented reality server
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

posts_helper.rb 1.3 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. module PostsHelper
  2. def post_to_poi(post, subscription)
  3. # http://layar.com/documentation/browser/api/getpois-response/
  4. {
  5. :id => post.id,
  6. :imageURL => "%s%s/assets/layar-icons/tal-logo-100.png" % [ request.protocol, request.env['HTTP_HOST'] ],
  7. :anchor => {
  8. :geolocation => {
  9. :lat => post.lat,
  10. :lon => post.lon,
  11. :alt => 0
  12. }
  13. },
  14. :text => {
  15. :title => decode_entities(post.title),
  16. :description => clean_description(post.summary),
  17. :footnote => "From #{post.feed_title}"
  18. },
  19. :actions => [
  20. {
  21. :label => "Read more...",
  22. :uri => post.url,
  23. :contentType => "text/html",
  24. :method => "GET",
  25. :activityType => 1
  26. },
  27. ],
  28. :object => {
  29. :contentType => "image/vnd.layar.generic",
  30. :url => subscription.icon_url,
  31. :reducedURL => subscription.icon_url,
  32. :size => 120
  33. }
  34. }
  35. end
  36. def decode_entities(s)
  37. HTMLEntities.new.decode s
  38. end
  39. def clean_description(s)
  40. if s.nil?
  41. return ""
  42. end
  43. if s.size > 137
  44. s = s[0..136] + '...'
  45. end
  46. decode_entities(s.gsub(/<.+?>/, ''))
  47. end
  48. end