ネットワークMy Mir Mail.Ru用のSilverlightアプリケーションを作成します

image ご存知のように、世界で最も人気のあるソーシャルネットワークでは、自分用の特別なアプリケーションを作成できます。 鮮やかな例の1つにFacebookがあり、独自のマークアップ、データへのアクセスなどがあります。 私は、Silverlightでネットワークアプリケーションを作成することに興味がありました 。これには、Facebook用の特別なプロジェクトがあります。たとえば、 Facebook ToolkitFacebook.NETなどです。



ロシアのネットワークの中で、アプリケーションではVKontakteとMy Worldを記述できますが、最初のものはFlashのみを必要とします。 My Worldはより使いやすい-通常のHTMLをサポートしているため、Silverlightもサポートしています。 実際、私は彼で実験することにしました。



実際、すべてがシンプルです。サービスに登録した後、「 マイアプリケーション 」メニューで「 アプリケーション開発 」をクリックし、これを行う方法を見つけます。 My WorldはOpenSocialをサポートしているため、自分自身やネットワーク上の友人などに関する情報をプログラムで受け取ることができます。



新しいアプリケーションを作成するときは、名前、説明を指定し、画像を選択する必要があります。 その後、コードにアクセスできます。 Silverlightを使用する場合、コードは単にネットワーク上の対応するアプリケーションXAPファイルを参照する<object>オブジェクトです。



実験として、 Channel9 (埋め込みボタンにコードが表示されます)、 Silversterの twitterガジェット、XBoxコンソールのゲーマータグ-XBox Friends Watchからビデオを挿入しました。 最後の2つを貼り付ける例は、 私のブログのメインページにあります。



OpenSocialを操作するための特別なSilverlightアプリケーションは作成しませんでしたが、ソーシャルコネクションなどのビジュアライザーを作成することは興味深いでしょう。 作業をテストするには、対応するメソッドを呼び出して、現在のユーザー名をHTMLのSilverlightオブジェクトに挿入するだけです。



Twitterアプリのコードは次のようになります(詳細を含めることを忘れないでください)。

<?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 .





誰かが本当に面白いソーシャルアプリケーションを作成して、カタログに公開し、ユーザーの間で人気を得ることができますか? すべてが本当にシンプルであることが判明しました。



All Articles