<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>vo &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/vo/</link>
	<description>Feed of posts on WordPress.com tagged "vo"</description>
	<pubDate>Wed, 23 Dec 2009 12:43:52 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Ukrops-Supervalu Richmond Christmas Parade Celebrates 26th Year]]></title>
<link>http://eblackstock.wordpress.com/2009/12/15/ukrops-supervalu-richmond-christmas-parade-celebrates-26th-year/</link>
<pubDate>Wed, 16 Dec 2009 03:30:41 +0000</pubDate>
<dc:creator>Eric Blackstock</dc:creator>
<guid>http://eblackstock.wordpress.com/2009/12/15/ukrops-supervalu-richmond-christmas-parade-celebrates-26th-year/</guid>
<description><![CDATA[This is my contribution of a VO for the 5th and final episode of VCU InSight&#8217;s fall 2009 seaso]]></description>
<content:encoded><![CDATA[This is my contribution of a VO for the 5th and final episode of VCU InSight&#8217;s fall 2009 seaso]]></content:encoded>
</item>
<item>
<title><![CDATA[OAF - Modifying SQL Behind Framework Pages]]></title>
<link>http://keithturley.wordpress.com/2009/12/09/oaf-modifying-sql-behind-framework-pages/</link>
<pubDate>Wed, 09 Dec 2009 10:53:36 +0000</pubDate>
<dc:creator>keithturley</dc:creator>
<guid>http://keithturley.wordpress.com/2009/12/09/oaf-modifying-sql-behind-framework-pages/</guid>
<description><![CDATA[This article will discuss the process of modifying the seeded SQL that exists behind an Oracle Appli]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">
<div class="mceTemp">This article will discuss the process of modifying the seeded SQL that exists behind an Oracle Applications Framework Page, by a Framework page we mean any browser based EBS interface screen including selfservice pages. The article will discuss the analysis process involved in making such a change, the implementation of the extension using JDeveloper 10g and the subsequent uploading and &#8220;Substitution&#8221; of the new code within the MDS (Meta Data System) Repository.</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<p>All OAF Pages use a number of &#8221;View Objects&#8221; to execute SQL queries against the E-Business Suite Database. These View Objects are actually XML files on the application server that contain an SQL query, this XML file is used in conjunction with a Java Utility called the JPX Importer to load a pointer to the content of the XML file into a number of Database tables that EBS uses to identify which SQL queries it should be executing when a page loads. These tables are collectively known as the MDS (Meta Data System) Repository. The MDS holds a lot more than just SQL query definitions but for the scope of this article we need not cover the other content. </p>
<p>For this article we are going to use the Oracle Projects Search screen as our OAF web page on an R12 instance. We are going to modify the SQL that is used to query back a list of projects so that the SQL only returns projects that are within their current start date and end date as opposed to returning all projects.</p>
<h4><span style="text-decoration:underline;">Analysis</span></h4>
<p> </p>
<p>First of all we need to identify which &#8220;View Object&#8221; we will be working with, to do this we will need to activate OAF diagnostics. To do so locate the profile option &#8220;FND: Diagnostics&#8221; and set it to &#8220;Yes&#8221;. Now take a look at the page we are going to be extending&#8230;</p>
<div class="mceTemp"> </div>
<p> </p>
<div id="attachment_160" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-160" title="project_search1" src="http://keithturley.wordpress.com/files/2009/05/project_search1.jpg" alt="Fig 1" width="544" height="343" /><p class="wp-caption-text">Fig 1</p></div>
<p> By turning on the &#8220;FND: Diagnostics&#8221; profile option you will now be able to see two new links on the page. The &#8220;Diagnostics&#8221; link which will appear in the header and the footer of the page and the &#8220;About This Page&#8221; link which will appear in the footer only. In order to identify the VO that is being used by the page we will first examine the &#8220;About This Page Link&#8221;. </p>
<p>When you click on the &#8220;About This Page&#8221; link you will see an array of tabs all of which do various tasks which we can use as OAF developers however for the purposes of this article we will be looking at the default &#8220;Page&#8221; tab which you see when the page opens. </p>
<p>All OAF pages are made up of a number of BC4J (Business Components for Java) and Web elements known as the MDS content or &#8220;Web Beans&#8221;. The BC4J content exists as compiled java code and XML under JAVA_TOP on the application server and the web content exists as meta data in the MDS Repository. The web content is organised into a tree structure i.e. you have a page which contains a table which contains fields etc&#8230; When the page loads this &#8220;Bean Hierarchy&#8221; is rendered according to its structure and this structure is what we can see in the &#8220;Page Definition&#8221; section of the Page tab. Click the &#8220;Expand All&#8221; Link. </p>
<p>If you are familiar with OAF development this screen will be very apparent to you as representing the page structure layout that you are used to seeing in JDeveloper when building a page and navigating it will be simple. If you are not used to OAF page development and you are simply trying to identify the SQL behind this page then examine the View Object Column until you see populated content, you should then be able to determine that the &#8220;Name&#8221; column holds content such as &#8220;<span class="xd">messageStyledText: Project Manager&#8221; and that this is describing the &#8220;Project Manager&#8221; column that we see on the OAF page. We can also see that there is a collection of columns indented below the &#8220;Bean&#8221; &#8220;<span class="xd">table: My Projects Result Container&#8221; which refers to the result table that we see on the page. </span></span>  </p>
<div id="attachment_166" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-166" title="about_this_page1" src="http://keithturley.wordpress.com/files/2009/05/about_this_page1.jpg" alt="Fig 2" width="544" height="232" /><p class="wp-caption-text">Fig 2</p></div>
<div class="mceTemp">We can see in Fig 2 that the &#8220;My Projects Result Container&#8221; is driven by the &#8220;ProjectListVO&#8221; View Object. In order to examine the SQL within the VO and to identify more information from the VO Click on the &#8220;ProjectListVO&#8221; link.</div>
<div class="mceTemp"> </div>
<div class="mceTemp">From the &#8220;About View Objects&#8221; screen we can see a large SQL statement, The &#8220;Entity Objects&#8221; associated with the VO, and a list of the VO&#8217;s available attributes. Any of these attributes could be used as additional content on the &#8220;Project Search&#8221; page simply by personalising the page however we will not be covering that process in this article.</div>
<div class="mceTemp"> </div>
<div class="mceTemp">At the top of the page we can also see the name of the VO and a file path in the form: oracle.apps.pa.project.server.ProjectListGenVO this gives us the location of the VO on JAVA_TOP. Having identified the VO and its location on JAVA_TOP we can close the &#8220;About This Page&#8221; diagnostic screen and return to the Projects Search Screen.</div>
<div class="mceTemp"> </div>
<h4 class="mceTemp"><span style="text-decoration:underline;">Implementation</span></h4>
<p> </p>
<p class="mceTemp">Now that we have identified the VO we need to extend, oracle.apps.pa.project.server.ProjectListGenVO, we need to setup our JDeveloper environment so that we can create a new View Object that contains our extended code. If you have not already got your JDeveloper environment setup then do so now, you can read how to at the Apps Tech Blog post <a href="http://keithturley.wordpress.com/2009/05/07/oaf-downloading-and-configuring-jdeveloper/" target="_blank">&#8220;OAF &#8211; Downloading and Configuring JDeveloper&#8221;</a>. </p>
<p class="mceTemp">Start JDeveloper and follow the instructions below. Please note that this article only covers the procedure for JDeveloper 10g. The process although similar is slightly different in 9i. </p>
<p class="mceTemp">In the Applications Navigator right click the Applications Node and select &#8220;New OA Workspace&#8221; </p>
<p class="mceTemp">In the file name box enter a suitable file name, if you are often working with different clients then it may be an idea to call this XXCLIENT.jws, if you are working for your own company you may want to call it XXCUST.jws, the workspace name is however completely personal preference and up to you as a developer how you organise your workspaces and projects within JDeveloper. Leave the directory path as your default myprojects folder in your JDev Home, ensure that the &#8220;Add a New OA Project&#8221; check box is selected. </p>
<div id="attachment_232" class="wp-caption alignnone" style="width: 342px"><img class="size-full wp-image-232" title="jdev_new_workspace_10g" src="http://keithturley.wordpress.com/files/2009/05/jdev_new_workspace_10g.jpg" alt="Fig 3" width="332" height="205" /><p class="wp-caption-text">Fig 3</p></div>
<p class="mceTemp">Select &#8220;OK&#8221;. </p>
<p class="mceTemp">The new project wizard will now be launched, select &#8220;Next&#8221;. </p>
<p class="mceTemp">In the project name enter a meaningfull name, I recommend that the project name be pertinent to the piece of work you are doing i.e. XXCUST_projects_list, leave the default directory as your myprojects folder in the JDev Home. For a VO substitution the default package name will need to represent the VO file path on JAVA_TOP with the exception that it must be prefixed with your custom application shortname, the prefix can actually be anything you like however it is recommended that the custom application shortname is used, in this example we would specify the default package as  xxcust.oracle.apps.pa.project.server </p>
<div id="attachment_233" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-233" title="jdev10g_new_project_step1" src="http://keithturley.wordpress.com/files/2009/05/jdev10g_new_project_step1.jpg" alt="Fig 4" width="544" height="361" /><p class="wp-caption-text">Fig 4</p></div>
<p class="mceTemp">Click &#8220;Next&#8221; </p>
<p class="mceTemp">Ensure that the &#8220;Use repository for design time&#8221; box is not selected and click &#8220;Next&#8221;. </p>
<p class="mceTemp">Select your DBC file, enter your applications username and password, enter ICX as the responsibility application shortname and responsibility key. For more information regarding this setup step including obtaining your DBC file and setting up your user account please refer to the Apps Tech Blog post <a href="http://keithturley.wordpress.com/2009/05/07/oaf-downloading-and-configuring-jdeveloper/" target="_blank">&#8220;OAF &#8211; Downloading and Configuring JDeveloper&#8221;</a>. </p>
<div id="attachment_235" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-235" title="jdev10g_new_project_step3" src="http://keithturley.wordpress.com/files/2009/05/jdev10g_new_project_step31.jpg" alt="Fig 5" width="544" height="360" /><p class="wp-caption-text">Fig 5</p></div>
<p class="mceTemp">Click &#8220;Next&#8221; </p>
<p class="mceTemp">Click &#8220;Finish&#8221; </p>
<p class="mceTemp">Next we need to copy the existing VO component from the apps server and import it into our local file system. In order to do this we must setup a file structure on our local machine in our project folder so we can copy the VO into it. Log onto the applications server and navigate to $JAVA_TOP, change into the oracle/apps/pa/ directory (Or which ever product top you are working with) </p>
<div id="attachment_236" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-236" title="java_top_unix2" src="http://keithturley.wordpress.com/files/2009/05/java_top_unix2.jpg" alt="Fig 6" width="544" height="343" /><p class="wp-caption-text">Fig 6</p></div>
<p class="mceTemp">Zip the project application directory and save it to a directory that you can ftp from. i.e. zip -r $HOME/pa.zip pa </p>
<p class="mceTemp">FTP the pa.zip file in binary mode back to your local machine and extract it to your user JDev Home under myprojects/oracle/apps/ (You will have to create the directory structure manually if it does not exist), you should also extract the contents to your myclasses folder in the same way i.e. myclasses/oracle/apps/ </p>
<p class="mceTemp">You should now have the following file structure in your local file system under the oracle.apps directory in myprojects and myclasses </p>
<div class="mceTemp">
<div id="attachment_241" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-241" title="file_structure1" src="http://keithturley.wordpress.com/files/2009/05/file_structure11.jpg" alt="Fig 7" width="544" height="343" /><p class="wp-caption-text">Fig 7</p></div>
<p class="mceTemp">Click the &#8220;Refresh&#8221; button on the Applications Navigator tab of JDeveloper, you should notice that a new business components package under oracle.apps.pa has now appeared. </p>
<div id="attachment_238" class="wp-caption alignnone" style="width: 354px"><img class="size-full wp-image-238" title="jdev_10g_refresh" src="http://keithturley.wordpress.com/files/2009/05/jdev_10g_refresh.jpg" alt="Fig 8" width="344" height="423" /><p class="wp-caption-text">Fig 8</p></div>
<p class="mceTemp"> Now that we have the existing projects business components in our environment we need to create our new VO object that will be used in place of the existing one. Remember we do not customise existing components in OA Framework we extend the existing ones which means creating a new object that extends the original and we notify the framework that we want to use the new object rather than the seeded one. </p>
<p class="mceTemp">We now need to test that the VO we want to substitute does not contain any java errors following the download. Navigate to the VO in the applications navigator window i.e. Application Sources &#62; oracle.apps.pa &#62; project &#62; server &#62; ProjectListGenVO, right click the VO and click edit (If you have not already done so you will now need to configure your database connection, for more details on how to do this see the apps tech blog article <a href="http://keithturley.wordpress.com/2009/05/07/oaf-downloading-and-configuring-jdeveloper/" target="_blank">&#8220;OAF &#8211; Downloading and Configuring JDeveloper&#8221;</a>). If the VO opens without error then we are ready to move onto the next step. If you get an error message saying that java errors exist in either the voNameImpl.java file or the voNameRowImpl.java file then you will need to obtain the original source files for the files listed as being in error and add them to your myprojects folder in the relevant directory and recompile the project, unfortunately Oracle do not allow you to obtain the source files and you may need to employee the services of an Oracle consultant who would have access to the files. </p>
<p class="mceTemp">Before closing the base VO window take a look at the &#8220;Java&#8221; settings and make a note of the boxes that are checked/unchecked, we will need this for later. </p>
<p class="mceTemp">If you havn&#8217;t already done so Close the Edit VO window. </p>
<p class="mceTemp">Right click on the project node and select &#8220;New&#8221;. Select &#8220;View Object&#8221; under Business Tier &#62; ADF Business Components and click &#8220;OK&#8221; </p>
<p class="mceTemp">The View Object Wizard has been launched, click &#8220;Next&#8221;. </p>
<p class="mceTemp">Specify the package as xxcust.oracle.apps.pa.project.server (This component package will hold our extended object so we need the custom application prefix). Specify the VO name as the name of the custom application concatenated with the orginal VO name i.e. XxcustProjectListGenVO. Select the original VO in the &#8220;extends&#8221; box using the browse button and select the original VO i.e. oracle.apps.pa.project.ProjectListGenVO </p>
<div id="attachment_242" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-242" title="jdev_10g_vosub" src="http://keithturley.wordpress.com/files/2009/05/jdev_10g_vosub.jpg" alt="Fig 9" width="544" height="501" /><p class="wp-caption-text">Fig 9</p></div>
<p class="mceTemp">Click &#8220;Next&#8221; </p>
<p class="mceTemp">On step 2 of the VO wizard you can see the SQL statement that we first saw when we were analysing the page. For this example we are simply going to wrap the SQL as follows and add an additional where clause statement: </p>
<p class="mceTemp">SELECT * FROM (ORIGINAL_QUERY) WHERE trunc(sysdate) between project_start_date and nvl(project_end_date,sysdate) </p>
<p class="mceTemp">Click the &#8220;Test&#8221; button to validate that your modified SQL is valid. </p>
<p class="mceTemp">Click &#8220;Next&#8221; until you reach the end of the wizard, If you encounter the following error at step 4 &#8220;<em>Each row in the query results column msut be mapped to a unique query attribute in the mapped entity columns</em>&#8221; then their is something wrong with the base VO, in this example I did experience this error and found that the original VO SQL had 3 missing aliases that the view object attributes were referencing, In order to correct the error you must make the change to the base VO by editing the SQL, I successfully added the missing aliases and then re-ran the create new VO instructions above and it worked correctly. </p>
<p class="mceTemp">Once we have clicked through to the end of the wizard the final step is to create the relevant java files. When a VO is implemented we always generate a voNameImpl.java file but we dont always have a voNameRowImpl.java file, the best way to tell which files to implement is to look at the java screen for the seeded VO and ensure that our new VO has the same settings. </p>
<p class="mceTemp">In this case we need both so our final wizard screen would look like this </p>
<div id="attachment_250" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-250" title="jdev_10g_vosub_step7" src="http://keithturley.wordpress.com/files/2009/05/jdev_10g_vosub_step71.jpg" alt="Fig 10" width="544" height="361" /><p class="wp-caption-text">Fig 10</p></div>
<p class="mceTemp">Now click &#8220;Finish&#8221; and the new business components package will be created containing our new extended VO. </p>
<div id="attachment_251" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-251" title="jdev_10g_new_bc" src="http://keithturley.wordpress.com/files/2009/05/jdev_10g_new_bc.jpg" alt="Fig 11" width="544" height="544" /><p class="wp-caption-text">Fig 11</p></div>
<p class="mceTemp">Right click on the custom business components package and select &#8220;Make&#8221;, this will compile the Impl and RowImpl java files. </p>
<p class="mceTemp">Now that we have our newly extended VO we need to create a substitution file. This substitution file will be an xml based file that will contain a mapping from the old VO to the new VO, we will use this file to tell Oracle Application to use our newly extended VO rather than the old one by uploading it to the MDS repository using the JPX Import tool. </p>
<p class="mceTemp">Right click on your project node (XXCUST_projects_list) and select &#8220;Project Properties&#8221;, click &#8220;Substitutions&#8221; under the &#8220;Business Components&#8221; menu. In the &#8220;Available&#8221; pane select the original VO i.e. oracle.apps.pa.project.server.ProjectListGenVO, and in the right hand &#8220;Substitute&#8221; pane select the new VO i.e. xxcust.oracle.apps.pa.project.server.XxcustProjectListGenVO. Once you have done this click the &#8220;Add&#8221; button and select &#8220;OK&#8221;. </p>
<div id="attachment_252" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-252" title="jdev_10g_substitution" src="http://keithturley.wordpress.com/files/2009/05/jdev_10g_substitution.jpg" alt="Fig 12" width="544" height="386" /><p class="wp-caption-text">Fig 12</p></div>
<p class="mceTemp">In your JDev home in the myprojects folder you will see a file called projectName.jpx in my case it would be called XXCUST_projects_list.jpx, this is your substitution file and we will use this later when we deploy the substitution.</p>
<h4 class="mceTemp"><span style="text-decoration:underline;">Deployment</span></h4>
<p> </p>
<p class="mceTemp">In order to deploy our solution to the actual ebusiness suite instance we need to copy the relevant java and xml files to java top and also upload our substituion file to the MDS repository. You can do this just by simply transfering the files using an FTP tool however I find it is best to create an archive file that will retain the folder hierarchy and allow you to issue a single transfer and unpack command. For a large OAF project we may have files that have to be transfered to different locations and because of this I tend to create 3 types of jar files called BC4J, MDS and SRC. These three files will contain the BC4J files like class files and VO&#8217;s, the MDS files such as pages and regions and the java source files. </p>
<p class="mceTemp">Following the transfer we can issue a java call from the command line on the apps server to perform the MDS upload. </p>
<p class="mceTemp">For this example a VO substitution only involves BC4J objects and java source files, the solution does not require that we package up our source code so for the sake of simplicity I will just create one archive file called BC4J.jar </p>
<p class="mceTemp">Right click on the project node and select &#8220;New&#8221;, select &#8220;Jar File&#8221; under the General &#62; Deployment Profiles menu. Name the profile as something meaningful, in this example I will stick to convention and call it  &#8221;XXCUST_PROJECTS_LIST_BC4J&#8221; . Leave the directory set as the default myprojects folder and click &#8220;OK&#8221;. </p>
<p class="mceTemp">In the deployment profile properties deselect the &#8220;Include Manifest File&#8221; option. On the filters menu deselect the root folder and navigate to the xxcust.oracle.apps.pa.project.server directory, select all the files in this directory and click &#8220;OK&#8221; </p>
<div id="attachment_258" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-258" title="jdev_10g_deploy" src="http://keithturley.wordpress.com/files/2009/05/jdev_10g_deploy.jpg" alt="Fig 13" width="544" height="387" /><p class="wp-caption-text">Fig 13</p></div>
<p class="mceTemp">You will see in JDeveloper that you now have a deployment profile listed under you application sources node, right click the .deploy file and select &#8220;Deploy to JAR file&#8221;, You will see a deploy tab appear next to the compile log and this will confirm that the deployment was successfull. If you experience issues with compilation i.e. there are issues with some of the files in your project that are not connected to your custom files then simply remove them from the project by selecting the top level component package i.e. oracle.app.pa and click the &#8220;Exclude Project Content&#8221; button (Little file symbol with a red cross on it) and re-try the deployment. </p>
<div id="attachment_259" class="wp-caption alignnone" style="width: 554px"><img class="size-full wp-image-259" title="jdev_10g_deploytojar" src="http://keithturley.wordpress.com/files/2009/05/jdev_10g_deploytojar.jpg" alt="Fig 14" width="544" height="660" /><p class="wp-caption-text">Fig 14</p></div>
<p class="mceTemp">Inspect your myprojects folder and you will see you now have a &#8220;Deploy&#8221; directory, in this directory will be your jar file ready for deployment to the apps server. </p>
<p class="mceTemp">Now that we have both our BC4J objects for java_top and our substituion file for the MDS we need to transfer them both to the apps server, FTP both the files (remember to send the jar file in binary format and the jpx file in ascii) to a convienient directory on the apps server. </p>
<p class="mceTemp">Now extract the jar file to java_top i.e.</p>
<p class="mceTemp">cp home/kturley/*.jar $JAVA_TOP </p>
<p class="mceTemp">jar -xvf /$JAVA_TOP/XXCUST_PROJECTS_LIST_BC4J.jar </p>
<p class="mceTemp">
<p class="mceTemp">Now upload the substitution file to the  MDS using the following command: </p>
<p class="mceTemp">java oracle.jrad.tools.xml.importer.JPXImporter $HOME/kturley/XXCUST_projects_list.jpx -username apps -password xxxx -dbconnection &#8220;(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=hostname.oracle.co.uk)(PORT=1551))(CONNECT_DATA=(SID=XXXXX)))&#8221; </p>
<p class="mceTemp">Make sure you specify the correct values for </p>
<p class="mceTemp">1. Path of you jpx file </p>
<p class="mceTemp">2. apps password </p>
<p class="mceTemp">3. host name </p>
<p class="mceTemp">4. port </p>
<p class="mceTemp">5. database SID </p>
<p class="mceTemp">Finally restart the webserver so that you can see your changes in the application </p>
<p>For R11: </p>
<p>$COMMON_TOP/admin/scripts/$TWO_TASK*/adapcctl.sh stop<br />
$COMMON_TOP/admin/scripts/$TWO_TASK*/adapcctl.sh start </p>
<p>For R12: </p>
<p>$INST_TOP/admin/scripts/adoacorectl.sh stop<br />
$INST_TOP/admin/scripts/adoacorectl.sh start  </p>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[L'Arc~en~Ciel - Recording 「BLESS」!]]></title>
<link>http://listentheworld.wordpress.com/2009/12/06/larcenciel-recording-%e3%80%8cbless%e3%80%8d/</link>
<pubDate>Sun, 06 Dec 2009 16:49:35 +0000</pubDate>
<dc:creator>Dlyan</dc:creator>
<guid>http://listentheworld.wordpress.com/2009/12/06/larcenciel-recording-%e3%80%8cbless%e3%80%8d/</guid>
<description><![CDATA[L’Arc-en-Ciel is back recording a new song “BLESS” ! (L’Arc~en~Ciel – BLESS Regular Edition) http://]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><object width="425" height="254"><param name="movie" value="http://www.dailymotion.com/swf/xbedyd"></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/xbedyd" type="application/x-shockwave-flash" width="425" height="334" allowfullscreen="true"></embed></object></p>
<p>L’Arc-en-Ciel is back recording a new song “BLESS” !</p>
<p><strong>(L’Arc~en~Ciel – BLESS Regular Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=KSCL-1552" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=KSCL-1552</a></p>
<p><strong>(L’Arc~en~Ciel – BLESS Limited Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=KSCL-1550" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=KSCL-1550</a></p>
<p style="text-align:center;"><a href="http://listentheworld.wordpress.com/shop/larc-store/"><img src="http://listentheworld.files.wordpress.com/2008/11/btn_shop.gif?w=65&#038;h=24#38;h=24&#38;h=24" border="0" alt="" width="65" height="24" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SMOKING MENTHOLS ON THE RISE AMONGST YOUNG AMERICANS]]></title>
<link>http://laurengarber.wordpress.com/2009/12/04/smoking-menthols-on-the-rise-amongst-young-americans/</link>
<pubDate>Thu, 03 Dec 2009 20:52:43 +0000</pubDate>
<dc:creator>laurengarber</dc:creator>
<guid>http://laurengarber.wordpress.com/2009/12/04/smoking-menthols-on-the-rise-amongst-young-americans/</guid>
<description><![CDATA[Today the government released a new report that shows more teens and young Americans are smoking men]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Today the government released a new report that shows more teens and young Americans are smoking menthol cigarettes since the last time they conducted a similar study.  Officials are worried this may be the start of a dangerous trend, especially since overall smoking rates are down in the U.S.</p>
<p><!--more--><br />
This VO ran on WSOC, WJAC, WHIO, WPXI, KFOX and KTVU.</p>
<p>Anchor On-Camera:<br />
ACROSS THE COUNTRY, FEWER AMERICANS ARE SMOKING.  BUT A NEW GOVERNMENT REPORT SAYS THE PERCENTAGE OF ADOLESCENTS AND YOUNG ADULTS WHO SMOKE MENTHOL CIGARETTES IS ON THE RISE.<br />
Take VO:<br />
MENTHOL IS AN ADDITIVE THAT MASKS THE HARSHNESS OF CIGARETTE SMOKE.  IT&#8217;S THE ONLY FLAVORING THAT WASN&#8217;T BANNED AFTER RECENT CHANGES TO TOBACCO LAWS.  CRITICS WORRY THAT THIS SUBSTANCE MAKES IT EASIER FOR YOUNG SMOKERS TO GET ADDICTED.<br />
SMOKING IS A 70 BILLION DOLLAR INDUSTRY IN THE U-S, AND MENTHOL CIGARETTES ACCOUNT FOR ALMOST A QUARTER OF THE PROFITS.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[L’Arc~en~Ciel - “BLESS” Preview!]]></title>
<link>http://listentheworld.wordpress.com/2009/12/01/l%e2%80%99arcenciel-%e2%80%9cbless%e2%80%9d-preview/</link>
<pubDate>Tue, 01 Dec 2009 20:07:08 +0000</pubDate>
<dc:creator>Dlyan</dc:creator>
<guid>http://listentheworld.wordpress.com/2009/12/01/l%e2%80%99arcenciel-%e2%80%9cbless%e2%80%9d-preview/</guid>
<description><![CDATA[L’Arc-en-Ciel New Single &#8220;BLESS&#8221; featuring theme to NHK Vancouver Olympic 2010! (L’Arc~e]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><object width="425" height="254"><param name="movie" value="http://www.dailymotion.com/swf/xbcf0d"></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/xbcf0d" type="application/x-shockwave-flash" width="425" height="334" allowfullscreen="true"></embed></object></p>
<p>L’Arc-en-Ciel New Single &#8220;BLESS&#8221; featuring theme to NHK Vancouver Olympic 2010!</p>
<p><strong>(L’Arc~en~Ciel – BLESS Regular Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=KSCL-1552" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=KSCL-1552</a></p>
<p><strong>(L’Arc~en~Ciel – BLESS Limited Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=KSCL-1550" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=KSCL-1550</a></p>
<p style="text-align:center;"><a href="http://listentheworld.wordpress.com/shop/larc-store/"><img src="http://listentheworld.files.wordpress.com/2008/11/btn_shop.gif?w=65&#038;h=24#38;h=24&#38;h=24" border="0" alt="" width="65" height="24" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[What a weekend!]]></title>
<link>http://dianehageman.wordpress.com/2009/12/01/what-a-weekend/</link>
<pubDate>Tue, 01 Dec 2009 12:33:33 +0000</pubDate>
<dc:creator>Diane</dc:creator>
<guid>http://dianehageman.wordpress.com/2009/12/01/what-a-weekend/</guid>
<description><![CDATA[Last weekend was great. It started on Friday, at the office, BBDO (advertising agency) I was helping]]></description>
<content:encoded><![CDATA[Last weekend was great. It started on Friday, at the office, BBDO (advertising agency) I was helping]]></content:encoded>
</item>
<item>
<title><![CDATA[Quando eu crescer...]]></title>
<link>http://parameninas.wordpress.com/2009/11/29/quando-eu-crescer/</link>
<pubDate>Mon, 30 Nov 2009 01:39:02 +0000</pubDate>
<dc:creator>Ju Machado</dc:creator>
<guid>http://parameninas.wordpress.com/2009/11/29/quando-eu-crescer/</guid>
<description><![CDATA[Ou seria quando eu virar vozinha? &nbsp; &nbsp; *Homenagem bem humorada a minha vovó musa linda Juli]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ou seria quando eu virar vozinha?</p>
<p><a href="http://parameninas.wordpress.com/files/2009/11/coolest-grandmas-ever-6.jpg"><img class="aligncenter size-full wp-image-5035" title="coolest-grandmas-ever-6" src="http://parameninas.wordpress.com/files/2009/11/coolest-grandmas-ever-6.jpg" alt="" width="400" height="278" /></a></p>
<p>&#160;</p>
<p><a href="http://parameninas.wordpress.com/files/2009/11/coolest-grandmas-ever-2.jpg"><img class="aligncenter size-full wp-image-5034" title="coolest-grandmas-ever-2" src="http://parameninas.wordpress.com/files/2009/11/coolest-grandmas-ever-2.jpg" alt="" width="400" height="268" /></a></p>
<p>&#160;</p>
<p><a href="http://parameninas.wordpress.com/files/2009/11/coolest-grandmas-ever-0.jpg"><img class="aligncenter size-full wp-image-5033" title="coolest-grandmas-ever-0" src="http://parameninas.wordpress.com/files/2009/11/coolest-grandmas-ever-0.jpg" alt="" width="400" height="372" /></a></p>
<p>*Homenagem bem humorada a minha vovó musa linda Julica que foi fazer festa lá em cima com papai do céu.</p>
<p><a href="http://theenglishmuse.blogspot.com/2009/11/sassy-grandmas.html" target="_blank">Via</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[POUSADA ALCOBAÇA CORREIAS,PETRÓPOLIS-RJ]]></title>
<link>http://blindplaces.wordpress.com/2009/11/27/pousada-alcobaca-correias-petropolis-rj/</link>
<pubDate>Fri, 27 Nov 2009 22:38:08 +0000</pubDate>
<dc:creator>Rubio Marilia</dc:creator>
<guid>http://blindplaces.wordpress.com/2009/11/27/pousada-alcobaca-correias-petropolis-rj/</guid>
<description><![CDATA[&nbsp;]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://blindplaces.wordpress.com/files/2009/11/l1130443.jpg"><img class="size-medium wp-image-404 alignleft" title="L1130443" src="http://blindplaces.wordpress.com/files/2009/11/l1130443.jpg?w=300" alt="" width="300" height="168" /></a><br />
<a href="http://blindplaces.wordpress.com/files/2009/11/l1130458.jpg"><img class="size-medium wp-image-405 alignleft" title="L1130458" src="http://blindplaces.wordpress.com/files/2009/11/l1130458.jpg?w=300" alt="" width="300" height="168" /></a></p>
<p>&#160;</p>
<p><a style="text-decoration:none;" href="http://blindplaces.wordpress.com/files/2009/11/l1130622.jpg"><img class="size-full wp-image-408 alignleft" title="L1130622" src="http://blindplaces.wordpress.com/files/2009/11/l1130622.jpg" alt="" width="500" height="281" /></a></p>
<p><img title="L1130482" src="http://blindplaces.wordpress.com/files/2009/11/l1130482.jpg" alt="" width="500" height="281" /></p>
<p><a href="http://blindplaces.wordpress.com/files/2009/11/l1130592.jpg"><img class="size-full wp-image-412 alignleft" title="L1130592" src="http://blindplaces.wordpress.com/files/2009/11/l1130592.jpg" alt="" width="500" height="281" /></a><a href="http://blindplaces.wordpress.com/files/2009/11/l1130559.jpg"><img class="alignleft size-full wp-image-415" title="L1130559" src="http://blindplaces.wordpress.com/files/2009/11/l1130559.jpg" alt="" width="500" height="281" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Weltenbummler Lutz Pfannenstiel ]]></title>
<link>http://ffakilli.wordpress.com/2009/11/26/weltenbummler-lutz-pfannenstiel/</link>
<pubDate>Thu, 26 Nov 2009 22:53:05 +0000</pubDate>
<dc:creator>ffakilli</dc:creator>
<guid>http://ffakilli.wordpress.com/2009/11/26/weltenbummler-lutz-pfannenstiel/</guid>
<description><![CDATA[Lutz Pfannenstiel Lutz Pfannenstiel - Weltenbummler - Image (c) Lutz Pfannenstiel &#8220;Jeden Tag b]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Lutz Pfannenstiel<br />
</strong></p>
<div id="attachment_142" class="wp-caption alignnone" style="width: 310px"><strong><strong><a href="http://ffakilli.wordpress.com/files/2009/11/lutz-pfannenstiel.jpg"><img class="size-medium wp-image-142" title="lutz-pfannenstiel" src="http://ffakilli.wordpress.com/files/2009/11/lutz-pfannenstiel.jpg?w=300" alt="Lutz Pfannenstiel - Weltenbummler" width="300" height="173" /></a></strong></strong><p class="wp-caption-text">Lutz Pfannenstiel - Weltenbummler - Image (c) Lutz Pfannenstiel</p></div>
<p><strong> </strong></p>
<blockquote><p><em><strong>&#8220;Jeden Tag bekam ich eine aufs Maul&#8221;</strong></em></p></blockquote>
<p>Einst schlägt der Weltenbummler eine Bayern-Offerte aus &#8211; und legt eine kuriose Profi-Laufbahn hin. Knast-Aufenthalt inklusive.</p>
<p>So lautete die Einleitung des heutigen Interview/Berichts bei <a title="zum Interview auf Sport1.de" href="http://www.sport1.de/de/fussball/fus_international/artikel_170842.html" target="_blank">Sport1.de</a> in zwei Teilen. Der Mensch der nach seiner Karriere mehr als nur von sich behaupten und erzählen kann, ich wahr ein Star [...<em> holt mich hier raus</em> ...] .. sondern; Er ist der weltweit erste Fußballspieler, der in jedem der sechs anerkannten Kontinentalverbände einem professionellen Fußballverein angehörte und Geschichten auf Lager hat, die zu mehr als ein Buch/Roman reicht, wie dass neulich erschienene Buch</p>
<p>Lutz Pfannenstiel mit Christian Putsch: <strong><em>Unhaltbar &#8211; Meine Abenteuer als Welttorhüter</em></strong>, Rowohlt, Reinbek 2009, <a href="http://de.wikipedia.org/wiki/Spezial:ISBN-Suche/9783499625084">ISBN 978-3-499-62508-4</a></p>
<p>und glaubt man den Kritiken, die vom Geheimtipp bis zum Bestseller alles aufbieten, dürfte das sehr ereignisreiche Leben von Lutz Pfannenstiel, bald um einige Nuancen reicher sein.</p>
<p>Zur Person bei<br />
Wikipedia <a title="Lutz Pfannenstiel bei Wikipedia" href="http://de.wikipedia.org/wiki/Lutz_Pfannenstiel" target="_blank">dt/german</a> // <a title="Lutz Pfannenstiel at Wikipedia - english" href="http://en.wikipedia.org/wiki/Lutz_Pfannenstiel" target="_blank">eng/english</a> oder auf offizielle <a title="Lutz Pfannenstiel - World Goali" href="http://www.lutz-pfannenstiel.de/" target="_blank">Webseite</a> von Lutz</p>
<p><strong>Das </strong><strong>&#8220;Project&#8221; </strong><strong>Global Goal</strong><br />
Pfannenstiels neuestes ehrgeiziges Projekt heißt &#8220;<a title="Global Goal Project @Antarktis, Spitzbergen, Serengeti, Kilimandscharo..." href="http://www.lutz-pfannenstiel.de/index.php?idcat=3" target="_blank">Global Goal</a>&#8220;. Dabei will er mit spektakulären Fußballspielen an besonderen Orten auf die Gefahren des Klimawandels aufmerksam machen. Im Dezember 2010 ist ein Spiel in der Antarktis geplant,[3] weitere Stationen sollen das Amazonas-Gebiet, Nepal und Tansania sein. Unterstützt wird das Projekt von namhaften Stars, wie Aldair, Brian Laudrup, Carlos Valderrama, Cafu, Bebeto, Ole Gunnar Solskjær und Stig Tøfting.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/WrfzVOXu3G4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/WrfzVOXu3G4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>respekt für diese bewegte und ereignissvolle Karriere als Fussballer und dem Eintrag ins <a href="http://www.guinnessworldrecords.com/" target="_blank">Guinness-Buch der Rekorde</a>.</p>
<p>In diesem Sinne<br />
FFA</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Final Fantasy XIII Theme Song: Kimi ga iru kara]]></title>
<link>http://listentheworld.wordpress.com/2009/11/26/final-fantasy-xiii-theme-song-kimi-ga-iru-kara/</link>
<pubDate>Thu, 26 Nov 2009 16:29:37 +0000</pubDate>
<dc:creator>Dlyan</dc:creator>
<guid>http://listentheworld.wordpress.com/2009/11/26/final-fantasy-xiii-theme-song-kimi-ga-iru-kara/</guid>
<description><![CDATA[Single release from Sayuri Sugawara featuring the track &#8220;Eternal Love,&#8221; a insert song of]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><object width="425" height="254"><param name="movie" value="http://www.dailymotion.com/swf/xb9mmq"></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/xb9mmq" type="application/x-shockwave-flash" width="425" height="334" allowfullscreen="true"></embed></object></p>
<p>Single release from Sayuri Sugawara featuring the track &#8220;Eternal Love,&#8221; a insert song of PS3 game &#8220;FINAL FANTASY XIII.&#8221;</p>
<p><strong>(Sayuri Sugawara &#8211; Kimi ga iru kara Single Regular Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=FLCF-4311" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=FLCF-4311</a></p>
<p><a href="http://track.webgains.com/click.html?wgcampaignid=32415&#38;wgprogramid=231&#38;wgtarget=http://www.yesasia.com/global/final-fantasy-xiii-theme-song-kimi-ga-iru-kara-normal-edition-japan/1021414962-0-0-0-en/info.html" target="_blank">http://www.yesasia.com/global/final-fantasy-xiii-theme-song-kimi-ga-iru-kara-normal-edition-japan/1021414962-0-0-0-en/info.html</a></p>
<p><strong>Source:</strong> <a href="http://www.square-enix.co.jp/fabula/ff13/" target="_blank">Square Enix</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Você tem fome de quê?]]></title>
<link>http://altaircamargo.wordpress.com/2009/11/26/voce-tem-fome-de-que/</link>
<pubDate>Thu, 26 Nov 2009 14:37:36 +0000</pubDate>
<dc:creator>altaircamargo</dc:creator>
<guid>http://altaircamargo.wordpress.com/2009/11/26/voce-tem-fome-de-que/</guid>
<description><![CDATA[Para minha vó, &#8220;Bom dia&#8221; é &#8220;Vem almoçar&#8221;. &#8220;Boa noite&#8221; é &#8220;o]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Para minha vó, &#8220;Bom dia&#8221; é &#8220;Vem almoçar&#8221;.</p>
<p>&#8220;Boa noite&#8221; é &#8220;o que você vai jantar?&#8221;.</p>
<p>E &#8220;Como foi seu dia?&#8221; é &#8220;o lanche está na mesa&#8221;.</p>
<p>O roteiro não muda.</p>
<p>E depois não sabem por que tem tanto idoso abandonado.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[El salón de otoño del vehículo de ocasión vende la mitad de su stock]]></title>
<link>http://themotorlobby.com/2009/11/24/el-salon-de-otono-del-vehiculo-de-ocasion-vende-la-mitad-de-su-stock/</link>
<pubDate>Tue, 24 Nov 2009 18:56:22 +0000</pubDate>
<dc:creator>borjafadon</dc:creator>
<guid>http://themotorlobby.com/2009/11/24/el-salon-de-otono-del-vehiculo-de-ocasion-vende-la-mitad-de-su-stock/</guid>
<description><![CDATA[ Según he sabido por GANVAM el Salón del Vehículo de Ocasión de Madrid, que terminoel fin de semana ]]></description>
<content:encoded><![CDATA[ Según he sabido por GANVAM el Salón del Vehículo de Ocasión de Madrid, que terminoel fin de semana ]]></content:encoded>
</item>
<item>
<title><![CDATA[BUMP OF CHICKEN 『Merry Christmas』 Full Ver.]]></title>
<link>http://listentheworld.wordpress.com/2009/11/24/bump-of-chicken-%e3%80%8emerry-christmas%e3%80%8f-full-ver/</link>
<pubDate>Tue, 24 Nov 2009 15:20:13 +0000</pubDate>
<dc:creator>Dlyan</dc:creator>
<guid>http://listentheworld.wordpress.com/2009/11/24/bump-of-chicken-%e3%80%8emerry-christmas%e3%80%8f-full-ver/</guid>
<description><![CDATA[Finally the full version of BUMP OF CHICKEN 『Merry Christmas』 ! Catalog No.: TFCC-89289 Label/Distri]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/QJaareN2z00&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/QJaareN2z00&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>Finally the full version of BUMP OF CHICKEN 『Merry Christmas』 !</p>
<p>Catalog No.: TFCC-89289<br />
Label/Distributor: VAP<br />
Format: CD<br />
Number of discs (or other units): 1<br />
Release Date: <strong>2009/11/25</strong><br />
Price: 1000yen (1050yen Tax incl.)<br />
[US$ 10.96]<br />
Item weight: 120 g</p>
<p><strong>(BUMP OF CHICKEN – R.I.P / Merry Christmas Single Regular Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=TFCC-89289" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=TFCC-89289</a></p>
<p><a href="http://track.webgains.com/click.html?wgcampaignid=32415&#38;wgprogramid=231&#38;wgtarget=http://www.yesasia.com/global/r-i-p-merry-christmas-japan-version/1021374024-0-0-0-en/info.html" target="_blank">http://www.yesasia.com/global/r-i-p-merry-christmas-japan-version/1021374024-0-0-0-en/info.html</a></p>
<p><strong>Credits:</strong> TOYSFACTORYJP<em></em></p>
<p><strong>Source:</strong> Youtube</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ASIAN KUNG-FU GENERATION – Shinseiki no Love Song (PV)]]></title>
<link>http://listentheworld.wordpress.com/2009/11/23/asian-kung-fu-generation-%e2%80%93-shinseiki-no-love-song-pv/</link>
<pubDate>Mon, 23 Nov 2009 16:35:38 +0000</pubDate>
<dc:creator>Dlyan</dc:creator>
<guid>http://listentheworld.wordpress.com/2009/11/23/asian-kung-fu-generation-%e2%80%93-shinseiki-no-love-song-pv/</guid>
<description><![CDATA[Aji-kan New PV: Shinseiki no Love Song (New Century Love song) ! (ASIAN KUNG-FU GENERATION – Shinsei]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><object width="425" height="254"><param name="movie" value="http://www.dailymotion.com/swf/xb8wlq"></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/xb8wlq" type="application/x-shockwave-flash" width="425" height="334" allowfullscreen="true"></embed></object></p>
<p>Aji-kan New PV: <em>Shinseiki no Love Song</em> (New Century Love song) !</p>
<p><strong>(ASIAN KUNG-FU GENERATION – Shinseiki no Love Song Regular Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=KSCL-1510" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=KSCL-1510</a></p>
<p><a href="http://track.webgains.com/click.html?wgcampaignid=32415&#38;wgprogramid=231&#38;wgtarget=http://www.yesasia.com/global/shinseki-no-love-song-normal-edition-japan-version/1021347005-0-0-0-en/info.html" target="_blank">http://www.yesasia.com/global/shinseki-no-love-song-normal-edition-japan-version/1021347005-0-0-0-en/info.html</a></p>
<p><strong>Source:</strong> SSTV</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ver Dread online VO]]></title>
<link>http://diegomax8.wordpress.com/2009/11/21/ver-dread-online-vo/</link>
<pubDate>Sat, 21 Nov 2009 15:08:00 +0000</pubDate>
<dc:creator>Diego</dc:creator>
<guid>http://diegomax8.wordpress.com/2009/11/21/ver-dread-online-vo/</guid>
<description><![CDATA[Aqui puedes Ver Dread Online. ver Dread online,ver gratis Dread online,ver pelicula Dread online,ver]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:rgb(51,51,51);font-size:85%;">Aqui puedes Ver Dread Online. ver Dread online,ver gratis Dread online,ver pelicula Dread online,ver Dread online megavideo,ver pelicula Dread online gratis,ver online Dread,Dread online ver pelicula,ver estreno Dread online,ver online Dread,Dread online ver,Dread ver online</span><br /><a href="http://diegomax8.wordpress.com/files/2009/11/241t8b9.jpg"><img src="http://diegomax8.wordpress.com/files/2009/11/241t8b9.jpg?w=199" alt="" border="0" /></a>
<div style="text-align:center;">Un estudiante de filosofía obsesionado con sus propias pesadillas, conduce una serie de experimentos en gente para observar sus reacciones a lo que teme la mayoría, pero pronto descubre que estos experimentos le conducirán otra vez a sus peores pesadillas. </div>
<p>
<div style="text-align:center;"><a href="http://vidreel.com/video/NTc4NzMz/">VER PELÍCULA ONLINE (VIDREEL)</a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Twee voorvallen met PowerPoint]]></title>
<link>http://onderwijs21.wordpress.com/2009/11/19/twee-voorvallen-met-powerpoint/</link>
<pubDate>Thu, 19 Nov 2009 19:11:27 +0000</pubDate>
<dc:creator>Paul de Maat</dc:creator>
<guid>http://onderwijs21.wordpress.com/2009/11/19/twee-voorvallen-met-powerpoint/</guid>
<description><![CDATA[Het is een bijzonder verhaal, maar ik heb uit de eerste hand vernomen. Vierde klas voortgezet onderw]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://onderwijs21.wordpress.com/files/2009/11/black-and-white-photo-page-everystockphoto.jpg"><img class="alignleft size-thumbnail wp-image-514" title="Black and White &#124; photo page - everystockphoto" src="http://onderwijs21.wordpress.com/files/2009/11/black-and-white-photo-page-everystockphoto.jpg?w=150" alt="" width="114" height="114" /></a>Het is een bijzonder verhaal, maar ik heb uit de eerste hand vernomen. Vierde klas voortgezet onderwijs. Een jongen en een meisje – laten we hen Peter en Kim noemen &#8211; hebben verkering, maar het gaat uit. Niet veel later moet Peter een werkstuk presenteren voor de klas. Daarbij gebruikt hij PowerPoint. Dat gaat lekker tot en met dia 3, want bij dia 4 komt zijn ex Kim in beeld. Schaars gekleed. Om onduidelijke redenen blijft de foto nog zo’n anderhalve minuut in beeld en dat zorgt voor flinke deining in de klas en in een later stadium natuurlijk ook op schoolniveau. Er worden dan ook maatregelen genomen, en geen halve. Want: vanaf nu is het verboden PowerPointpresentaties te houden. Advies is om voortaan een flapover te gebruiken. Nogmaals: echt gebeurd.<!--more--></p>
<p>Best ingewikkeld. Moet Peter nog wat leren? Of de docent, of de school? Of misschien wel Kim?</p>
<p><strong>Geen PowerPoint?</strong></p>
<p>Een andere PowerPointcasus. Een leerling (andere school dan zojuist) vertelde me dat de verschillende projectgroepen in zijn klas allemaal hun project moesten presenteren. Zijn groep werd als beste beoordeeld en een pikante bijzonderheid was dat ze als enige groep geen PowerPoint hadden gebruikt! Dat was een bewuste keuze want ‘PowerPoint leidt alleen maar af’.</p>
<p>Pff, het wordt dus nog een beetje complexer. We hebben al twee redenen om geen PowerPoint te gebruiken: het wordt misbruikt en het leidt af. Moeten we dus digitale presentatiemiddelen afzweren? Natuurlijk niet. Ooit waren er rotstekeningen, smartlappen, schilderijen, een krijtschoolbord, allemaal bedoeld om verhalen kracht bij te zetten met visuele middelen. Het publiek stelt dit op prijs en daarom blijven publieke sprekers dit soort middelen gebruiken. Maar wat als iemand zo’n middel misbruikt?</p>
<p><strong>Transfer</strong></p>
<p>Inderdaad, dat kan. Net zoals er een krant kan verschijnen met een artikel dat je niet gepast vindt. Dan ga je toch echt niet de krant opdoeken. Gek, zou je denken, dat ieder zoiets bij een krant heel normaal vindt, maar dat bij een mislukte PowerPointpresentatie mensen in een kramp schieten. Maar misschien is het niet zo vreemd. Het is wat we in het onderwijs altijd constateren: een transferprobleem. Het is het probleem van de leerling die een dictee foutloos maakt, maar in een opstel niets van goede spelling bakt. Wat je in één situatie leert, beheers je niet automatisch in een andere. Dat is ook wat speelt bij mediawijsheid. Die media zijn er nu eenmaal, leer ermee omgaan (lesgevenden én leerlingen) en het leven wordt een stuk prettiger.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[BUMP OF CHICKEN『Merry Christmas』5min Ver.]]></title>
<link>http://listentheworld.wordpress.com/2009/11/18/bump-of-chicken%e3%80%8emerry-christmas%e3%80%8f5min-ver/</link>
<pubDate>Wed, 18 Nov 2009 09:31:29 +0000</pubDate>
<dc:creator>Dlyan</dc:creator>
<guid>http://listentheworld.wordpress.com/2009/11/18/bump-of-chicken%e3%80%8emerry-christmas%e3%80%8f5min-ver/</guid>
<description><![CDATA[5min of the second title of BUMP OF CHICKEN 『Merry Christmas』 ! Note: The full version is about 6min]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/Qe_SIMzuv6Y&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/Qe_SIMzuv6Y&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>5min of the second title of BUMP OF CHICKEN 『Merry Christmas』 !</p>
<p><strong>Note:</strong> <em>The full version is about 6min 50s</em>.</p>
<p>Catalog No.: TFCC-89289<br />
Label/Distributor: VAP<br />
Format: CD<br />
Number of discs (or other units): 1<br />
Release Date: <strong>2009/11/25</strong><br />
Price: 1000yen (1050yen Tax incl.)<br />
[US$ 10.96]<br />
Item weight: 120 g</p>
<p><strong>(BUMP OF CHICKEN – R.I.P / Merry Christmas Single Regular Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=TFCC-89289" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=TFCC-89289</a></p>
<p><a href="http://track.webgains.com/click.html?wgcampaignid=32415&#38;wgprogramid=231&#38;wgtarget=http://www.yesasia.com/global/r-i-p-merry-christmas-japan-version/1021374024-0-0-0-en/info.html" target="_blank">http://www.yesasia.com/global/r-i-p-merry-christmas-japan-version/1021374024-0-0-0-en/info.html</a></p>
<p><strong>Credits:</strong> TOYSFACTORYJP<em></em></p>
<p><strong>Source:</strong> Youtube</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[¡Ayudadnos a probar el módulo de VO!]]></title>
<link>http://redauriga.wordpress.com/2009/11/13/%c2%a1ayudadnos-a-probar-el-modulo-de-vo/</link>
<pubDate>Fri, 13 Nov 2009 06:40:01 +0000</pubDate>
<dc:creator>redauriga</dc:creator>
<guid>http://redauriga.wordpress.com/2009/11/13/%c2%a1ayudadnos-a-probar-el-modulo-de-vo/</guid>
<description><![CDATA[Por fin hoy viernes, 13 de noviembre, hemos lanzado el esperado y remodelado módulo de Vehículos de ]]></description>
<content:encoded><![CDATA[Por fin hoy viernes, 13 de noviembre, hemos lanzado el esperado y remodelado módulo de Vehículos de ]]></content:encoded>
</item>
<item>
<title><![CDATA[I Left My Voice in San Diego]]></title>
<link>http://robellis.wordpress.com/2009/11/13/i-left-my-voice-in-san-diego/</link>
<pubDate>Fri, 13 Nov 2009 01:52:37 +0000</pubDate>
<dc:creator>elwood1962</dc:creator>
<guid>http://robellis.wordpress.com/2009/11/13/i-left-my-voice-in-san-diego/</guid>
<description><![CDATA[One of my oldest friends, Tim Smith of Wynn-Smith Landscape Design in San Diego, called me recently ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>One of my oldest friends, Tim Smith of <a class="wp-caption-dd" href="http://www.wynn-smith.com/" target="_blank">Wynn-Smith Landscape Design</a> in San Diego, called me recently to ask if I was the voice he heard when he and his wife Kelly were shopping online for a new car. I confirmed for him that he had indeed heard me on one of the car dealer sites designed by <a class="wp-caption-dd" href="http://www.dealer.com/index.htm">Dealer.com .</a></p>
<p>Just to clarify, I only voice copy for new cars, so no, I am not a used-car salesman&#8230;.for now.</p>
<p>My wife Laura (who works in marketing for <a class="wp-caption-dd" href="http://www.ford.com/">Ford Motor Company</a>),  upon hearing that they were looking for a car, wasted no time time in grabbing the phone from me to let them know about the great 2010 Ford models, and the even greater deals that she could get for them.</p>
<p>I then realized that one of us could end up selling Tim and Kelly a car!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Salón del Vehículo de Ocasión de otoño]]></title>
<link>http://themotorlobby.com/2009/11/12/salon-del-vehiculo-de-ocasion-de-otono/</link>
<pubDate>Thu, 12 Nov 2009 11:26:38 +0000</pubDate>
<dc:creator>borjafadon</dc:creator>
<guid>http://themotorlobby.com/2009/11/12/salon-del-vehiculo-de-ocasion-de-otono/</guid>
<description><![CDATA[El Salón del Vehículo de Ocasión es una oportunidad única para encontrar el coche que buscas y este ]]></description>
<content:encoded><![CDATA[El Salón del Vehículo de Ocasión es una oportunidad única para encontrar el coche que buscas y este ]]></content:encoded>
</item>
<item>
<title><![CDATA[BUMP OF CHICKEN 『Merry Christmas』 3min Ver.]]></title>
<link>http://listentheworld.wordpress.com/2009/11/10/bump-of-chicken-%e3%80%8emerry-christmas%e3%80%8f-3min-ver/</link>
<pubDate>Tue, 10 Nov 2009 16:08:06 +0000</pubDate>
<dc:creator>Dlyan</dc:creator>
<guid>http://listentheworld.wordpress.com/2009/11/10/bump-of-chicken-%e3%80%8emerry-christmas%e3%80%8f-3min-ver/</guid>
<description><![CDATA[3min of the second title of BUMP OF CHICKEN 『Merry Christmas』 ! Catalog No.: TFCC-89289 Label/Distri]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/fx2wBYJuWqw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/fx2wBYJuWqw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>3min of the second title of BUMP OF CHICKEN 『Merry Christmas』 !</p>
<p>Catalog No.: TFCC-89289<br />
Label/Distributor: VAP<br />
Format: CD<br />
Number of discs (or other units): 1<br />
Release Date: <strong>2009/11/25</strong><br />
Price: 1000yen (1050yen Tax incl.)<br />
[US$ 10.96]<br />
Item weight: 120 g</p>
<p><strong>(BUMP OF CHICKEN – R.I.P / Merry Christmas Single Regular Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=TFCC-89289" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=TFCC-89289</a></p>
<p><a href="http://track.webgains.com/click.html?wgcampaignid=32415&#38;wgprogramid=231&#38;wgtarget=http://www.yesasia.com/global/r-i-p-merry-christmas-japan-version/1021374024-0-0-0-en/info.html" target="_blank">http://www.yesasia.com/global/r-i-p-merry-christmas-japan-version/1021374024-0-0-0-en/info.html</a></p>
<p><strong>Credits:</strong> TOYSFACTORYJP<em></em></p>
<p><strong>Source:</strong> Youtube</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cómo traspasar la información de VO desde Auriga 1 a Auriga 2]]></title>
<link>http://redauriga.wordpress.com/2009/11/10/como-traspasar-la-informacion-de-vo-desde-auriga-1-a-auriga-2/</link>
<pubDate>Tue, 10 Nov 2009 06:47:01 +0000</pubDate>
<dc:creator>redauriga</dc:creator>
<guid>http://redauriga.wordpress.com/2009/11/10/como-traspasar-la-informacion-de-vo-desde-auriga-1-a-auriga-2/</guid>
<description><![CDATA[Estos son los pasos a seguir para traspasar a Auriga 2 la información acerca de VO que tenéis en Aur]]></description>
<content:encoded><![CDATA[Estos son los pasos a seguir para traspasar a Auriga 2 la información acerca de VO que tenéis en Aur]]></content:encoded>
</item>
<item>
<title><![CDATA[BUMP OF CHICKEN –「R.I.P.」(PV)]]></title>
<link>http://listentheworld.wordpress.com/2009/11/04/bump-of-chicken-%e2%80%93-%e3%80%8cr-i-p-%e3%80%8dpv/</link>
<pubDate>Wed, 04 Nov 2009 20:40:52 +0000</pubDate>
<dc:creator>Dlyan</dc:creator>
<guid>http://listentheworld.wordpress.com/2009/11/04/bump-of-chicken-%e2%80%93-%e3%80%8cr-i-p-%e3%80%8dpv/</guid>
<description><![CDATA[New PV from BUMP OF CHICKEN. Catalog No.: TFCC-89289 Label/Distributor: VAP Format: CD Number of dis]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/g2WpG1e2V9s&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/g2WpG1e2V9s&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>New PV from BUMP OF CHICKEN.</p>
<p>Catalog No.: TFCC-89289<br />
Label/Distributor: VAP<br />
Format: CD<br />
Number of discs (or other units): 1<br />
Release Date: <strong>2009/11/25</strong><br />
Price: 1000yen (1050yen Tax incl.)<br />
[US$ 10.96]<br />
Item weight: 120 g</p>
<p><strong>(BUMP OF CHICKEN – R.I.P / Merry Christmas Single Regular Edition)</strong></p>
<p><a href="http://www.cdjapan.co.jp/aff/click.cgi/e86NDzbdSLQ/229/A808006/detailview.html?KEY=TFCC-89289" target="_blank">http://www.cdjapan.co.jp/detailview.html?KEY=TFCC-89289</a></p>
<p><a href="http://track.webgains.com/click.html?wgcampaignid=32415&#38;wgprogramid=231&#38;wgtarget=http://www.yesasia.com/global/r-i-p-merry-christmas-japan-version/1021374024-0-0-0-en/info.html" target="_blank">http://www.yesasia.com/global/r-i-p-merry-christmas-japan-version/1021374024-0-0-0-en/info.html</a></p>
<p><strong>Credits:</strong> TOYSFACTORYJP</p>
<p><strong>Source:</strong> Youtube</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[EDUCATION JOBS GET BOOST FROM STIMULUS FUNDS]]></title>
<link>http://laurengarber.wordpress.com/2009/11/02/education-jobs-get-boost-from-stimulus-funds/</link>
<pubDate>Sun, 01 Nov 2009 14:00:51 +0000</pubDate>
<dc:creator>laurengarber</dc:creator>
<guid>http://laurengarber.wordpress.com/2009/11/02/education-jobs-get-boost-from-stimulus-funds/</guid>
<description><![CDATA[Here&#8217;s a custom-VO I wrote about stimulus funding used to boost education jobs for WPXI and WJ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Here&#8217;s a custom-VO I wrote about stimulus funding used to boost education jobs for WPXI and WJAC in Pennsylvania.  The White House released new numbers about how many education jobs had been &#8220;created or saved&#8221; by stimulus funds on a state-by-state basis.  In comparison, Pennsylvania had fewer jobs &#8220;created or saved&#8221; than other states, but they also received less funding.</p>
<p>Anchor lead:<br />
FEDERAL STIMULUS MONEY IS PROVIDING A LOCAL BOOST FOR PENNSYLVANIA EDUCATION &#8211; SO FAR &#8211; 531 JOBS HAVE BEEN CREATED OR SAVED.</p>
<p>Take VO:<br />
ACCORDING TO NEW NUMBERS FROM THE WHITE HOUSE TODAY, OUR STATE HAS RECEIVED ABOUT 100 MILLION DOLLARS &#8211; AND WILL RECEIVE ABOUT 800 MILLION MORE.<br />
THE MONEY IS GOING TO MORE THAN JUST TEACHERS AND PRINCIPALS. IT&#8217;S ALSO BEING USED FOR SCHOOL NURSES, BUS DRIVERS AND COMPUTER TECHNICIANS.</p>
<p>Anchor on-camera:<br />
OFFICIALS SAY ACROSS THE COUNTRY THE MONEY HAS SAVED OR CREATED MORE THAN 325-THOUSAND EDUCATION JOBS.</p>
<p>﻿</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
