Site Map with Adaptive Tags??

Hi all,
I seem to remember a session at the Developers Conference in Florida (Oct, 2005) where an example was given on how to create a site map using nothing but adaptive tags. I'm searching all over but haven't found this. Any help on how this can be archived would be greatly appreciated,
~Kevin.

Iam using pt:ptdata.joincurrcommunitydata
here is some code
<pt:ptdata.joincurrcommunitydata pt:id="menutabsjoin" />
<pt:logic.foreach pt:var="temp2" pt:data="menutabsjoin">
<span class="CommunityPage">
<pt:core.html href="$temp2.url" pt:tag="a">
<pt:core.html pt:tag="img" src="$temp2.img" alt="$temp2.title" border="0" align="absmiddle" height="$temp2.imgheight"      width="$temp2.imgwidth" />
                    <pt:logic.value pt:value="$temp2.title" />
                         </pt:core.html>
                         </span>
                         </pt:logic.foreach>
But the URL that is generated is not having the CommunityID, hence it errors out saying object not found.
Any help would be appreciated?
Thanks
kartik

Similar Messages

  • Can you create a site map with Dreamweaver?

    Greetings,
    Can you create a site map with Dreamweaver?
    Crawkers do not work because many of my pages are not linked.
    Thanks

    I'm not too sure what Crawkers is, but I do not think DW has that capability out of the box.  There are some web based solutions that will scan you site for you and give you a map for search engines.  I choose to go with a commercial option which is pretty good from WebAssist, it's called Surveyor: http://www.webassist.com/dreamweaver-extensions/surveyor/ .

  • Schedule generating site map with KM Scheduler

    Hi everyone, as it takes a long time for a user to generate a site map and then get it displayed on the client side. From SDN I found all the solutions for site map are implemented in DynPage class.
    I know executing DynPage is iView or browser window dependent. So it seems impossible to schedule this kind of portal component application with KM Scheduler.
    I do hope there is a trick to do this. If there is no is any solution by now to execute like DynPage class with KM Scheduler ?
    Kind regards.
    Wang

    Hi,
    generally you can create a service which will implement ISchedulerTask (in NWDS create portal application object -> RF Component Wizard -> Scheduler Task Wizard). This service will be accesible in KM configuration so you can schedule it as you wish. This service will "cache" the data for your sitemap iview.
    Alternatively you can create a "standard" service, which will fetch the data in periodic intervals. In run method of the service you use something like this:
    while (true) {
      try {
        Thread.sleep(WAITINTERVALINMILISECONDS);
      } catch (Exception ex) {
      // now call the method for fetching
      // the data for your sitemap...
    Hope this helps a bit,
    Romano

  • Problem in mapping with optional tag

    Hi all,
    I have to map the following messages:
    Source:
    <POITEM> (occurrence 0...unbounded)
       <TipoRecord></TipoRecord>
       <PO_ITEM></PO_ITEM>
       <DELETE_IND></DELETE_IND>
    </POITEM>
    <POITEM>
       <TipoRecord></TipoRecord>
       <PO_ITEM></PO_ITEM>
       <DELETE_IND></DELETE_IND>
    </POITEM>
    Target:
    <POITEM_B> (occurrence 0 1)
        <item>  (occurrence 0...unbounded)
           <TipoRecord></TipoRecord>
           <PO_ITEM></PO_ITEM>
           <DELETE_IND></DELETE_IND>
        </item>
         <item>
            <TipoRecord></TipoRecord>
            <PO_ITEM></PO_ITEM>
            <DELETE_IND></DELETE_IND>
         </item>
    </POITEM_B>
    To do this mapping I have mapped "POITEM" of the source message with "item" of the target one and in that way the cardinality is ok.
    Since POITEM_B is optional, even if there are in the source message <POITEM> elements, the tag <POITEM_B> is not created (nor its children).
    So I mapped <POITEM> to <POITEM_B>:
    the result is ok only for the first <POITEM> element; the second <POITEM> element generates the tag <POITEM_B> without any tag <item> below!
    I have tried in several ways (like changing context, and others), but the only way I have found to get all the correct <item> tags below <POITEM>, is to map <POITEM_B> with a Constant!!!
    Someone can suggest me a better solution?
    ThankS!
    Luciana

    Hi Luciana,
    when I understand you correct you just want to create the <POITEM_B> and <item> nodes of the target structure if <POITEM> exists. If not, you don't want to create <POITEM_B> and all nodes below, correct?
    If so, please try the following:
    <POITEM> --> NodeFunction Exists --> NodeFunction collapseContexts  --> NodeFunction createIf --> <POITEM_B>
    --> This should generate exactly one <POITEM_B> if 1..n <POITEM> elements exist.
    <POITEM> --> <item>
    --> This should generate the same number <item> nodes you've <POITEM> nodes
    Best regards
    Lars

  • Thumbnail images of the site map

    In my work flow I find it very useful to create a site map
    with images of all the web site's pages. I like being able to
    easily look over how a site looks so that I can post notes about
    the changes I would like to make to it in Acrobat.
    What I would like to know is if there is a extension that
    lets me do this without taking screen shots of every single page on
    a site and then individually laying them out in a flowchart program
    before importing it into Acrobat. Anyone know a extension that
    would work?

    If you get your answer please let me know, good luck
    [email protected]

  • Help im having problems with site maps google etc with iweb09

    hi guys i have iweb 09 and im trying to get google to recognize my site map ,ive posted the site map in to my url folder of my domain name and also ive posted the google html file but google says error and will not verify,why is iweb so bad for this??what can i do i really need help?????????????

    An HTML verification file is better than a tag.
    You can make up a sitemap for free or use a third party application.
    You will find all this information in this section of iWeb for Musicians.....
    http://www.iwebformusicians.com/SearchEngines/SEO.html

  • Mapping of XML tags with column

    My xml structure is :
    <PARAMS>
    <ROWSET>
    <ROW NUM="1">
    <SID>man123</SID>
    <PO>
    <PO>OBJ1</PO>
    <PI>
    <PI>PARENTOBJ1 INSTANCE</PI>
    </PI>
    </PO>
    </ROW>
    </params>
    My table structure is :
    CREATE TABLE TEMP(SID VARCHAR2(20),PO POBJECT_T)
    where Object types are:
    CREATE OR REPLACE TYPE PINSTANCE_T AS OBJECT (PI VARCHAR2(255),CO COBJECT_T);
    CREATE OR REPLACE TYPE POBJECT_T AS OBJECT (PO VARCHAR2(255),PI PINSTANCE_T);
    To store this XML directly into table i have to have Column with name "PO" (same as XML tag).I am using this same table to store other XML with same tags . With this limitation its difficult to do so.Is there any way to map XML tag to column with different name????
    Thanks

    Hi,
    thx for your Reply,
    seems to work basicly but i get now in the IDE warnings with:
    "Data binding will not be able to detect changes when using
    square bracket operator. For Array, please use
    ArrayCollection.getItemAt() instead. "
    And how can i access the next item something like this didnt
    work right
    try someniceid.lastResult["some-root"]["someother-root"]
    I had to use single quotes (') to get it to work.
    Any ideas?
    Kind regards,
    Marko

  • Invalid Mapping with SIT for an outport inside a subsystem in a the simulink model.

    Hello everybody,
    I am trying to use SIT to target simulink models on a PXI target.
    The simulink model contains a subsystem with an outport. I have created
    a mapping between the signal coming out of that outport to a waveform
    chart on the host VI. The mapping works fine when I run the model on
    the local host but becomes invalid when I target the dll to a pxi
    target.
    I have been able to create a very simple simulink model and host VI
    that is mimicking this problem. This model does
    not do anything useful and is made to only demonstrate just this problem. I am attaching the model and the userinterface here.
    Note:
    I have already taken care of the fact that I can not use signal storate
    reuse, block reduction and also cant use linked or linked+masked
    subsystems. A testimony to this is the fact that I am able to create
    mapping with other signals in the subsystem. Also outport is a virtual
    block in simulink so I have created a testpoint on the signal going
    into the outport to be able to probe it.
    Any kind of suggestions would be appreciated.
    Thanks and Regards,
    Vicku.
    Attachments:
    files.zip ‏77 KB

    You have two options to be able to probe this signal in the subsystem that should work fine for this small example you posted. Let me know if they also apply to your actual model.
    You have the outport itself set as a test point currently in your subsystem block. Try setting the wire coming out of the subsystem outport as a test point and then rebuilding your dll. That should make the outport signal probable.
    Instead of probing the actual outport, you could probe the signal in the subsystem that is wired into the outport. In the case of your example that would be using_subsystem/Subsystem/Sum1:1.
    Hope this helps!
    Message Edited by Jarrod S. on 08-23-2007 10:59 AM
    Jarrod S.
    National Instruments

  • Site map in BC , Website made with Muse

    Hi,
    I need help
    site map located in BC is empty   http://upload.slike.com/slike/YNWzf.jpg
    The question is: Is it ok in that way?
    below are links from my BC
    http://upload.slike.com/slike/wgjH6.jpg
    http://upload.slike.com/slike/67ZJ.jpg
    thank you in advance for response

    There are a few bugs with the simap.xml generation but basically you have got a manual sitemap.xml there.
    Because you see it in the folder structure (you should not if it is dynamic) it is a static sitemap.xml and will never be udpated by the system.
    Delete that one there and if you go here in the new UI: /AdminConsole/#!/Utilities/SEO.aspx
    Ensure the sitemap.xml is turned on.
    Wait for a day and you should see the new sitemap come to life.

  • I changed web hosts and can't publish through iWeb SEO Tool or Rage Site Map Automator. Do I need to delete the old site map?

    I switched to iPage hosting since Mobile Me is expiring. Also recently upgraded to OS X 10.7.3 and am using iWeb 3.0.4 for my web site design. I published directly to the FTP from iWeb but all title tags, meta tags have disappeared and I'm not showing up in Google or others. I tried publishing from iWeb SEO but it couldn't complete the process.
    Should I first publish to a folder as I did before with Mobile Me, then delete all old sitemaps and start over with the Site Map Automator and then try to publish from the SEO tool? Will I lose the key words and meta tags that are already in iWeb SEO?
    Thanks!

    The problem is that most tech support people don't understand how iWeb structures a site.
    When a visitor types in "domain-name-com" the browser expects to find an index.html in the root folder on the server. In "normal" websites the index.html file is the first page of the site.
    The iWeb index.html file is a redirect to the first, or landing, page of the site which is the one at the top of the left column in iWeb just below the site name.
    iWeb produces two index.html files.
    One is outside of the folder containing the rest of the files and directs to - folder-name/home-page-name.html
    The other one is inside the folder and directs to - home-page-name.html
    You have two choices of how you upload the files since you are publishing to a local folder.
    You can upload the whole folder plus the external index.html to the root folder on the server and the URL to any page will be...
    http://www.domain-name.com/site-name/page-name.html
    If you upload the contents of the site folder, and not the folder or the external index.html, the URL will be...
    http://www.domain-name.com/page-name.html
    See this page for more info and the warning about breaking the RSS feed....
    http://www.iwebformusicians.com/iWeb/URLs-Favicons.html

  • Include In Head adaptive Tag and Webcenter Default CSS questions

    Hello I'm fairly new to Webcenter
    I`m currently working on a project that`s requiring us to do a lot of customizing of Templates and Stylesheets changes, I have a couple of questions I was hoping someone might be able to help me with.
    1) I want to inject some code into the page header of all webcenter pages. I understand that there is an adaptive tag "includeinhead", documented here:
    http://download.oracle.com/docs/cd/E13174_01/alui/devdoc/docs60/Portlets/Adaptive_Portlets/Using_Adaptive_Tags/plumtreedevdoc_integration_portlets_adaptive_namespacetoken.htm
    This works, for the most part. However, for IE I would like to include the 'ie shim' which fixes behaviours for IE (adding things like border radius), etc...this code goes as follows:
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    As you can see, there are 'comment' tags that are not really comments, but directives to IE to process the script. This unfortunately gets parsed out by webcenter because (I assume) it just sees the whole block as a comment...So I am wondering what can be done about this.
    2) I am wondering where the 'default' stylesheet that webcenter uses resides. By default, I am referring to the styles that get applied in the cases where tags are not defined in the skin file. I am having some difficulties around this because often Webcenter injects inline CSS into the controls where I don't really want it to... For example, in the "panel header" control, webcenter injects code for the title field and automatically sets the width of the cell. I would like to override this and control it completely.
    Thanks.

    Is that really a big deal or is it ok .... ? I'm always thinking .... oh god how heavy that is , anytime you call up the page the browser has to go through all that first ... is it actually ok or are there any tricks or tips ?
    It's always a good idea to worry about how heavy the LINKED files are since they contribute to the overall weight of the page.  The contribution of the links themselves, though, is negligable.  There is also benefit in managing the order in which those links appear.  Put CSS links first and follow them with javascript links (since the CSS will affect the page rendering, while the javascript most likely will not), so the browser can begin to render the page even while it's waiting for the js files to be fetched.
    2 - Templates are great but If a spry is only needed on some pages,how do we handle that ? By setting up another template ? Or is there a better way ?
    If you are applying Spry effects to a Template child page, DW is smart enough to drop those links into the editable region in the head of the page (which is what it should do).  Just make sure that the editable region falls BETWEEN your CSS links and your JS links to allow you to arrange things as mentioned above.  There is never a real need to have more than one Template per site.
    3 - is it better to have 1 single compressed css file with ALL styles in it or various css files ?
    There is a small performance hit everytime you have to go back to the server for another file.  So two pages of the same overall weight, one with 1 externally linked file, and the other with 10 externally linked files will show a difference in their download time.  How significant that difference is will depend on many variables, but it will be a real difference.  That being the case, it's always better to opt for a single file than multiple files.  Practically speaking, the difference will usually be small, especially when you consider how small these 'incremental' css files usually are....

  • XSLT Mapping of Adapter-Specific Message Attributes

    Hi,
    We have the requirement to build a soap request with a custom soap envelop/header which contains a sessionId.
    Therefore we developed a xlst mapping which is called directly after a graphical mapping.
    In the graphical mapping the session id is written to the dynamic configuration.
    The goal is to read this session id in the xslt mapping from the dynamic configuration using XSLT Mapping of Adapter-Specific Message Attributes. We used  [this|http://help.sap.com/saphelp_nwpi711/helpdata/en/43/03fe1bdc7821ade10000000a1553f6/content.htm] documentation as an example.
    But we are getting the following error: TransformerConfigurationException triggered while loading XSLT mapping. The error is raised at this node: <xsl:variable name="dynamic-conf" select="map:get($inputparam, 'DynamicConfiguration')" />
    This is the coding of the xslt transformation:
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0"
          xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
          xmlns:ns1="urn:enterprise.soap.sforce.com"
          xmlns:map="java:java.util.Map"
          xmlns:dyn="java:com.sap.aii.mapping.api.DynamicConfiguration"
          xmlns:key="java:com.sap.aii.mapping.api.DynamicConfigurationKey">
    <xsl:output indent="no" />
    <xsl:param name="inputparam"/>
    <xsl:template match="/">
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:enterprise.soap.sforce.com">
    <soapenv:Header>
    <urn:SessionHeader>
    <xsl:variable name="dynamic-conf" select="map:get($inputparam, 'DynamicConfiguration')" />
    <xsl:variable name="dynamic-key" select="key:create('http://sap.com/xi/XI/System/SOAP', 'sessionId')" />
    <xsl:variable name="dynamic-value" select="dyn:get($dynamic-conf, $dynamic-key)" />
    <urn:sessionId><xsl:value-of select="$dynamic-value"></xsl:value-of></urn:sessionId>
    </urn:SessionHeader>
    </soapenv:Header>
    <soapenv:Body>
    <xsl:copy-of select="*"/>
    </soapenv:Body>
    </soapenv:Envelope>
    </xsl:template>
    </xsl:stylesheet>
    Any help will be highly appreciated.
    Regards, Henk

    Hi, yes we did try that and lot's of other combination.
    The results of those trials are that it seems to go wrong with <xsl:variable name="dynamic-conf" select="map:get($inputparam, 'DynamicConfiguration')" />
    When we enclose it with <xsl:if test="function-available('map:get')"> the transformation is not dumping, but the function is not available.
    Regards, Henk

  • How to build a site map in Release 2 portal

    Can any one tell how to generate a site map in portal release 2. We have all portal pages stored in pages group.
    Thanks.

    Hi,
    thanks alot for these links! Glad to know that I am not the only person who didn't succeed using the forum search and thus I am obviously NOT stupid after all ;-)
    Using your links I managed to install the portlet. However... (as always :()... the number of problems has exploded now:
    1.) I have two languages installed in my portal (english=default and german). When switching to german (which is the language I installed in secaond place), the dropdown list of the site index portal for selecting the root page group won't show up with my custom page group that I have created. it only offers the default page groups like "corporate pages", "portal design-time pages" etc.). When changing to english, this problem doesn't exist (I can see my page group there)
    2.) In our portal app, we link to the portal content from within an iframe. When clicking links inside my site map, however, the target pages will always open in the "top" frame, as it seems, not in the iframe itself :(. This looks like there is per default a "target=_top" attribute, which I don't want to have.
    3.) Though I have installed the ptlnlsi.sql script according to the installation instructions, the message strings seem to be missing: In my portal browser, the site index portlet is displayed as
    "Missing string(sip_title) language(us) domain (wwc) sub_domain (ptl)"
    The latter is of minor impact, but the first two problems completely crack up both our user access and page layout concept. I definitely have to find a solution to get rid of these, otherwise, the site index is of no use in our context.
    Can anybody help me, please?

  • Can't get a web page to validate with meta tags with w3c??

    I have created a website for my school projects, and every week I have to add something to it for the course, and every monday I have to submit my code in a zipped folder to the professor, after running it through the w3c validation page, and passing, This current week, I was instructed to swork on SEO for my site, and add meta tags to the site to fish for traffic, and then I have to validate it through w3c and submit. Well, I did not complete this because w3c would not validate my page until I removed every single meta tag from the code, and I cannot for the life of me understand the error that is holding me back. So, in an effort to see if I could get some help here, I have included my code, and will try to explain what is happening and the code as well as the error from the validator service. Please have a look, help me, because I am totally lost here....
    Thanks in advance!!
    zlloyd1
    This is my code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>zlloyd on the web</title><meta name="" content="Zachariah Lloyd, basketball, computers" /><meta fttp-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" type="text/css" href="stylez.css" />
    </head>
    <body><div id="container"><h1>ZLLOYD ON THE WEB</h1> <div id="navbar"><a href="about.html">About me</a> <a href="OceanView.html">Ocean View</a> <a href="swimming.html">Swimming</a> <a href="gaming.html">Gaming</a> <a href="BBall.html">Basketball</a></div><div><a href="gaming.html"><img src="images/Gaming-Desktop-Configuration.jpg" width="107" height="239" alt="console" /></a><a href="BBall.html"><img src="images/300px-Basketball_pictogram.svg.png" width="82" height="76" alt="BallinGuy" /></a><a href="swimming.html"><img src="images/swimming.jpg" width="100" height="237" alt="Strokin" /></a></div></div>
    <a href="contactsupport.html">Support </a>
    </body>
    </html>
    and this is what w3c says when I try to validate the page:
    Line 5, Column 131: there is no attribute "fttp-equiv"
    …mputers, swimming" /><meta fttp-equiv="Content-Type" content="text/html; chars…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
    What in the world does this mean, because I am seriously lost on this, and the only way I could get around this was to completely remove the entire line, "<meta name="" content="Zachariah Lloyd, basketball, computers" /><meta fttp-equiv="Content-Type" content="text/html; charset=UTF-8" />", which removed all of my meta tags completely, in order to validate it?? I cannot see what is setting this thing off like that, I have never gottena validation error before, and I now know that they are written as meaningless gibberish that does not even remotely explain what is wrong, at least not to me....
    Please help!!!!

    Line 4 and line 5 are trying to do the same thing. Take out the
    <meta fttp-equiv="Content-Type" content="text/html; charset=UTF-8" />
    line entirely and you will be good.

  • How to create site map in Dreamweaver CC

    Hi
    I have just built my first website and need to create a site map, any help greatly appreciated.
    Thanks

    I use this online service to crawl up to 500 site pages.
    Create your Google Sitemap Online - XML Sitemaps Generator
    Also generates an XML site map for Search Engine robots and an HTML map for human site visitors.  I then use my Google Webmaster account (also free) to submit the XML site map's URL to Google.
    Also look at Xenu Link Sleuth software.  It checks for broken site links and creates an HTML site map.
    Find broken links on your site with Xenu's Link Sleuth (TM)
    Nancy O.

Maybe you are looking for

  • IPod no longer Authorized, since OS 4.3 upgrade

    A little bit of history first- iPod touch is 1 year old (3rd gen). Until a week ago, I have had no problems syncing it with iTunes. All of a sudden, after the iOS 4.3 upgrade, next time I connected for Sync, I get: This computer is no longer authoriz

  • Any way to open new browser window without using image maps?

    Is there any way to open new browser window without using image maps? My code works fine in Firefox, but not in IE. There are 2 problems in IE: 1st is that the thumbnail images move up within their own borders & 2nd that when you click on an image it

  • How do I configure a basic LDAP to work with OPS Center?

    I have Solaris 11 and have configured it a few ways with LDAP. The last setup I used Directory server with a proxy then added LDAP configs. I am having problem getting the clients working correctly but first I need to know if I can just configure LDA

  • Directed call park MOH

    We have installed a multi-tenant solution. Two of the tenants use their own separate MOH audio sources for their devices. Both tenants would like directed call park numbers that need to be separate from each other. They would like their directed call

  • Downconverting video to SD without double-images

    So I have some HD video that I want to put on a DVD. I have DVD Studio Pro, which as you know, will not downconvert the video to SD for me. I tried re-exporting the video as a regular old SD QuickTime movie, but I noticed that there was a bad case of