• attachment:YoutubeSmall.py of Robots/TIAGo

Attachment 'YoutubeSmall.py'

Download

   1 # -*- coding: iso-8859-1 -*-
   2 """
   3     MoinMoin - YouTube Macro
   4     Jesus L. Alvaro 2006
   5     v 0.0.2
   6     You can include YouTube videos in the wiki by using this macro:
   7         [[YouTube(V8tSRJ8e3b0)]]  or
   8         [[YouTube(http://www.youtube.com/v/V8tSRJ8e3b0)]]
   9     visit "http://www.iesvaldebernardo.es/w/Post/2006-11-30-1447/YouTube_en_la_Wiki."
  10 
  11 """
  12 
  13 def execute(macro, text):
  14     if text.find('http://')> -1:
  15         url = text
  16     else:
  17         url = 'http://www.youtube.com/v/%s' % text
  18     html = '''
  19     <object width="425" height="350">
  20     <param name="movie" value="%(youtubelink)s"></param>
  21     <param name="wmode" value="transparent"></param>
  22     <embed src="%(youtubelink)s" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
  23     ''' % {"youtubelink": url}
  24     return html

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2016-07-29 07:16:08, 0.7 KB) [[attachment:CurrentZoI.html]]
  • [get | view] (2016-09-26 10:56:14, 2017.6 KB) [[attachment:TIAGo_animation.gif]]
  • [get | view] (2018-11-21 11:34:09, 771.8 KB) [[attachment:TIAGo_animation_v2.gif]]
  • [get | view] (2018-11-21 11:41:33, 722.2 KB) [[attachment:TIAGo_animation_v3.gif]]
  • [get | view] (2023-07-26 15:07:02, 370.5 KB) [[attachment:TIAGo_gallery.jpg]]
  • [get | view] (2023-07-26 10:16:47, 3155.1 KB) [[attachment:TIAGo_robot.png]]
  • [get | view] (2016-03-02 21:24:01, 74.4 KB) [[attachment:TIAGo_titanium.png]]
  • [get | view] (2016-03-02 21:45:21, 192.4 KB) [[attachment:TIAGo_titanium_right.png]]
  • [get | view] (2017-11-08 08:11:24, 0.8 KB) [[attachment:YoutubeSmall.py]]
  • [get | view] (2015-07-30 16:12:42, 55.0 KB) [[attachment:logitech-joystick.png]]
  • [get | view] (2015-07-31 08:54:05, 121.3 KB) [[attachment:tiago.png]]
  • [get | view] (2015-07-31 10:58:35, 483.5 KB) [[attachment:tiago_gazebo_rviz.png]]
  • [get | view] (2016-09-23 13:58:17, 152.8 KB) [[attachment:tiago_gazebo_steel.png]]
  • [get | view] (2016-09-23 13:58:53, 155.9 KB) [[attachment:tiago_gazebo_titanium.png]]
  • [get | view] (2016-10-11 09:01:12, 2.9 KB) [[attachment:tiago_public.rosinstall]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.