Portal Stylesheet in RenderListForm-based content

Hi,
   I have just created an XML forms editor project, where for example I have,
In the Edit form, an HTML editor control
In the RenderListForm and ShowForm, labels that would display whatever is entered into the HTML Editor in the Edit Form
   At the same time, I have also made some changes to the theme editor such that standard table cells have a certain background colour, say blue.
   Following that, I authored some content using the above forms. I created a table using the HTMLEditor in my Edit Form. While the table style (i.e. table cells with blue background) is propagated to the content in 'Show' form, it does not affect the content in RenderlistForm.
   My objective is for the same style to affect the content in RenderListForm as well. What can I do to make this happen?
Thanks,
Ju

Just to clarify after further investigation. It seems as if the fault lies not with RenderlistForm, since if I click on 'Preview' button after having edited the form, and I view the created content in the new window that pops up, the RenderListForm displays the content with the style as defined. It is just when I view the 'RenderlistForm' content in a KM navigation iview with layout set 'NewsExplorer' that the style does not seem to be effective.

Similar Messages

  • How to force Portal not to display item content for a custom item

    Hi,
    I've read in several places questions about rendering an Item in a custom way, without letting portal
    display the item content, if you read along I've discovered a SIMPLE WAY to force portal not to
    display the content item.
    As per bugs and requests on metalink it seemed that in many versions of Oracle Portal (mine is 9.0.4.1)
    this is impossible, since even if we remove the "Item Content" from the list of displayed attributes in the
    region, Portal does display it anyway, just after every other Attribute.
    - Re: using an item type procedure
    - Metalink BUG # 3998251 "ENH: SHOULD BE ABLE TO HIDE "ITEM CONTENT" FOR TEXT ITEMS OR NEED A NEW ITEM TYP" and is being looked into internally whether it is feasible to include this in future releases.
    - Metalink Doc ID:      Note:290534.1          Subject:      Unable to Hide the "Item Content" Attribute for a Text Item     
    Mine scenario was the usual one:
    -oracle portal 9.4.0.1
    -a custom item based on custom text (so as to have the RTE to edit HTML).
    -A few attributes that help me define the class of an enclosing DIV tag that I wanted to put (a class and an ID)
    -A plsql call associated to the custom item, with the flag "display inline" checked
    -The dirty HTML generated by the built-in Oracle RTE (with BODY and HTML tags enclosing the actual HTML)
    -The region that will contain the item is set so that just the "Function Call" is (or should be) displayed
    I wanted to control entirely the display of the item text, while enclosing it in a custom DIV tag.
    After a few tries, one of which involved forcing an HTML comment around the item content that Portal stubbornly
    displayed, I've discovered this simple way. I don't know hom much this way is portable, but is done entirely with the APIs.
    In the stored procedure that displays the item, that I encolose, i just do:
    1) retrieved the ITEM querying WWSBR_ALL_ITEMS;
    2) updated the ITEM via WWSBR_API.MODIFY_ITEM, passing as display_otpion the value WWSBR_API.FULL_SCREEN!!
    Here I try a little explanation:
    An item just created has FULLSCREEN=1 and INPLACE=0. This way the stored procedure is executed
    AND the item content is displayed.
    WIth the modify_item, the item gets FULLSCREEN=1 and INPLACE=2 !! This seems strange since the docs
    tells that inplace can be 0 or 1. But this works.
    I've played with the WWV_THINGS table directlry, and setting INPLACE to 0, 2 or 3 works as well, while
    if it is set to 1, it behave the usual way.
    The trick is to have FULLSCREEN to 1 while INPLACE is not set to 1.. and this was the easiest solution.
    I'd like to receive a feedback from Oracle regarding this behaviour.
    Bye
    Walter
    --- This is the procedure ---
    CREATE OR REPLACE PROCEDURE show_item_mod(itemid in varchar2, styleid in varchar2,
         styleclass in varchar2) IS
    html CLOB;
    idx1 number;
    idx2 number := 0;
    item portal.wwsbr_all_items%rowtype;
    BEGIN
         --retrieve item content
         select * into item from portal.wwsbr_all_items where id=itemid;
         html := item.text;
         --check if text body contains "dirty" tags as put by Oracle RTE editor
         --and strips text from <BODY> to </BODY>
         idx1 := instr(html,'<BODY>');
         if(idx1 > 0) then
                   --strip text of broken tags
                   idx2 := instr(html,'</BODY>');
                   html := substr(html,idx1+6,idx2-idx1-6);
         end if;
         --check if this is first time we enter this procedure
         --or if text has changed
         if(item.description is null or idx2 != 0) then
                   --update filename so next time we won't enter the IF branch
                   --update DIPLSAY OPTION to FUllSCREEN
                   --update text, if this was changed
                   idx1 := portal.wwsbr_api.modify_item(
                        p_master_item_id => item.masterid,
    p_item_id => itemid,
    p_caid => item.caid,
    p_folder_id => item.folder_id,
    p_display_name => item.display_name,
    p_region_id => item.folder_region_id,
    p_display_option => portal.WWSBR_API.FULL_SCREEN,
    p_category_id => item.category_id,
    p_category_caid => item.category_caid,
    p_author => item.author,
    --p_description => item.description  ,
    p_keywords => item.keywords ,
    p_text => html ,
    p_folderlink_id => item.folder_link_id ,
    p_folderlink_caid => item.folder_link_caid ,
    p_publish_date => item.publish_date ,
    p_expire_mode => item.expiremode,
    --p_file_filename => 'Changed!',
                        p_description=> 'changed!',
    p_addnewversion => FALSE,
    p_access_level => portal.wwsbr_api.FOLDER_ACCESS
                   -- process cache invalidation messages
              portal.wwpro_api_invalidation.execute_cache_invalidation;
              end if;
         htp.prn('<div ');
         if(styleclass is not null) then
                   htp.prn(' class="' || styleclass || '" ');
         end if;
         if(styleid is not null) then
                   htp.prn(' id="' || styleid || '" ');
         end if;
         htp.prn('>');
         htp.p(html);
         htp.p('</div>');
    END show_item_mod;
    /

    Hi,
    I've read in several places questions about rendering an Item in a custom way, without letting portal
    display the item content, if you read along I've discovered a SIMPLE WAY to force portal not to
    display the content item.
    As per bugs and requests on metalink it seemed that in many versions of Oracle Portal (mine is 9.0.4.1)
    this is impossible, since even if we remove the "Item Content" from the list of displayed attributes in the
    region, Portal does display it anyway, just after every other Attribute.
    - Re: using an item type procedure
    - Metalink BUG # 3998251 "ENH: SHOULD BE ABLE TO HIDE "ITEM CONTENT" FOR TEXT ITEMS OR NEED A NEW ITEM TYP" and is being looked into internally whether it is feasible to include this in future releases.
    - Metalink Doc ID:      Note:290534.1          Subject:      Unable to Hide the "Item Content" Attribute for a Text Item     
    Mine scenario was the usual one:
    -oracle portal 9.4.0.1
    -a custom item based on custom text (so as to have the RTE to edit HTML).
    -A few attributes that help me define the class of an enclosing DIV tag that I wanted to put (a class and an ID)
    -A plsql call associated to the custom item, with the flag "display inline" checked
    -The dirty HTML generated by the built-in Oracle RTE (with BODY and HTML tags enclosing the actual HTML)
    -The region that will contain the item is set so that just the "Function Call" is (or should be) displayed
    I wanted to control entirely the display of the item text, while enclosing it in a custom DIV tag.
    After a few tries, one of which involved forcing an HTML comment around the item content that Portal stubbornly
    displayed, I've discovered this simple way. I don't know hom much this way is portable, but is done entirely with the APIs.
    In the stored procedure that displays the item, that I encolose, i just do:
    1) retrieved the ITEM querying WWSBR_ALL_ITEMS;
    2) updated the ITEM via WWSBR_API.MODIFY_ITEM, passing as display_otpion the value WWSBR_API.FULL_SCREEN!!
    Here I try a little explanation:
    An item just created has FULLSCREEN=1 and INPLACE=0. This way the stored procedure is executed
    AND the item content is displayed.
    WIth the modify_item, the item gets FULLSCREEN=1 and INPLACE=2 !! This seems strange since the docs
    tells that inplace can be 0 or 1. But this works.
    I've played with the WWV_THINGS table directlry, and setting INPLACE to 0, 2 or 3 works as well, while
    if it is set to 1, it behave the usual way.
    The trick is to have FULLSCREEN to 1 while INPLACE is not set to 1.. and this was the easiest solution.
    I'd like to receive a feedback from Oracle regarding this behaviour.
    Bye
    Walter
    --- This is the procedure ---
    CREATE OR REPLACE PROCEDURE show_item_mod(itemid in varchar2, styleid in varchar2,
         styleclass in varchar2) IS
    html CLOB;
    idx1 number;
    idx2 number := 0;
    item portal.wwsbr_all_items%rowtype;
    BEGIN
         --retrieve item content
         select * into item from portal.wwsbr_all_items where id=itemid;
         html := item.text;
         --check if text body contains "dirty" tags as put by Oracle RTE editor
         --and strips text from <BODY> to </BODY>
         idx1 := instr(html,'<BODY>');
         if(idx1 > 0) then
                   --strip text of broken tags
                   idx2 := instr(html,'</BODY>');
                   html := substr(html,idx1+6,idx2-idx1-6);
         end if;
         --check if this is first time we enter this procedure
         --or if text has changed
         if(item.description is null or idx2 != 0) then
                   --update filename so next time we won't enter the IF branch
                   --update DIPLSAY OPTION to FUllSCREEN
                   --update text, if this was changed
                   idx1 := portal.wwsbr_api.modify_item(
                        p_master_item_id => item.masterid,
    p_item_id => itemid,
    p_caid => item.caid,
    p_folder_id => item.folder_id,
    p_display_name => item.display_name,
    p_region_id => item.folder_region_id,
    p_display_option => portal.WWSBR_API.FULL_SCREEN,
    p_category_id => item.category_id,
    p_category_caid => item.category_caid,
    p_author => item.author,
    --p_description => item.description  ,
    p_keywords => item.keywords ,
    p_text => html ,
    p_folderlink_id => item.folder_link_id ,
    p_folderlink_caid => item.folder_link_caid ,
    p_publish_date => item.publish_date ,
    p_expire_mode => item.expiremode,
    --p_file_filename => 'Changed!',
                        p_description=> 'changed!',
    p_addnewversion => FALSE,
    p_access_level => portal.wwsbr_api.FOLDER_ACCESS
                   -- process cache invalidation messages
              portal.wwpro_api_invalidation.execute_cache_invalidation;
              end if;
         htp.prn('<div ');
         if(styleclass is not null) then
                   htp.prn(' class="' || styleclass || '" ');
         end if;
         if(styleid is not null) then
                   htp.prn(' id="' || styleid || '" ');
         end if;
         htp.prn('>');
         htp.p(html);
         htp.p('</div>');
    END show_item_mod;
    /

  • Portal StyleSheet Usage

    We would like to use the Portal styles in our local intranet. We want run the intranet on a separate server but display it embedded within the Portal.
    Does anyone have any suggestions on the best approach on how to use the Portal Stylesheets and apply these to the intranet content?  Any help appreciated.
    Thanks

    Hello Damodhar,
    I think that the "Portal Activity Report" suits your needs:
    http://help.sap.com/saphelp_nw04/helpdata/en/58/728ea01cf64fff996b827f2a06f9b1/frameset.htm
    See also:
    Portal SP9: Portal Activity Report
    and
    SP15: New and Improved Portal Activity Report
    If the standard does not meet your requirements, you can consider development:
    Write your own portal usage statistics tool
    Hope that helps,
    Yoav.

  • Browsers crashing presumably due to evil Flash-based content + updates?!

    I haven't had a problem with flash-based content until a couple days ago, when I installed a bundle of software updates, including 10.5.7. Since then, I have tried to access flash based content, such as pandora internet radio, youtube videos, and the standard view of gmail. On Opera, Safari, and Firefox, (all in which flash-based content worked before) I was left with the spinning rainbow of grief!
    I have disabled the plugins for Shockwave Flash, which allows me to get around but denies me the ability to view videos or listen to music, which frankly is pretty ridiculous. So I proceeded to find some other means for me to have access without the spinning wheel of horror!
    So I uninstalled the Flash 10 that I had, and installed and older Flash version: MAC 9,0,47,0
    Now, I enabled the Shockwave Flash plugin, and I am able to view videos on youtube and google video. However, I am not able to listen to music on Myspace (claims I need the newest version 10), Pandora, or Gmail in standard view. So...the spinning wheel strikes again.
    I am completely frazzled, and have read countless articles, each leading me nowhere, but more frustrated with Apple and their products. I have come to the conclusion that the browser, nor the sites are the problem.
    The problem originates either from Macromedia Flash, OR the Software Update bundle Apple insisted that I install. I have a suspicion it's the latter. I know other people have been having similar problems with their Macbooks.
    I've also noticed that Expose and Spaces are having very sluggish response times.
    I'm looking for a solution, if anyone has found one.
    Here is a recent compilation of my Software Update log:
    2009-06-06 00:41:30 -0700: Installed "iDVD Update" (7.0.3)
    2009-06-06 00:41:59 -0700: Installed "iTunes" (8.1.1)
    2009-06-25 20:35:08 -0700: Installed "Digital Camera Raw Compatibility Update" (2.6)
    2009-06-25 20:35:25 -0700: Installed "AirPort Utility Software Update 2009-002" (5.4.2)
    2009-06-25 20:36:14 -0700: Installed "iTunes" (8.2.0)
    2009-06-25 20:36:19 -0700: Installed "iLife Support" (9.0.3)
    2009-06-25 20:36:37 -0700: Installed "iDVD Update" (7.0.4)
    2009-06-25 20:40:08 -0700: Installed "Mac OS X Update" (10.5.7)
    2009-06-25 20:40:52 -0700: Installed "QuickTime" (7.6.2)
    Here's an enormous list of console messages: [you'll find that there's a lot of "mozilla.firefox Debugger() was called!" As that thing has crashed a million times by now.]
    6/24/09 1:29:39 PM com.apple.launchd[184] ([0x0-0xa40a4].com.apple.Safari[2742]) Exited: Terminated
    6/24/09 1:30:24 PM [0x0-0x20d20d].com.operasoftware.Opera[19455] Unknown argument: -psn02150925
    6/24/09 1:35:58 PM Spotlight[193] [QL ERROR] Generator database update takes too long... we will use what we currently have
    6/24/09 1:36:45 PM quicklookd[29560] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest <a class="jive-link-external-small" href="file://">file://localhost/Users/Saree/Web%20Design/Sowhatout%20copy%20for %20Perez/index.html>'
    6/24/09 1:36:51 PM [0x0-0x10010].com.apple.finder[203] Wed Jun 24 13:36:51 new-host.home Finder[203] <Error>: CGImageCreate: invalid image size: 0 x 0.
    6/24/09 1:43:48 PM com.apple.quicklook[29604] Wed Jun 24 13:43:48 new-host.home quicklookd[29604] <Error>: Corrupt JPEG data: premature end of data segment
    6/24/09 1:43:48 PM com.apple.quicklook[29604]
    6/24/09 1:44:44 PM com.apple.quicklook[29604] Wed Jun 24 13:44:44 new-host.home quicklookd[29604] <Error>: Corrupt JPEG data: premature end of data segment
    6/24/09 1:44:44 PM com.apple.quicklook[29604]
    6/24/09 1:54:40 PM quicklookd[29675] EXCEPTION CPMessageException: (null)
    6/24/09 3:46:27 PM Spotlight[193] /SourceCache/Spotlight/Spotlight-398.25/menu/Application/../Models/MDQueryWorke r.m -[MDQueryWorker startQuery:withFlags:] Can't execute query '(* = "icha*"cdw || kMDItemTextContent = "icha*"cdw)'
    6/24/09 5:21:03 PM com.apple.quicklook[30789] Wed Jun 24 17:21:03 new-host.home quicklookd[30789] <Error>: Corrupt JPEG data: premature end of data segment
    6/24/09 5:21:03 PM com.apple.quicklook[30789]
    6/24/09 5:21:03 PM com.apple.quicklook[30789] Wed Jun 24 17:21:03 new-host.home quicklookd[30789] <Error>: Corrupt JPEG data: premature end of data segment
    6/24/09 5:21:03 PM com.apple.quicklook[30789]
    6/24/09 5:32:42 PM com.apple.launchctl.System[2] fsck_hfs: Volume is journaled. No checking performed.
    6/24/09 5:32:42 PM com.apple.launchctl.System[2] fsck_hfs: Use the -f option to force checking.
    6/24/09 5:32:47 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    6/24/09 5:32:47 PM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    6/24/09 5:32:47 PM com.apple.launchd[1] (org.cups.cups-lpd) Unknown key: SHAuthorizationRight
    6/24/09 5:32:47 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    6/24/09 5:32:47 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    6/24/09 5:32:57 PM org.ntp.ntpd[28] Error : nodename nor servname provided, or not known
    6/24/09 5:32:58 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 7 seconds
    6/24/09 5:32:59 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 6 seconds
    6/24/09 5:33:06 PM com.parallels.desktop.launchdaemon[52] No suitable device found for PVS0.
    6/24/09 5:33:08 PM com.apple.launchd[1] (com.parallels.vm.prl_naptd) Unknown key for boolean: SuccessfulExit
    6/24/09 5:33:09 PM com.parallels.desktop.launchdaemon[52] Configuring en2...
    6/24/09 5:33:09 PM com.parallels.desktop.launchdaemon[52] No System Preferences changes required.
    6/24/09 5:33:09 PM com.parallels.desktop.launchdaemon[52] Configuring en3...
    6/24/09 5:33:09 PM com.parallels.desktop.launchdaemon[52] No System Preferences changes required.
    6/24/09 5:33:21 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[126]) Exited: Terminated
    6/24/09 5:33:21 PM com.apple.launchd[157] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    6/24/09 5:33:52 PM com.apple.SystemStarter[30] Loading VBoxDrv.kext
    6/24/09 5:33:52 PM com.apple.SystemStarter[30] kextload: /Library/Extensions/VBoxDrv.kext loaded successfully
    6/24/09 5:33:52 PM com.apple.SystemStarter[30] Loading VBoxUSB.kext
    6/24/09 5:33:52 PM com.apple.SystemStarter[30] kextload: /Library/Extensions/VBoxUSB.kext loaded successfully
    6/24/09 5:33:52 PM com.apple.SystemStarter[30] Loading VBoxNetFlt.kext
    6/24/09 5:33:53 PM com.apple.SystemStarter[30] kextload: /Library/Extensions/VBoxNetFlt.kext loaded successfully
    6/24/09 5:35:01 PM [0x0-0x17017].org.mozilla.firefox[296] Debugger() was called!
    6/24/09 5:35:07 PM [0x0-0x17017].org.mozilla.firefox[296] Debugger() was called!
    6/24/09 7:42:57 PM Preview[581] [<PVImageElementResizeRep 0x16158920> setNilValueForKey]: could not set nil as the value for the key heightInUnits.
    6/24/09 9:25:05 PM com.apple.launchd[157] (0x10d500.Locum[1146]) Exited: Terminated
    6/25/09 11:33:01 AM com.apple.launchd[1] (org.samba.smbd[316]) Stray process with PGID equal to this dead job: PID 2883 PPID 1 smbd
    6/25/09 11:33:01 AM com.apple.launchd[1] (org.samba.smbd[316]) Stray process with PGID equal to this dead job: PID 317 PPID 1 smbd
    6/25/09 11:33:07 AM com.apple.launchd[1] (org.samba.smbd[2885]) Stray process with PGID equal to this dead job: PID 2886 PPID 1 smbd
    6/25/09 11:33:07 AM com.apple.launchd[1] (org.samba.nmbd) Throttling respawn: Will start in 5 seconds
    6/25/09 5:04:12 PM RealPlayer Downloader[301] WARNING! duplicate matches; bailing
    6/25/09 5:42:32 PM com.apple.launchd[157] ([0x0-0x19019].com.realnetworks.realplayerdownloader[301]) Exited: Terminated
    6/25/09 5:43:50 PM [0x0-0x17017].org.mozilla.firefox[296] firefox-bin(296,0xa0378720) malloc: * mmap(size=12025856) failed (error code=12)
    6/25/09 5:43:50 PM [0x0-0x17017].org.mozilla.firefox[296] * error: can't allocate region
    6/25/09 5:43:50 PM [0x0-0x17017].org.mozilla.firefox[296] * set a breakpoint in mallocerrorbreak to debug
    6/25/09 5:43:50 PM [0x0-0x17017].org.mozilla.firefox[296] firefox-bin(296,0xa0378720) malloc: * mmap(size=12095488) failed (error code=12)
    6/25/09 5:43:50 PM [0x0-0x17017].org.mozilla.firefox[296] * error: can't allocate region
    6/25/09 5:43:50 PM [0x0-0x17017].org.mozilla.firefox[296] * set a breakpoint in mallocerrorbreak to debug
    6/25/09 5:44:02 PM com.apple.launchd[157] ([0x0-0x17017].org.mozilla.firefox[296]) Stray process with PGID equal to this dead job: PID 4223 PPID 1 firefox-bin
    6/25/09 5:44:02 PM com.apple.launchd[157] ([0x0-0x17017].org.mozilla.firefox[296]) Exited with exit code: 1
    6/25/09 5:45:19 PM [0x0-0x17017].org.mozilla.firefox Debugger() was called!
    6/25/09 5:47:14 PM com.apple.launchd[1] (org.samba.smbd[2909]) Stray process with PGID equal to this dead job: PID 2910 PPID 1 smbd
    6/25/09 5:47:19 PM com.apple.launchd[1] (org.samba.nmbd) Throttling respawn: Will start in 6 seconds
    6/25/09 5:49:03 PM [0x0-0xcd0cd].com.operasoftware.Opera[4242] Debugger() was called!
    6/25/09 5:55:10 PM [0x0-0xcd0cd].com.operasoftware.Opera[4242] Unknown argument: -psn0839885
    6/25/09 5:55:50 PM [0x0-0xd20d2].org.mozilla.firefox[4319] Debugger() was called!
    6/25/09 5:56:21 PM com.apple.launchd[157] ([0x0-0xd20d2].org.mozilla.firefox[4319]) Exited: Terminated
    6/25/09 5:56:49 PM [0x0-0xd40d4].org.mozilla.firefox[4326] Debugger() was called!
    6/25/09 5:56:57 PM [0x0-0xd40d4].org.mozilla.firefox[4326] Debugger() was called!
    6/25/09 5:57:09 PM [0x0-0xd40d4].org.mozilla.firefox[4326] Debugger() was called!
    6/25/09 5:57:34 PM com.apple.launchd[157] ([0x0-0xd40d4].org.mozilla.firefox[4326]) Exited: Terminated
    6/25/09 5:58:09 PM [0x0-0xd90d9].org.mozilla.firefox[4346] Debugger() was called!
    6/25/09 5:58:41 PM [0x0-0xda0da].com.apple.Safari[4348] Debugger() was called!
    6/25/09 5:59:51 PM com.apple.launchd[157] ([0x0-0xd90d9].org.mozilla.firefox[4346]) Exited: Terminated
    6/25/09 6:00:16 PM com.apple.launchd[157] ([0x0-0xda0da].com.apple.Safari[4348]) Exited: Terminated
    6/25/09 6:00:58 PM [0x0-0xde0de].org.mozilla.firefox[4380] Debugger() was called!
    6/25/09 6:01:37 PM [0x0-0xde0de].org.mozilla.firefox[4380] Debugger() was called!
    6/25/09 6:01:52 PM [0x0-0xde0de].org.mozilla.firefox[4380] Debugger() was called!
    6/25/09 6:02:02 PM [0x0-0xde0de].org.mozilla.firefox[4380] Debugger() was called!
    6/25/09 6:09:58 PM loginwindow[35] Could not find image named 'NSApplication'.
    6/25/09 6:09:58 PM com.apple.loginwindow[35] 2009-06-25 18:09:58.971 loginwindow[35:20b] Could not find image named 'NSApplication'.
    6/25/09 6:09:58 PM loginwindow[35] Could not find image named 'hgfhfg'.
    6/25/09 6:09:58 PM com.apple.loginwindow[35] 2009-06-25 18:09:58.973 loginwindow[35:20b] Could not find image named 'hgfhfg'.
    6/25/09 6:10:41 PM com.apple.launchd[157] ([0x0-0xde0de].org.mozilla.firefox[4380]) Exited: Terminated
    6/25/09 6:13:31 PM com.apple.launchd[157] ([0x0-0xb00b].com.apple.dock[174]) Stray process with PGID equal to this dead job: PID 3157 PPID 1 DashboardClient
    6/25/09 6:13:33 PM com.apple.loginwindow[35] Shutdown NOW!
    6/25/09 6:13:33 PM com.apple.loginwindow[35] System shutdown time has arrived
    6/25/09 6:13:33 PM com.apple.launchd[1] (com.parallels.desktop.launchdaemon[52]) Stray process with PGID equal to this dead job: PID 152 PPID 1 prldispservice
    6/25/09 6:13:33 PM com.apple.launchd[1] (com.parallels.desktop.launchdaemon[52]) Exited: Terminated
    6/25/09 6:13:33 PM com.apple.SystemStarter[30] Unloading VBoxUSB.kext
    6/25/09 6:13:33 PM com.apple.SystemStarter[30] kextunload: unload id org.virtualbox.kext.VBoxUSB succeeded (any personalities also unloaded)
    6/25/09 6:13:33 PM com.apple.SystemStarter[30] Unloading VBoxNetFlt.kext
    6/25/09 6:13:33 PM com.apple.SystemStarter[30] kextunload: unload id org.virtualbox.kext.VBoxNetFlt succeeded (any personalities also unloaded)
    6/25/09 6:13:33 PM com.apple.SystemStarter[30] Unloading VBoxDrv.kext
    6/25/09 6:13:33 PM com.apple.SystemStarter[30] kextunload: unload id org.virtualbox.kext.VBoxDrv succeeded (any personalities also unloaded)
    6/25/09 6:14:31 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    6/25/09 6:14:31 PM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    6/25/09 6:14:31 PM com.apple.launchd[1] (org.cups.cups-lpd) Unknown key: SHAuthorizationRight
    6/25/09 6:14:31 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    6/25/09 6:14:31 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    6/25/09 6:14:41 PM org.ntp.ntpd[27] Error : nodename nor servname provided, or not known
    6/25/09 6:14:43 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 9 seconds
    6/25/09 6:14:43 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 8 seconds
    6/25/09 6:14:47 PM com.apple.launchd[1] (com.parallels.vm.prl_naptd) Unknown key for boolean: SuccessfulExit
    6/25/09 6:14:48 PM com.apple.SystemStarter[29] Loading VBoxDrv.kext
    6/25/09 6:14:48 PM com.parallels.desktop.launchdaemon[51] Configuring en2...
    6/25/09 6:14:48 PM com.parallels.desktop.launchdaemon[51] No System Preferences changes required.
    6/25/09 6:14:48 PM com.parallels.desktop.launchdaemon[51] Configuring en3...
    6/25/09 6:14:48 PM com.parallels.desktop.launchdaemon[51] No System Preferences changes required.
    6/25/09 6:14:49 PM com.apple.SystemStarter[29] kextload: /Library/Extensions/VBoxDrv.kext loaded successfully
    6/25/09 6:14:49 PM com.apple.SystemStarter[29] Loading VBoxUSB.kext
    6/25/09 6:14:50 PM com.apple.SystemStarter[29] kextload: /Library/Extensions/VBoxUSB.kext loaded successfully
    6/25/09 6:14:50 PM com.apple.SystemStarter[29] Loading VBoxNetFlt.kext
    6/25/09 6:14:50 PM com.apple.SystemStarter[29] kextload: /Library/Extensions/VBoxNetFlt.kext loaded successfully
    6/25/09 6:14:58 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 4 seconds
    6/25/09 6:14:58 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[146]) Exited: Terminated
    6/25/09 6:14:58 PM com.apple.launchd[166] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    6/25/09 6:15:01 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    6/25/09 6:15:01 PM com.apple.launchd[1] (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    6/25/09 6:17:26 PM [0x0-0x16016].org.mozilla.firefox[210] Debugger() was called!
    6/25/09 6:32:54 PM [0x0-0x16016].org.mozilla.firefox[210] Debugger() was called!
    6/25/09 6:32:58 PM [0x0-0x16016].org.mozilla.firefox[210] Debugger() was called!
    6/25/09 6:36:21 PM [0x0-0x16016].org.mozilla.firefox[210] Debugger() was called!
    6/25/09 6:36:57 PM [0x0-0x16016].org.mozilla.firefox[210] Debugger() was called!
    6/25/09 7:30:37 PM com.apple.launchd[166] ([0x0-0x16016].org.mozilla.firefox[210]) Exited: Terminated
    6/25/09 7:31:08 PM [0x0-0x27027].org.mozilla.firefox[321] Debugger() was called!
    6/25/09 7:31:26 PM [0x0-0x27027].org.mozilla.firefox[321] Debugger() was called!
    6/25/09 7:32:09 PM [0x0-0x27027].org.mozilla.firefox[321] Debugger() was called!
    6/25/09 7:33:09 PM [0x0-0x27027].org.mozilla.firefox[321] Debugger() was called!
    6/25/09 7:33:18 PM [0x0-0x27027].org.mozilla.firefox[321] Debugger() was called!
    6/25/09 7:36:01 PM [0x0-0x27027].org.mozilla.firefox[321] Debugger() was called!
    6/25/09 7:36:07 PM [0x0-0x27027].org.mozilla.firefox[321] Debugger() was called!
    6/25/09 7:53:16 PM [0x0-0x27027].org.mozilla.firefox[321] ### MRJPlugin: getPluginBundle() here. ###
    6/25/09 7:53:16 PM [0x0-0x27027].org.mozilla.firefox[321] ### MRJPlugin: CFBundleGetBundleWithIdentifier() succeeded. ###
    6/25/09 7:53:16 PM [0x0-0x27027].org.mozilla.firefox[321] ### MRJPlugin: CFURLGetFSRef() succeeded. ###
    6/25/09 7:53:20 PM [0x0-0x27027].org.mozilla.firefox[321] Thu Jun 25 19:53:20 PDT 2009 JEP creating applet JavaDetector (http://lads.myspace.com/java/)
    6/25/09 7:53:24 PM [0x0-0x27027].org.mozilla.firefox[321] Thu Jun 25 19:53:24 PDT 2009 JEP creating applet com.myspace.uploader2.Uploader2 (http://viewmorepics.myspace.com/)
    6/25/09 8:15:22 PM com.apple.launchd[166] ([0x0-0x27027].org.mozilla.firefox[321]) Exited: Killed
    6/25/09 8:19:49 PM [0x0-0x3e03e].org.mozilla.firefox[516] Debugger() was called!
    6/25/09 8:22:48 PM [0x0-0x3e03e].org.mozilla.firefox[516] firefox-bin(516,0xa0378720) malloc: * mmap(size=15454208) failed (error code=12)
    6/25/09 8:22:48 PM [0x0-0x3e03e].org.mozilla.firefox[516] * error: can't allocate region
    6/25/09 8:22:48 PM [0x0-0x3e03e].org.mozilla.firefox[516] * set a breakpoint in mallocerrorbreak to debug
    6/25/09 8:22:48 PM [0x0-0x3e03e].org.mozilla.firefox[516] firefox-bin(516,0xa0378720) malloc: * mmap(size=15540224) failed (error code=12)
    6/25/09 8:22:48 PM [0x0-0x3e03e].org.mozilla.firefox[516] * error: can't allocate region
    6/25/09 8:22:48 PM [0x0-0x3e03e].org.mozilla.firefox[516] * set a breakpoint in mallocerrorbreak to debug
    6/25/09 8:22:50 PM [0x0-0x3e03e].org.mozilla.firefox[516] firefox-bin(516,0xb08cf000) malloc: * mmap(size=15454208) failed (error code=12)
    6/25/09 8:22:50 PM [0x0-0x3e03e].org.mozilla.firefox[516] * error: can't allocate region
    6/25/09 8:22:50 PM [0x0-0x3e03e].org.mozilla.firefox[516] * set a breakpoint in mallocerrorbreak to debug
    6/25/09 8:23:53 PM com.apple.launchd[166] ([0x0-0x3e03e].org.mozilla.firefox[516]) Stray process with PGID equal to this dead job: PID 539 PPID 1 crashreporter
    6/25/09 8:23:53 PM com.apple.launchd[166] ([0x0-0x3e03e].org.mozilla.firefox[516]) Exited with exit code: 1
    6/25/09 8:24:51 PM [0x0-0x3e03e].org.mozilla.firefox Debugger() was called!
    6/25/09 8:25:12 PM [0x0-0x3e03e].org.mozilla.firefox Debugger() was called!
    6/25/09 8:25:40 PM [0x0-0x45045].com.operasoftware.Opera[545] Debugger() was called!
    6/25/09 8:29:56 PM com.apple.launchd[166] ([0x0-0x45045].com.operasoftware.Opera[545]) Exited: Terminated
    6/25/09 8:30:16 PM [0x0-0x46046].com.apple.Safari[553] Debugger() was called!
    6/25/09 8:31:01 PM com.apple.launchd[1] (com.apple.spindump[562]) Exited abnormally: Segmentation fault
    6/25/09 8:33:24 PM Software Update[587] arguments=(null)
    6/25/09 8:34:19 PM com.apple.launchd[166] ([0x0-0x46046].com.apple.Safari[553]) Exited: Terminated
    6/25/09 8:34:58 PM com.apple.launchd[166] ([0x0-0x4b04b].com.apple.AppleSpell[572]) Exited: Terminated
    6/25/09 8:34:58 PM com.apple.launchd[166] (com.apple.pboard[181]) Exited: Terminated
    6/25/09 8:34:58 PM com.apple.launchd[166] (com.apple.UserEventAgent-Aqua[177]) Exited: Terminated
    6/25/09 8:36:01 PM com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    6/25/09 8:40:05 PM com.apple.launchd[1] (0x10aab0.mdworker[1893]) Exited abnormally: Abort trap
    6/25/09 8:40:05 PM com.apple.launchd[1] (0x10aab0.mdworker) Failed to check-in!
    6/25/09 8:40:09 PM com.apple.launchd[1] (com.apple.ReportCrash[1894]) Exited: Terminated
    6/25/09 8:40:16 PM com.apple.dyld[1892] updatedyld_sharedcache[1892] current cache invalid because /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit has changed
    6/25/09 8:40:24 PM com.apple.dyld[1892] updatedyld_sharedcache[1892] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    6/25/09 8:40:25 PM com.apple.dyld[1892] updatedyld_sharedcache[1892] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    6/25/09 8:40:28 PM com.apple.dyld[1892] updatedyld_sharedcache[1892] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    6/25/09 8:40:28 PM com.apple.dyld[1892] updatedyld_sharedcache[1892] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    6/25/09 8:40:30 PM com.apple.dyld[1892] updatedyld_sharedcache[1892] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    6/25/09 8:40:31 PM com.apple.dyld[1892] updatedyld_sharedcache[1892] for arch=i386 failed: aborting because OS dylib modified during cache creation: /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    6/25/09 8:40:55 PM com.apple.launchd[1] (com.parallels.desktop.launchdaemon[51]) Stray process with PGID equal to this dead job: PID 157 PPID 1 prldispservice
    6/25/09 8:40:55 PM com.apple.launchd[1] (com.parallels.desktop.launchdaemon[51]) Exited: Terminated
    6/25/09 8:40:55 PM com.apple.loginwindow[615] Thu Jun 25 20:40:55 new-host.home ManagedClient[621] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    6/25/09 8:40:55 PM com.apple.loginwindow[615] Thu Jun 25 20:40:55 new-host.home ManagedClient[621] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    6/25/09 8:40:55 PM com.apple.SystemStarter[29] Unloading VBoxUSB.kext
    6/25/09 8:40:55 PM com.apple.SystemStarter[29] kextunload: unload id org.virtualbox.kext.VBoxUSB succeeded (any personalities also unloaded)
    6/25/09 8:40:55 PM com.apple.SystemStarter[29] Unloading VBoxNetFlt.kext
    6/25/09 8:40:55 PM com.apple.SystemStarter[29] kextunload: unload id org.virtualbox.kext.VBoxNetFlt succeeded (any personalities also unloaded)
    6/25/09 8:40:55 PM com.apple.SystemStarter[29] Unloading VBoxDrv.kext
    6/25/09 8:42:45 PM com.apple.launchctl.System[2] BootCacheControl: could not open /var/db/BootCache.playlist:
    6/25/09 8:42:45 PM com.apple.launchctl.System[2] No such file or directory
    6/25/09 8:42:45 PM com.apple.launchctl.System[2] BootCacheControl: could not unlink playlist /var/db/BootCache.playlist: Unknown error: -1
    6/25/09 8:42:46 PM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    6/25/09 8:42:46 PM com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    6/25/09 8:42:46 PM com.apple.launchd[1] (com.apple.usbmuxd) Unknown key for boolean: EnableTransactions
    6/25/09 8:42:46 PM com.apple.launchd[1] (org.cups.cups-lpd) Unknown key: SHAuthorizationRight
    6/25/09 8:42:46 PM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    6/25/09 8:42:46 PM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    6/25/09 8:42:46 PM com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    6/25/09 8:43:04 PM com.apple.su.startup[36] Checking for securityd
    6/25/09 8:43:05 PM com.apple.su.startup[36] Running authsys_printadmin tool
    6/25/09 8:43:06 PM org.ntp.ntpd[29] Error : nodename nor servname provided, or not known
    6/25/09 8:43:06 PM com.apple.su.startup[36] Cleaning up startup script resources
    6/25/09 8:43:29 PM com.parallels.desktop.launchdaemon[56] No suitable device found for PVS1.
    6/25/09 8:43:29 PM com.apple.SystemStarter[34] Loading VBoxDrv.kext
    6/25/09 8:43:30 PM com.apple.SystemStarter[34] kextload: /Library/Extensions/VBoxDrv.kext loaded successfully
    6/25/09 8:43:30 PM com.apple.SystemStarter[34] Loading VBoxUSB.kext
    6/25/09 8:43:30 PM com.apple.SystemStarter[34] kextload: /Library/Extensions/VBoxUSB.kext loaded successfully
    6/25/09 8:43:30 PM com.apple.SystemStarter[34] Loading VBoxNetFlt.kext
    6/25/09 8:43:30 PM com.apple.SystemStarter[34] kextload: /Library/Extensions/VBoxNetFlt.kext loaded successfully
    6/25/09 8:43:31 PM com.apple.launchd[1] (com.parallels.vm.prl_naptd) Unknown key for boolean: SuccessfulExit
    6/25/09 8:43:32 PM com.parallels.desktop.launchdaemon[56] Configuring en2...
    6/25/09 8:43:32 PM com.parallels.desktop.launchdaemon[56] No System Preferences changes required.
    6/25/09 8:43:32 PM com.parallels.desktop.launchdaemon[56] Configuring en3...
    6/25/09 8:43:32 PM com.parallels.desktop.launchdaemon[56] No System Preferences changes required.
    6/25/09 8:47:33 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[191]) Exited: Terminated
    6/25/09 8:47:33 PM com.apple.launchd[336] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    6/25/09 8:47:33 PM com.apple.launchd[336] (org.x.startx) Unknown key for boolean: EnableTransactions
    6/25/09 8:47:38 PM Dock[351] _DESCRegisterDockExtraClient failed 268435459
    6/25/09 9:01:59 PM [0x0-0x16016].org.mozilla.firefox[370] Debugger() was called!
    6/25/09 9:02:13 PM [0x0-0x16016].org.mozilla.firefox[370] Debugger() was called!
    6/25/09 9:07:33 PM [0x0-0x16016].org.mozilla.firefox[370] firefox-bin(370,0xa048c720) malloc: * mmap(size=15220736) failed (error code=12)
    6/25/09 9:07:33 PM [0x0-0x16016].org.mozilla.firefox[370] * error: can't allocate region
    6/25/09 9:07:33 PM [0x0-0x16016].org.mozilla.firefox[370] * set a breakpoint in mallocerrorbreak to debug
    6/25/09 9:07:33 PM [0x0-0x16016].org.mozilla.firefox[370] firefox-bin(370,0xa048c720) malloc: * mmap(size=15310848) failed (error code=12)
    6/25/09 9:07:33 PM [0x0-0x16016].org.mozilla.firefox[370] * error: can't allocate region
    6/25/09 9:07:33 PM [0x0-0x16016].org.mozilla.firefox[370] * set a breakpoint in mallocerrorbreak to debug
    6/25/09 9:07:36 PM com.apple.launchd[336] ([0x0-0x16016].org.mozilla.firefox[370]) Stray process with PGID equal to this dead job: PID 403 PPID 1 crashreporter
    6/25/09 9:07:36 PM com.apple.launchd[336] ([0x0-0x16016].org.mozilla.firefox[370]) Exited with exit code: 1
    6/25/09 9:08:41 PM [0x0-0x16016].org.mozilla.firefox Debugger() was called!
    6/25/09 9:08:51 PM [0x0-0x16016].org.mozilla.firefox Debugger() was called!
    6/25/09 9:09:43 PM [0x0-0x21021].org.mozilla.firefox[421] Debugger() was called!
    6/25/09 9:09:53 PM [0x0-0x21021].org.mozilla.firefox[421] ### MRJPlugin: getPluginBundle() here. ###
    6/25/09 9:09:54 PM [0x0-0x21021].org.mozilla.firefox[421] ### MRJPlugin: CFBundleGetBundleWithIdentifier() succeeded. ###
    6/25/09 9:09:54 PM [0x0-0x21021].org.mozilla.firefox[421] ### MRJPlugin: CFURLGetFSRef() succeeded. ###
    6/25/09 9:09:59 PM [0x0-0x21021].org.mozilla.firefox[421] Thu Jun 25 21:09:59 PDT 2009 JEP creating applet JavaDetector (http://lads.myspace.com/java/)
    6/25/09 9:10:03 PM [0x0-0x21021].org.mozilla.firefox[421] Thu Jun 25 21:10:03 PDT 2009 JEP creating applet com.myspace.uploader2.Uploader2 (http://viewmorepics.myspace.com/)
    6/25/09 9:10:05 PM [0x0-0x21021].org.mozilla.firefox[421] Debugger() was called!
    6/25/09 9:10:27 PM [0x0-0x21021].org.mozilla.firefox[421] Debugger() was called!
    6/25/09 9:10:41 PM [0x0-0x21021].org.mozilla.firefox[421] Debugger() was called!
    6/25/09 9:10:59 PM [0x0-0x21021].org.mozilla.firefox[421] Debugger() was called!
    6/25/09 9:11:26 PM [0x0-0x22022].com.operasoftware.Opera[424] Debugger() was called!
    6/25/09 9:12:18 PM com.apple.launchd[336] ([0x0-0x22022].com.operasoftware.Opera[424]) Exited: Terminated
    6/25/09 9:12:40 PM com.apple.launchd[336] ([0x0-0x21021].org.mozilla.firefox[421]) Exited: Killed
    6/25/09 9:13:06 PM [0x0-0x26026].com.apple.Safari[449] Debugger() was called!
    6/25/09 9:15:35 PM [0x0-0x2b02b].com.operasoftware.Opera[463] Debugger() was called!
    6/25/09 9:21:05 PM [0x0-0x2c02c].org.mozilla.firefox[471] Debugger() was called!
    6/25/09 9:38:04 PM com.apple.launchd[336] ([0x0-0x2c02c].org.mozilla.firefox[471]) Exited: Terminated
    6/25/09 9:38:22 PM com.apple.launchd[336] ([0x0-0x2b02b].com.operasoftware.Opera[463]) Exited: Terminated
    6/25/09 9:38:35 PM com.apple.launchd[336] ([0x0-0x26026].com.apple.Safari[449]) Exited: Terminated
    6/25/09 9:46:38 PM [0x0-0x39039].org.mozilla.firefox[557] Debugger() was called!
    6/25/09 9:46:55 PM com.apple.launchd[336] ([0x0-0x39039].org.mozilla.firefox[557]) Exited: Terminated
    6/25/09 9:55:44 PM [0x0-0x3e03e].org.mozilla.firefox[574] Debugger() was called!
    6/25/09 9:57:33 PM [0x0-0x3e03e].org.mozilla.firefox[574] Debugger() was called!
    6/25/09 9:59:04 PM [0x0-0x3e03e].org.mozilla.firefox[574] Debugger() was called!
    6/25/09 9:59:26 PM [0x0-0x3e03e].org.mozilla.firefox[574] Debugger() was called!
    6/26/09 11:21:26 AM Installer[959] <ZeroSliderSplitView: 0x883ed0>: the delegate <TargetSelectPage: 0x899a00> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:
    6/26/09 11:21:26 AM Installer[959] Split view bounds: {{0, 0}, {402, 104}}
    6/26/09 11:21:26 AM Installer[959] Subview frame: {{0, 0}, {0, 32}}
    6/26/09 11:21:26 AM Installer[959] Subview frame: {{0, 0}, {402, 104}}
    6/26/09 11:21:26 AM Installer[959] The outer edges of the subview frames are supposed to line up with the split view's bounds' edges. NSSplitView is working around the problem, perhaps at the cost of more redrawing. (This message is only logged once per NSSplitView.)
    6/26/09 11:23:00 AM [0x0-0x66066].org.mozilla.firefox[1220] Debugger() was called!
    6/26/09 11:23:07 AM [0x0-0x66066].org.mozilla.firefox[1220] Debugger() was called!
    6/26/09 11:29:21 AM com.apple.launchd[336] ([0x0-0x66066].org.mozilla.firefox[1220]) Exited: Terminated
    6/26/09 11:30:01 AM [0x0-0x6d06d].org.mozilla.firefox[1245] Debugger() was called!
    6/26/09 11:30:35 AM com.apple.launchd[336] ([0x0-0x6d06d].org.mozilla.firefox[1245]) Exited: Terminated
    6/26/09 11:31:16 AM [0x0-0x70070].org.mozilla.firefox[1258] Debugger() was called!
    6/26/09 11:35:40 AM [0x0-0x70070].org.mozilla.firefox[1258] Debugger() was called!
    6/26/09 11:36:06 AM com.apple.launchd[336] ([0x0-0x70070].org.mozilla.firefox[1258]) Exited: Terminated
    6/26/09 11:40:23 AM [0x0-0x73073].com.apple.Safari[1277] Debugger() was called!
    6/26/09 11:42:16 AM com.apple.launchd[336] ([0x0-0x73073].com.apple.Safari[1277]) Exited: Terminated
    6/26/09 11:43:34 AM [0x0-0x76076].org.mozilla.firefox[1295] Debugger() was called!
    6/26/09 11:50:06 AM RealPlayer Downloader[1296] * NSTimer ignoring exception '* -[NSURL initWithString:relativeToURL:]: nil string parameter' that raised during firing of timer with target 0x1375d0 and selector 'shellScriptReaderTimer:'
    6/26/09 3:12:54 PM [0x0-0x76076].org.mozilla.firefox[1295] Debugger() was called!
    6/26/09 3:16:49 PM [0x0-0x76076].org.mozilla.firefox[1295] Debugger() was called!
    6/26/09 3:19:32 PM [0x0-0x76076].org.mozilla.firefox[1295] Debugger() was called!
    6/26/09 3:22:07 PM com.apple.launchd[336] ([0x0-0x76076].org.mozilla.firefox[1295]) Exited: Terminated
    6/26/09 3:27:48 PM [0x0-0x82082].org.mozilla.firefox[1468] Debugger() was called!
    6/26/09 3:31:37 PM [0x0-0x78078].com.apple.Safari[1306] Debugger() was called!
    6/26/09 3:32:19 PM com.apple.launchd[336] ([0x0-0x82082].org.mozilla.firefox[1468]) Exited: Terminated
    6/26/09 4:13:28 PM Finder[354] unlockFocus called too many time.
    6/26/09 4:21:32 PM com.apple.launchd[336] ([0x0-0xa20a2].org.mozilla.firefox[1727]) Exited: Terminated
    6/26/09 6:01:26 PM com.apple.launchd[1] (com.apple.syslogd[13]) Exited abnormally: Segmentation fault
    6/26/09 6:01:28 PM com.apple.launchd[1] (org.samba.smbd[375]) Stray process with PGID equal to this dead job: PID 376 PPID 1 smbd
    6/26/09 6:01:35 PM com.apple.launchd[1] (com.apple.smb.server.preferences) Throttling respawn: Will start in 1 seconds
    6/26/09 6:01:36 PM com.apple.launchd[1] (org.samba.nmbd) Throttling respawn: Will start in 1 seconds
    6/26/09 6:09:07 PM com.apple.launchd[336] ([0x0-0xa50a5].org.mozilla.firefox[1736]) Exited: Terminated
    6/26/09 6:09:10 PM RealPlayer Downloader[1296] * NSTimer ignoring exception '* -[NSURL initWithString:relativeToURL:]: nil string parameter' that raised during firing of timer with target 0x1375d0 and selector 'shellScriptReaderTimer:'
    6/26/09 6:11:15 PM com.apple.launchd[336] ([0x0-0xa90a9].com.operasoftware.Opera[1790]) Exited: Terminated
    6/26/09 6:28:57 PM com.apple.launchd[336] ([0x0-0xad0ad].org.mozilla.firefox[1804]) Exited: Terminated
    6/26/09 6:41:07 PM iCalExternalSync[1858] [ICalExternalSync ]An iCal sync is already running. Another sync will be fired after this one to pick up the new changes.
    6/26/09 6:41:07 PM [0x0-0x13013].com.apple.iCal[362] 2009-06-26 18:41:07.420 iCalExternalSync[1858:10b] [ICalExternalSync ]An iCal sync is already running. Another sync will be fired after this one to pick up the new changes.
    6/26/09 6:42:41 PM Software Update[1867] arguments=(null)
    6/26/09 7:20:40 PM com.apple.launchd[336] ([0x0-0xb10b1].com.operasoftware.Opera[1839]) Exited: Terminated
    6/26/09 9:00:23 PM com.apple.launchd[336] ([0x0-0xbf0bf].org.mozilla.firefox[1941]) Exited: Terminated
    6/26/09 9:00:23 PM com.apple.launchd[336] ([0x0-0xbf0bf].org.mozilla.firefox[1941]) Exited: Terminated

    I'm experiencing the exact same thing. I think the problem here is the 'Debugger() was called!' line in the console. For some inexplicable reason, the production release of the Flash 10 plugin has a debugger call left in it, and so Flash throws to the debugger. The call doesn't seem to be ignored, but the browser just blocks waiting for the return of a debugger that isn't there.
    I'm not sure how Adobe managed to leave this debugger call in the production release of the plugin, nor why the browsers are attempting to throw to the debugger in binaries that are not being run under debugging. I would assume the debugger calls would just be ignored when the app is not being debugged. I'm a developer and I have Xcode installed on my machine, so maybe that has something to do with it.
    So, I don't have a solution. I do remember having this problem before a while ago, for the exact same reason, and at some point it went away. (Presumably when Adobe released a new version of the plugin that removed the debugger call.)
    By the way, I really wish posts on this site that make any reference whatsoever to repairing permissions would be filtered out. You have to wade through a 10:1 ratio of posts for absolutely any problem on this site that excoriate people for not repairing permissions before posting, versus posts with actual useful advice. If they guy above had just read the original post he may have seen what's going on. Instead he just ran a pattern match for 'repair permissions' against the post, didn't see a match, and pasted in his useless boilerplate about repairing permissions.
    http://daringfireball.net/2006/04/repair_permissions
    Message was edited by: codyrobbins

  • EP 7 Portal stylesheet with WD ABAP

    We run a WD WD ABAP application and want to use the EP 7 stylesheet with the iView:
    - we use the WD iView
    - Stylesheet -> ur
    - Supply Portal Stylesheet -> yes
    a) What values are possible for stylesheet. "ur" does not mean anything to me. We have tried our own stylesheet there (value "demo") but it did not show any effect (we got an error).
    b) I have used a personalized stylesheet, but it did not show any effect. the portal layout changed but the WD ABAP not.
    Any idea.

    Thanks for the answer, already a good direction. However it does leave a couple of questions open:
    T1: From your thread Best practice creating an Corporate Design (Layout) with a web dynpro I understand that I can use WDTHEMEROOT with sap_chrome etc.
    A) These are the styles from the WebAS ABAP, right? Means the styles in the MIME repository there.
    B) What do I have to do when I want to use my own style. I have successfully imported a style sheet into the WebAS and used with sap-cssurl. Are there any restrictions where I have to import the css (the path on WebAS) so I can use it with WDTHEMEROOT
    T2: Style sheet of Portal
    I still have the style sheet value in the iView of the portal (value "ur"). I have absolutely no clue, what values I could use there. I can only tell that I have tried to set my own style there which resulted in an error.
    Is there any complete documentation about this topics, besides some SDN posts I did hardly find anything.

  • Webdynpro iView - Supply Portal Stylesheet

    Hi!
    In a webdynpro iView when I try to change the property 'Supply Portal Stylesheet' to 'No' and I save the property don't change.
    Portal 04s SP12
    Can someone help me?
    Regards,
    Matteo

    Hi,
      any news about this topic?
    I have the same problem in my SP12 portal.
    Any suggestion?
    Thank you.
    Regards
       Leonardo

  • Using People Centric BSP without Portal Stylesheet

    Hi,
    we upgraded to CRM 5.0 (WAS 7.00 SP 10). Now we face problems with the company's portal stylesheet with our PC UI applications.
    Has anyone around here an idea how we can use SAP standard stylesheet without modifying our system (for example in CL_HTMLB_CONTENT)?
    Best regards,
    Gerald

    Solved by portal setting (stylesheet as parameter)

  • Is it possible to create a rendition targeted for the web based content viewer?

    The way PDFs render in the web broswer is (presently) pretty bad.
    Can we create a rendition of a Folio which is specifically (and only) for the purpose of being viewed in the web based content viewer?
    Also can we leverage the downloading options in the Folio Producer to yield better results and less lags in rendering? I would like to suggest that Adobe adds some kind of indicator/status-bar which shows remiaing assets still being downloaded. For example, video overlays aren't immediately available.
    Despite these quirks, this new capability is huge and we really appreciate it!
    -Mark
    Mark Kunoff
    Informational Systems Specialist
    IU Communications
    Indiana University Public Affairs and Government Relations
    [email protected]

    It's too bad the selectable text will go away. This will also hamper the web-based views in terms of accessability, correct? - something very important to our stake holders.
    Does Adobe plan to bring these good points of the PDF format back in a future release?
    Thanks for your consistently fast replies Bob!
    -Mark

  • Boot Camp freezing while running Flash-based content

    I recently installed Windows 7 Professional 32 bit on my Boot Camp partition on my 15" MacBook Pro. I had not been running Windows much before applying the latest Boot Camp update (the one that removes the red led from the speaker jack, updates the trackpad, etc), but ever since it was installed I have found that anytime I go to play Flash-based content, particularly videos, my computer comes to a extremely slow performance rate, oftentimes freezing and requiring a hard reboot. This is not always the case; almost every time the computer will unfreeze if I wait long enough. An out of memory error is my best guess about what's happening.
    I was wondering if anyone else experiencing extreme slowness in their computers in regards to the graphics when running Boot Camp, primarily when using Flash-based content - have you encountered this, and does anyone here have any suggestions?
    Thanks to all, Derek

    Flash barely budges the cpu on desktops, it isn't RAM issue at all, more about processor and gpu... oh, and browser somewhat too. Flash runs better on Windows 7 than Mac OS, given the right hardware.
    But you have to install it and other software and drivers yourself.
    There is a Adobe Flash 11 beta2.
    http://www.adobe.com/support/security/

  • Non web-based content in portal

    Hi all,
    Is it possible to run ordrinary windows-applications with a GUI-screen, for example MS Outlook, in or from within the portal?
    If yes: Where can I find out more?
    Regards,
    Sturla

    Hi Jørgen,
    Thanks for the reply.
    I don't know much about the portal, but I attended a couple of cources last fall. Never used the product since then, and I can't remember too much form the cources. My boss keeps asking me questions about the portal, and lucky me told him that I beleived the content had to be web based, like for example Outlook Web Access. He wasn't pleased with my answer, so I keep seraching...
    I came over Citrix MetaFrame Presentation Server . Maybe that coud be the solution(?)
    Regards,
    Sturla

  • Group-based content on the same publisher portlet

    We want to create Publisher portlets which would display content based on the Group-membership of the user. For e.g., A my page will have 2 portlets: Global portlet which will have content visible to all employees. Division portlet which displays division-specific content based on the division the user belongs to; HR group will see HR dept announcements and Finance group will see Finance announcements etc. Similarly there will be groups/user for HR portlet content manager, Finance Content manager etc, All these will be Publisher portlets, htmls, that will be updated periodically by the content managers. Could anyone suggest a good way to implement this?

    Hi,
    you could use Adaptive Tags in your presentation template. You need to know the group ids. This is the relevant section from the docs (http://edocs.bea.com/alui/devdoc/docs60/Portlets/Adaptive_Portlets/Using_Adaptive_Tags/plumtreedevdoc_integration_portlets_adaptive_userspecific.htm):
    Secure Content (User and Group Permissions)
    The pt:standard.choose, pt:standard.when and pt:standard.otherwise tags allow you to insert content on a page based on conditional statements of user and group membership. <pt:standard.choose> denotes the start of a secured content section, and <pt:standard.when> tags include a test condition that defines who has access to the enclosed content. <pt:standard.otherwise> tags include content that should be displayed as default. (In previous versions, this tag was implemented as pt:choose, pt:when and pt:otherwise. This syntax is still supported.)
    The value for the pt:test attribute is case-sensitive. Multiple users or groups should be separated by commas, with semi-colons separating user values from group values. The syntax is as follows:
    <pt:standard.choose xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    *<pt:standard.when pt:test="stringToACLGroup('user=userid1,userid2,...;group=groupid1,groupid2,groupid3;').isMember($currentuser)* xmlns:pt='http://www.Plumtree.com/xmlschemas/ptui/'>
    ... content ...
    </pt:standard.when>
    <pt:standard.otherwise xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    ... default content ...
    </pt:standard.otherwise>
    </pt:standard.choose>
    For example:
    <html><head>
    <pt:standard.choose xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <pt:when pt:test="stringToACLGroup('user=1;').isMember($currentuser)" xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <title>welcome administrator</title></head>
    ... secret administrator content ...
    </pt:standard.when>
    <pt:standard.when pt:test="stringToACLGroup('user=200,201;group=200;').isMember($currentuser)" xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <title>the 200 club</title></head>
    ... content only group 200 or users 200 and 201 can see ...
    </pt:standard.when>
    <pt:standard.otherwise xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <title>everyone else</title></head>
    ... content any user can see ...
    </pt:standard.otherwise>
    </pt:standard.choose>
    </html>
    You can also test if the current user is a guest user (not logged in). Since there can be multiple guest users in the portal, simply testing for default guest user ID 2 does not work.
    <html><head>
    <pt:standard.choose>
    <pt:standard.when pt:test="isGuest($currentuser)">
    ... guest user content ...
    </pt:standard.when>
    <pt:standard.otherwise>
    ... logged in user content ...
    </pt:standard.otherwise>
    </pt:standard.choose>
    </html>

  • Federation Portal Network Impl. - Producer content is error

    Implementing Remote Delta Links(RDL) between Portal Consumer SP17 and BI Portal Producer SP17.
    Have Visual Composer iViews on BI Portal(Producer).
    There are copy iviews,workset to Consumer Portal. The iviews,workset attached to Consumer Portal Role.
    Until before 3 months was running well.
    BUT
    The error occurs in recent times(3 times)
    Errors  happened in the consumer portal content area.
    I try to view the iviews that run on the producer. (The iview works fine on the BI producer portal.) and there is no problems Producer Connection Test, Producer iview copy to Consumer (RDL)
    When the once error occurs and continuously the error occurs.
    Finally,When restart  BI Portal(Producer) Server - very well executed.
    error log summary
    [EXCEPTION]
    com.sap.portal.fpn.exception.base.unchecked.FpnCommunicationException: Could not retrieve the bean / access service to connect with consumer 'EP_PPC_CONSUMER'
    Caused by: com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext. [Root exception is com.sap.engine.interfaces.cross.DestinationException: cannot establish connection with any of the available instances
         Nested exceptions are:
         com.sap.engine.services.rmi_p4.exception.P4BaseIOException: Cannot open connection on host: and port:
    Caused by: com.sap.engine.interfaces.cross.DestinationException: cannot establish connection with any of the available instances
         Nested exceptions are:
         com.sap.engine.services.rmi_p4.exception.P4BaseIOException: Cannot open connection on host: and port:
    [EXCEPTION]
    com.sapportals.portal.prt.runtime.PortalRuntimeException: Unexpected error - Unable to get IView: fpn:EP_PPC_CONSUMER/pcd:portal_content/hkmc/hmc/roles/com.sap.hkmc.portal.fpn.H_BW_TEST/fd_test/com.sap.hkmc.portal.bi.hhr_ws2/bwfd02/com.sap.hkmc.2N8._:HNVB9a8SLMvBmMm8jSFQfQ%3D%3D:1:
    Edited by: ddoari-han on Feb 11, 2010 10:03 AM

    Hi,
    I may be mistaken, but is the copy process not WSRP based, so that the P4 communication only is used when the user really accesses the RDL-copied iView?
    If you 100% sure that your P4 communication between Consumer and Producer is working, you can try to unregister and re-register the FPN connection.
    Or open an OSS to SAP.
    br,
    Tobias

  • When to use the new file based content repository

    In Service Pack 4 there's a new implementation of the CMSPI interfaces which is configured by using the following implementation class:
    com.bea.content.spi.internal.FileSystemRepositoryImpl
    When should one use this new file based repository versus the existing one (configured by using the following class: com.bea.content.spi.internal.RepositoryImpl).
    I've read the edocs, but it doesn't state when to use this new one compared to the previous implementation.
    We consider using a third party content repository, but for the time being we will use the content repository provided by BEA.
    Trond Andersen, Invenia AS, +4798290811

    use the new keyword when you don't have an instance of that object in memory that you want to use.  For example...
    if you have an object already in memory that is holding a property with a "CamelQuery" object, then you can say 
    var query = myobject.Query;
    however, if you have to write the query, or instantiate the object from nothing, then you need to use the "new" keyword.  A good example is SPSite object...
    if you can get a new SPSite object by either "newing one up and passing the URL" or getting the farm and getting a site from that object. 
    using(SPSite site = new SPSite("url to my site"))
    now I can use site.
    //or
    SPSite = myWebApp.Sites[0];
    // this gives you site at index 0 of current webApp
    most of the time in SharePOint you will be using the "new" keyword to open site collections, and then getting your subsites from there. BE CAREFUL using the "new" keyword. If you "new" up an object that is iDisposable... you
    MUST dispose of that, but if you use that same object but it comes from the "current context", you mustn't dispose of it.
    //dispose of this by using statement
    using(SPSite site = new SPSite(<url>))
    //do stuff
    //after this bracket it is disposed.
    //do not dispose of this:
    SPSite mysite = SPContext.Current.Site;
    //unpredictable behavior can occur because you will still need references to your current site.

  • Oracle portal 11g- how to show content of a mounted folder in a page

    Hi there!
    We have installed oracle portal 11g on a server with cent os 5 on it. There is a certain shared folder in our network that we have mounted using autofs in a certain directory, on which every user has permissions of read and write, the contents of which we want to be able to access through a page in our portal. I have set up an alias in http server (Server configuration) to indicate the folder in discussion. However, when I press the link in that page, an error occurs (Forbidden-You are not authorized to see this page). What am I missing???? Is there a special configuration for shared folders in a domain?
    Thanks in advance!

    Hi Vinod,
    You can use cross site publishing feature of SharePoint 2013.
    http://blogs.msdn.com/b/justinvoels/archive/2012/09/24/sharepoint-2013-search-driven-publishing-and-cross_2d00_site-collection-publishing-overview.aspx
    https://technet.microsoft.com/en-us/library/jj635883.aspx
    Alternative to cross-site publishing in SP Online
    https://www.youtube.com/watch?v=chwHhEmIERg
    Best Regards,
    Brij K
    http://bloggerbrij.blogspot.co.uk/

  • Choosing a stylesheet in XSQL based on args

    I'm wondering if it is possible to choose a certain stylesheet
    in a xsql page based on passed arguments. What I am looking to
    do is pass a value of either pdf or html and choose the
    appropriate stylesheet in the xsql page based on this
    arguement. I really don't want to have another layer of
    complexity underneath my page, just the stylesheets.

    Yes, you can by:
    <?xml-stylesheet type="text/xsl" href="{@filename}.xsl"?>
    ...Thanks for the reply. I forgot to mention the reason that I am
    trying to do this is outputs to either pdf or html. My problem
    now is that I don't really want to create a custom serializer
    (for html output) and trying to pass a serializer of null throws
    an error because it cannot be found in my XSQLConfig.xml. Is
    there any way to do an <xsql:if> or <xsql:choose> so that I only
    add a serializer="FOP" to my xml-stylesheet if the {@filename}="pdf"?
    Thanks in advance.

Maybe you are looking for

  • Dynamic documents in ABAP Objects (weblog)

    Hi SDNers, Do you want to implement the following features in ABAP Screens? 1. Large font sizes and more colour options than traditional ABAP/4 (There are some limitations also) 2. ICONS and pictures in different sizes 3. Texts 4. Links 5. Pushbutton

  • Adobe Premiere Pro error when launching software...

    I am getting the following error when launching Adobe Premiere Pro CS6: Adobe Premiere Pro could not find any capable video play modules. Please update your video display  drivers and start again. I checked my drivers and they are up-to-date. I am us

  • Jboss_tomcat - tutorial neede

    helloooo... i have done my accademic project using tomcat...now i am trying to learn ejb...but i dont know how to develop applications with jboss_tomcat...because the directory structure is different.... can any one send me some usefull links to lear

  • Reader X not responding

    I upgraded my machine and my wife's (identical hardware and version of Vista.  My wife's works fine.  Mine is OK on some pdf files, but blanks the Reader window below the window header with documents showing the word SECURED in the file name at the t

  • Regarding Partition Table:Spilt Partition

    Hi ,      I have create one partition table. I did range partitioned on this .original table has 1035 Millions records.      table has data from Jan 2008 to till May.I have create one partition of Jan-2008 to March 2009.      Name is PS_INTRIMDETAIL_