Browse functionality in POD Plugin not working?

I played around a bit with POD plugins and the browse functionality that is supported there
It's working to the extend that I have a field with a browse button that opens a dialgue with the browse results. But when I choose an entry and close the dialgue the value is not written back into the browse field
But they seem to be still connected since when I write a few letters into the browse field they act as filter for the browse result
The field has a getter and a setter (but the later will not be called after closing the browse dialogue)
The field is defined like this in the JSP of the plugin:
<ls:inputField facet="content" id="OPERATION" name="OPERATION_CUSTOM"
     fieldHelpPressInfoEnabled="true"
     fieldHelpPressInfoClientAction="submit"
     fieldHelpPressInfoResponseData="delta"
     fieldHelpPressInfoParameters="#"
     fieldHelp="F4LOOKUP" showHelpButton="true"
     actionListener="#{customLotHoldPlugin.browseActionListener}"
     value="#{customLotHoldPlugin.operation}">
     <f:attribute name="browseable" value="true" />
     <f:attribute name="browseId" value="OPERATION_CUSTOM" />
     <f:attribute name="browseCustom" value="custom" />
     <f:attribute name="browseSelectionModel" value="single" />
     <f:attribute name="browseCallBack" value="customLotHoldPlugin.processOperationCallback"/>
</ls:inputField>
I also tried to use a callback function and maybe set the value manually. But I can't find the chosen value anywhere in the context
Another question would be what kind of legacy browses are supported. The manual doesn't really help here much.
What we would need would be a browse for shop order (I already found SHOP_ORDER with browseCustom set to "standard" for this one) and hold codes for a custom lot hold plugin
Thanks,
Anton

