Changeset 845
- Timestamp:
- 04/03/09 12:12:38 (4 years ago)
- Files:
-
- 7 modified
-
bbcode.deviantart/files/lib/data/message/bbcode/DeviantArtBBCode.class.php (modified) (1 diff)
-
bbcode.deviantart/package.xml (modified) (2 diffs)
-
bbcode.gadget/files/lib/data/message/bbcode/GadgetBBCode.class.php (modified) (2 diffs)
-
bbcode.gadget/package.xml (modified) (2 diffs)
-
bbcode.slideshare/files/lib/data/message/bbcode/SlideShareBBCode.class.php (modified) (3 diffs)
-
bbcode.slideshare/package.xml (modified) (2 diffs)
-
styletoggle/package.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bbcode.deviantart/files/lib/data/message/bbcode/DeviantArtBBCode.class.php
r445 r845 50 50 } 51 51 else if ($parser->getOutputType() == 'text/plain') { 52 return $content;52 return sprintf(' deviantart: %s ', StringUtil::encodeHTML($content)); 53 53 } 54 54 } -
bbcode.deviantart/package.xml
r629 r845 5 5 <packagename>deviantART BBCode</packagename> 6 6 <packagedescription><![CDATA[BBCode for deviantART Query]]></packagedescription> 7 <version>1.1. 1</version>7 <version>1.1.2</version> 8 8 <date>DATE</date> 9 9 <plugin>com.woltlab.wcf.data.message.bbcode</plugin> … … 31 31 </instructions> 32 32 33 <instructions type="update" fromversion="1.1.1"> 34 <files>files.tar</files> 35 </instructions> 36 33 37 <instructions type="update" fromversion="1.1.0"> 34 38 <files>files.tar</files> -
bbcode.gadget/files/lib/data/message/bbcode/GadgetBBCode.class.php
r742 r845 45 45 google.friendconnect.container.renderOpenSocialGadget( 46 46 { id: 'div-".$myid."', 47 url:'". $content."',47 url:'".StringUtil::encodeHTML($content)."', 48 48 site: '".GOOGLE_FRIENDCONNECT."'}, 49 49 skin); … … 54 54 } 55 55 else if ($parser->getOutputType() == 'text/plain') { 56 return $content;56 return sprintf(' google friend connect gadget: %s ', StringUtil::encodeHTML($content)); 57 57 } 58 58 } -
bbcode.gadget/package.xml
r741 r845 5 5 <packagename>Open Social Gadget BBCode</packagename> 6 6 <packagedescription><![CDATA[BBCode for open social Gadgets]]></packagedescription> 7 <version>1.0. 0</version>7 <version>1.0.1</version> 8 8 <date>DATE</date> 9 9 <plugin>com.woltlab.wcf.data.message.bbcode</plugin> … … 38 38 </instructions> 39 39 40 <instructions type="update" fromversion="1.0.0"> 41 <files>files.tar</files> 42 </instructions> 43 40 44 <instructions type="update" fromversion="0.0.1"> 41 45 <files>files.tar</files> -
bbcode.slideshare/files/lib/data/message/bbcode/SlideShareBBCode.class.php
r78 r845 17 17 */ 18 18 public function getParsedTag($openingTag, $content, $closingTag, BBCodeParser $parser) { 19 if(!preg_match('/[^\{\}]+/', $content)) return ''; 20 19 21 if ($parser->getOutputType() == 'text/html') { 20 22 $new = parse_url($content); … … 41 43 $send = fgets($io, 4096); 42 44 if ($i++> 20) { 43 if (preg_match('/<link rel\="video_src" href\="(.+)"\/>/', $send, $hits)) { 45 46 if (preg_match('/<link href\="(.+)" name\="media_presentation"/', $send, $hits)) { 44 47 $slide_url = $hits[1]; 45 48 $datacount++; … … 74 77 } 75 78 else if ($parser->getOutputType() == 'text/plain') { 76 return $content;79 return sprintf(' slideshare presentation: %s ', StringUtil::encodeHTML($content)); 77 80 } 78 81 } -
bbcode.slideshare/package.xml
r635 r845 8 8 <packagedescription languagecode="fr"><![CDATA[BBCode pour SlideShare]]></packagedescription> 9 9 <packagedescription languagecode="hr"><![CDATA[BBCode za SlideShare]]></packagedescription> 10 <version>1.0. 3</version>10 <version>1.0.4</version> 11 11 <date>DATE</date> 12 12 <plugin>com.woltlab.wcf.data.message.bbcode</plugin> … … 34 34 </instructions> 35 35 36 <instructions type="update" fromversion="1.0.3"> 37 <files>files.tar</files> 38 </instructions> 39 36 40 <instructions type="update" fromversion="1.0.2"> 41 <files>files.tar</files> 37 42 <languages languagecode="fr">fr.xml</languages> 38 43 <languages languagecode="hr">hr.xml</languages> -
styletoggle/package.xml
r822 r845 36 36 <languages languagecode="en">en.xml</languages> 37 37 <languages languagecode="fr">fr.xml</languages> 38 </instructions> 39 40 <instructions type="update" fromversion="1.0.5"> 41 <files>files.tar</files> 38 42 </instructions> 39 43
