OTN Main page with Javascript Error

Hi,
Please observe that the OTN main page generates these Java script errors when it loads: Perhaps, that is one reason the page load is so slow.
Regards
Flemming G. Jensen
http://otn.oracle.com/
Event thread: onmouseover
Error:
name: ReferenceError
message: Statement on line 1: Reference to undefined variable: No such variable 'popUp'
Backtrace:
In unknown script
popUp("HM_Menu5", event);
At unknown location
{event handler trampoline}
http://otn.oracle.com/
Event thread: onmouseout
Error:
name: ReferenceError
message: Statement on line 1: Reference to undefined variable: No such variable 'popDown'
Backtrace:
In unknown script
popDown("HM_Menu5");
At unknown location
{event handler trampoline}

Thanks for your fast reply.
I am using Windows NT or 2K as OS depending on which machine I working on, and Opera as browser.
http://www.opera.com
In fact, using Opera has also helped me to find several error in my own Javascript code. ;-)
Regards
Flemming G. Jensen

Similar Messages

  • Need to create a menu with subitems similar to OTN main page bar menu

    Hi,
    Using Jdev 11.1.1.5
    I need to create a menu bar with simple sub-items (set of links to other sites or pages) similar to what OTN main page uses.
    The menuBar with subitems shown in the ADF demo site is close but doesn't look like as OTN i.e. set of tab/boxes.
    Link to the ADF demo with menuBar:
    http://jdevadf.oracle.com/adf-richclient-demo/faces/feature/index.jspx?_afrRedirect=3119879384215420#%2Fcomponents%2FmenuBar%2Felectronics.jspx%40%3FAdf-Window-Id%3Dw0
    Not sure which ADF component to use?
    Thanks

    Thanks Shay. I think skinning would be simpler and will make use of the provided components in ADF, but I haven't done any work with skinning but did use CSS so not sure how simple to figure this out.
    Most of the commercial web site uses tabs/boxes as I am trying to do. It will be nice to have ADF component or simple solution.
    Thanks

  • I have Thunderbird 24.5.0. When I double click the desktop item to open it up, it opens immediately, but when I'm in the main page with all the folders on the

    I have Thunderbird 24.5.0. When I double click the desktop item to open it up, it opens immediately, but when I'm in the main page with all the folders on the left & the corresponding email details on the right of that same page, it seems to have problems. Before, when I would highlight a certain box / folder (whether it would b “inbox”, “sent” folder, “trash” folder, or whatever, it takes a good 5 min (minimum) to open that certain folder so I can see the emails of that folder.
    Can u help me determine what is causing this? Just 3 days ago, it was fine.
    Thank you

    What is your anti-virus software?

  • CS6 findchangebuylist with javascript error

    Running Mac OS 10.6.8
    iMac 2.93 GHz Intel Core i7
    4GB 1333 MHz DDR3
    Indesign CS6 8.0.1
    I have created an new page with nothing on it except a text box. I imported paragraph and text styles for a master page templatre created for a catalog I am creating. I created the new page to try and eliminate any issues that may have been cause by opending an document created in CS5.5. I am using the "recordfindchange" script latest version for cs3-cs5 written by Martin Fisher to export the findchange result of my test. Here is an image of the findchange quire:
    I get a java script error when I run the script I created buy copying the "findchangebylist: javascript and txt file, adding the name _SimpleTest to the file names and replaceing Line number 116 in the javascript with this:
    var myFindChangeFile = myFindFile("/FindChangeSupport/findChangeStrings_SimpleTest")
    Here is the error I get:
    I know nothing about javascript. so I am dead in the water. so can someone please help. Is there any issues with CS6 and the findchangebylist script? does "recordfindchange" no longer work with CS6? Could it be a javascript version problem (I just updated to the latest version)?

    Sorry I should have included the entire javascript so you could see exactly whats there. I am calling the correct file and I am not including the .txt extension.
    I'll include the findchange.txt file after the javascript.
    Here it is Javascript:
    //FindChangeByList.jsx
    //An InDesign CS6 JavaScript
    @@@BUILDINFO@@@ "FindChangeByList.jsx" 3.0.0 15 December 2009
    //Loads a series of tab-delimited strings from a text file, then performs a series
    //of find/change operations based on the strings read from the file.
    //The data file is tab-delimited, with carriage returns separating records.
    //The format of each record in the file is:
    //findType<tab>findProperties<tab>changeProperties<tab>findChangeOptions<tab>description
    //Where:
    //<tab> is a tab character
    //findType is "text", "grep", or "glyph" (this sets the type of find/change operation to use).
    //findProperties is a properties record (as text) of the find preferences.
    //changeProperties is a properties record (as text) of the change preferences.
    //findChangeOptions is a properties record (as text) of the find/change options.
    //description is a description of the find/change operation
    //Very simple example:
    //text    {findWhat:"--"}    {changeTo:"^_"}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all double dashes and replace with an em dash.
    //More complex example:
    //text    {findWhat:"^9^9.^9^9"}    {appliedCharacterStyle:"price"}    {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false}    Find $10.00 to $99.99 and apply the character style "price".
    //All InDesign search metacharacters are allowed in the "findWhat" and "changeTo" properties for findTextPreferences and changeTextPreferences.
    //If you enter backslashes in the findWhat property of the findGrepPreferences object, they must be "escaped"
    //as shown in the example below:
    //{findWhat:"\\s+"}
    //For more on InDesign scripting, go to http://www.adobe.com/products/indesign/scripting/index.html
    //or visit the InDesign Scripting User to User forum at http://www.adobeforums.com
    main();
    function main(){
        var myObject;
        //Make certain that user interaction (display of dialogs, etc.) is turned on.
        app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
        if(app.documents.length > 0){
            if(app.selection.length > 0){
                switch(app.selection[0].constructor.name){
                    case "InsertionPoint":
                    case "Character":
                    case "Word":
                    case "TextStyleRange":
                    case "Line":
                    case "Paragraph":
                    case "TextColumn":
                    case "Text":
                    case "Cell":
                    case "Column":
                    case "Row":
                    case "Table":
                        myDisplayDialog();
                        break;
                    default:
                        //Something was selected, but it wasn't a text object, so search the document.
                        myFindChangeByList(app.documents.item(0));
            else{
                //Nothing was selected, so simply search the document.
                myFindChangeByList(app.documents.item(0));
        else{
            alert("No documents are open. Please open a document and try again.");
    function myDisplayDialog(){
        var myObject;
        var myDialog = app.dialogs.add({name:"FindChangeByList"});
        with(myDialog.dialogColumns.add()){
            with(dialogRows.add()){
                with(dialogColumns.add()){
                    staticTexts.add({staticLabel:"Search Range:"});
                var myRangeButtons = radiobuttonGroups.add();
                with(myRangeButtons){
                    radiobuttonControls.add({staticLabel:"Document", checkedState:true});
                    radiobuttonControls.add({staticLabel:"Selected Story"});
                    if(app.selection[0].contents != ""){
                        radiobuttonControls.add({staticLabel:"Selection", checkedState:true});
        var myResult = myDialog.show();
        if(myResult == true){
            switch(myRangeButtons.selectedButton){
                case 0:
                    myObject = app.documents.item(0);
                    break;
                case 1:
                    myObject = app.selection[0].parentStory;
                    break;
                case 2:
                    myObject = app.selection[0];
                    break;
            myDialog.destroy();
            myFindChangeByList(myObject);
        else{
            myDialog.destroy();
    function myFindChangeByList(myObject){
        var myScriptFileName, myFindChangeFile, myFindChangeFileName, myScriptFile, myResult;
        var myFindChangeArray, myFindPreferences, myChangePreferences, myFindLimit, myStory;
        var myStartCharacter, myEndCharacter;
        var myFindChangeFile = myFindFile("/FindChangeSupport/findChangeStrings_SimpleTest")
        if(myFindChangeFile != null){
            myFindChangeFile = File(myFindChangeFile);
            var myResult = myFindChangeFile.open("r", undefined, undefined);
            if(myResult == true){
                //Loop through the find/change operations.
                do{
                    myLine = myFindChangeFile.readln();
                    //Ignore comment lines and blank lines.
                    if((myLine.substring(0,4)=="text")||(myLine.substring(0,4)=="grep")||(myLine.substring(0, 5)=="glyph")){
                        myFindChangeArray = myLine.split("\t");
                        //The first field in the line is the findType string.
                        myFindType = myFindChangeArray[0];
                        //The second field in the line is the FindPreferences string.
                        myFindPreferences = myFindChangeArray[1];
                        //The second field in the line is the ChangePreferences string.
                        myChangePreferences = myFindChangeArray[2];
                        //The fourth field is the range--used only by text find/change.
                        myFindChangeOptions = myFindChangeArray[3];
                        switch(myFindType){
                            case "text":
                                myFindText(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions);
                                break;
                            case "grep":
                                myFindGrep(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions);
                                break;
                            case "glyph":
                                myFindGlyph(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions);
                                break;
                } while(myFindChangeFile.eof == false);
                myFindChangeFile.close();
    function myFindText(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions){
        //Reset the find/change preferences before each search.
        app.changeTextPreferences = NothingEnum.nothing;
        app.findTextPreferences = NothingEnum.nothing;
        var myString = "app.findTextPreferences.properties = "+ myFindPreferences + ";";
        myString += "app.changeTextPreferences.properties = " + myChangePreferences + ";";
        myString += "app.findChangeTextOptions.properties = " + myFindChangeOptions + ";";
        app.doScript(myString, ScriptLanguage.javascript);
        myFoundItems = myObject.changeText();
        //Reset the find/change preferences after each search.
        app.changeTextPreferences = NothingEnum.nothing;
        app.findTextPreferences = NothingEnum.nothing;
    function myFindGrep(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions){
        //Reset the find/change grep preferences before each search.
        app.changeGrepPreferences = NothingEnum.nothing;
        app.findGrepPreferences = NothingEnum.nothing;
        var myString = "app.findGrepPreferences.properties = "+ myFindPreferences + ";";
        myString += "app.changeGrepPreferences.properties = " + myChangePreferences + ";";
        myString += "app.findChangeGrepOptions.properties = " + myFindChangeOptions + ";";
        app.doScript(myString, ScriptLanguage.javascript);
        var myFoundItems = myObject.changeGrep();
        //Reset the find/change grep preferences after each search.
        app.changeGrepPreferences = NothingEnum.nothing;
        app.findGrepPreferences = NothingEnum.nothing;
    function myFindGlyph(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions){
        //Reset the find/change glyph preferences before each search.
        app.changeGlyphPreferences = NothingEnum.nothing;
        app.findGlyphPreferences = NothingEnum.nothing;
        var myString = "app.findGlyphPreferences.properties = "+ myFindPreferences + ";";
        myString += "app.changeGlyphPreferences.properties = " + myChangePreferences + ";";
        myString += "app.findChangeGlyphOptions.properties = " + myFindChangeOptions + ";";
        app.doScript(myString, ScriptLanguage.javascript);
        var myFoundItems = myObject.changeGlyph();
        //Reset the find/change glyph preferences after each search.
        app.changeGlyphPreferences = NothingEnum.nothing;
        app.findGlyphPreferences = NothingEnum.nothing;
    function myFindFile(myFilePath){
        var myScriptFile = myGetScriptPath();
        var myScriptFile = File(myScriptFile);
        var myScriptFolder = myScriptFile.path;
        myFilePath = myScriptFolder + myFilePath;
        if(File(myFilePath).exists == false){
            //Display a dialog.
            myFilePath = File.openDialog("Choose the file containing your find/change list");
        return myFilePath;
    function myGetScriptPath(){
        try{
            myFile = app.activeScript;
        catch(myError){
            myFile = myError.fileName;
        return myFile;
    Here  is the File "findChangeStrings_SimpleTest.txt"
    //FindChangeList.txt
    //A support file for the InDesign CS4 JavaScript FindChangeByList.jsx
    //This data file is tab-delimited, with carriage returns separating records.
    //The format of each record in the file is:
    //findType<tab>findProperties<tab>changeProperties<tab>findChangeOptions<tab>description
    //Where:
    //<tab> is a tab character
    //findType is "text", "grep", or "glyph" (this sets the type of find/change operation to use).
    //findProperties is a properties record (as text) of the find preferences.
    //changeProperties is a properties record (as text) of the change preferences.
    //findChangeOptions is a properties record (as text) of the find/change options.
    //description is a description of the find/change operation
    //Very simple example:
    //text    {findWhat:"--"}    {changeTo:"^_"}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all double dashes and replace with an em dash.
    //More complex example:
    //text    {findWhat:"^9^9.^9^9"}    {appliedCharacterStyle:"price"}    {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false}    Find $10.00 to $99.99 and apply the character style "price".
    //All InDesign search metacharacters are allowed in the "findWhat" and "changeTo" properties for findTextPreferences and changeTextPreferences.
    //If you enter backslashes in the findWhat property of the findGrepPreferences object, they must be "escaped"
    //as shown in the example below:
    //{findWhat:"\\s+"}
    grep    {findWhat:"  +"}    {changeTo:" "}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all double spaces and replace with single spaces.
    grep    {findWhat:"\r "}    {changeTo:"\r"}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all returns followed by a space And replace with single returns.
    grep    {findWhat:" \r"}    {changeTo:"\r"}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all returns followed by a space and replace with single returns.
    grep    {findWhat:"\t\t+"}    {changeTo:"\t"}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all double tab characters and replace with single tab characters.
    grep    {findWhat:"\r\t"}    {changeTo:"\r"}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all returns followed by a tab character and replace with single returns.
    grep    {findWhat:"\t\r"}    {changeTo:"\r"}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all returns followed by a tab character and replace with single returns.
    grep    {findWhat:"\r\r+"}    {changeTo:"\r"}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all double returns and replace with single returns.
    text    {findWhat:" - "}    {changeTo:"^="}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all space-dash-space and replace with an en dash.
    text    {findWhat:"--"}    {changeTo:"^_"}    {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false}    Find all dash-dash and replace with an em dash.
    //The test starts here
    grep    {, findWhat:"\\r\\r.+[:].+\\r"}    {, appliedParagraphStyle:"01-Header"}    {includeLockedStoriesForFind:false, includeLockedLayersForFind:false, includeHiddenLayers:true, includeMasterPages:true, includeFootnotes:true, kanaSensitive:true, widthSensitive:true}    //Comment

  • Create Shopping Page gives Javascript Error - Sun JVM in a DMZ?

    Hi SDN
    We are running on SRM 5.0, with server at 5.5 and we have just implemented SP 11.  Since then, our users running IE with the Sun JVM 1.4.2_10 are getting a JavaScript  error everytime an applet loads on their page (in this case, it is the applet within the Document & Attachments section).  Moreover, our portal is being hosted on an SSL secured server within our DMZ, in conjunction with a Provencia IDS System, Blue Coat hardarware, RadWare, ...etc.
    The only way we can make that page work, is by disabling the Sun JVM and use the MS Version of the JVM.  At that point, no issue with the applet on our SSL Secured Portal.  Even funnier, is that when I'm calling directly the Portal Server (without the SSL proxy), even if i run the Sun JVM, I'm not getting the error. Since we have over 1000 users, it woulde be aimpossible to have all of them making that change... We need to make that work.
    Have you ever experienced something like that?  If yes, what have you done to fix it? Any suggestion, OSS notes
    Thanks in advance
    Eric L.

    I am having almost the same issue.  This is what my java console throws "load: class com.sapportals.portal.epcf.EPCMfactory not found."

  • Safari crashes on just abotu every page - with Javascript

    OK, I know this sounds similar to half a dozen or more other posts, but I've read those, and none of the solutions work. If I have javascript enabled, almost any site I visit will cause Safari to crash. I've filed countless crash reports, but never heard a word. I can open Safari only by loading an empty html file from my desktop. I can access my RSS feeds, since they have no js. Just about every page with js crashes the browser before it even displays. This started happening 2 full days after updating quicktime and my macbook firmware, but they were 2 days of heavy use.
    The problem persists if I use a different account on the same box. The problem persists if I create a new account on the same box. I have cleared all caches and plists AND removed every single plugin. Still no fix. I have ensured that there are no font duplicates in Font Book. Still no joy. I'm not about to reinstall my entire OS to fix a problem with buggy software, especially since I need my computer operating correctly right now. I really want my Safari back, please. Here's a crash report, courtesy of the salon.com home page
    Date/Time: 2006-11-13 19:17:50.138 -0800
    OS Version: 10.4.8 (Build 8L2127)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [85]
    Version: 2.0.4 (419.3)
    Build Version: 2
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 10156
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x951626d8
    Thread 0 Crashed:
    0 com.apple.WebKit 0x951626dc -[WebFrame(WebPrivate) _loadURL:referrer:intoChild:] + 4
    1 com.apple.WebCore 0x95342ac1 KWQKHTMLPart::createPart(khtml::ChildFrame const&, KURL const&, QString const&) + 713
    2 com.apple.WebCore 0x9534250f KHTMLPart::processObjectRequest(khtml::ChildFrame*, KURL const&, QString const&) + 519
    3 com.apple.WebCore 0x95341cd8 KHTMLPart::requestObject(khtml::ChildFrame*, KURL const&, KParts::URLArgs const&) + 1098
    4 com.apple.WebCore 0x953417ca KHTMLPart::requestFrame(khtml::RenderPart*, QString const&, QString const&, QStringList const&, QStringList const&, bool) + 734
    5 com.apple.WebCore 0x95341289 khtml::RenderPartObject::updateWidget() + 3733
    6 com.apple.WebCore 0x9533fd2c DOM::HTMLIFrameElementImpl::attach() + 424
    7 com.apple.WebCore 0x952de2ab KHTMLParser::insertNode(DOM::NodeImpl*, bool) + 2147
    8 com.apple.WebCore 0x952dc2fb KHTMLParser::parseToken(khtml::Token*) + 475
    9 com.apple.WebCore 0x952d9fd4 khtml::HTMLTokenizer::processToken() + 268
    10 com.apple.WebCore 0x952db2ef khtml::HTMLTokenizer::parseTag(khtml::TokenizerString&) + 4851
    11 com.apple.WebCore 0x952d9b74 khtml::HTMLTokenizer::write(khtml::TokenizerString const&, bool) + 776
    12 com.apple.WebCore 0x95328526 DOM::DocumentImpl::write(QString const&) + 146
    13 com.apple.WebCore 0x9532846e DOM::DocumentImpl::write(DOM::DOMString const&) + 44
    14 com.apple.WebCore 0x95328246 KJS::HTMLDocFunction::tryCall(KJS::ExecState*, KJS::Object&, KJS::List const&) + 916
    15 com.apple.WebCore 0x95325909 KJS::DOMFunction::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 65
    16 com.apple.JavaScriptCore 0x95219186 KJS::Object::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 158
    17 com.apple.JavaScriptCore 0x95218135 KJS::FunctionCallNode::evaluate(KJS::ExecState*) + 533
    18 com.apple.JavaScriptCore 0x9521de2c KJS::ExprStatementNode::execute(KJS::ExecState*) + 76
    19 com.apple.JavaScriptCore 0x95217b4f KJS::SourceElementsNode::execute(KJS::ExecState*) + 465
    20 com.apple.JavaScriptCore 0x9521793a KJS::BlockNode::execute(KJS::ExecState*) + 102
    21 com.apple.JavaScriptCore 0x95222fce KJS::IfNode::execute(KJS::ExecState*) + 344
    22 com.apple.JavaScriptCore 0x95217b4f KJS::SourceElementsNode::execute(KJS::ExecState*) + 465
    23 com.apple.JavaScriptCore 0x9521793a KJS::BlockNode::execute(KJS::ExecState*) + 102
    24 com.apple.JavaScriptCore 0x95224887 KJS::DeclaredFunctionImp::execute(KJS::ExecState*) + 45
    25 com.apple.JavaScriptCore 0x952243be KJS::FunctionImp::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 458
    26 com.apple.JavaScriptCore 0x95219186 KJS::Object::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 158
    27 com.apple.JavaScriptCore 0x95218135 KJS::FunctionCallNode::evaluate(KJS::ExecState*) + 533
    28 com.apple.JavaScriptCore 0x9521de2c KJS::ExprStatementNode::execute(KJS::ExecState*) + 76
    29 com.apple.JavaScriptCore 0x95222fce KJS::IfNode::execute(KJS::ExecState*) + 344
    30 com.apple.JavaScriptCore 0x95217a7a KJS::SourceElementsNode::execute(KJS::ExecState*) + 252
    31 com.apple.JavaScriptCore 0x9521793a KJS::BlockNode::execute(KJS::ExecState*) + 102
    32 com.apple.JavaScriptCore 0x95224887 KJS::DeclaredFunctionImp::execute(KJS::ExecState*) + 45
    33 com.apple.JavaScriptCore 0x952243be KJS::FunctionImp::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 458
    34 com.apple.JavaScriptCore 0x95219186 KJS::Object::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 158
    35 com.apple.JavaScriptCore 0x95218135 KJS::FunctionCallNode::evaluate(KJS::ExecState*) + 533
    36 com.apple.JavaScriptCore 0x9521de2c KJS::ExprStatementNode::execute(KJS::ExecState*) + 76
    37 com.apple.JavaScriptCore 0x95217a7a KJS::SourceElementsNode::execute(KJS::ExecState*) + 252
    38 com.apple.JavaScriptCore 0x9521793a KJS::BlockNode::execute(KJS::ExecState*) + 102
    39 com.apple.JavaScriptCore 0x95210f0a KJS::InterpreterImp::evaluate(KJS::UString const&, KJS::Value const&, KJS::UString const&, int) + 1120
    40 com.apple.JavaScriptCore 0x95210991 KJS::Interpreter::evaluate(KJS::UString const&, int, KJS::UString const&, KJS::Value const&) + 63
    41 com.apple.WebCore 0x952f5dd8 KJSProxyImpl::evaluate(QString, int, QString const&, DOM::Node const&) + 234
    42 com.apple.WebCore 0x952f5cd4 KHTMLPart::executeScript(QString, int, DOM::Node const&, QString const&) + 212
    43 com.apple.WebCore 0x952f5a9c khtml::HTMLTokenizer::scriptExecution(QString const&, QString, int) + 456
    44 com.apple.WebCore 0x952f56a7 khtml::HTMLTokenizer::scriptHandler() + 923
    45 com.apple.WebCore 0x952ec01d khtml::HTMLTokenizer::parseSpecial(khtml::TokenizerString&) + 71
    46 com.apple.WebCore 0x952db42f khtml::HTMLTokenizer::parseTag(khtml::TokenizerString&) + 5171
    47 com.apple.WebCore 0x952d9b74 khtml::HTMLTokenizer::write(khtml::TokenizerString const&, bool) + 776
    48 com.apple.WebCore 0x953239a8 khtml::HTMLTokenizer::notifyFinished(khtml::CachedObject*) + 370
    49 com.apple.WebCore 0x9532380d khtml::CachedScript::checkNotify() + 61
    50 com.apple.WebCore 0x953237a6 khtml::CachedScript::data(QBuffer&, bool) + 250
    51 com.apple.WebCore 0x952fb5d9 khtml::Loader::slotFinished(KIO::Job*, NSData*) + 419
    52 com.apple.WebCore 0x95445f59 KWQSignal::callWithData(KIO::Job*, NSData*) const + 115
    53 com.apple.WebCore 0x952fb425 KIO::TransferJob::emitResult(NSData*) + 37
    54 com.apple.WebCore 0x952fb3d0 -[KWQResourceLoader finishJobAndHandle:] + 76
    55 com.apple.WebKit 0x951301aa -[WebSubresourceClient didFinishLoading] + 78
    56 com.apple.WebKit 0x9512f2f1 -[WebBaseResourceHandleDelegate connectionDidFinishLoading:] + 40
    57 com.apple.Foundation 0x9265be00 -[NSURLConnection(NSURLConnectionInternal) _sendDidFinishLoadingCallback] + 176
    58 com.apple.Foundation 0x92659ea5 -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 748
    59 com.apple.Foundation 0x92659b41 _sendCallbacks + 201
    60 com.apple.CoreFoundation 0x90828379 CFRunLoopRunSpecific + 1213
    61 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    62 com.apple.HIToolbox 0x92dcdb90 RunCurrentEventLoopInMode + 285
    63 com.apple.HIToolbox 0x92dcd297 ReceiveNextEventCommon + 385
    64 com.apple.HIToolbox 0x92dcd0ee BlockUntilNextEventMatchingListInMode + 81
    65 com.apple.AppKit 0x9326f465 _DPSNextEvent + 572
    66 com.apple.AppKit 0x9326f056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    67 com.apple.Safari 0x00006f96 0x1000 + 24470
    68 com.apple.AppKit 0x93268ddb -[NSApplication run] + 512
    69 com.apple.AppKit 0x9325cd2f NSApplicationMain + 573
    70 com.apple.Safari 0x0005f7de 0x1000 + 387038
    71 com.apple.Safari 0x0005f6f9 0x1000 + 386809
    Thread 1:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.unsanity.ape 0xc0001d12 _apeagent + 307
    2 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9262adc6 -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x9262acc2 -[NSRunLoop run] + 75
    5 com.apple.WebKit 0x95117451 +[WebFileDatabase _syncLoop:] + 198
    6 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9262aa9b +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92651c4e +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90024427 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9264b2f8 -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x9a49f052 -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90019d3c select + 12
    1 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.audio.CoreAudio 0x9145b8da HALRunLoop::OwnThread(void*) + 158
    4 com.apple.audio.CoreAudio 0x9145b6f5 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x951626d8 ebx: 0x95159f06 ecx: 0xa0a51183 edx: 0x00000001
    edi: 0x161f8b10 esi: 0x17e2b730 ebp: 0xbfffc018 esp: 0xbfffbfcc
    ss: 0x0000001f efl: 0x00010286 eip: 0x951626dc cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0xdefff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x16089000 - 0x1608afff com.apple.textencoding.unicode 2.1 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1900b000 - 0x1951ffff com.macromedia.Flash Player.plugin 9.0.0 (1.0.4f20) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1aca2000 - 0x1aca7fff com.apple.audio.AppleHDAHALPlugIn 1.2.4 (1.2.4a21) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x70000000 - 0x7010bfff com.apple.audio.units.Components 1.4.3 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe49fff dyld 46.9 /usr/lib/dyld
    0x90000000 - 0x9016ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901bf000 - 0x901c1fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c3000 - 0x901fffff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90226000 - 0x902fbfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031b000 - 0x9076ffff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90806000 - 0x908cefff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9090c000 - 0x9090cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9090e000 - 0x90a01fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a51000 - 0x90ad0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90af9000 - 0x90b5dfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bcc000 - 0x90bd3fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bd8000 - 0x90c4bfff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c60000 - 0x90c72fff libauto.dylib /usr/lib/libauto.dylib
    0x90c78000 - 0x90f1efff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f61000 - 0x90fc9fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91001000 - 0x9103ffff com.apple.CFNetwork 129.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91052000 - 0x91062fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9106d000 - 0x910ebfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91120000 - 0x9113efff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9114a000 - 0x91158fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9115b000 - 0x912fafff com.apple.security 4.5.1 (29002) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913f8000 - 0x91400fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91407000 - 0x9142dfff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9143f000 - 0x91446fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9144a000 - 0x914c3fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91511000 - 0x91511fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91513000 - 0x9153efff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91625fff com.apple.ColorSync 4.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91660000 - 0x916ddfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170a000 - 0x917b3fff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917d9000 - 0x91824fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91843000 - 0x91859fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91865000 - 0x9187ffff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91889000 - 0x918c6fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918da000 - 0x918e6fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918ed000 - 0x91928fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193a000 - 0x919ecfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a32000 - 0x91a48fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a4d000 - 0x91a6bfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a70000 - 0x91acefff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae0000 - 0x91ae4fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ae6000 - 0x91b63fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b67000 - 0x91ba4fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91baa000 - 0x91bc4fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bc9000 - 0x91bcbfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bcd000 - 0x91bcdfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91bcf000 - 0x91c5dfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c64000 - 0x91c64fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91c66000 - 0x91cbffff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91cc8000 - 0x91cecfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cf4000 - 0x920fdfff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92137000 - 0x924ebfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92518000 - 0x9259cfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x925d8000 - 0x92808fff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92914000 - 0x929f2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92a0f000 - 0x92afcfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b0c000 - 0x92b23fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b2e000 - 0x92b86fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b9a000 - 0x92b9afff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92b9c000 - 0x92bacfff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bba000 - 0x92bc2fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bc8000 - 0x92bcdfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bd3000 - 0x92c64fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c78000 - 0x92c7bfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c7e000 - 0x92c9bfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cab000 - 0x92cb1fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cb7000 - 0x92d1afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d3e000 - 0x92d7ffff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92da6000 - 0x92db3fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dba000 - 0x92dbffff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dc4000 - 0x930b6fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931bb000 - 0x931c6fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931cb000 - 0x931e6fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93256000 - 0x93256fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93258000 - 0x9390efff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c8f000 - 0x93d09fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d42000 - 0x93e03fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e43000 - 0x93e43fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e45000 - 0x94017fff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94068000 - 0x940a9fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x940b1000 - 0x940ebfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94179000 - 0x941b7fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941fb000 - 0x9420bfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94218000 - 0x94255fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94271000 - 0x94280fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94287000 - 0x94292fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942de000 - 0x942f8fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942fe000 - 0x945b7fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94718000 - 0x94861fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x948ed000 - 0x948fcfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94903000 - 0x9492cfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94932000 - 0x94941fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94945000 - 0x94969fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94975000 - 0x94992fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95115000 - 0x951a8fff com.apple.WebKit 418.9 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95202000 - 0x95284fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x952b7000 - 0x95596fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95715000 - 0x95738fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x969f2000 - 0x969f2fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x973d3000 - 0x973e7fff com.apple.audio.CoreAudioKit 1.0.1 /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x9a49c000 - 0x9a4d3fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a4ef000 - 0x9a501fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0xc0000000 - 0xc000efff com.unsanity.ape 2.0.1 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: MacBook1,1, BootROM MB11.005F.B00, 2 processors, Intel Core Duo, 2 GHz, 2 GB
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x86), 0.1.27
    Bluetooth: Version 1.7.9f12, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Parallels Host-Guest Adapter, Ethernet, en2
    Serial ATA Device: ST9120821AS, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA

    Hi
    just to be certain here - you removed all the plug-ins - even the Flash ones?
    I would try downloading and applying the OS X 10.4.8 Combo Update (Intel). This is a near 300MB download, but the combo updates often cure unusual problems like yours,.

  • Desktop create fails with javascript error (unable to proceed)

    When creating a new desktop from a portal template the action fails and the only error I can find is a javascript error.
    The error in the browser when trying to create a new desktop from the portal.
    <b>Error: unterminated string literal</b>
    Source File: http://localhost:7001/FoundationAppAdmin/portal.portal
    Line: 2710, Column: 28
    Source Code:
    ror(s) occurred during XmlDisassemblerContext parsing: Parser Error...
    That corresponds to this code in the web page source in the portal admin tool.
    function showUserErrorMessages() {
    alert(unEscapeChars("- Error: The desktop could not be disassembled. [com.bea.netuix.application.transform.disassembler.XmlDisassemblerException: com.bea.netuix.application.transform.disassembler.XmlDisassemblerException: One or more validation error(s) occurred during XmlDisassemblerContext parsing: Parser Error...
    org.xml.sax.SAXParseException: cvc-complex-type.3.2.2: Attribute 'columns' is not allowed to appear in element 'netuix:layout'.
    Parser Error...
    org.xml.sax.SAXParseException: cvc-complex-type.3.2.2: Attribute 'columns' is not allowed to appear in element 'netuix:layout'.
    Parser Error...
    org.xml.sax.SAXParseException: Duplicate unique value [ID Value:  bEarn] declared for identity constraint of element "desktop".
    Parser Error...
    org.xml.sax.SAXParseException: cvc-complex-type.3.2.2: Attribute 'columns' is not allowed to appear in element 'netuix:layout'.
    Parser Error...
    org.xml.sax.SAXParseException: cvc-complex-type.3.2.2: Attribute 'columns' is not allowed to appear in element 'netuix:layout'.
    Message was edited by:
    dallastx

    When creating the desktop from a .portal file in the admin tools, the .portal file is parsed and validated before persisting to the database. It looks like this is failing and you are getting some fairly straight-forward messages. Check the format of the contents in the .portal file and make the necessary corrections.

  • Delete blank page with javascript

    Hi,
    I have some pages in a Indesign CS3 document and want to delete few pages which are blank page(nothing text frame, graphic) with javascript. Anyone can help?
    Thanks,
    MatthewChau

    var doc=app.documents[0];
    var pag=doc.pages;
    for(var i=pag.length-1; i>=0; i--){
        if(pag[i].pageItems.length==0&&pag[i].guides.length==0){
            pag[i].remove();
    if page items and guides are not exist, pages will be deleted.
    more difficult matter?

  • Flash movie inside page with Javascript ?

    I have a client who is looking for the same effect for his
    homepage. After looking at the page source of the example
    Link is here
    It looks like the page was done with javascript. Can someone
    point me in the right direction?
    rdee

    Hello,
    It looks like the entire page is in Flash. I would suggest
    using Jquery which is a javascript plugin that can achieve similar
    results. One really good example is Galleria:
    http://devkick.com/lab/galleria/
    http://jquery.com/
    Also, js doesnt slow down the server like Flash and is also
    search engine friendly. Good luck!
    Sean Colicchio
    Server Engineer
    Host My Site
    http://www.hostmysite.com/?utm_source=bb

  • Help with Javascript error in event handler slowing animation down.

    Hi all--
    I did an animated book cover for my publisher, Baen Books, but an error keeps coming up in my animation.  The actual animating can be viewed here:
    http://baen.com/310x204/A_CallToDuty.html
    As you can see, when the error pops up, the animation grinds to a halt, an it has to recover.  I am not well enough versed in javascript to know what is going on. The error code below repeats over and over again as it plays.
    6Javascript error in event handler! Event Type = timeline edge.3.0.0.min.js:171
    3
    <error> VM26:184
    Javascript error in event handler! Event Type = timeline edge.3.0.0.min.js:1714Javascript error in event handler! Event Type = timeline edge.3.0.0.min.js:1713
    <error>
    If anyone has an idea what is causing this, I would be extremely grateful for  any help.
    David Mattingly

    Hi Hemanth--
    I put it in a dropbox folder for you here:
    Dropbox - EdgeAnimation
    This contains 2 versions--a small one for the preview, and then a larger one when people click on the cover preview. Thanks in advance for your help.\
    David Mattingly

  • Document library, List content does not load in certain computers with Javascript error in status bar. Any solution?

    Hi All,
    The document library, list, discussion board contents are not loading only in certain computers.  Javascript error also appears in status bar.  How to resolve it? any suggestions?

    Hi,
    Do you have any updates?
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Best way to set up slideshow on main page with auto start & fading??

    I would like to build a main page that has 3/4 of the page a photo slideshow. I want the photos to fade in and out and for it to auto start. I saw a website like this but it kept my computer humming along the whole time. http://www.paragoncustom.com/  What would be the best way to do this so that it does not do that?? Also since this will be the opening page to website, it needs to be able be seen on most everyones computers.
    Any help would be greatly appricatied!!
    I am a convert from GoLive to Dreamweaver. This will be my first site built in Dreamweaver.

    57 Free Lightbox, jQuery or Ajax slideshow solutions
    http://www.1stwebdesigner.com/resources/57-free-image-gallery-slideshow-and-lightbox-solut ions/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • "My Yahoo" page loads up as a blank white page, with no error messages or anything. Any ideas why?

    I started a thread on this topic many months ago, and have yet to see any reply for support for this topic. The issue I have had now for over 6 months is that Firefox will not load my "My Yahoo" page at all. I get no error messages or anything, just a blank, white screen when I try to load it. I can load this same page in IE as well as Chrome, but I much prefer to use Firefox if I can. I did follow all of the instructions and ideas that are out on the forum for handling similar problems such as this, but with no success. Clear Cache, History, etc, as well as disabling Add-Ons, restarting, etc, as well as setting proxy settings to No Proxy, etc, etc. Does anyone have ideas ideas as to why Firefox is no longer able to load "My Yahoo" page, but I am able to load things like my Yahoo Mail page successfully? Thank you in advance for any ideas anyone has on this.

    Firstly, a heartfelt "Thank You" for the prompt reply. I have gone through the steps you outlined above in the past, with no success, but I did them again just to be certain. One other thing that took place since posted this a few days ago, is that I "Updated Firefox, to 9.0.1 and after I did that, then Firefox would not even load at all. I kept getting a Firefox has crashed pop up, etc. So I figured before I could go through the steps you outlined above, I needed to "Uninstall and Reinstall" Firefox once again. I did this, and loaded the Yahoo Optimized version since apparently the generic version of Firefox, 9.0.1 must have some bugs that did not allow it to load up on my computer. After reloaded Firefox, I proceeded to go through the steps you have outlined above, and as typical, I still have the same problem, even in Safe Mode. My Yahoo comes up as a Blank White Page... no error messages or anything, just a blank white page. Since I have posted this I have been forced to use Google Chrome, and I really hate using that browser, but I don't know what else to do here. Any other ideas please? Thank you once again.
    Note: Even as I am typing this Firefox is coming up with a pop up window, suggesting I update to version 9.0.1 since it is a security and stability update. However I won't do this, because the last time I did, Firefox would not load at all.

  • Cannot change password on LPM page with syntax error / AD2008

    Hi,
    In the Lost password Management page, user are prompt to change the password by input the old and new password.
    Identity/oblix/apps/lost_pwd_mgmt/bin/lost_pwd_mgmt.cgi?
    After type in the new password and click save the following error shows:
    "The Directory Server password syntax was violated. The password cannot be changed"
    Using AD2008 with ADSI security mode. OAM 10.1.4.3.0 BP03 on all components. Any idea on the above error?
    Appreciated for any feedback.
    Thanks

    Hi,
    The error message means that AD is not accepting the value for the new password. Usually that means that there is a password policy in AD itself (perhaps which requires 1 upper case letter, 2 non-alphanumeric characters etc) which is causing the value to be rejected. If that is the case, you could match OAM's password policy to be as close as possible to AD's (so that OAM can do the validation before sending it off to AD).
    Regards,
    Colin

  • Losing data on a tabular form when submitting a page with validation errors

    I have a window that has a regular HTML form at the top that has several items. Then on the bottom of the page, I have a tabular form where the user can enter multiple rows of information. Unfortunately, when the page is submitted, if there are any validation errors, any changes that were made in the tabular form are lost.
    Any suggestions

    Fair enough :)
    Actually what I was meaning was could I use a collection to repopulate the tabular form when I receive errors. It appears as if it may work. However, I am hitting one snag.
    I have created a PL/SQL Process that runs On Submit and Before Computations/Validations. In this process, I have saving the values in the tabular form to a collection.
    I was then hoping to create another process that ran after any errors occur. However, it does not appear as if any processes run when the screen redraws after a validation issue. Is there a process that runs after validations when the screen is redrawing? Will I need to do this using javascript?
    Thanks

Maybe you are looking for