Content Express Template for News Portlet bundeled with Personalization

Is the template (and other files) to manage data for the news viewer of the personalization
server available?
I would like to add my own news items throught content express.
Thanks for the help
guy

Well this is in the head tag
<html>
    <!--<![endif]-->
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <title>55k Productie | E-marketing</title>
        <link href="boilerplate.css" rel="stylesheet" type="text/css" />
        <link href="stylesheets/style.css" rel="stylesheet" type="text/css" />
        <!--
To learn more about the conditional comments around the html tags at the top of the file:
paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
* insert the link to your js here
* remove the link below to the html5shiv
* add the "no-js" class to the html tags at the top
* you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
-->
        <!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
        <![endif]-->
        <script src="respond.min.js"></script>

Similar Messages

  • Oracle content presenter template for a flash banner with onclick property

    Hi all,
    I m using webcenter portal applicaiton which a banner on my home page.On click of the flash banner, we navigate it to a specific page in my applicaion(i.e on my application resides a page called test, if i click my flash banner it will navigate to that speicific page.
    My application connects with oracle content server(ucm) to fetch the content.
    Now i tried to fetch the flash banner from Oracle Content server. When i fetch the banner from ucm by cmf:renderproperty using a content presenter template, the flash banner is not navigating to the test page as it did early.
    It takes the path from ucm(like http://xxx:16200/cs/public/do...). I tried using af:inlineframe but still getting the same path like http://xxx:16200/cs/public/doc...)
    Kindly help me out.
    Thanks
    S. Muthukumaran

    Hi All,
    Any update on this?
    Thanks

  • ALV Grid default values for new rows added with Add/Insert buttons

    Hi!
    Help, please,  to find a way how to set default values for new rows added with Add/Insert buttons in
    ALV Grid.

    I have found salution:
    ALV Grid u2013 Insert row function
    Sometimes we need to assign some default values when we create a new row in a grid using standard ALV Append row button. In our scenario we will see how to assign default values to Airline Code (CARRID), Flight Connection Number (CONNID) and Flight date (FLDATE) when a new row is created. To do that we need to handle DATA_CHANGED event in the program like mentioned below.
    Definition of a class:
    Code:
          CLASS lcl_event_receiver DEFINITION
    CLASS LCL_EVENT_RECEIVER DEFINITION.
      PUBLIC SECTION.
    METHODS:
         handle_data_changed
         FOR EVENT data_changed OF cl_gui_alv_grid
         IMPORTING er_data_changed
                           e_ucomm.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    Implementation of a class:
    Code:
    CLASS LCL_EVENT_RECEIVER IMPLEMENTATION.
      METHOD HANDLE_DATA_CHANGED.
        DATA: dl_ins_row TYPE lvc_s_moce.   " Insert Row
          FIELD-SYMBOLS: <fs> TYPE table.    " Output table
    Loop at the inserted rows table and assign default values
        LOOP AT er_data_changed->mt_inserted_rows INTO dl_ins_row.
          ASSIGN er_data_changed->mp_mod_rows->* TO <fs>.
          loop at <fs> into ls_outtab.
            ls_outtab-carrid  = 'LH'.
            ls_outtab-connid  = '400'.
            ls_outtab-fldate  = sy-datum.
            MODIFY <fs> FROM ls_outtab INDEX sy-tabix.
          endloop.
        endloop.
      ENDMETHOD.                    "handle_data_changed
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
    Register the events to trigger DATA_CHANGED event when a new row is created.
    Code:
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_ENTER.
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.

  • I have installed hydra express plugin for Aperture many time with no success

    I have installed hydra express plugin for Aperture many time with no success. When I select edit with plugin hydra, the make an HDR image with hydra appears. When I hit the process button a message states that hydra is not found. I have checked in my application support folder. There is no plugin folder for aperture or a hydra plugin.
    Any help would be appreciated.

    Plug-ins get installed in one of two locations.
    ~/Library/Application Support/Aperture/Plug-Ins/Edit
    or
    /Library/Application Support/Aperture/Plug-Ins/Edit
    The second is for all users of the machine and is located in the root folder of your system drive (often "Macintosh HD").
    The first is your private library (note the ~ symbol which a shortcut to your user folder) and means the plugin is just for you. ~/Library is hidden by default so finder wont see it. To see it in Finder, use the menu "Go->Go to folder" and type in ~/Library as the folder name. Then you can natigate to /Application Support/ etc....
    That should help you determine if it's installed. Note, you may only find an alias in the plug-in folder and the programs may actually be stored elsewhere. Also, if the Plugin can be used for export as well as edit, it might be located in /Plug-Ins rather than /Plug-Ins/Edit
    In terms of why it isn't working, I think I may have a clue to what's going on. Sometimes plugins use utilitly shell commands that get distributed with the plugin. These can get quarantined by Macs Gatekeep security because they are not signed by a 'valid' developer.
    I've recently taken on the task of making the old Enfuse plugin compatible with the latest version of Aperture, and ran into this gatekeep quarantine issue. I got around it by de-quarantine the required commands and got the plugin working.
    For distribution, I've put an AppleScript together which installs the plugin and takes care of the quarantine issue, but I am just (literally today) tesing that on a different machine to make sure it works the same as it does on mine.
    If you can first confirm that hydra is installed in one of the above locations, I'll then talk you through how to check if there is a quarantine issue with it.
    -Andy

  • Populating the form with existing product details as a template for new one

    In the product creation screen as in the sample application
    http://apex.oracle.com/pls/otn/f?p=30267:6:907132591805707::NO:6::
    I am trying to add the functionality where user can click on a button (Create from existing) which would populate all the products and when user clicks on one of the products I should populate the create new product screen with this selected record(all the fields), user can further modify the fields as needed and clicks on create to create this new product.
    I searched this whole forum but couldnt figure out what I should be doing to acheive this. I looked at some ajax solutions provided but it needs me to define one of the field as list which will let me select from the list , but this is not sutable in my situation since all the fields should be editable once populated.
    please point me to right docs which helps solving this.
    your help is highly appreciated.
    please let me know if any additional information is needed.
    Thank you,
    Balu.

    Actually my requirement was to create new product and option to delete the old product using a check box.
    This is solved please disregard this thread.
    feel free to request the solution should you looking for the same requiremnt.
    OAE is amazing many things are so easy with this tool.

  • Update content type template for existing sites in sharepoint 2010 ?

    Hi,
    I created one custom document library (list definition) and associated 3 content types which has docment template path (\_layouts.template1.docx). I rollout nearly 200 sites with this definition. now i want to update my document template and also i want
    to change template docx to dotx.
    what is the best approach to apply these changes for existing sites ?
    Thanks,
    Surya.
    suryakumarp

    Hi suryakumar,
    As I understand, you want to update the template 
    for existed content type.
    It can be achieved by programming. There is a
    SPContentType.DocumentTemplateUrl Property, which can be used to update content type.
    Here is a demo:
    http://officepoint.blogspot.com/2008/06/sharepoint-relink-infopath-forms-relink.html

  • Using current dimmensions for new business areas with coarser granularity

    Hi,
    I have a time dimension which has month, quarter, semester and year attributes.
    I am creating a new business area in which each fact refers to a quarter (we have no monthly data). In this case I am considering two options:
    1) Using an attribute in the fact table that points to the quarter field in the dimension table (or creating a quarter code in the dimension table, and pointing to that code -there is already month-year code as primary key-).
    2) Creating a new dimension table with just quarter, semester and year.
    What should be best? Is there another option?
    Thanks for yout help.
    Fernando.

    Hi Sam,
    I am not sure wheher memory is really a serious constraint anymore. Consider this:
    a) the price of memory today is pretty much at the price point of hard disks in the year 2000 (at least according to a study I saw). In 2000 we happily ran business systems without being worried about the cost of hard disks ... and that is where we are today with RAM. Sure, disks also became much cheaper, as did flash memory, but the speed benefits of RAM are so superior that it is worth investing in it.
    b) there are already 1 TB RAM blades available, and I think there is now a 2 TB RAM blade on the market (I heard about Samsung having one, and others may have one too)
    c) we indeed routinely achieve compression factors of 10-20 x. It all depends much on how full the table field is, and how homogeneous the content. A field "Currency" compresses great, a field with a "UUID (Universally Unique Identifier)" does not.
    d) customers typically only want to access this and last year's business data (and keep the rest just for reference)
    So I think that it is quite possible to have the active business data even of the largest SAP customers completely in memory, at a reasonable price point. Sure, more expensive than disk ... but who cares about disk anymore (apart for backup)?
    Kind regards, Oliver

  • Optimal Setup for New Time Capsule with Wireless AC

    I'm curious to see what the hypotehtical optimal setup for my Time Capsule.  I understand that wireless speeds depend on a ton of factors and that part of getting the best connection is just trying different options.  I have a new Time Capsule that's connected to the following devices: iPhone 5S; new MacBook Air with wireless AC; old iMac from 2007; old AirPort Express that only supports b/g and a newish Apple TV that supports wireless N, I believe.  I was connecting to the network (which was not designated with the 5ghz) and I recently chose the option to label the 5ghz.  I'm using that now to stream music with the new iPhone and the Apple TV with no problems, but I have no longer have the option of using the old Airport express because it's an old one.  I'm thinking of just getting a new Airport Express and leaving it at that, but wanted to know if anyone has some thoughts on this.  I'm sure there's a more concise and direct way to ask this question, but my knowledge is pretty limited here.  Thanks in advance.

    The Time Capsule is already set up for optimal performance when you open up the box.
    You can assign a separate name to the 5 GHz network and point devices that are capable to that network. This works well if the device is located close to the Time Capsule.
    But, 5 GHz signals are much weaker than 2.4 GHz signals, so once you move a room or two away, or the signal has to pass through several walls, the 2.4 GHz will be stronger.....and probably faster as well.
    But...your device will try to stay locked on the 5 GHz network since you set it up that way.
    This type of setup may or may not work best for you.  For most users, it is simpler and more effective to use the default settings on the Time Capsule to have both bands use the same network name.
    Then, your wireless devices will automatically connect to the signal with the best quality. Best quality may not be the fastest signal since there are lot of factors involved with signal quality. But, if you think about it a bit more, don't you want to have your wireless device connect to the signal with the best quality?
    Some users swear by assigning a separate name to the 5 GHz band. I'm not one of them, but If it works well for them and they are happy, then there is no reason to change.
    An older AirPort on your network is going to drag down the speeds. You need the new AirPort Express, or better yet an AirPort Extreme if you want to be able to extend the new 802.11ac signal.

  • Templates for New Pages Not Updating

    I am a site admin with 7 Contributors accessing my site via
    Contribute 3. I have created templates for them to use to create
    their new pages. These templates allow them to only edit text; they
    cannot update styles or layout in any way. I have noticed that,
    whenever I make updates to my templates and resave them out onto
    the server, some of my Contributors will pick up the new template
    and some will not. Is there any way to force them to pull the new
    templates? I have asked them to all Refresh Templates before they
    create new ones....they tell me that they have, but they are still
    pulling the old template. This causes an issue because, if they
    pull the old template, I have to open their page in Dreamweaver and
    update the template. Doing this on 30+ pages each month gets quite
    tiring and almost defeats the purpose of Contribute for me. Any
    suggestions on this issue are much appreciated!

    Perhaps - and this is just a guess - the template references
    in the pages have got messed up. Something I've noticed is that
    template names with spaces in them get messed up by Contribute. At
    the top of each web page based on a template is the <!--
    InstanceBegin template=".....dwt" --> tag. If the template name
    in there contains spaces it will sometimes get URL-encoded, i.e.
    spaces become %20, and then Dreamweaver no longer recognizes the
    template name as matching the one you're editing. Best practice
    seems to be a an all character template file name.

  • How to set a page template for news detailed view?

    Is there a way to set a page template for the detailed view of the news module?
    I have a page template setup and added the {module_announcement,,,,,} to the page. When the news item is clicked it always opens the default template - is this how it is designed to work or is there a way I can specify it to use a different page template?
    Dave.

    Hey Dave, See the image below:

  • Multiple Failures for new trusted certs with ORA-28857

    We are seeing problems with working APIs that use UTL_HTTP over SSL starting to fail with newer trusted certs. Importing these certificates into the wallet just leads to a ORA-28857 and a corrupted wallet. We are using 11.2.0.1.  3 trusted chains have now failed. Examples include the cert chains (hydrant and godaddy certs) from
    https://api.betfair.com
    https://www.flipkey.com/
    I've had a support call open for the last month with no resolution.
    If anyone has any potential avenues of workarounds  / solutions might just save me some sleepless nights. Our products functionality is dying because of this problem!

    If the certificates are SHA2, they won't work in 11201.. they are fully supported from 11203 up.

  • Default user settings template for new IDs

    Hello,
    I would like to set the default language in the User Master record (SU3 / SU01) to 'EN' for new IDs.  It is currently blank when a new user is created.   Where are the User default settings defined for Language?
    Thank you,
    Rob

    >
    Rob Butcher wrote:
    > Hello,
    > I would like to set the default language in the User Master record (SU3 / SU01) to 'EN' for new IDs.  It is currently blank when a new user is created.   Where are the User default settings defined for Language?
    > Thank you,
    > Rob
    We did it in one of our system by creating a transaction variant that defaults to EN. We had a issue with MM/DD/YYYY though even with the transaction variant.
    Actually there is a paramter zcsa/moddatfm ( Parameter for Default date format when creating users with transactions SU01 ). By default its value is 1 for DD.MM.YYYY and it has to be changed to 2 for MM/DD/YYYY.

  • Is it safe to update iPhoto 8.1.2 to 9.5.1 or should I just wait for new Photos app with OS X Yosemite ?

    iPhoto has always been slow and less than reliable to use. Have never updated it because of concerns with updates. Will current pics in iPhoto get transferred to new Photos app with OS X Yosemite somehow or will I be stuck using both apps?

    I do experience slowness/unresponsiveness and freezing in iPhoto,
    Two points:
    1. These sound like a damaged Library file and you might try repairing it.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    and from reading numerous posts, I am quite certain that many users have had similar experiences.
    The problem with this is that the folks who don't have any problems never post, so you're working from a skewed sample.
    Regards
    TD

  • Create Template for Axis P3214 Cameras with VSOM 7.5.1

    Axis P3304 has gone end of life...the template I have dones not work properly with the replacement camera
    P3214.  How do I create a template for the P3214.

    My question really is how do I get a driver for the P3214 that will work?
    The AXIS Generic VAPIX 3.0 driver is what I am using for the P3304.  That
    driver will get a view in the P3214 but it is turned wrong, small and changes in the
    camera setup is limited.

  • HEY APPLE! What are upgrade policy plans for new systems shipping with 10.4

    I just ordered a brand new Xserver, thinking that there would be some policy in place for brand new computers shipping with 10.4, to get the new version of OSX Leopard Server (without having to buy a retail copy) - however to my surprise, there is nothing currently in place.
    Will there be an upgrade policy soon for users who have just ordered new computers, currently shipping with 10.4??? Or should we return recently ordered items, and stop ordering new systems until they start shipping with 10.5?

    Assumptions such as this one are often a recipe for disappointment and/or for extra expenses; I've certainly learned to be cautious with these.
    In this case, there is a policy that has been in place (AFAIK) since the Leopard announcement.
    For details on and requirements of the Leopard upgrade policy, do read the [Mac OS X Up To Date|http://www.apple.com/macosx/uptodate> web site.
    Those folks outside the Leopard upgrade window that are upgrading to Leopard (and that don't have a separately-purchased Right-to-Upgrade) will be purchasing and ordering the upgrade. You may end up purchasing an iLife upgrade, too — if you're using it, and not already at the current release — as Mac OS X and Mac OS X Server upgrades apparently do not include an iLife upgrade.

Maybe you are looking for