A orion plugin to enable a private git repository

Hi,
I need to build an application flow using orion plugins. I have several plugins to deploy on my application. So I need some help.
Here is the statement :
When Editing a user file, I want a plugin that saves the content of the editor and check it in into a dedicated git hub repository. So the plugin just have several informations to do the work like the address of the dedicated git, the name of the user and his password.
Please I want any help. I want any tip, if it exist a orion plugin which do the same or a similar job tell me please.
Thanks!

post this question in the Orion forum or on the Orion mailing list
https://www.eclipse.org/forums/index.php/f/227/
https://dev.eclipse.org/mailman/listinfo/orion-dev

Similar Messages

  • JRE 1.3.1 Plugin not enabled in Netscape 4.78 on Solaris 8

    I have a Sun Sparc running Solaris 8 Rel 1/01 with JRE 1.3.1 and Netscape 4.78. I set NPX_PLUGIN_PATH to /usr/j2se/jre/plugin/sparc/ns4:$MOZILLA_HOME/plugins. When I look at "about:plugins" in Netscape, I see the "Java (TM) Plug-in 1.3.1" but none of the plugins are Enabled. Any ideas???

    Hi,
    Was there any workarounds for this problem?
    I am facing the same with Netscape 4.78 & 4.79 on Solaris with Java plugin 1.3.1
    Any workarounds/soultions?
    I have a Sun Sparc running Solaris 8 Rel 1/01 with JRE
    1.3.1 and Netscape 4.78. I set NPX_PLUGIN_PATH to
    /usr/j2se/jre/plugin/sparc/ns4:$MOZILLA_HOME/plugins.
    When I look at "about:plugins" in Netscape, I see the
    "Java (TM) Plug-in 1.3.1" but none of the plugins are
    Enabled. Any ideas???

  • Feature Request: a way to retrieve accurate plugin disable/enable state

    As it stands, LrEnablePlugin file is executed when plugin goes from disabled to enabled, and LrDisablePlugin is executed when plugin goes from enabled to disabled. Unfortunately its really hard to glean useful information because:
    plugin will go from enabled to disabled then back to enabled when new metadata is added and such stuff, and there is no way to tell whether plugin is enabled or disabled after a reload, since neither module is executed unless there is a change.
    It would be useful to me to be able to simply read an accurate status: enabled or disabled.
    Also, if Lr needs to disable for a moment to add metadata, I'd rather have the state not reflect the temporary disablement, unless reenabling fails and it becomes permanently disabled, or better still, have it reflect the temporary-ness of the disabled state, so maybe these states:
    disabled permanently
    disabled temporarily (e.g. to add metadata)
    enabled permanently
    enabled temporarily - for case when user attempts to enable but catalog neds updating, in which case if update fails it will be re-disabled.
    If this is too much, at least a minimal improvement could be had by simply having LrEnablePlugin and LrDisablePlugin not be called when Lightroom disables/enables for the sake of metadata / catalog updating, so they're only called when user clicks the buttons. This would not be as useful as accurate live status, but at least would eliminate disable / enable actions that assume the user did something he/she did not...

    HI Matt,
    Sorry - it was late...
    Anyway, I think you've got the jest of it. To help clarify further:
    There are two issues with the way things are enable/disable-wise:
    1.  there is no way for a plugin to tell if it is enabled or disabled.
    Here's a cut from the framework:
    --- Determine if plugin is enabled.
    --  @usage      Note: do not depend on this reporting correctly, since default value for 'enabled' is true
    --              even when plugin is disabled. Its only correct after plugin goes from enabled to disabled or vice versa after init...
    function App:isPluginEnabled()
        local ena = rawget( _G, 'enabled' )
        assert( ena ~= nil, "no ena" )
        return ena
    end
    2. The enabled / disabled modules are executed upon temporary disablement / reenablement as well as the more permanent flavor, so they cant really be used to prompt the user, or multiple confusing prompts get issued when the state is bouncing around...
    As usual, I'd like to see this improved in the next version, but I'm also open to suggestions for working around it in the mean time...
    PS - I just thought of a work-around for the first issue (which primarily arises in plugins that access plugin metadata) - just try and get a known-to-be-defined metadata item - iff successful, then the plugin is enabled.
    So, a possible solution:
    1. Have a readable (and preferrably writable too) enable/disable state that accurately reflects right-now enable / disable state - even if temporary.
    2. The ability to determine root cause of disablement, e.g. "temp-for-catalog-update", "permanent-since-catalog-update-failed", "user-initiated", ... I can imagine root cause for enablement to be useful too...
    *** UPDATE: Modified method:
    --- Determine if metadata-supporting plugin is enabled.
    --  @param      name (string, default dummy_) name of alternative plugin metadata item (property) to be used.
    --  @param      photo (lr-photo, default 1st photo of all) photo to use to check.
    --  @usage      This method presently only works when a metadata item is defined. Maybe one day it will also work even with no plugin metadata defined.
    --  @usage      Only works from an async task.
    --  @return     enabled (boolean) true iff enabled. Throws error if not called from async task.
    function App:isPluginEnabled( name, photo )
        assert( catalog, "No catalog." )
        name = name or 'dummy_' -- cant start with underscore.
        photo = photo or catalog:getAllPhotos()[1] -- getting all-photos takes ~16msec.
        assert( photo, "No photo." )
        local _dummy, msg = photo:getPropertyForPlugin( _PLUGIN, name, nil, true ) -- nil version, no-throw.
        if msg == nil then -- msg is nil if property defined and plugin enabled, even if property value is nil.
            return true
        else
            return false, msg
        end
        --local ena = rawget( _G, 'enabled' )
        --assert( ena ~= nil, "no ena" )
        --return ena
    end
    Rob

  • Plugins not Enabled

    In the Plugin Manger the list of plugins that are available are greyed out but they are enabled. See screenshot.      If i attempt to use an export or publish plugin, the enabled plugins do not show up as an option for that task.
    If i enable a plugin that is disbaled, i get the following error.
    No idea what the reference to the upper right section means either. 
    When i click OK, i get the following error:
    Anyone have any idea?

    This sounds like quite a complicated setup that you try to achieve.
    I don't know if there is someone around here that has the background and expertise to provide you with this information.
    Note that the correct name is extensions.autoDisableScopes (see bug Bug 666437 and Bug 693698) and that this pref only has effect for extensions and not for plugins.<br />
    Plugins are always found via a scan in known locations.
    *https://developer.mozilla.org/Gecko_Plugin_API_Reference/Plug-in_Basics#How_Gecko_Finds_Plug-ins
    To initialize prefs it is best to do this via a mozilla.cfg file or via means like distribution.ini.
    *http://mike.kaply.com/2012/03/26/customizing-firefox-distribution-ini/
    *http://mike.kaply.com/2012/03/16/customizing-firefox-autoconfig-files/
    http://mike.kaply.com/2012/02/09/integrating-add-ons-into-firefox/
    See also:
    *CCK2 Wizard: https://addons.mozilla.org/firefox/addon/cck2wizard/
    There is no need to include prefs like these that have an epoch time string as those will be created automatically when required (1273520281 is May 10 2010, so that is really old)
    This value also makes no sense as it should be a time in seconds (the default of 43200 would be twice a day 86400/2)
    *defaultPref("app.update.interval", 1273520281);
    The CAPS prefs (capability.policy.*) are probably no longer supported and won't have effect, so you may want to reconsider which prefs that you really want to initialize.

  • Plugins are enabled and still showing as disabled in the "troubleshooting information" page

    as explained in the question itself...all my plugins are enabled however in the "troubleshooting page" its showing as "false" under the "enabled" section of the "Extensions" topic.
    this in turn i believe is not allowing me to view any online streaming videos which require adobe flash or shockwave player.
    Also i am not able to install any of the versions of the adobe flash player.
    Whenever i try the installation shows timeout at 7% and interrupts!
    Please kindly help!!

    You only see extension on the Help > Troubleshooting Information page.
    *https://support.mozilla.org/kb/Using+the+Troubleshooting+Information+page
    Your system details list shows that you have an old Shockwave Flash 10.0 r45 version that you need to remove (uninstall).
    * http://kb.mozillazine.org/Issues_related_to_plugins#Identifying_installed_plugins
    See:
    * http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html
    You can find the 32 bit version of the Flash Player installer for a 32 bit Firefox version here (scroll down to Flash Player (32 bit)):
    * http://www.adobe.com/special/products/flashplayer/fp_distribution3.html

  • Libgit2 Error - Trying to checkout/clone a git repository with Visual Studio Tools for Git

    I'm trying to clone a branch from our git repository using Visual Studio Tools for Git. I'm doing the following:
    1. We have a local server that stores all our repositories and they are tracked using GIT+Stash
    2. I create a subbranch B1 from master in repository X using stash
    3. Stash will give me a URL in the form http://user@stash:7990/src/x/repository.git
    4. I go to Visual Studio (where I already installed Visual Studio Tools for Git) and follow the instructions to clone this branch to my local machine using the procedure as described in: Open and Clone a Git team project http://msdn.microsoft.com/en-us/library/hh850445.aspx#remote_3rd_party_connect_clone
    5. Visual studio shows the following error: An error occurred. Detailed message: An error was raised by libgit2. Category = Zlib (Error).
    Failed to inflate packfile
    What is libgit2? Is there anything I should change in my settings or paths? The only workaround I have found for this issue is to clone my branch through Source Tree (third party tool) and then open visual studio, then any other functionality will be fine
    (e.g. commits, push, sync, pull etc, all this I can do directly from Visual Studio)... but why can't I clone from Visual Studio?
    Notes:
    - We're not using TFS (i.e. we only use Git and I'm effectively trying to do the step found in this URL: http://msdn.microsoft.com/en-us/library/hh850445.aspx#remote_3rd_party_connect_clone)
    - We use Atlassian Stash (installed in our servers) to create the repositories and branches
    - I'm using Visual Studio 2012
    David

    Hi David,
    I am sorry that I can't reproduce your issue on my machine. I can't set the shared folder path (\\DEVELOPMENT) as local path, but I can set D:\folder which maps to the
    \\DEVELOPMENT path as the local path.
    Maybe you can submit one feedback on the Microsoft Connect site here above your issue:
    https://connect.microsoft.com/VisualStudio/feedback/CreateFeedbackForm.aspx?FeedbackFormConfigurationID=5303&FeedbackType=1
    Thanks.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to clone git repository in Visual Studio Monaco

    I am unable to clone from VSO Online repository. The following error is returned upon clicking the "Clone" button:
    git clone "https://{name}.visualstudio.com/DefaultCollection/_git/{project}" .
    Cloning into '.'...
    fatal: https://{name}.visualstudio.com/DefaultCollection/_git/{project}/info/refs not valid: is this a git repository?
    Any thoughts appreciated!

    Hi idodev,
    Since this thread is more related to Visual Studio Online, I will move it to the right forum for a better response. Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Deploying multiple sites in single GIT repository to Azure

    Hello!  My Git repository has 2 sites that need deployed:
    Root
        MaterialTransferService
        SinglePageApp.Web
    Those two deploy to:
    WebRoot\
    WebRoot\API
    API being a virtual directory.
    I can deploy fine from Visual Studio 2013 so long as I deploy them individually.  Is there any way to get the respective projects deployed to the correct locations?  This has to be a common scenario.
    Thank you!

    I'm not sure if this has come up before actually. But you should be able to write a
    custom deployment script that builds and deploys both.
    I think you'll want to do it so that both projects get built into the same folder (parent first), and then use a single KUDU_SYNC call to copy everything into wwwroot. This will make more sense once you look at the default deployment script you get for a
    single project (example here).

  • WebIDE: Clone GIT repository issue

    Hello Colleagues!
    When I try to clone a GIT repository in the Web IDE, I am receiving the following error message:
    4:34:48 PM (git) Clone request sent
    4:38:01 PM (git) Clone request failed https://[email protected]/z_i840577_fiori: cannot open git-upload-pack
    The GIT repository was created via Project Portal.
    Does anyone know how to solve this issue?
    Thanks and Regards,
    Borin, Lucas

    Hello Firas!
    This issue also happens when I clone a repository from the GitHub to WebIDE.
    I added you to my project as a Project Team/Committers, so now you can clone the GIT repository. Please, try to clone it to your WebIDE and check if the same issue happens for you.
    What kind of details do you want?
    Thanks,
    Borin, Lucas

  • Git repository not found  ?

    Hi Experts,
    I am following the Hello World Tutorial example url https://help.hana.ondemand.com/help/frameset.htm?c550a13133ea4021a25fa0cdb8d307c0.html
    but I got the error
    https://git.hanatrial.ondemand.com/p124113trial/html5app1: Git repository not found .
    I could not find the right solution. but I have realized that git.hanatrial.ondemand.com is not available and that could be the problem in my case. Could you please help its its something to do with the tutorial it self or am I doing any mistake?
    Appreciate your help
    Regards
    Maruti

    Hi Experts,
    I am following the Hello World Tutorial example url https://help.hana.ondemand.com/help/frameset.htm?c550a13133ea4021a25fa0cdb8d307c0.html
    but I got the error
    https://git.hanatrial.ondemand.com/p124113trial/html5app1: Git repository not found .
    I could not find the right solution. but I have realized that git.hanatrial.ondemand.com is not available and that could be the problem in my case. Could you please help its its something to do with the tutorial it self or am I doing any mistake?
    Appreciate your help
    Regards
    Maruti

  • Is this any way that abobe Flash include in the next version a plugin that enable use of flip book

    Hi all,
    Realy i've thinking many times to have a plugin in adobe flash, that will include a flip book component wich will be easy to build an online magazine for our real estate agency in marrakesh, i've used the latest trial version of adobe flash Cs5 but it enable to work with as i am a not programmer. But hope that one day get it.

    Best to post your question in the Flash forum
    http://forums.adobe.com/community/flash/flash_general?view=discussions

  • Adobe is installed web ask to install ,flash-player shows disable plugin is enable

    I have exhausted my search for an answer. some of my friends want talk to me.
    Hewiett-Packard
    Windows 7
    Browser Google Chrome version 20
    FlashPlayer version 11
    Adobe 32 bitt
    Control panel  shows FlashPlayer 11/Reader 11.0.02/Shockwave 12.0
    Plugins
    Adobe Flash Player (2files)-version:11.7.700.179(Disabled)
    Shockwave Flash 11.7 r700
    Name: Shockwave Flash
    Description: Shockwave Flash 11.7 r700
    Version: 11.7.700 179
    location: C:Program Files (86)/Google/Chrome/Application/26.01410.64/pepperFlash/pepflashplayer.dll
    Type:PPAPI (out of Process)
    EnableMIME types:
    MIME type Description  File extensions
    application/x-shockwave flash   shockwave flash.swf
    application/futuresplash  FutureSplash layer.spl
    Name:shockwave Flash
    Description: ShockwaveFlasj 11.7r700
    Version: 11,7,700,202
    Location : C:\Windows\SysWow64\macromed\flash\npswf32_11_7_700_   202.dll
    Type: npapi
              enable
    MIME types:
    MIME type   Description  File extensions
    applicatiooooooon/x-shockwave-flash  Adobe Flash Movie.swf
    application/futuresplash   FutureSplas movie/spl
    AdobeShockwave Player- Version: 12.02r122 (Disable)
    Adobe Shockwave for Director Netscape plug-in, version 12.0.2.122
    Name Shockwave for Director
    Description: AdobeShockwavefor Director Netscape plug-in, version 12.0.2.122.dll
    Type: NPAPI
              Enable
    MIME types:
    MIME Type   Description   File etensions
    application/x-director    Shockwave movie
    .dir   .dxr  .dcr
    Java (TM)  (2files) - Version:10.9.2.05 Download Critical Security Update (Disabled
    Next Genreation Java Plug-in 10.9.2 for Mozilla browsers
    Name Java (TM) Platform SE7U9
    Description: Next Generation Java Plug-in  10.9.2 for Mozillia browsers
    Version   10.9.2.05
    Location C:/ProgramFiles (86)\Java\jrc/\bub\plugin2\boho2.dll
    Type: NPAPI 
             Enable

    1. Check if Flash Player is installed on your computer
    Can you see the movie below?
    *Yes, I can. **No, I can't. I see an error message.
                                                              *Flash Player is
    installed on your computer and it's working properly.
    However, to ensure that you have the latest Flash Player version installed
    on your computer, go to step
    2<http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html#main_Find_the_Flash_ Player_version_installed_on_your_machine>
    .You see a blank box.
    It indicates that Flash Player is not installed on your computer. To
    install the latest Flash Player version, go to step
    4<http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html#main__Troubleshoot_o r_install_Flash_Player>
    To the top<http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html#>
    2. Find the version of Flash Player installed on your computer
    The Flash Player version installed on your computer and the operating
    system are displayed in the box shown below. Identify the version of Flash
    Player on your computer. Then go to step
    3<http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html#main_Check_if_you_ha ve_the_latest_version_of_Flash_Player>
    to
    check if you have the latest available Flash Player

  • Adobe instructions for installing a plugin to enable PSE11 to work with Mac OS X 10.10.1 do not work.  I have gotten no help from Adobe.  Seems to need an update, and I am trying to do a Christmas present.

    Has anyone found a way to enable PSE 11 to work with Yosemite on Mac?  The plugin does not plugin.

    There is a plug in on the Adobe troubleshooting site for this problem.  Seems others are having the same problem.  I followed the instructions to drag the download into the appropriate place.  There is a graphic showing exactly what to do.  Then you are told to check to see if it worked.  It didn't.
    After downloading Yosemite, I bought a new printer.  I returned it, because it wouldn't correctly print from Photoshop . . . prints were tiny no matter what size I chose.  Yesterday I realized it was a Photoshop not printer problem when I still couldn't control the size of the printed photo.  For example, I selected 2 X 2" for an ornament, heard the new printer "printing" and saw nothing.  Upon further inspection, there was a bluish spot no bigger than a comma in this writing in the center of the page.
    Magic lasso is wonky and difficult.  When I can get that done, I cannot Cut and Paste nor move what I have selected.
    I don't even know if updating to PSE 13f would solve the problem.  Saw something about problems there.
    Thank you for your help.

  • Safari Crashes When Java Plugins are Enabled

    Thanks in advance.
    On a PPC G4 eMac running 10.4.11 and Safari 3.2.3 Safari repeatedly crashes when visiting Facebook and other sites when Java Applet Plugin Enabler, Java Applet.plugin and JavaPuginCocoa.bundle are enabled.
    Crash Report:
    Date/Time: 2009-05-29 13:00:05.317 -0400
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [64]
    Version: 3.2.3 (4525.28.3)
    Build Version: 3
    Project Name: WebBrowser
    Source Version: 45252803
    PID: 1260
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.JavaScriptCore 0x959236b4 KJS::Collector::collect() + 420
    1 com.apple.JavaScriptCore 0x959a7f88 void* KJS::Collector::heapAllocate<(KJS::Collector::HeapType)0>(unsigned long) + 248
    2 com.apple.JavaScriptCore 0x95903538 KJS::jsOwnedString(KJS::UString const&) + 152
    3 com.apple.JavaScriptCore 0x95925a64 KJS::AddStringLeftNode::evaluate(KJS::ExecState*) + 52
    4 com.apple.JavaScriptCore 0x959031a4 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 52
    5 com.apple.JavaScriptCore 0x9590ba64 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    6 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    7 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    8 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    9 com.apple.JavaScriptCore 0x95904378 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    10 com.apple.JavaScriptCore 0x959031a4 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 52
    11 com.apple.JavaScriptCore 0x95903124 KJS::VarStatementNode::execute(KJS::ExecState*) + 52
    12 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    13 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    14 com.apple.JavaScriptCore 0x95904378 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    15 com.apple.JavaScriptCore 0x959031a4 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 52
    16 com.apple.JavaScriptCore 0x95903124 KJS::VarStatementNode::execute(KJS::ExecState*) + 52
    17 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    18 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    19 com.apple.JavaScriptCore 0x95904378 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    20 com.apple.JavaScriptCore 0x9590ba64 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    21 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    22 com.apple.JavaScriptCore 0x959127e8 KJS::ForNode::execute(KJS::ExecState*) + 168
    23 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    24 com.apple.JavaScriptCore 0x95917048 KJS::TryNode::execute(KJS::ExecState*) + 56
    25 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    26 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    27 com.apple.JavaScriptCore 0x95904378 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    28 com.apple.JavaScriptCore 0x9590ba64 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    29 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    30 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    31 com.apple.JavaScriptCore 0x9591cb44 KJS::functionProtoFuncApply(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 1796
    32 com.apple.JavaScriptCore 0x95904378 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    33 com.apple.JavaScriptCore 0x9590e764 KJS::ReturnNode::execute(KJS::ExecState*) + 132
    34 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    35 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    36 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    37 com.apple.JavaScriptCore 0x959606ac KJS::FunctionCallBracketNode::evaluate(KJS::ExecState*) + 1628
    38 com.apple.JavaScriptCore 0x9590ba64 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    39 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    40 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    41 com.apple.JavaScriptCore 0x95917048 KJS::TryNode::execute(KJS::ExecState*) + 56
    42 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    43 com.apple.JavaScriptCore 0x959127e8 KJS::ForNode::execute(KJS::ExecState*) + 168
    44 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    45 com.apple.JavaScriptCore 0x9594c4d8 KJS::DoWhileNode::execute(KJS::ExecState*) + 72
    46 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    47 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    48 com.apple.JavaScriptCore 0x9590f488 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    49 com.apple.JavaScriptCore 0x9590ba64 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    50 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    51 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    52 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    53 com.apple.JavaScriptCore 0x9590f488 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    54 com.apple.JavaScriptCore 0x9590ba64 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    55 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    56 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    57 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    58 com.apple.JavaScriptCore 0x95904378 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    59 com.apple.JavaScriptCore 0x95905514 KJS::LogicalAndNode::evaluate(KJS::ExecState*) + 196
    60 com.apple.JavaScriptCore 0x9590ba64 KJS::ExprStatementNode::execute(KJS::ExecState*) + 52
    61 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    62 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    63 com.apple.JavaScriptCore 0x9591cb44 KJS::functionProtoFuncApply(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 1796
    64 com.apple.JavaScriptCore 0x95904378 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 632
    65 com.apple.JavaScriptCore 0x9590e764 KJS::ReturnNode::execute(KJS::ExecState*) + 132
    66 com.apple.JavaScriptCore 0x959135e4 KJS::BlockNode::execute(KJS::ExecState*) + 84
    67 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    68 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    69 com.apple.JavaScriptCore 0x95955fb4 KJS::JSObject::call(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 116
    70 com.apple.WebCore 0x95c7370c WebCore::ScheduledAction::execute(KJS::Window*) + 428
    71 com.apple.WebCore 0x95c734ac KJS::Window::timerFired(KJS::DOMWindowTimer*) + 316
    72 com.apple.WebCore 0x95c73350 KJS::DOMWindowTimer::fired() + 48
    73 com.apple.WebCore 0x95c6ef1c WebCore::TimerBase::fireTimers(double, ***::Vector<WebCore::TimerBase*, (unsigned long)0> const&) + 156
    74 com.apple.WebCore 0x95c6eca0 WebCore::TimerBase::sharedTimerFired() + 112
    75 com.apple.WebCore 0x95c6ec0c WebCore::timerFired(__CFRunLoopTimer*, void*) + 76
    76 com.apple.CoreFoundation 0x907f2384 __CFRunLoopDoTimer + 184
    77 com.apple.CoreFoundation 0x907decfc __CFRunLoopRun + 1680
    78 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    79 com.apple.HIToolbox 0x932beb20 RunCurrentEventLoopInMode + 264
    80 com.apple.HIToolbox 0x932be1b4 ReceiveNextEventCommon + 380
    81 com.apple.HIToolbox 0x932be020 BlockUntilNextEventMatchingListInMode + 96
    82 com.apple.AppKit 0x937a3734 _DPSNextEvent + 384
    83 com.apple.AppKit 0x937a33f8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    84 com.apple.Safari 0x00007ec0 0x1000 + 28352
    85 com.apple.AppKit 0x9379f93c -[NSApplication run] + 472
    86 com.apple.AppKit 0x93890458 NSApplicationMain + 452
    87 com.apple.Safari 0x000b778c 0x1000 + 747404
    88 com.apple.Safari 0x000b7490 0x1000 + 746640
    Thread 1:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.WebCore 0x95a489e0 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3 com.apple.WebCore 0x95a051a8 WebCore::IconDatabase::iconDatabaseSyncThread() + 424
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1fb7c +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92bf74d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bfe644 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9b00e998 -[AsyncDB _run:] + 172
    4 com.apple.Foundation 0x92bf74d8 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.Safari 0x001112ac 0x1000 + 1114796
    5 com.apple.Safari 0x00111360 0x1000 + 1114976
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.JavaScriptCore 0x959334f4 KJS::JSLock::DropAllLocks::~DropAllLocks [in-charge]() + 100
    3 com.apple.JavaScriptGlue 0x972e3fe0 UserObjectImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 224
    4 com.apple.JavaScriptCore 0x9590f488 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    5 com.apple.JavaScriptCore 0x959031a4 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 52
    6 com.apple.JavaScriptCore 0x95903124 KJS::VarStatementNode::execute(KJS::ExecState*) + 52
    7 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    8 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    9 com.apple.JavaScriptCore 0x9590f488 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    10 com.apple.JavaScriptCore 0x95922c40 KJS::NotEqualNode::evaluateToBoolean(KJS::ExecState*) + 96
    11 com.apple.JavaScriptCore 0x9590b994 KJS::IfNode::execute(KJS::ExecState*) + 52
    12 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    13 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    14 com.apple.JavaScriptCore 0x9590f488 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 584
    15 com.apple.JavaScriptCore 0x959031a4 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 52
    16 com.apple.JavaScriptCore 0x95903124 KJS::VarStatementNode::execute(KJS::ExecState*) + 52
    17 com.apple.JavaScriptCore 0x9590c414 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 884
    18 com.apple.JavaScriptCore 0x9590bc18 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 88
    19 com.apple.JavaScriptCore 0x95955fb4 KJS::JSObject::call(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 116
    20 com.apple.JavaScriptGlue 0x972e27e4 JSValueWrapper::JSObjectCallFunction(void*, OpaqueJSTypeRef*, __CFArray const*) + 388
    21 com.apple.CFNetwork 0x90fca758 _callPACFunction + 216
    22 com.apple.CFNetwork 0x90fcab2c _JSFindProxyForURLAsync + 224
    23 com.apple.CFNetwork 0x90f91eb0 _CFNetworkFindProxyForURLAsync + 744
    24 com.apple.Foundation 0x92c2116c -[NSConnectionHTTPURLProtocol buildHTTPRequest] + 384
    25 com.apple.Foundation 0x92c20f6c -[NSConnectionHTTPURLProtocol startOriginLoad] + 48
    26 com.apple.Foundation 0x92c20c28 -[NSURLConnection(NSURLConnectionInternal) _performOriginLoad] + 328
    27 com.apple.Foundation 0x92c1ecdc _resourceLoaderPerform + 224
    28 com.apple.CoreFoundation 0x907df300 __CFRunLoopDoSources0 + 384
    29 com.apple.CoreFoundation 0x907de830 __CFRunLoopRun + 452
    30 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    31 com.apple.Foundation 0x92c1ea3c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    32 com.apple.Foundation 0x92bf74d8 forkThreadForFunction + 108
    33 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9001f48c select + 12
    1 com.apple.CoreFoundation 0x907f1240 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf73c4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bff364 TimerThread + 60
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 ...romedia.Flash Player.plugin 0x07e5cc6c nativeShockwaveFlashTCallFrame + 2298828
    3 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90c02484 MPWaitOnSemaphore + 184
    3 ...romedia.Flash Player.plugin 0x07bde1fc Flash_EnforceLocalSecurity + 1202256
    4 ...romedia.Flash Player.plugin 0x07d18598 nativeShockwaveFlashTCallFrame + 969976
    5 ...romedia.Flash Player.plugin 0x07bde06c Flash_EnforceLocalSecurity + 1201856
    6 ...romedia.Flash Player.plugin 0x07bde034 Flash_EnforceLocalSecurity + 1201800
    7 ...ple.CoreServices.CarbonCore 0x90bc4734 PrivateMPEntryPoint + 76
    8 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000959236b4 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x44028448 xer: 0x0000000020000004 lr: 0x00000000959236cc ctr: 0x0000000096018c20
    r0: 0x000000001fffffff r1: 0x00000000bfffc540 r2: 0x00000000bfffd498 r3: 0x0000000000000000
    r4: 0x00000000a5a7bec8 r5: 0x0000000000690700 r6: 0x000000000000002c r7: 0x0000000000000e03
    r8: 0x00000000079eeb40 r9: 0x0000000000004000 r10: 0x00000000f9bf7800 r11: 0x0000000004ba0034
    r12: 0x0000000096018c20 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000001
    r16: 0x0000000000000000 r17: 0x00000000bfffdc84 r18: 0x00000000a58f4e38 r19: 0x000000000645791c
    r20: 0x00000000a58f351c r21: 0x00000000a58f351c r22: 0x0000000000000000 r23: 0x0000000000000001
    r24: 0x00000000bfffc974 r25: 0x00000000059da788 r26: 0x0000000000000000 r27: 0x0000000000000001
    r28: 0x00000000bfffd560 r29: 0x0000000000000000 r30: 0x00000000059da768 r31: 0x000000009592351c
    Binary Images Description:
    0x1000 - 0x1dffff com.apple.Safari 3.2.3 (4525.28.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x435000 - 0x435fff com.aladdinsys.mmenabler 7.1.0 (7.0.3) /Library/InputManagers/MagicMenuEnabler/MagicMenuEnabler.bundle/Contents/MacOS/ MagicMenuEnabler
    0x6bbf000 - 0x6c27fff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x7ab5000 - 0x7ed8fff com.macromedia.Flash Player.plugin 9.0.159 (1.0.4f60) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.84 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 312.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.11 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.28 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 183.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b45fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b4a000 - 0x91b68fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6e000 - 0x91c25fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce9000 - 0x91d03fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d08000 - 0x91d0bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d0d000 - 0x91dfbfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e1a000 - 0x91e58fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e5f000 - 0x91e5ffff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e61000 - 0x91f46fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4e000 - 0x91f6dfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd9000 - 0x92047fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92052000 - 0x920e7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92101000 - 0x92689fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bc000 - 0x929e7fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a17000 - 0x92b05fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b08000 - 0x92b90fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd1000 - 0x92e04fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f37000 - 0x92f55fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f60000 - 0x92fbafff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd8000 - 0x92fd8fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fda000 - 0x92feefff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93006000 - 0x93016fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93022000 - 0x93037fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93049000 - 0x930d0fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e4000 - 0x930effff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930f9000 - 0x93127fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93141000 - 0x93151fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315d000 - 0x931c3fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f4000 - 0x93243fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93271000 - 0x9328efff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x932a0000 - 0x932adfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b6000 - 0x935c4fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93714000 - 0x93720fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93725000 - 0x93745fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9375b000 - 0x9375cfff com.apple.ServerControl 10.3.0 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x93799000 - 0x93799fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9379b000 - 0x93dcefff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9415b000 - 0x941cdfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94206000 - 0x942cbfff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9431e000 - 0x9431efff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94320000 - 0x944e0fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9452a000 - 0x94567fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9456f000 - 0x945bffff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945c8000 - 0x945e1fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945f1000 - 0x94612fff com.apple.framework.Admin 1.5.7 /System/Library/PrivateFrameworks/Admin.framework/Admin
    0x94627000 - 0x94627fff com.apple.AFPDefines 3.1.6 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x9467a000 - 0x946b2fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946f7000 - 0x94713fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94727000 - 0x9476bfff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9478f000 - 0x9479efff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a6000 - 0x947b3fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f9000 - 0x94812fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94819000 - 0x94b4bfff com.apple.QuickTime 7.6.0 (1290) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c33000 - 0x94ca4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e1a000 - 0x94f4afff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fdd000 - 0x94fecfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94ff4000 - 0x95021fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95028000 - 0x95038fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9503c000 - 0x9506bfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9507b000 - 0x95098fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x957b1000 - 0x9586ffff com.apple.WebKit 4525.28 (4525.28.3) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958dd000 - 0x959c6fff com.apple.JavaScriptCore 4525.26 (4525.26.2) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95a02000 - 0x960d5fff com.apple.WebCore 4525.28 (4525.28.4) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x972df000 - 0x972e5fff com.apple.JavaScriptGlue 4525.26 (4525.26.2) /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScrip tGlue
    0x97616000 - 0x97635fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97e2a000 - 0x97e37fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9927c000 - 0x99f35fff com.apple.QuickTimeComponents.component 7.6 (1290) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9b00c000 - 0x9b041fff com.apple.Syndication 1.0.8 (56.1) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9b05e000 - 0x9b070fff com.apple.SyndicationUI 1.0.8 (56.1) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9ff42000 - 0x9ffe3fff com.apple.QuickTimeImporters.component 7.6 (1290) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    Model: PowerMac4,4, BootROM 4.6.4f1, 1 processors, PowerPC G4 (3.3), 1 GHz, 640 MB
    Graphics: ATI Radeon 7500, ATY,RV200, AGP, 32 MB
    Memory Module: DIMM0/J1600, 512 MB, SDRAM, PC133U-333
    Memory Module: DIMM1/J1601, 128 MB, SDRAM, PC133U-333
    Modem: MicroDash, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: Maxtor 2F040L0, 38.29 GB
    Parallel ATA Device: TOSHIBA ODD-DVD SD-R1412
    USB Device: Apple Optical USB Mouse, Logitech, Up to 1.5 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    What I have done so far:
    1. Updated Apple Software including Java.
    2. Updated Plugins.
    3. Repaired Disc Permissions.
    4. Trouble Shot Plugins: Disabled Plugins in Safari Preferences - Result: Crashes stopped. Loaded all Plugins except the 3 Java Plugins and still no crashes. Load any of the 3 Java Plugins and Safari crashes.
    5. Deleted com.apple.java.javapreferences.plist.
    6. Opened Java Preferences and deleted Temporary Internet Files.
    I have four other G4's running the same system and version of Safari and they are all stable.
    I bet someone smarter than me will look at the crash report and tell me to something quite simple and the problem will be solved, but I don't know what that would be.
    Blue Skies,
    Geo

    You have a outdated version of FlashPlayer.Uninstall FlashPlayer. Install the newest version here.
    Repair permissions after the update.
    Also this add-on may be problematic.
    0x435000 - 0x435fff com.aladdinsys.mmenabler 7.1.0 (7.0.3) /Library/InputManagers/MagicMenuEnabler/MagicMenuEnabler.bundle/Contents/MacOS/ MagicMenuEnabler

  • Indesign CS3 plugin..enabling/disabling operations

    Hi,
    Is it possible to perform save/close operation after enablin the save menu, close button of an open indesign document (they were disabled befor i.e. when app loads)?
    I have 2 menus, one for enabling close button in the document, second for enabling the save menu item... That is, initially when i open the application, close and save will be disabled. If i open a document, i cannot perform these operations on it...
    Now, if i check both the menu items(m enabling close and save),i m able to perform close and save only in the documents i open after enabling but i need to close the doc previously opened. How to do it? Help..
    Isn't it possible to close/save the same doc once they are disabled in it before...
    Guide me pls...
    I m using InDesign CS3 in MAC OS...
    Thank You.

    You can iterate the list of open documents IApplication::QueryDocumentList. The commands that actually save/close a document are in IDocumentCommands

Maybe you are looking for

  • My computer doesn't recognize my iPod Nano

    Alright, I've been able to connect my iPod to my computer many times before. However, just now, I've been unable to connect it. Windows keeps saying that the "USB Device is Not Recognized" when I connect my iPod. Why is this?

  • "Integration Builder: Design" only works well on server

    Both TCD: SXMB_IFR and "http://host:port/rep/start/index.jsp" work well on both clients and server. We know, when we want to visit the "Integration Builder: Design" in "http://host:port/rep/start/index.jsp", a logon screen displays. The problem is i

  • ACE Issue

    Hello Experts, As per my requirement I have to restrict Settlements using ACE control. For the above purpose I have added Billing has new super object and linked it with Billing (CRM object) , I have created ACL,GRP and UTC tables along with custom c

  • Adjust import queue Icon - Query

    Hi This is regarding the adjustment of import queue during the transport from QA to PRD. I have read the explanation in sap help as below, http://help.sap.com/saphelp_46c/helpdata/en/44/b4a4617acc11d1899e0000e829fbbd/frameset.htm USE: If several tran

  • Where is CLDC / MIDP and mobile devices at now

    Hi, with today�s technology is it possible to have a midlet that can be downloaded into a phone / pda / other that will look at a remote dsn in order to notify the user of available information. To be more exact, is it possible if a courier installed