Anton,
I have written a test plugin and was having the same problem you have encountered.  I was finally able to get it working.  The important part is to extend from the BasePodPlugin class and to implement the BrowseSelectionEventListener.  In the constructor make sure to add the listener.  In the JSP file, make sure the id starts with an upper case letter.  The id is used to construct the set method that will be called.  It appends the first character of the id to "set" and the the rest of the characters in the id are converted to lower case and appended to the end.  So id=OPERATION will create a method name of "setOperation".
This is my java class:
import com.sap.me.wpmf.BrowseSelectionEventListener;
import com.sap.me.production.podclient.BasePodPlugin;
public class TestBrowsePlugin extends BasePodPlugin implements BrowseSelectionEventListener {
    private static final long serialVersionUID = 1L;
    private String operationText = null;
    public TestBrowsePlugin() {
        super();
        getPluginEventManager().addPluginListeners(this.getClass());
    public void setOperation(String operation) {
        setOperationText(operation);
    public String getOperationText() {
        return operationText;
    public void setOperationText(String operationText) {
        this.operationText = operationText.toUpperCase();
This is my browse definition in the jsp file:
<ls:inputField facet="content" id="Operation" name="OPERATION" upperCase="true" width="200px"
               containerWidthSet="true" showHelpButton="true" fieldHelp="F4LOOKUP"
               fieldHelpPressInfoEnabled="true" fieldHelpPressInfoClientAction="submit"
               fieldHelpPressInfoResponseData="delta"
               fieldHelpPressInfoParameters="#"
               actionListener="#{testBrowsePlugin.browseActionListener}"
               value="#{testBrowsePlugin.operationText}">
    <f:attribute name="browseable" value="true" />
    <f:attribute name="browseId" value="OPERATION_CUSTOM" />
    <f:attribute name="browseCustom" value="custom" />
    <f:attribute name="browseSelectionModel" value="single" />
    <f:attribute name="browseDialogWidth" value="20em" />
    <f:attribute name="browseDialogHeight" value="25em" />
</ls:inputField>
Regards,
Stan

Similar Messages

  • Quicktime Plugin not working in Browers

    Hello,
    I am having a frustrating problem with my quicktime plugin not working in BOTH Safari and Firefox. When I try to watch my a quicktime link on the web I cannot view it, I get the quicktime icon with the question mark. However, when I log in as a different user and goto the same link I can view the movie. I believe the movie is a mp4.
    I have already deleted my quicktime preferences and also tried to boot up in 32 bit mode.
    Any suggestions to what may cause this? This must be something that is specific to my user. I have also removed perian and deleted perian preferences.
    Please Help!
    Running
    Mac OSX
    10.7.2

    I have scoured the internet looking for a way to play MP3 files right in the browser window and have come up with nothing. Firefox does not let me set MP3 files to play with the QuickTime Plugin but instead I can only have them play in iTunes or QuickTime after a download. Pretty much same with Chrome and Safari. Neither will let me just play the MP3 right in the browser. Please help!

  • Why my i pod is not working with out charger

    hey, my i pod is not working with out the charger plugged into it?!

    What do you mean? Please be more precised so I may help you father. If it is plugged in, but won't open. You must wait at least 5 minutes before using it again. Ipod need a certain amount of power for it to start. Or even when its plugged in but wont charge, make sure it is connected very well to the computer or the power outlet to the Ipod. Lastly, if you are charging at another place, for example in your friend's house. The voltage power may be different from where you mostly charge it from. But if it isn't plugged. Maybe it need to be charged?
    Hope this helps.
    ~pnoypryde

  • Hellow my i pod is not working.actually bettry was too low then i puted on charging.it starting charging but not going to power on.when it tried to starting on sunndly after the apple logo it showd the 5 % bettry and went back off and this proses is carry

    hellow
    my i pod is not working.actually bettry was too low then i puted on charging.it starting charging but not going to power on.when it tried to starting on sunndly after the apple logo it showd the 5 % bettry and went back off and this proses is carry on.plz help me how it witt work starting.i urgently need to on my i pod.plz help me plzzzzzzzzzzzzzzzz

    Hi there shehla sattar,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    iPad: Basic troubleshooting
    http://support.apple.com/kb/ts3274
    -Griff W.

  • Repost Function using Variable is not working

    Hello experts!  I am on BW-BPS 3.5.  I have set up a repost function using variables to change a characteristic value for Business Unit.
    1. I created 2 variables as Bus.Unit From and Bus.Unit To in the Planning Area. I am not using the variables in my planning level.
    2. I entered the variables in the parameter group New Values area for the From and To Values.
    3. My goal is when the user executes the Repost Function for a Variable Prompt should appear and have the user select the From Business Unit and To Business Unit.
    The Variables are set up as USERVALUE User-Defined Values, Restriction of Values required by user and I have tried with/without option of Input Allowed by User. 
    Can you tell me what I am doing wrong, I expected a variable prompt when executing the Repost Function but it does not work.
    Thank you,
    Teri

    Ravi, Thank you for your reply however I contiue to have errors or the execution does not repost (change any value) as noted below.
    1. I have 2 Variables in Planning area var1 (from) var2 (to) for the same charateristic which is Business Unit
    2. Business Unit is in the level,  on the selection tab to add the variable I can only add 1 variable, So I added var1 (from) to the level. 
    3. Parameter group for old and new values - I have Var1 (from), var2 (to)
    4. Report Function - are you referring to Reporting variables in BPS? I have set this up as suggested in the "How to Use Reporting Variable in BW-BPS" document.
    5. Enter plan data: I receive prompt for VAR1, mandatory. At this point there is no value in Var2.
    6. Execute Repost function - I receive an error to "Restrict Var2"
    7. If I set variable values and add a value for Var2 I receive an error "The generated data is not contained in the selection condition".
    Next I removed VAR1 from my planning level and turned on the option 'Selection in package' for Business Unit. This seems to work well.
    What do you recommend?
    Thank you,
    Teri

  • NIK plugins not working with LR4.

    Installed LR4 and then NIK software plugins not working.  Get the error "bad argument#1 to 'lower' (string expected, got nil).
    Downloaded the latest updates from NIK and have same error.

    You might try this active thread, with the same title as yours
    http://forums.adobe.com/thread/971432?tstart=0

  • Quick look 3rd party plugins not working

    The 3rd party plugins not working. Illustrator, Folder view, and quark are the three I use. They worked nice in 10.5.x Tried /Library/quicklook/ tried /user/library/quicklook/ even forced into system/library/quicklook/
    Anybody else use these or any other 3rd party plugin?

    I can confirm that Folder View plugin no longer works. the developer discusses it here
    http://www.flickr.com/photos/t_trace/2060171212/
    but I can't understand if they figured out how to fix it or not.

  • For years FF has worked beautifully with Constant Contact. Now sevear function in CC will not work in the FF browser - they work in all other browsers. Help

    Until one week ago, I had no difficulty or problems working Constant Contact while open in my Firefox browser. Now I have several with some functions in CC not working.
    Inserting images, setting hyper links, changing background color - These are three necessary functions that I use in Constant Contact emails that no longer function when opening CC in Firefox browser - latest update was today 10/29/2013.
    The function work in the Chrome and Internet Explorer browsers.
    I have contacted Support at Constant Contact and the issue is not with their program.

    Hi eaglegrafix, try disabling ALL nonessential or unrecognized extensions (i.e., anything you don't think you'll need for 24 hours) and see whether that solves it. You can do that on the Add-ons page:
    orange Firefox button (or Tools menu) > Add-ons > Extensions category ''(in the left column, click Extensions)''
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Does that help narrow it down?

  • Weblogic Http Apache Plugin not working

    Hi,
    I have installed weblogic server 10.3 on WindowsXP Professional and Http Apache 2.2 is running on port 80. I followed the following document to configure the Apache plugin:
    http://e-docs.bea.com/wls/docs103/plugins/apache.html
    but when I go and test the plugin it always comes back with 404 page not found. As per the documentation I am testing it as
    http://localhost:80/weblogic/
    Here is my httpd.conf
    Include "C:/bea/alui/plumtreeconf/"
    # This is the main Apache HTTP server configuration file.  It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
    # for a discussion of each configuration directive.
    # Do NOT simply read the instructions in here without understanding
    # what they do.  They're here only as hints or reminders.  If you are unsure
    # consult the online docs. You have been warned. 
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path.  If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
    # with ServerRoot set to "C:/Program Files/Apache Software Foundation/Apache2.2" will be interpreted by the
    # server as "C:/Program Files/Apache Software Foundation/Apache2.2/logs/foo.log".
    # NOTE: Where filenames are specified, you must use forward slashes
    # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
    # If a drive letter is omitted, the drive on which httpd.exe is located
    # will be used by default.  It is recommended that you always supply
    # an explicit drive letter in absolute paths to avoid confusion.
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do not add a slash at the end of the directory path.  If you point
    # ServerRoot at a non-local disk, be sure to point the LockFile directive
    # at a local disk.  If you wish to share the same ServerRoot for multiple
    # httpd daemons, you will need to change at least LockFile and PidFile.
    ServerRoot "C:/Program Files/Apache Software Foundation/Apache2.2"
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses.
    #Listen 12.34.56.78:80
    Listen 80
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule authn_alias_module modules/mod_authn_alias.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authn_file_module modules/mod_authn_file.so
    #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_host_module modules/mod_authz_host.so
    #LoadModule authz_owner_module modules/mod_authz_owner.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule cache_module modules/mod_cache.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    LoadModule cgi_module modules/mod_cgi.so
    #LoadModule charset_lite_module modules/mod_charset_lite.so
    #LoadModule dav_module modules/mod_dav.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule dav_lock_module modules/mod_dav_lock.so
    #LoadModule dbd_module modules/mod_dbd.so
    #LoadModule deflate_module modules/mod_deflate.so
    LoadModule dir_module modules/mod_dir.so
    #LoadModule disk_cache_module modules/mod_disk_cache.so
    #LoadModule dumpio_module modules/mod_dumpio.so
    LoadModule env_module modules/mod_env.so
    #LoadModule expires_module modules/mod_expires.so
    #LoadModule ext_filter_module modules/mod_ext_filter.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule filter_module modules/mod_filter.so
    #LoadModule headers_module modules/mod_headers.so
    #LoadModule ident_module modules/mod_ident.so
    #LoadModule imagemap_module modules/mod_imagemap.so
    LoadModule include_module modules/mod_include.so
    #LoadModule info_module modules/mod_info.so
    LoadModule isapi_module modules/mod_isapi.so
    #LoadModule ldap_module modules/mod_ldap.so
    #LoadModule logio_module modules/mod_logio.so
    LoadModule log_config_module modules/mod_log_config.so
    #LoadModule log_forensic_module modules/mod_log_forensic.so
    #LoadModule mem_cache_module modules/mod_mem_cache.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule proxy_module modules/mod_proxy.so
    #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule setenvif_module modules/mod_setenvif.so
    #LoadModule speling_module modules/mod_speling.so
    #LoadModule ssl_module modules/mod_ssl.so
    #LoadModule status_module modules/mod_status.so
    #LoadModule substitute_module modules/mod_substitute.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    #LoadModule userdir_module modules/mod_userdir.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule version_module modules/mod_version.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule weblogic_module modules/mod_wl_22.so
    <IfModule mod_weblogic.c>
      WebLogicHost localhost
      WebLogicPort 7001
    </IfModule>
    <Location /weblogic>
      SetHandler weblogic-handler
      PathTrim /weblogic
    </Location>
    <IfModule !mpm_netware_module>
    <IfModule !mpm_winnt_module>
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch. 
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    User daemon
    Group daemon
    </IfModule>
    </IfModule>
    # 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition.  These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed.  This address appears on some server-generated pages, such
    # as error documents.  e.g. [email protected]
    ServerAdmin [email protected]
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #ServerName localhost:80
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # features. 
    ProxyRequests On
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs">
        # Possible values for the Options directive are "None", "All",
        # or any combination of:
        #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
        # Note that "MultiViews" must be named *explicitly* --- "Options All"
        # doesn't give it to you.
        # The Options directive is both complicated and important.  Please see
        # http://httpd.apache.org/docs/2.2/mod/core.html#options
        # for more information.
        Options Indexes FollowSymLinks
        # AllowOverride controls what directives may be placed in .htaccess files.
        # It can be "All", "None", or any combination of the keywords:
        #   Options FileInfo AuthConfig Limit
        AllowOverride None
        # Controls who can get stuff from this server.
        Order allow,deny
        Allow from all
    </Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
        DirectoryIndex index.html
    </IfModule>
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
        Satisfy All
    </FilesMatch>
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here.  If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "logs/error.log"
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    <IfModule log_config_module>
        # The following directives define some format nicknames for use with
        # a CustomLog directive (see below).
        LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
        <IfModule logio_module>
          # You need to enable mod_logio.c to use %I and %O
          LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
        </IfModule>
        # The location and format of the access logfile (Common Logfile Format).
        # If you do not define any access logfiles within a <VirtualHost>
        # container, they will be logged here.  Contrariwise, if you *do*
        # define per-<VirtualHost> access logfiles, transactions will be
        # logged therein and *not* in this file.
        CustomLog "logs/access.log" common
        # If you prefer a logfile with access, agent, and referer information
        # (Combined Logfile Format) you can use the following directive.
        #CustomLog "logs/access.log" combined
    </IfModule>
    <IfModule alias_module>
        # Redirect: Allows you to tell clients about documents that used to
        # exist in your server's namespace, but do not anymore. The client
        # will make a new request for the document at its new location.
        # Example:
        # Redirect permanent /foo http://localhost/bar
        # Alias: Maps web paths into filesystem paths and is used to
        # access content that does not live under the DocumentRoot.
        # Example:
        # Alias /webpath /full/filesystem/path
        # If you include a trailing / on /webpath then the server will
        # require it to be present in the URL.  You will also likely
        # need to provide a <Directory> section to allow access to
        # the filesystem path.
        # ScriptAlias: This controls which directories contain server scripts.
        # ScriptAliases are essentially the same as Aliases, except that
        # documents in the target directory are treated as applications and
        # run by the server when requested rather than as documents sent to the
        # client.  The same rules about trailing "/" apply to ScriptAlias
        # directives as to Alias.
        ScriptAlias /cgi-bin/ "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/"
    </IfModule>
    <IfModule cgid_module>
        # ScriptSock: On threaded servers, designate the path to the UNIX
        # socket used to communicate with the CGI daemon of mod_cgid.
        #Scriptsock logs/cgisock
    </IfModule>
    # "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
    # DefaultType: the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value.  If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    DefaultType text/plain
    <IfModule mime_module>
        # TypesConfig points to the file containing the list of mappings from
        # filename extension to MIME-type.
        TypesConfig conf/mime.types
        # AddType allows you to add to or override the MIME configuration
        # file specified in TypesConfig for specific file types.
        #AddType application/x-gzip .tgz
        # AddEncoding allows you to have certain browsers uncompress
        # information on the fly. Note: Not all browsers support this.
        #AddEncoding x-compress .Z
        #AddEncoding x-gzip .gz .tgz
        # If the AddEncoding directives above are commented-out, then you
        # probably should define those extensions to indicate media types:
        AddType application/x-compress .Z
        AddType application/x-gzip .gz .tgz
        # AddHandler allows you to map certain file extensions to "handlers":
        # actions unrelated to filetype. These can be either built into the server
        # or added with the Action directive (see below)
        # To use CGI scripts outside of ScriptAliased directories:
        # (You will also need to add "ExecCGI" to the "Options" directive.)
        #AddHandler cgi-script .cgi
        # For type maps (negotiated resources):
        #AddHandler type-map var
        # Filters allow you to process content before it is sent to the client.
        # To parse .shtml files for server-side includes (SSI):
        # (You will also need to add "Includes" to the "Options" directive.)
        #AddType text/html .shtml
        #AddOutputFilter INCLUDES .shtml
    </IfModule>
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type.  The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #MIMEMagicFile conf/magic
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://localhost/subscription_info.html
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall is used to deliver
    # files.  This usually improves server performance, but must
    # be turned off when serving from networked-mounted
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    #EnableMMAP off
    #EnableSendfile off
    # Supplemental configuration
    # The configuration files in the conf/extra/ directory can be
    # included to add extra features or to modify the default configuration of
    # the server, or you may simply copy their contents here and change as
    # necessary.
    # Server-pool management (MPM specific)
    #Include conf/extra/httpd-mpm.conf
    # Multi-language error messages
    #Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    #Include conf/extra/httpd-autoindex.conf
    # Language settings
    #Include conf/extra/httpd-languages.conf
    # User home directories
    #Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # Various default settings
    #Include conf/extra/httpd-default.conf
    # Secure (SSL/TLS) connections
    #Include conf/extra/httpd-ssl.conf
    # Note: The following must must be present to support
    #       starting without SSL on platforms with no /dev/random equivalent
    #       but a statically compiled-in mod_ssl.
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>Is there anything else I need to add to this file. As I am trying to install ALUI and for this I need to add the plugin as when I go to my portal page none of the
    images shows. Any help is appreciated.
    Thanks

    Hi,
    There is patch for the webserver(Apache Plugin),thats needs to be downloaded from Metalink,dont use the default plugin that comes with the weblogic 10.3 installtion.
    Regards,
    Dinesh

  • Editing function in iPhoto is not working

    I recently updated to iLife '08. The iPhoto editing tools are not working, when I select edit the photo thumbnail appears at the top, but not in the actual editing window. When I choose any of the tools e.g. Adjust, Effects, Crop etc. nothing happens. The slider controls are not available when attempting to use them the whole window moves (e.g. Adjust window).
    I browsed through some earlier posts and solutions.
    I trashed the plist
    created a "test" account... when selecting iPhoto I got "You can not open iPhoto, it may be damaged or incomplete"
    I rebuiled iphoto
    I reinstalled the application
    I trashed the plist
    What else can I do?

    Part 1
    iPhoto.crash.log PART 1
    ===== Display starts at offset 135710 within file of length 266782. ====
    ===== Use File->Reload (Cmd-R) to display more. ====
    ackAndWhiteEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/BlackAndWhiteEffect.IAPlugin/Contents /MacOS/BlackAndWhiteEffect
    0x16051000 - 0x16053fff com.apple.AutomatorCMM 1.0 (48) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x16067000 - 0x1606bfff com.apple.FolderActionsMenu 1.3 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1611f000 - 0x16121fff com.roxio.ToastItPlugin ToastItPlugIn version 1.0.2 (1.0.2) /Users/steingrh/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x1612a000 - 0x1612afff com.apple.SpotLightCM 1.0 (121.34) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x16265000 - 0x16267fff com.apple.framework.iPhoto.CubeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/CubeTransition.IAPlugin/Contents/MacO S/CubeTransition
    0x1626b000 - 0x1626cfff com.apple.framework.iPhoto.DissolveTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DissolveTransition.IAPlugin/Contents/ MacOS/DissolveTransition
    0x16270000 - 0x16273fff com.apple.framework.iPhoto.DropletTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DropletTransition.IAPlugin/Contents/M acOS/DropletTransition
    0x16445000 - 0x1644ffff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x16457000 - 0x1645ffff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x16467000 - 0x1646afff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x16470000 - 0x16479fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x16480000 - 0x16489fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x16490000 - 0x16495fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x1649a000 - 0x164a4fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x16fe7000 - 0x17045fff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x172c7000 - 0x172c8fff com.apple.framework.iPhoto.FadeThroughBlackTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FadeThroughBlackTransition.IAPlugin/C ontents/MacOS/FadeThroughBlackTransition
    0x174fa000 - 0x174fcfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1782d000 - 0x178d0fff com.apple.iTunesAccess 7.4.1 /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x17c71000 - 0x17c72fff com.apple.framework.iPhoto.FlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FlipTransition.IAPlugin/Contents/MacO S/FlipTransition
    0x17c80000 - 0x17c82fff com.apple.framework.iPhoto.MosaicFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransition.IAPlugin/Content s/MacOS/MosaicFlipTransition
    0x17c94000 - 0x17c96fff com.apple.framework.iPhoto.MosaicFlipTransitionSmall 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransitionSmall.IAPlugin/Co ntents/MacOS/MosaicFlipTransitionSmall
    0x17c9a000 - 0x17c9dfff com.apple.framework.iPhoto.PageFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PageFlipTransition.IAPlugin/Contents/ MacOS/PageFlipTransition
    0x17ca2000 - 0x17ca3fff com.apple.framework.iPhoto.PushTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PushTransition.IAPlugin/Contents/MacO S/PushTransition
    0x17ca7000 - 0x17ca8fff com.apple.framework.iPhoto.RevealTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/RevealTransition.IAPlugin/Contents/Ma cOS/RevealTransition
    0x184b4000 - 0x184b5fff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x184d0000 - 0x184d1fff com.apple.framework.iPhoto.WipeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/WipeTransition.IAPlugin/Contents/MacO S/WipeTransition
    0x1859b000 - 0x1859dfff com.apple.framework.iPhoto.SepiaEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/SepiaEffect.IAPlugin/Contents/MacOS/S epiaEffect
    0x18973000 - 0x18975fff com.apple.framework.iPhoto.TwirlTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/TwirlTransition.IAPlugin/Contents/Mac OS/TwirlTransition
    0x18cbf000 - 0x18cd8fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x18cde000 - 0x18cf9fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x18d98000 - 0x18ea7fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x18edf000 - 0x18ee5fff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1905a000 - 0x19077fff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1907c000 - 0x190f5fff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1a705000 - 0x1a7e3fff com.apple.audio.codecs.Components 1.4.9 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1ab05000 - 0x1abf5fff com.apple.ATIRadeon9700GLDriver 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0x41340000 - 0x4137ffff com.apple.CoreMediaIOServicesPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x41410000 - 0x414affff com.apple.QuickTimeImporters.component 7.2 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x41840000 - 0x41866fff com.apple.CoreMediaPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x419b0000 - 0x419effff com.apple.QuickTimeFireWireDV.component 7.2 /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x41a30000 - 0x41a35fff com.apple.CoreMediaAuthoringPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x70000000 - 0x700fcfff com.apple.audio.units.Components 1.4.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fc79000 - 0x8fd35fff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x8fe00000 - 0x8fe52fff dyld 46.12 /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.3 (???) /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.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b59fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6f000 - 0x90b81fff libauto.dylib /usr/lib/libauto.dylib
    0x90b88000 - 0x90e5ffff com.apple.CoreServices.CarbonCore 681.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec5000 - 0x90f45fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8f000 - 0x90fd1fff com.apple.CFNetwork 4.0 (129.21) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe6000 - 0x90ffefff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100e000 - 0x9108ffff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d5000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x913f3fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f7000 - 0x9141ffff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91432000 - 0x9143dfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918f1fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91905000 - 0x9192afff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193d000 - 0x9197ffff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199b000 - 0x919affff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bd000 - 0x91a03fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1a000 - 0x91ae1fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2f000 - 0x91b44fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b49000 - 0x91b67fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6d000 - 0x91c24fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c73000 - 0x91c77fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c79000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d43fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d48000 - 0x91d4bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4d000 - 0x91e2bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4b000 - 0x91e4bfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4d000 - 0x91f32fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3a000 - 0x91f59fff 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
    0x91fc5000 - 0x92033fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203e000 - 0x920d3fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ed000 - 0x92675fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a8000 - 0x929d3fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a03000 - 0x92af1fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af4000 - 0x92b7cfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbd000 - 0x92de8fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f15000 - 0x92f33fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3e000 - 0x92f98fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb6000 - 0x92fb6fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb8000 - 0x92fccfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe4000 - 0x92ff4fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93000000 - 0x93015fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93027000 - 0x930aefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c2000 - 0x930cdfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d7000 - 0x93104fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311e000 - 0x9312efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93776000 - 0x93776fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93778000 - 0x93dabfff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94138000 - 0x941aafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e3000 - 0x942a7fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f9000 - 0x942f9fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942fb000 - 0x944bbfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94505000 - 0x94542fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9454a000 - 0x9459afff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a3000 - 0x945bdfff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945cd000 - 0x945edfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9462a000 - 0x9466ffff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9478e000 - 0x9479dfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a5000 - 0x947b1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f7000 - 0x9480ffff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94816000 - 0x94b35fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c19000 - 0x94c8afff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94dff000 - 0x94f2ffff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fc1000 - 0x94fd0fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fd8000 - 0x95005fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9500c000 - 0x9501cfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95020000 - 0x9504ffff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9505f000 - 0x9507cfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9546e000 - 0x9546efff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95470000 - 0x954f3fff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95520000 - 0x95566fff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95795000 - 0x95823fff com.apple.WebKit 419.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9587f000 - 0x95914fff com.apple.JavaScriptCore 418.6.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95951000 - 0x95c5efff com.apple.WebCore 418.23 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95de7000 - 0x95e10fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95fa0000 - 0x96021fff com.apple.QTKit 7.2 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96097000 - 0x96099fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x9609c000 - 0x960cefff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97042000 - 0x97061fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x976d2000 - 0x976f7fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97778000 - 0x97839fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97864000 - 0x97865fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x97867000 - 0x97874fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9796f000 - 0x97991fff com.apple.AppleVAFramework 2.4.29 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x979d3000 - 0x979d4fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9830f000 - 0x983e0fff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9845d000 - 0x9845dfff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9858c000 - 0x985aefff com.apple.DiscRecordingUI 3.1.2 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x98a4e000 - 0x98a51fff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98c9c000 - 0x99862fff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99abb000 - 0x99abffff com.apple.QuickTimeH264.component 7.2 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99d47000 - 0x99e14fff com.apple.QuickTimeMPEG4.component 7.2 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9a35b000 - 0x9a4b4fff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Host Name: Steingrimsdottir-Hoffy
    Date/Time: 2007-09-14 16:01:18.971 -0400
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [109]
    Version: 7.0.2 (7.0.2)
    Build Version: 3
    Project Name: iPhotoProject
    Source Version: 3410000
    PID: 407
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.iPhoto 0x00351d00 0x1000 + 3476736
    1 com.apple.iPhoto 0x00353814 0x1000 + 3483668
    2 com.apple.iPhoto 0x0035731c 0x1000 + 3498780
    3 com.apple.iPhoto 0x003419a8 0x1000 + 3410344
    4 com.apple.iPhoto 0x00342478 0x1000 + 3413112
    5 com.apple.iPhoto 0x00342da4 0x1000 + 3415460
    6 com.apple.iPhoto 0x003323c8 0x1000 + 3347400
    7 com.apple.AppKit 0x937dc890 -[NSWindow sendEvent:] + 4616
    8 com.apple.AppKit 0x937858d4 -[NSApplication sendEvent:] + 4172
    9 com.apple.iPhoto 0x001e3f10 0x1000 + 1978128
    10 com.apple.AppKit 0x9377cd10 -[NSApplication run] + 508
    11 com.apple.AppKit 0x9386d87c NSApplicationMain + 452
    12 com.apple.iPhoto 0x00002f98 0x1000 + 8088
    13 com.apple.iPhoto 0x00002c9c 0x1000 + 7324
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bea30c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x9381d708 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f0434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf2170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c36e70 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x00780a70 -[ILMediaBrowserPathWatcher watcherThread:] + 540
    7 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf2170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c36e70 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x0078295c -[ILMediaBrowserPathWatcher(SpotlightSupport) spotlightWatcherThread:] + 652
    7 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001c10 pthreadmutexlock + 472
    2 com.apple.iPhoto 0x00352c7c 0x1000 + 3480700
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.iPhoto 0x00351320 0x1000 + 3474208
    3 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001c10 pthreadmutexlock + 472
    2 com.apple.iPhoto 0x00352c7c 0x1000 + 3480700
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf6410 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x98cb4154 ReadSchedulerThreadEntryPoint + 5316
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf6410 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c00eb8 AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000000351d00 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x44000428 xer: 0x0000000000000000 lr: 0x0000000000351bbc ctr: 0x00000000903a45c8
    r0: 0x0000000000351bbc r1: 0x00000000bfffeaa0 r2: 0x0000000001c77c00 r3: 0x0000000000000000
    r4: 0x0000000080000000 r5: 0x00000000fff80000 r6: 0x0000000080000000 r7: 0x0000000080000000
    r8: 0x0000000000000001 r9: 0x00000000a0001fac r10: 0x0000000000000001 r11: 0x000000000000000a
    r12: 0x00000000903a45c8 r13: 0x00000000a37ab688 r14: 0x0000000000000100 r15: 0x0000000000000000
    r16: 0x00000000a37ab688 r17: 0x00000000a37bb688 r18: 0x00000000a37ab688 r19: 0x0000000000000000
    r20: 0xfffffffffffffffd r21: 0x00000000bfffec38 r22: 0x000000001a8c8750 r23: 0x0000000000000000
    r24: 0x0000000001d25454 r25: 0x0000000000000001 r26: 0xffffffffffffffff r27: 0x0000000000000000
    r28: 0x0000000001d24400 r29: 0x0000000001d24400 r30: 0x0000000000000000 r31: 0x0000000000000000
    Binary Images Description:
    0x1000 - 0x663fff com.apple.iPhoto 7.0.2 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x739000 - 0x743fff com.apple.UpgradeChecker 1.0 /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x74b000 - 0x7a9fff com.apple.iLifeMediaBrowser 0.9 (151) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1008000 - 0x107ffff com.apple.imageKit 1.0 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    0x1205000 - 0x12a5fff com.apple.DotMacKit 44 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x17fc000 - 0x17fcfff com.apple.SpotLightCM 1.0 (121.34) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x16072000 - 0x16074fff com.apple.framework.iPhoto.BlackAndWhiteEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/BlackAndWhiteEffect.IAPlugin/Contents /MacOS/BlackAndWhiteEffect
    0x1607e000 - 0x1607ffff com.apple.framework.iPhoto.DissolveTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DissolveTransition.IAPlugin/Contents/ MacOS/DissolveTransition
    0x160a4000 - 0x160a6fff com.roxio.ToastItPlugin ToastItPlugIn version 1.0.2 (1.0.2) /Users/steingrh/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x160bb000 - 0x160bdfff com.apple.AutomatorCMM 1.0 (48) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x160c6000 - 0x160c8fff com.apple.framework.iPhoto.CubeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/CubeTransition.IAPlugin/Contents/MacO S/CubeTransition
    0x160cc000 - 0x160cffff com.apple.framework.iPhoto.DropletTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DropletTransition.IAPlugin/Contents/M acOS/DropletTransition
    0x160d3000 - 0x160d4fff com.apple.framework.iPhoto.FadeThroughBlackTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FadeThroughBlackTransition.IAPlugin/C ontents/MacOS/FadeThroughBlackTransition
    0x160d8000 - 0x160d9fff com.apple.framework.iPhoto.FlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FlipTransition.IAPlugin/Contents/MacO S/FlipTransition
    0x160dd000 - 0x160dffff com.apple.framework.iPhoto.MosaicFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransition.IAPlugin/Content s/MacOS/MosaicFlipTransition
    0x160e3000 - 0x160e5fff com.apple.framework.iPhoto.MosaicFlipTransitionSmall 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransitionSmall.IAPlugin/Co ntents/MacOS/MosaicFlipTransitionSmall
    0x160e9000 - 0x160ecfff com.apple.framework.iPhoto.PageFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PageFlipTransition.IAPlugin/Contents/ MacOS/PageFlipTransition
    0x160f1000 - 0x160f2fff com.apple.framework.iPhoto.PushTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PushTransition.IAPlugin/Contents/MacO S/PushTransition
    0x160f6000 - 0x160f7fff com.apple.framework.iPhoto.RevealTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/RevealTransition.IAPlugin/Contents/Ma cOS/RevealTransition
    0x160fb000 - 0x160fdfff com.apple.framework.iPhoto.SepiaEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/SepiaEffect.IAPlugin/Contents/MacOS/S epiaEffect
    0x16101000 - 0x16103fff com.apple.framework.iPhoto.TwirlTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/TwirlTransition.IAPlugin/Contents/Mac OS/TwirlTransition
    0x16107000 - 0x16108fff com.apple.framework.iPhoto.WipeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/WipeTransition.IAPlugin/Contents/MacO S/WipeTransition
    0x16114000 - 0x16118fff com.apple.FolderActionsMenu 1.3 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x16468000 - 0x16472fff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x1647a000 - 0x16482fff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x1648a000 - 0x1648dfff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x16493000 - 0x1649cfff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x164a3000 - 0x164acfff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x164b3000 - 0x164b8fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x164bd000 - 0x164c7fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x17095000 - 0x170f3fff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x17666000 - 0x17668fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x17a05000 - 0x17aa8fff com.apple.iTunesAccess 7.4.1 /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x41340000 - 0x4137ffff com.apple.CoreMediaIOServicesPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x41410000 - 0x414affff com.apple.QuickTimeImporters.component 7.2 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x41840000 - 0x41866fff com.apple.CoreMediaPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8fc79000 - 0x8fd35fff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x8fe00000 - 0x8fe52fff dyld 46.12 /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.3 (???) /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.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b59fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6f000 - 0x90b81fff libauto.dylib /usr/lib/libauto.dylib
    0x90b88000 - 0x90e5ffff com.apple.CoreServices.CarbonCore 681.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec5000 - 0x90f45fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8f000 - 0x90fd1fff com.apple.CFNetwork 4.0 (129.21) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe6000 - 0x90ffefff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100e000 - 0x9108ffff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d5000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x913f3fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f7000 - 0x9141ffff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91432000 - 0x9143dfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918f1fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91905000 - 0x9192afff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193d000 - 0x9197ffff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199b000 - 0x919affff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bd000 - 0x91a03fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1a000 - 0x91ae1fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2f000 - 0x91b44fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b49000 - 0x91b67fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6d000 - 0x91c24fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c73000 - 0x91c77fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c79000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d43fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d48000 - 0x91d4bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4d000 - 0x91e2bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4b000 - 0x91e4bfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4d000 - 0x91f32fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3a000 - 0x91f59fff 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
    0x91fc5000 - 0x92033fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203e000 - 0x920d3fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ed000 - 0x92675fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a8000 - 0x929d3fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a03000 - 0x92af1fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af4000 - 0x92b7cfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbd000 - 0x92de8fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f15000 - 0x92f33fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3e000 - 0x92f98fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb6000 - 0x92fb6fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb8000 - 0x92fccfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe4000 - 0x92ff4fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93000000 - 0x93015fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93027000 - 0x930aefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c2000 - 0x930cdfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d7000 - 0x93104fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311e000 - 0x9312efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93776000 - 0x93776fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93778000 - 0x93dabfff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94138000 - 0x941aafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e3000 - 0x942a7fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f9000 - 0x942f9fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942fb000 - 0x944bbfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94505000 - 0x94542fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9454a000 - 0x9459afff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a3000 - 0x945bdfff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945cd000 - 0x945edfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9462a000 - 0x9466ffff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9478e000 - 0x9479dfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a5000 - 0x947b1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f7000 - 0x9480ffff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94816000 - 0x94b35fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c19000 - 0x94c8afff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94dff000 - 0x94f2ffff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fc1000 - 0x94fd0fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fd8000 - 0x95005fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9500c000 - 0x9501cfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95020000 - 0x9504ffff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9505f000 - 0x9507cfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9546e000 - 0x9546efff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95470000 - 0x954f3fff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95520000 - 0x95566fff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95795000 - 0x95823fff com.apple.WebKit 419.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9587f000 - 0x95914fff com.apple.JavaScriptCore 418.6.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95951000 - 0x95c5efff com.apple.WebCore 418.23 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95de7000 - 0x95e10fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95fa0000 - 0x96021fff com.apple.QTKit 7.2 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96097000 - 0x96099fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x9609c000 - 0x960cefff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97042000 - 0x97061fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x976d2000 - 0x976f7fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97867000 - 0x97874fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x979d3000 - 0x979d4fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9830f000 - 0x983e0fff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9845d000 - 0x9845dfff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9858c000 - 0x985aefff com.apple.DiscRecordingUI 3.1.2 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x98a4e000 - 0x98a51fff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98c9c000 - 0x99862fff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9a35b000 - 0x9a4b4fff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Host Name: Steingrimsdottir-Hoffy
    Date/Time: 2007-09-18 10:15:03.572 -0400
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [2580]
    Version: 7.0.2 (7.0.2)
    Build Version: 3
    Project Name: iPhotoProject
    Source Version: 3410000
    PID: 3321
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.iPhoto 0x003de790 0x1000 + 4052880
    1 com.apple.AppKit 0x937c6858 -[NSView _drawRect:clip:] + 2128
    2 com.apple.AppKit 0x937c5e18 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
    3 com.apple.AppKit 0x937c8b60 _recursiveDisplayInRect2 + 84
    4 com.apple.CoreFoundation 0x907ed3ec CFArrayApplyFunction + 416
    5 com.apple.AppKit 0x937c5f2c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    6 com.apple.AppKit 0x937c8b60 _recursiveDisplayInRect2 + 84
    7 com.apple.CoreFoundation 0x907ed3ec CFArrayApplyFunction + 416
    8 com.apple.AppKit 0x937c5f2c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    9 com.apple.AppKit 0x937c53e0 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    10 com.apple.AppKit 0x937c5220 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 280
    11 com.apple.AppKit 0x937bf054 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    12 com.apple.AppKit 0x937b4348 -[NSView displayIfNeeded] + 248
    13 com.apple.AppKit 0x937b41b8 -[NSWindow displayIfNeeded] + 180
    14 com.apple.iPhoto 0x00334574 0x1000 + 3356020
    15 com.apple.AppKit 0x937b4064 _handleWindowNeedsDisplay + 200
    16 com.apple.CoreFoundation 0x907dd76c __CFRunLoopDoObservers + 352
    17 com.apple.CoreFoundation 0x907dda0c __CFRunLoopRun + 420
    18 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    19 com.apple.HIToolbox 0x9329bb20 RunCurrentEventLoopInMode + 264
    20 com.apple.HIToolbox 0x9329b12c ReceiveNextEventCommon + 244
    21 com.apple.HIToolbox 0x9329b020 BlockUntilNextEventMatchingListInMode + 96
    22 com.apple.AppKit 0x93780ae4 _DPSNextEvent + 384
    23 com.apple.AppKit 0x937807a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    24 com.apple.AppKit 0x9377ccec -[NSApplication run] + 472
    25 com.apple.AppKit 0x9386d87c NSApplicationMain + 452
    26 com.apple.iPhoto 0x00002f98 0x1000 + 8088
    27 com.apple.iPhoto 0x00002c9c 0x1000 + 7324
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0a6a8 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0b7e8 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f0434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bea30c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x9381d708 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf2170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c36e70 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x00780a70 -[ILMediaBrowserPathWatcher watcherThread:] + 540
    7 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf2170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c36e70 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x0078295c -[ILMediaBrowserPathWatcher(SpotlightSupport) spotlightWatcherThread:] + 652
    7 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf2170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf20a8 -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x957973d0 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000003de790 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042474 xer: 0x0000000000000000 lr: 0x00000000003de764 ctr: 0x0000000092be27bc
    r0: 0x00000000003de764 r1: 0x00000000bfffd930 r2: 0x0000000000000000 r3: 0x00000000a2be0598
    r4: 0x0000000090a8f8b4 r5: 0x000000001fe4e3a0 r6: 0x00000000006855fc r7: 0x00000000a07bb95c
    r8: 0x0000000000000003 r9: 0x0000000000000000 r10: 0x0000000090a3e628 r11: 0x0000000000000001
    r12: 0x0000000092be27bc r13: 0x0000000000000001 r14: 0x00000000bfffe770 r15: 0x00000000006b0000
    r16: 0x00000000006b0000 r17: 0x00000000bffff330 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000006b0000 r21: 0x00000000006b0000 r22: 0x00000000006b0000 r23: 0x0000000000000000
    r24: 0x00000000006b0000 r25: 0x0000000090a8f8b4 r26: 0x00000000006ad704 r27: 0x00000000006b6db0
    r28: 0x00000000006b0000 r29: 0x00000000006b0000 r30: 0x00000000218d9880 r31: 0x00000000200eb430

  • PhpMyAdmin Google reCAPTCHA v2 plugin not working

    I secure my phpMyAdmin login page using Google reCAPTCHA. Until recently, phpMyAdmin used the old v1 API of reCAPTCHA, but now uses the newer v2 API as of version 4.40.
    For some reason, I cannot get the new reCAPTCHA v2 API to accept my credentials to initiate a login. When I enter my correct username, password, and solve the CAPTCHA correctly, the page hangs for a few minutes and then spits out the following error messages:
    Warning in ./libraries/plugins/auth/recaptcha/recaptchalib.php#94
    file_get_contents(https://www.google.com/recaptcha/api/siteverify?secret=MYSECRETKEY&amp;remoteip=127.0.0.1&amp;v=php_1.0&amp;response=RESPONSE-TOKEN-FROM-RECAPTCHA): failed to open stream: Connection timed out
    Out of curiosity, I tested the reCAPTCHA URL generated above by copying and pasting it into my browser, and the following error message popped up:
    "success": false,
    "error-codes": [
    "missing-input-response"
    The error codes are generated by the API when the verification fails. According to the Google Developer site for the reCAPTCHA API, an error code of "missing-input-response" means "The response parameter is missing." The response parameter is not missing, however, if the URL is to be believed, so I'm confused as to why the error is occurring.
    I tried to resolve the problem by generating a new reCAPTCHA key pair for my domain (did not work), and by editing phpMyAdmin/libraries/plugins/auth/AuthenticationCookie.class.php to explicitly include the key pairs in the code as opposed to having them be pulled from config.inc.php in the main phpMyAdmin working directory where they are defined using:
    $cfg['CaptchaLoginPublicKey'] = 'PUBLIC-KEY';
    $cfg['CaptchaLoginPrivateKey'] = 'PRIVATE-KEY';
    This did not work, either.
    Is anybody else who uses reCAPTCHA with phpMyAdmin experiencing the same problem with the upgrade to reCAPTCHA v2? Or is there a possible bug in the recaptchalib.php configuration file for v2? I have also asked the same question on Stack Overflow, which is supposedly where phpMyAdmin support is now handled according to the phpMyAdmin official site, but have not received any responses yet. Any and all feedback would be appreciated.
    Last edited by cmorgenstern (2015-04-11 23:46:05)

    I already have openssl.so uncommented in my php.ini file, so I don't think that's the problem. Thanks for the suggestions, though.
    My setup is remotely accessible via a web server. The only symlink I have is from /etc/webapps/phpmyadmin/config.inc.php to /usr/share/webapps/phpmyadmin/config.inc.php so that phpmyadmin can find the config file when logging in. Is that what you're referring to?

  • Acrobat 7 plugin not working in Acrobat 8

    Hi,
    I have developped a plugin that run correctly in Acrobat 7.
    But if I use it in Acrobat 8 some fucntions are not working.
    Are there incompatibilities between versions ?
    Thanks

    Yes I have just tryed recompiling with SDK 8 Headers fles but it is worst. I have more functions that don't work.
    Functionnalities not working in Acrobat 8 :
    - Creating toolbars described in an xml file
    - When cliking a toolbar button updating a toolbar menu (the anchor button is well created but the menu is not attached to it)
    Thanks guys for your help

  • Java plugin not working with firefox1.0.4 post 11i installation.

    Do anyone has idea which java plugin is requried for firefox1.0.4 to open Java applets after installation of 11i EBS?
    I have checked jre1.6 update 5, it is perfectly installed and associated but not working for 11i applets.
    Kindly do also tell me where to download the jdk version from?
    thanx
    Regards,
    M. Farooq

    Duplicate post
    Jiniatior with browser firefox1.0.4 post 11i EBS installation
    Re: Jiniatior with browser firefox1.0.4 post 11i EBS installation

  • Sample plugins not working with Netscape 7 on Solaris 8.

    I'm trying to build a scriptable plugin for deployment into Netscape 7
    and Solaris 8.
    I finally got mozilla 1.4.1 built under Solaris 8 and deployed the
    plugin from modules/plugin/tools/sdk/samples/simple. By deployed I
    mean that I copied the libnpsimple.so file to the netscape plugin
    directory and copied the .xpt files to the netscape components
    directory. I even removed the xpti.dat file from the netscape
    components directory so that it will get regenerated when netscape 7
    is started.
    I started up netscape 7 and checked about plugins and I find the
    simple plugin in the list of enabled plugins. So far, so good.
    I open the test.html file in modules/plugin/tools/sdk/samples/simple
    into the browser and click on the version button and I get an alert
    box that displays "undefined". Also, if I reload the page netscape
    crashes.
    I also tried the scriptable sample plugin with essentially the same
    result.
    Does anyone know what I need to do to get a sample plugin to work with
    Netscape 7 on Solaris 8.
    Some help would be very much appreciated.
    Thanks.

    Start by fixing the Xhtml coding errors:
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.frontiers.uk.net%2F&charset=%28detect+a utomatically%29&doctype=Inline&group=0
    And CSS errors:
    http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.frontiers.uk.net%2F&warn ing=1&profile=css21&usermedium=all
    Your 50% site stats probably include Mozilla/Firefox users.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "pawpour" <[email protected]> wrote in
    message
    news:fbghtk$o3s$[email protected]..
    > Hello everybody
    >
    > My site is up at www.Frontiers.uk.net. I used
    Dreamweaver CS3, with CSS,
    on a
    > Mac.
    >
    > It seems to work fine in IE 6 & 7, Firefox and
    Safari. When doing a
    browser
    > compatibility check, I get one error: "Double float
    margin bug", which it
    says
    > affects IE 6. I don't think this is causing a problem.
    >
    > However in Netscape (I've only tried version 7) the site
    looks terrible -
    the
    > right hand link in the navbar drops down to the second
    line.
    >
    > Also, there are two DIVS, one floated left and one
    floating right, and in
    > Netscape the right one drops underneath the other. I
    know that there can
    be
    > problems with IE 5, in its dealing with margins but I
    havent heard
    anything
    > about Netscape being a problem? Also I thought that the
    IE box model bug
    can
    > just make the DIVS narrower, not make one drop below the
    other.
    >
    > Dreamweaver isn't throwing up any browser errors for
    Netscape.
    >
    > I thought that hardly anyone would use Netscape, but the
    stats for my
    site say
    > that around 50% of users are using Netscape (which i
    find hard to
    believe!)
    >
    > Any ideas what I've done wrong or how to fix this for
    Netscape?
    >

  • LocalConnection to run a function in another .swf not working....

    I'm trying to establish a LocalConnection so that I can communicate between my navbar & the main page on my website. Here is the code I have so far for the sending and receiving AS3 files, please let me know if you see anything out of the ordinary. The idea is that when you click on one of the icons on the navbar my "book" slides down to the center of the screen on the correct page. I actually have 4 buttons but only included the code I'm using for two in order to make this post shorter. The same idea is used for all four buttons though.
    Sending:
    var sending_lc:LocalConnection;
    sending_lc = new LocalConnection();
    servicesBtn.buttonMode = true;
    portfolioBtn.buttonMode = true;
    function servicesBtnOver(event:MouseEvent):void{
    servicesBtn.gotoAndPlay('over');
    function servicesBtnOut(event:MouseEvent):void{
    servicesBtn.gotoAndPlay('out');
    function servicesBtnClick(event:MouseEvent):void{
    sending_lc.send("my_lc_as3", "gotoServicesPage");
    servicesBtn.addEventListener(MouseEvent.ROLL_OVER, servicesBtnOver);
    servicesBtn.addEventListener(MouseEvent.ROLL_OUT, servicesBtnOut);
    servicesBtn.addEventListener(MouseEvent.CLICK, servicesBtnClick);
    function portfolioBtnOver(event:MouseEvent):void{
    portfolioBtn.gotoAndPlay('over');
    function portfolioBtnOut(event:MouseEvent):void{
    portfolioBtn.gotoAndPlay('out');
    function portfolioBtnClick(event:MouseEvent):void{
    sending_lc.send("my_lc_as3", "gotoPortfolioPage");
    portfolioBtn.addEventListener(MouseEvent.ROLL_OVER, portfolioBtnOver);
    portfolioBtn.addEventListener(MouseEvent.ROLL_OUT, portfolioBtnOut);
    portfolioBtn.addEventListener(MouseEvent.CLICK, portfolioBtnClick);
    Receiving:
    import com.greensock.*;
    import com.greensock.easing.*;
    var receiving_lc:LocalConnection;
    receiving_lc = new LocalConnection();
    receiving_lc.connect("my_lc_as3");
    receiving_lc.client = this;
    var bookPosition:String = "up";
    function gotoServicesPage(event:MouseEvent):void {
         book.gotoAndStop('webDesignPage');
    if (bookPosition == "up");
            TweenLite.to(book, 2, {y:830});
              var bookPosition == "down";
    function gotoPortfolioPage(event:MouseEvent):void{
         book.gotoAndStop('porftolioPage');
    if (bookPosition == "up");
            TweenLite.to(book, 2, {y:830});
             var bookPosition == "down";
    The reason I'm keeping track of whether the book is in the "up" or "down" is so that if it's in the down position already it doesn't re-tween back onto the screen. I am new to declaring and using variables; TweenLite; and LocalConnection so there is probably some simple problem with my AS3 code (although no errors are coming up in Flash). Any help would be much appreciated.

    Alright I'm going to fix one problem at a time, starting with the LocalConnection. I've checked several websites for tutorials and examples but cannot seem to get it working properly. I'm just trying to run a simple function over it and can't get it working. Once I can get it working, I'll modify the rest of the code to do what I need. Right now I'm just trying to use it to run a function (slideServicesIn) in a seperate swf. file. I've checked and rechecked the code and just can't figure out why it's not working.
    Here's the sending code:
    import flash.net.LocalConnection;
    import flash.events.MouseEvent;
    var lc:LocalConnection = new LocalConnection();
    function servicesBtnClick(event:MouseEvent):void{
    lc.send("my_lc_as3","slideServicesIn");
    servicesBtn.addEventListener(MouseEvent.CLICK, servicesBtnClick);
    Looks pretty simple.... And here's the receiving code:
    import flash.net.LocalConnection;
    var lc:LocalConnection = new LocalConnection();
    lc.connect("my_lc_as3");
    /*If you're not familiar with TweenLite or TweenMax, I can revise the code. I can't get it to work even just to go to a certain frame label. This seems pretty basic if you are even a little familiar with TweenLite/Tweenmax*/
    import com.greensock.*;
    import com.greensock.easing.*;
    import com.greensock.plugins.*;
    var bookPosition:String = "up";
    var currentPage:String;
    function slideServicesIn ():void{
             if (bookPosition = "up"){
             //Goes to a certain frame label in the book movie clip
             book.gotoAndStop("webDesignPage");
             //Slides the book down 825px from the top of the screen using TweenLite
             TweenLite.to(book, 3, { y:825 } );
             bookPosition = "down";
             currentPage = "book.servicesPage";
            else () {
             //Fades out the current page using TweenLite
             TweenLite.to(currentPage, 1, { alpha:0, ease:Quad.easeIn } );
             //Fades in the Web Design Page using Tweenlite
             TweenLite.to(book.webDesignPage, 1, { alpha:1, ease:Quad.easeIn, delay: .2 } );

Maybe you are looking for

  • Opening a blank forms_mdi_window

    Hi, Could someone show me how to display a blank Forms_MDI_Windows, I know there must be a trick to display the blank MDI window. I wanted this because I my application to display this window first so that user can decide where they want to go themse

  • HT201317 Is there a way to tell when a photo in your photo stream was taken?

    Is there a way to tell when a photo was added to photo stream. How do photos appear on photo stream? Are they downloaded from my iPhone when I save a picture that was texted to me? Do they then go right into my photo stream?

  • Safari not loading pages/Crashing at launch

    Hey there! I have been using Safari as my default internet browser since I got my Mac almost 3 years ago, and have never encountered this problem. Every time I try to open up Safari and load my homepage, it begins to load, and then freezes, freezing

  • Only General Tab showing on my Safari Preferences???

    The only tab I have is the general. Does anyone know how I get the rest of these tabs to show up again? General Appearence Bookmarks Tabs AutoFill Security Advanced Thanks to anyone that can help. Bobbi

  • Another PowerBook 5300 Question

    These PowerBooks came preloaded with System 7.5.2. I need to get or create a boot disk so I can repair the hard drive, which according to Disk First Aid it needs. I used Floppy Disk Maker to create a backup set of software disks, but none was labeled