📜 ⬆️ ⬇️

Create a Silverlight application for the network My World@Mail.Ru

image As you know, the most popular social networks in the world allow writing special applications for themselves. One striking example is Facebook, which has its own markup, data access, and so on. It was interesting for me to write a web application in Silverlight, and for Facebook there are special projects for this - for example, the Facebook Toolkit and Facebook.NET .

Among Russian networks, applications allow you to write VKontakte and My World, although the first one requires using only Flash and that's it. My World is more friendly - it supports plain HTML, and therefore Silverlight. Actually, I decided to experiment with it.

In fact, everything is simple - after registering with the service, we find it in the “ My Applications ” menu, click on “ Application Development ” and find out how all this can be done. My World supports OpenSocial , so that we can programmatically receive information about ourselves, our friends on the network, and so on.

When creating a new application, you need to specify its name, description, select a picture. After that you can go to the code. In the case of using Silverlight, the code is simply an <object> object that refers to the corresponding XAP file of the application on the network.
')
As an experiment, I inserted a video with Channel9 (the code is shown by the embed button), Silverster twitter gadget and gamertag for XBox prefix - XBox Friends Watch . An example of inserting the last two can be found on the main page of my blog .

I did not create a special Silverlight application for working with OpenSocial - although it would be interesting to make a social link visualizer or something like that. To test the work, I simply insert the current username over the Silverlight object in HTML via a call to the appropriate method.

Here's what the Twitter app code looks like (don't forget to provide your details):
<?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  1. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  2. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  3. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  4. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  5. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  6. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  7. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  8. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  9. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  10. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  11. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  12. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  13. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  14. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  15. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  16. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  17. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  18. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  19. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  20. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  21. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  22. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  23. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  24. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  25. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  26. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  27. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  28. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  29. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  30. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  31. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  32. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  33. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  34. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  35. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  36. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  37. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  38. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  39. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
  40. <?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .
<?xml version= "1.0" encoding= "windows-1251" ?> <Module> <ModulePrefs title= "test - Twitter" description= " Silverster" height= "451" thumbnail= "http://content.foto.mail.ru/mail/mixen/_myapps/i-7.jpg" author= "YourName" author_email= "YourMail@mail.ru" > <Require feature= "opensocial-0.7" /> </ModulePrefs> <Content type= "html" view= "profile" ><![CDATA[ <html> <head> <meta http-equiv=content-type content= "text/html; charset=windows-1251" > </head> <body> <b><div id= "myname" style= "font-family: Arial, Helvetica, sans-serif;" ></div></b> < object data= "data:application/x-silverlight," type= "application/x-silverlight-2" width= "100%" height= "100%" > <param name= "source" value= "http://www.silverlightshow.net/twitter/ClientBin/Silvester.xap" /> <param name= "enableHtmlAccess" value= "true" /> <param name= "onerror" value= "onSilverlightError" /> <param name= "background" value= "white" /> <param name= "initParams" value= "twitterUser=mixen" /> <a href= "http://go.microsoft.com/fwlink/?LinkID=124807" style= "text-decoration: none;" > <img src= "http://go.microsoft.com/fwlink/?LinkId=108181" alt= "Get Microsoft Silverlight" style= "border-style: none" /> </a> </ object > <script type= "text/javascript" > var req = opensocial.newDataRequest(); req.add(req.newFetchPersonRequest( 'VIEWER' ), 'viewer' ); req.send(load); function load(dataResponse) { var viewer = dataResponse.get( "viewer" ).getData(); document .getElementById( 'myname' ).innerHTML = viewer.getDisplayName(); } </script> </body> </html> ]]></Content> </Module> * This source code was highlighted with Source Code Highlighter .

Can anyone make some really interesting social application that can be published in a catalog and made popular among users? Everything turned out really simple.

Source: https://habr.com/ru/post/52695/


All Articles