Bookmarking Url

Hi there,
          I have an application with a front-servlet that handles all the requests
          from the browser.
          Sometimes the request comes as submit-button requests and sometimes the
          servlet
          is activated from a href.
          When the submit button is used a servlet is activated with a post
          method,which prevents
          user from bookmarking Url. This is all fine.
          How can I do the same when the user clicks on a href ?
          I want the servlet to get activated without exposing the command and
          parameters in the Url.
          Is that possible ?
          Should I use JavaScript ?
          ..thanks in advance
          Per Lovdinger
          

There are two things that web apps perform:
          - do
          - show
          You should typically not have "do" items bookmarkable. That means that a
          POST from a form should not be the resultant page's URL.
          Consider:
          page1 -> post -> page2
          This is usually accomplished by page2 being returned by the Servlet that
          handles the POST. If instead, the Servlet returns a Javascript redirect (or
          does a sendRedirect) to the page2 URL, then the user can save the bookmark.
          Peace,
          Cameron Purdy
          Tangosol, Inc.
          http://www.tangosol.com
          Tangosol Server: Enabling enterprise application customization
          "Per Lovdinger" <[email protected]> wrote in message
          news:[email protected]...
          > Hi there,
          >
          > I have an application with a front-servlet that handles all the requests
          > from the browser.
          >
          > Sometimes the request comes as submit-button requests and sometimes the
          > servlet
          > is activated from a href.
          >
          > When the submit button is used a servlet is activated with a post
          > method,which prevents
          > user from bookmarking Url. This is all fine.
          >
          > How can I do the same when the user clicks on a href ?
          > I want the servlet to get activated without exposing the command and
          > parameters in the Url.
          > Is that possible ?
          >
          > Should I use JavaScript ?
          >
          > ..thanks in advance
          > Per Lovdinger
          >
          >
          >
          

Similar Messages

  • Getting "Error 403--Forbidden" while accessing ADF bookmarked URL

    Hi,
    Here am trying to work with an ADF application to suport bookmarking.
    Following are the steps I did to create a sample application.
    Created a bounded task-flow (user-details.xml), which has the "Method call" as default activity along with an another view activity(userData.jsff page).
    This task-flow takes an input parameter "Id" to display user details. In the method call activity user data will be initialized using the given input parameter and then the data will be displayed using userData.jsff page.
    Created a view activity (details.jspx page) in adfc-config.xml file.
    Marked the "details.jspx" file as bookmark-able by changing "Bookmark property to true" and given a Bookmark URL Parameter "Name is Id and Value is #{pageFlowScope.user_id}".
    Dropped the bounded task-flow user-details.xml as a region into the details.jspx file.
    Now the user_id which is coming as URL Parameter will be passed to user-details.xml task-flows input parameter value.
    Created users.jspx page which lists all the users as home page. In the users.jspx page we'll have a link to user details page with a parameter Id.
    By running the application will get users page. When I click on the user details link in the users page, the app showing user details page as expected.
    Now I bookmarked the user details page. If I open the bookmarked page in the same tab, it is working fine. But when I open this bookmark in a new tab getting the "Error 403--Forbidden" response.
    Bookmarked URL: localhost:7101/BookmarkTestApp-ViewController-context-root/faces/user_details?id=123&_afrWindowMode=0&_afrLoop=4884151149818&_adf.ctrl-state=35yghmx4f_18
    When I click the above bookmark in another tab the url is processing for few seconds ( 2 to 3 seconds) and converts to localhost:7101/BookmarkTestApp-ViewController-context-root/ and giving 403 response. At this time it is not touching my beans at all (verified this by running the server in debug mode).
    Web.xml looks like:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
             version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
      <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
      </context-param>
      <context-param>
        <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
        <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
        <param-value>false</param-value>
      </context-param>
      <context-param>
        <description>Whether the 'Generated by...' comment at the bottom of ADF Faces HTML pages should contain version number information.</description>
        <param-name>oracle.adf.view.rich.versionString.HIDDEN</param-name>
        <param-value>true</param-value>
      </context-param>
      <filter>
        <filter-name>trinidad</filter-name>
        <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
      </filter>
      <filter>
        <filter-name>adfBindings</filter-name>
        <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
      </filter>
      <filter-mapping>
        <filter-name>trinidad</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <filter-mapping>
        <filter-name>adfBindings</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <listener>
        <listener-class>oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack</listener-class>
      </listener>
      <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet>
        <servlet-name>resources</servlet-name>
        <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>BIGRAPHSERVLET</servlet-name>
        <servlet-class>oracle.adfinternal.view.faces.bi.renderkit.graph.GraphServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>BIGAUGESERVLET</servlet-name>
        <servlet-class>oracle.adfinternal.view.faces.bi.renderkit.gauge.GaugeServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>MapProxyServlet</servlet-name>
        <servlet-class>oracle.adfinternal.view.faces.bi.renderkit.geoMap.servlet.MapProxyServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>GatewayServlet</servlet-name>
        <servlet-class>oracle.adfinternal.view.faces.bi.renderkit.graph.FlashBridgeServlet</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/adf/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/afr/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>BIGRAPHSERVLET</servlet-name>
        <url-pattern>/servlet/GraphServlet/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>BIGAUGESERVLET</servlet-name>
        <url-pattern>/servlet/GaugeServlet/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>MapProxyServlet</servlet-name>
        <url-pattern>/mapproxy/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/bi/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>GatewayServlet</servlet-name>
        <url-pattern>/flashbridge/*</url-pattern>
      </servlet-mapping>
      <mime-mapping>
        <extension>swf</extension>
        <mime-type>application/x-shockwave-flash</mime-type>
      </mime-mapping>
      <jsp-config>
        <jsp-property-group>
          <url-pattern>*.jsff</url-pattern>
          <is-xml>true</is-xml>
        </jsp-property-group>
      </jsp-config>
    </web-app>
    Am I missing any thing here.
    Thanks in advance.
    -Gopal.

    https://blogs.oracle.com/DavidGiammona/entry/why_do_i_get_this_error_403_--

  • Creating Bookmarkable URLs - two or more parameters

    I followed the tutorial "Creating Bookmarkable URLs" and I was able to pass 1 parameter OK with values from a database. I don't know the syntax for multiple parameters, though, when using the IDE Design view. I really would like to have bookmarkable URLs using multiple parameters.
    In the url property for the group of hyperlinks, I tried:
    /faces/Report.jsp?testableentityconfigId=#{currentRow.value['testableentityconfig.testableEntityConfigID']}&modelId=#{currentRow.value['device.deviceModelID']}
    When I run the program, the url in the address bar looks like this:
    /Reporting/faces/Report.jsp?testableentityconfigId=%23%7BcurrentRow.value%5B'testableentityconfig.testableEntityConfigID'%5D%7D&%3BmodelId=5
    The desired output would look like this:
    /Reporting/faces/Report.jsp?testableentityconfigId=2&modelId=5

    I tried it (using the TRAVEL FLIGHT table) and it worked for me.
    My url property setting in the Properties window looks like this:
    /faces/Details.jsp?flightId=#{currentRow.value['FLIGHT.FLIGHTID']}&tripId=#{currentRow.value['FLIGHT.TRIPID']}My JSP looks like this:
    <webuijsf:hyperlink binding="#{Page1.hyperlink1}" id="hyperlink1" text="text" url="/faces/Details.jsp?flightId=#{currentRow.value['FLIGHT.FLIGHTID']}&tripId=#{currentRow.value['FLIGHT.TRIPID']}"/>

  • Output Bookmark URL to dashboard page

    Hi,
    Once the user selects 'Create Bookmark Link' from the 'Page Options', is there any way in 11g to output the bookmark URL to the dashboard page/alert rather than the address bar?
    Regards

    876718 wrote:
    Hi,
    Once the user selects 'Create Bookmark Link' from the 'Page Options', is there any way in 11g to output the bookmark URL to the dashboard page/alert rather than the address bar?
    RegardsHi,
    There is no such in-built functionality available to do that, but one work around I can think of is using the new favorites functionality. You can navigate through the catalog and add the object's that you think are most used by you to the favorite's section. As you probably already know, there is a favorites menu link which you can access these objects you have Favorited from.
    For more details refer to this on step to step guide for using favorites: http://deliverbi.blogspot.com/2012/03/obiee-11116-favourites.html
    Thanks,
    -A.Y

  • What is the best method for bookmarkable URLs

    Hi Everyone,
    I've been working with JSF for a little while now, and I've been using RestFaces ( [https://restfaces.dev.java.net/|https://restfaces.dev.java.net/] ) for my bookmarkable URLs, but there are still a few limitations, like, when validations phase occurs, the real path to the JSF page is exposed (currently working on a fix, but it's lead me to ask some other questions.)
    What has everyone's experience been?
    I want to be able to use Pretty URLs as Links, commandButtons (aka, as a result of an action method / or any navigation event).
    So:
    http://mysite.com/app/viewuser/username1
    This URL should bring me to the viewUser page... and if they choose to take an action, "Edit a user" by clicking a command button for example, then they should be redirected to the editUser page, which should still have a pretty URL: http://mysite.com/app/edituser/username1
    Effectively, I want to alias a pretty URL to a page:
    /Login -> /faces/login.jspx
    /viewUser/{username} -> /faces/viewUser.jspx (and also sets the username parameter based on the value parsed from the URL)
    /editUser/{username} -> /faces/editUser.jspx (and also sets the username parameter based on the value parsed from the URL)
    I know PrettyURLPhaseListener helps with this, but it does not enable rendering of pretty URLs after navigation like RESTfaces does.
    Thoughts? Thanks.

    Ok, so I solved my problem by creating a JSF extension.
    [ PrettyFaces|http://ocpsoft.com/prettyfaces/]
    I wrote it recently and released it as opensource in order to fix some of the major problems with existing JSF URL mapping tools.

  • Firefox closes when "tools"+ "options" clicked & won`t respond to Typed URLs but ok with "bookmarked"urls

    Investigating why FF was using so much memory I was advised to use "Restore Firefox" button.
    Did that but now I can`t use "tools" "options" `cos it closes the browser. Other menus under "tools" work OK.
    If I try to download any updates for plug-ins etc the FF browser closes down.
    Can`t browse my images folders to add to interactive sites.....closes down FF
    Can type a URL but nothing happens but if I enter a "bookmarked" url or a "history" url then it is OK
    Firefox is 16.0.1
    Any help appreciated please.

    Thanks for your response.Unfortunately when I try to download '''anything''' my browser closes so I can`t reinstall Firefox.
    Many of the fixes say "go to Tools & Options" but when I click on Options the browser again closes.
    I seem to have lost access to IE some while ago and have been using Firefox OK up until recently, but then my computer started to go very slow and the Task Manager keeps showing 100% usage of the CPU.
    When I start the pc with only the desktop displaying, the CPU usage is 60-70% and around 35 processes are running. Is this normal?
    When I open Firefox the usage increases rapidly until the CPU shows 100%.
    It was while resetting Firefox to try and sort this usage problem that I lost my download ability and the use of "tools" then "options" and also urls that are typed in.(bookmarks & history ok)
    Any advice welcome.

  • Safari is suddenly crashing on startup. Can I salvage bookmark urls?

    For no explicable reason, Safari is "quitting unexpectedly" whenever I try to open it. It clocks trying to find the Google homepage for about 20 seconds before crashing. I was using it without a hitch earlier today, and then all of a sudden, it's dead.
    • I tried downloading Safari 5.0.4. from the Apple website, and the first time I opened Safari after the download, I got to the Google homepage. However, when I tried to select the Bookmarks dropdown menu, it crashed and subsequent startups have gone back to crashing without opening the homepage.
    • I have a couple extensions installed on Safari, but they haven't caused issues in the past, and I've had them for a while without problems.
    • Firefox works fine.
    *Is there any way to salvage my bookmarks from Safari?*
    I just need the urls so I can switch to Firefox or Chrome.
    Here's the Error Log in case you have any insight.
    Process: Safari [958]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0.4 (6533.20.27)
    Build Info: WebBrowser-75332027~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [112]
    Date/Time: 2011-03-26 20:32:47.415 -0500
    OS Version: Mac OS X 10.6.7 (10J869)
    Report Version: 6
    Interval Since Last Report: 5898 sec
    Crashes Since Last Report: 8
    Per-App Interval Since Last Report: 369 sec
    Per-App Crashes Since Last Report: 8
    Anonymous UUID: 8AB4C575-0FA9-4920-A9AF-9E5757364EDB
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread: 6 Safari: SafeBrowsingManager
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff83d5729a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83d5790d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff819f6932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff819f5dbf CFRunLoopRunSpecific + 575
    4 com.apple.HIToolbox 0x00007fff870067ee RunCurrentEventLoopInMode + 333
    5 com.apple.HIToolbox 0x00007fff870065f3 ReceiveNextEventCommon + 310
    6 com.apple.HIToolbox 0x00007fff870064ac BlockUntilNextEventMatchingListInMode + 59
    7 com.apple.AppKit 0x00007fff8407de64 _DPSNextEvent + 718
    8 com.apple.AppKit 0x00007fff8407d7a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9 com.apple.Safari 0x0000000100016062 0x100000000 + 90210
    10 com.apple.AppKit 0x00007fff8404348b -[NSApplication run] + 395
    11 com.apple.AppKit 0x00007fff8403c1a8 NSApplicationMain + 364
    12 com.apple.Safari 0x0000000100009f84 0x100000000 + 40836
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff83d7012a kevent + 10
    1 libSystem.B.dylib 0x00007fff83d71ffd dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff83d71cd4 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff83d717fe dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff83d71128 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff83d70fc5 start_wqthread + 13
    Thread 2:
    0 libSystem.B.dylib 0x00007fff83d70f4a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff83d7135c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff83d70fc5 start_wqthread + 13
    Thread 3: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff83d98dda fsync + 10
    1 libsqlite3.dylib 0x00007fff85fc0827 unixSync + 71
    2 libsqlite3.dylib 0x00007fff85fd3dfa sqlite3PagerCommitPhaseOne + 826
    3 libsqlite3.dylib 0x00007fff85fd9fbe sqlite3BtreeCommitPhaseOne + 558
    4 libsqlite3.dylib 0x00007fff86002133 sqlite3VdbeHalt + 3107
    5 libsqlite3.dylib 0x00007fff860465bd sqlite3VdbeExec + 41661
    6 libsqlite3.dylib 0x00007fff86047798 sqlite3_step + 1384
    7 com.apple.WebCore 0x00007fff88561a9b WebCore::SQLiteStatement::executeCommand() + 27
    8 com.apple.WebCore 0x00007fff8856560a WebCore::SQLiteDatabase::executeCommand(WebCore::String const&) + 42
    9 com.apple.WebCore 0x00007fff88565698 WebCore::SQLiteTransaction::commit() + 104
    10 com.apple.WebCore 0x00007fff88779830 WebCore::IconDatabase::pruneUnretainedIcons() + 752
    11 com.apple.WebCore 0x00007fff88565181 WebCore::IconDatabase::syncThreadMainLoop() + 321
    12 com.apple.WebCore 0x00007fff8856123c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    13 libSystem.B.dylib 0x00007fff83d904f6 pthreadstart + 331
    14 libSystem.B.dylib 0x00007fff83d903a9 thread_start + 13
    Thread 4: Safari: CertRevocationChecker
    0 libSystem.B.dylib 0x00007fff83d5729a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83d5790d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff819f6932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff819f5dbf CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002f631 0x100000000 + 194097
    5 com.apple.Safari 0x000000010002f5c1 0x100000000 + 193985
    6 libSystem.B.dylib 0x00007fff83d904f6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83d903a9 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff83d5729a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83d5790d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff819f6932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff819f5dbf CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff82d64f5f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff82ce5f29 _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff83d904f6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83d903a9 thread_start + 13
    Thread 6 Crashed: Safari: SafeBrowsingManager
    0 libsqlite3.dylib 0x00007fff85fe579c checkTreePage + 1644
    1 libsqlite3.dylib 0x00007fff85fe5321 checkTreePage + 497
    2 libsqlite3.dylib 0x00007fff86043eed sqlite3VdbeExec + 31725
    3 libsqlite3.dylib 0x00007fff86047798 sqlite3_step + 1384
    4 com.apple.Safari 0x00000001000323d2 0x100000000 + 205778
    5 com.apple.Safari 0x0000000100100eaa 0x100000000 + 1052330
    6 com.apple.Safari 0x000000010003207b 0x100000000 + 204923
    7 com.apple.Safari 0x0000000100031f92 0x100000000 + 204690
    8 com.apple.Safari 0x0000000100031ef5 0x100000000 + 204533
    9 com.apple.Safari 0x0000000100031971 0x100000000 + 203121
    10 com.apple.Safari 0x0000000100031796 0x100000000 + 202646
    11 com.apple.Safari 0x0000000100031717 0x100000000 + 202519
    12 com.apple.Safari 0x000000010003165c 0x100000000 + 202332
    13 com.apple.Safari 0x0000000100030ee8 0x100000000 + 200424
    14 com.apple.Safari 0x000000010003002e 0x100000000 + 196654
    15 com.apple.Safari 0x000000010002fde5 0x100000000 + 196069
    16 com.apple.CoreFoundation 0x00007fff819f8401 __CFRunLoopDoSources0 + 1361
    17 com.apple.CoreFoundation 0x00007fff819f65f9 __CFRunLoopRun + 873
    18 com.apple.CoreFoundation 0x00007fff819f5dbf CFRunLoopRunSpecific + 575
    19 com.apple.Safari 0x000000010002f631 0x100000000 + 194097
    20 com.apple.Safari 0x000000010002f5c1 0x100000000 + 193985
    21 libSystem.B.dylib 0x00007fff83d904f6 pthreadstart + 331
    22 libSystem.B.dylib 0x00007fff83d903a9 thread_start + 13
    Thread 7: Safari: SpinningProgressIndicator
    0 libSystem.B.dylib 0x00007fff83d5729a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff83d5790d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff819f6932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff819f5dbf CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff82d207c4 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff82d206a3 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.Safari 0x00000001000900c3 0x100000000 + 590019
    7 com.apple.Foundation 0x00007fff82ce5f29 _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff83d904f6 pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff83d903a9 thread_start + 13
    Thread 8: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff83d91f8a _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83d95da1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff83ad7a40 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001be5ed 0x100000000 + 1828333
    4 com.apple.Safari 0x0000000100047113 0x100000000 + 291091
    5 com.apple.Safari 0x0000000100046f91 0x100000000 + 290705
    6 libSystem.B.dylib 0x00007fff83d904f6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83d903a9 thread_start + 13
    Thread 9: WebCore: LocalStorage
    0 libSystem.B.dylib 0x00007fff83d91f8a _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83d95da1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff83ad7a40 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.WebCore 0x00007fff888b5fb1 WebCore::LocalStorageThread::threadEntryPoint() + 193
    4 libSystem.B.dylib 0x00007fff83d904f6 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83d903a9 thread_start + 13
    Thread 10: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x00007fff83d9ae52 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff81a18498 __CFSocketManager + 824
    2 libSystem.B.dylib 0x00007fff83d904f6 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff83d903a9 thread_start + 13
    Thread 11: Dispatch queue: com.apple.CFURLCACHEworkqueue
    0 libSystem.B.dylib 0x00007fffffe00f2e __memcpy + 1934
    1 libsqlite3.dylib 0x00007fff85fd688a allocateBtreePage + 2458
    2 libsqlite3.dylib 0x00007fff85fd9c1e incrVacuumStep + 814
    3 libsqlite3.dylib 0x00007fff86040273 sqlite3VdbeExec + 16243
    4 libsqlite3.dylib 0x00007fff86047798 sqlite3_step + 1384
    5 libsqlite3.dylib 0x00007fff860482e5 sqlite3_exec + 341
    6 com.apple.CFNetwork 0x00007fff82a79e52 __CFURLCache::ExecSQLStatement(sqlite3*, char const*, int ()(void, int, char**, char**), void*, long) + 74
    7 com.apple.CFNetwork 0x00007fff82a59a8d ProcessCacheTasks(__CFURLCache*) + 1329
    8 com.apple.CFNetwork 0x00007fff82a59099 _CFURLCacheTimerCallback(void*) + 204
    9 com.apple.CFNetwork 0x00007fff82a6e6d5 _CFURLCacheCreate_block_invoke3 + 66
    10 libSystem.B.dylib 0x00007fff83d72913 dispatch_sourceinvoke + 273
    11 libSystem.B.dylib 0x00007fff83d71cd4 dispatch_queueinvoke + 185
    12 libSystem.B.dylib 0x00007fff83d71dfc dispatch_queuedrain + 261
    13 libSystem.B.dylib 0x00007fff83d71c54 dispatch_queueinvoke + 57
    14 libSystem.B.dylib 0x00007fff83d717fe dispatch_workerthread2 + 252
    15 libSystem.B.dylib 0x00007fff83d71128 pthreadwqthread + 353
    16 libSystem.B.dylib 0x00007fff83d70fc5 start_wqthread + 13
    Thread 12:
    0 libSystem.B.dylib 0x00007fff83d70f4a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff83d7135c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff83d70fc5 start_wqthread + 13
    Thread 6 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000007 rbx: 0x000000010171ac78 rcx: 0x00000000000000a5 rdx: 0x0171a23000000010
    rdi: 0x00007fff70bb1428 rsi: 0x0000000000000000 rbp: 0x000000011586e360 rsp: 0x000000011586e220
    r8: 0x00007fff70bb1428 r9: 0x0000000000000001 r10: 0x0000000000000221 r11: 0x00007fff85fbe940
    r12: 0x0000000000000000 r13: 0x000000010171b420 r14: 0x0000000000003cf1 r15: 0x000000011586eb50
    rip: 0x00007fff85fe579c rfl: 0x0000000000010212 cr2: 0x0000000075df5090
    Binary Images:
    0x100000000 - 0x1006affff com.apple.Safari 5.0.4 (6533.20.27) <BE30083C-FAEA-E0C4-BD94-C3A586B14A64> /Applications/Safari.app/Contents/MacOS/Safari
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80004ff7 com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8002f000 - 0x7fff80074fff com.apple.CoreMediaIOServices 134.0 (1160) <BA22EA4A-4572-749A-4FE0-1323E0B6F6F3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff80075000 - 0x7fff8077206f com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff80773000 - 0x7fff8079bfff com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8079c000 - 0x7fff80fa6fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff80fa7000 - 0x7fff81041ff7 com.apple.ApplicationServices.ATS 4.4 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff81042000 - 0x7fff81284fe7 com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff81287000 - 0x7fff812c0fef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
    0x7fff813cd000 - 0x7fff8148efff libFontParser.dylib ??? (???) <244BCE74-7EEE-C9DE-9779-F3AEF5869BE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8148f000 - 0x7fff814beff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff814bf000 - 0x7fff8150eff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff81533000 - 0x7fff815c2fff com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff815c3000 - 0x7fff81606ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <2C596A24-8B86-79D6-1A8E-5E8FFB6A1558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff81607000 - 0x7fff817c5fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
    0x7fff817c6000 - 0x7fff81832ff7 com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff81833000 - 0x7fff81888ff7 com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff818bf000 - 0x7fff818d1fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff81930000 - 0x7fff81979ff7 com.apple.securityinterface 4.0.1 (40418) <E2DC796D-84EC-48F5-34A9-DF614573BE74> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff819aa000 - 0x7fff81b21fe7 com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff81bfd000 - 0x7fff81d1efe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff81deb000 - 0x7fff81e00ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff822b4000 - 0x7fff82344fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff82345000 - 0x7fff82353ff7 libkxld.dylib ??? (???) <4016E9E6-0645-5384-A697-2775B5228113> /usr/lib/system/libkxld.dylib
    0x7fff8238f000 - 0x7fff823aaff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff823cc000 - 0x7fff823e0ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff825dc000 - 0x7fff82979fe7 com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff829db000 - 0x7fff82a06ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff82a07000 - 0x7fff82a48ff7 com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff82a49000 - 0x7fff82b1bfe7 com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff82b1c000 - 0x7fff82cd4fef com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff82cd5000 - 0x7fff82f58fe7 com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff82f59000 - 0x7fff8345dfe7 com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff8345e000 - 0x7fff83469fff com.apple.corelocation 12.1 (12.1) <7B5164FD-F5FD-6837-1DA3-6E18582CEDF3> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff83543000 - 0x7fff83564fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
    0x7fff83729000 - 0x7fff837a8fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1DD64A62-0DE4-223F-F781-B272FECF80F0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff837a9000 - 0x7fff83809fe7 com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8384c000 - 0x7fff8387dfff libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8387e000 - 0x7fff8387eff7 com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8387f000 - 0x7fff83885ff7 com.apple.CommerceCore 1.0 (9) <4C66D962-91B5-F25C-A6FF-DFD5F924A0DD> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff838b6000 - 0x7fff83902fff libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
    0x7fff83903000 - 0x7fff8391cfff com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8391d000 - 0x7fff8395efff com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8396b000 - 0x7fff83972fff com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff839b2000 - 0x7fff839f3fef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff839f4000 - 0x7fff839f4ff7 com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff839f5000 - 0x7fff83a57fe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff83a58000 - 0x7fff83a5dfff libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff83a5e000 - 0x7fff83a74fe7 com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff83a75000 - 0x7fff83a84fff com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff83a85000 - 0x7fff83a8bff7 IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff83a8c000 - 0x7fff83ac5ff7 com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff83ac6000 - 0x7fff83cb6fef com.apple.JavaScriptCore 6533.20 (6533.20.20) <0AA8B101-C02C-0858-84BC-4E4D397E0231> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff83cb7000 - 0x7fff83d39fff com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff83d3d000 - 0x7fff83d4efff SyndicationUI ??? (???) <62A4BC15-72EA-0CC1-046A-52E576E8D751> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff83d4f000 - 0x7fff83d55ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff83d56000 - 0x7fff83f17fff libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    0x7fff83f3a000 - 0x7fff83f81fff com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff83f82000 - 0x7fff83f96fff libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff83f97000 - 0x7fff83f98ff7 com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff83f99000 - 0x7fff84039fff com.apple.LaunchServices 362.2 (362.2) <A8EDC37C-1D40-5ED0-49BE-90EF110A6B3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff8403a000 - 0x7fff84a30fff com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff84a31000 - 0x7fff84a78ff7 com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff84a8f000 - 0x7fff84b95fe7 com.apple.PubSub 1.0.5 (65.21) <1F9B7C84-375D-036F-790A-02BBE7BCE445> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff84bbe000 - 0x7fff84c02fe7 com.apple.ImageCaptureCore 1.0.4 (1.0.4) <F4ED3329-1A86-EB10-CFC2-999D8699B5E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff84c03000 - 0x7fff84c20ff7 libPng.dylib ??? (???) <0C232C1E-49C8-F7A9-9634-DF2BDA1AB722> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff84c21000 - 0x7fff84d2bff7 com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff84d2c000 - 0x7fff84d31ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff84db9000 - 0x7fff84db9ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff84dba000 - 0x7fff851fdfef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff851fe000 - 0x7fff8521eff7 com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8521f000 - 0x7fff8535dfff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8535e000 - 0x7fff85364fff libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <C863C133-EA3E-5403-FC44-FDC9F236DC98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff85365000 - 0x7fff85370fff com.apple.CrashReporterSupport 10.6.7 (258) <BB0B9A08-6CEC-0500-5BD1-C18E1465E406> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff85387000 - 0x7fff8540cff7 com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8540d000 - 0x7fff854bdfff edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff85509000 - 0x7fff85586fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff85593000 - 0x7fff858c7fff com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff858c8000 - 0x7fff858fbfff libTrueTypeScaler.dylib ??? (???) <632BAC10-4C24-D1F2-3943-DF5F2326318B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff858fc000 - 0x7fff8597aff7 com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff8597b000 - 0x7fff859cafef libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff859cb000 - 0x7fff85ab1fef com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff85b0c000 - 0x7fff85c34ff7 com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff85c35000 - 0x7fff85c5aff7 com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff85c5b000 - 0x7fff85d90ff7 com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff85d91000 - 0x7fff85ea8fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
    0x7fff85ed9000 - 0x7fff85ee5fff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
    0x7fff85ee6000 - 0x7fff85f21fff com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff85f22000 - 0x7fff85f2dff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff85fbb000 - 0x7fff86074fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
    0x7fff86075000 - 0x7fff8608bfef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff861f6000 - 0x7fff86621fef com.apple.RawCamera.bundle 3.6.4 (561) <C4AB0054-B2C8-246E-0F17-98F4BD5BE94C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff86622000 - 0x7fff86625ff7 libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff86626000 - 0x7fff86626ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff867ce000 - 0x7fff867d7ff7 com.apple.DisplayServicesFW 2.3.0 (283) <3D05929C-AB17-B8A4-DC81-87C27C59E664> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff869d7000 - 0x7fff869d7ff7 com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff869d8000 - 0x7fff869d9fff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff869da000 - 0x7fff86c44fef com.apple.QuartzComposer 4.2 ({156.28}) <7586E7BD-D3BD-0EAC-5AC9-0BFA3679017C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff86c45000 - 0x7fff86c46fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff86c47000 - 0x7fff86c4aff7 com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff86c4b000 - 0x7fff86c61fff com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff86c62000 - 0x7fff86ceefef SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff86cef000 - 0x7fff86d57fff com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff86d9c000 - 0x7fff86d9efff libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff86d9f000 - 0x7fff86ddcff7 libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff86e92000 - 0x7fff86fabfef libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff86fac000 - 0x7fff86fbbfff com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff86fd8000 - 0x7fff872d6fff com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff872dd000 - 0x7fff87303fe7 libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff87313000 - 0x7fff8735cfef libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8735d000 - 0x7fff87598fef com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff87599000 - 0x7fff87676fff com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff87677000 - 0x7fff876f4fef com.apple.backup.framework 1.2.2 (1.2.2) <13A0D34C-28B7-2140-ECC9-B08D10CD4AB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff876f5000 - 0x7fff87747ff7 com.apple.HIServices 1.8.2 (???) <7C91D07D-FA20-0882-632F-0CAE4FAC2B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff87748000 - 0x7fff87809fef com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8780a000 - 0x7fff87a92fef com.apple.security 6.1.1 (37594) <34DC0C3E-4546-D7ED-D855-390750954245> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff87a93000 - 0x7fff87b48fe7 com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff87b49000 - 0x7fff87b4cfff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff87b4d000 - 0x7fff87b52fff libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff87b6f000 - 0x7fff87ba4fef com.apple.framework.Apple80211 6.2.4 (624.2) <B2CB69CE-A4F5-D70F-03DE-CF985D5558A2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff87ba5000 - 0x7fff87bb4fff libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
    0x7fff87daf000 - 0x7fff87f2dff7 com.apple.WebKit 6533.20 (6533.20.25) <7AFA5FA8-C044-A000-B666-59DAF1CCFF90> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff87f2e000 - 0x7fff87f71fef libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
    0x7fff87f72000 - 0x7fff87f7ffe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <45B5B514-7CEB-38A9-F34A-1D96F010EC42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff87f80000 - 0x7fff87f84ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <49E6AF5D-AF9B-67CF-A6B8-C79F6BA8A627> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff87f85000 - 0x7fff87f85ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff87f86000 - 0x7fff87f86ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff87f87000 - 0x7fff88003ff7 com.apple.ISSupport 1.9.4 (52) <93A57F16-3BD5-25AD-5CFF-00007A141129> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff88004000 - 0x7fff88015fff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff88016000 - 0x7fff88060ff7 com.apple.Metadata 10.6.3 (507.15) <5170FCE0-ED6C-2E3E-AB28-1DDE3F628FC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff88077000 - 0x7fff88077ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff88078000 - 0x7fff8807cff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8807d000 - 0x7fff880e7fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff880e8000 - 0x7fff880f9ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
    0x7fff88137000 - 0x7fff881a8ff7 com.apple.AppleVAFramework 4.10.23 (4.10.23) <3304268B-A93D-9F79-09C0-AA9081406352> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff881a9000 - 0x7fff8825ffff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff88260000 - 0x7fff88262fff com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff88263000 - 0x7fff88286fff com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff88287000 - 0x7fff882cfff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff882e9000 - 0x7fff883a6fff com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff883a7000 - 0x7fff883e1fff libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
    0x7fff883ef000 - 0x7fff8855efe7 com.apple.QTKit 7.6.6 (1756.15) <B35EDB1D-FCB0-1D40-629E-6ACB56D57C68> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff8855f000 - 0x7fff891dafef com.apple.WebCore 6533.20 (6533.20.24) <D2474418-DABB-7604-D3B9-FE1E03207765> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff891db000 - 0x7fff89218fff com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib

    Hi,
    Open a Finder window select your Home folder in the Sidebar on the left. Then open the Library folder, then the Caches folder, then the *com.apple.Safari folder*.
    Move the cache.db file from the com.apple.Safari folder to the Trash.
    Relaunch Safari.
    As for exporting/importing bookmarks...
    From the Firefox menu bar click File / Import. Follow the instructions for importing Safari bookmarks.
    For Chrome, follow the instructions at this link. http://www.google.com/support/chrome/bin/answer.py?answer=96816
    Carolyn
    Message was edited by: Carolyn

  • New Tutorial on Bookmarkable URLs

    Thanks to Craig and Lark, we now have a tutorial about passing parameters via the URL (so that the url is bookmarkable).
    You can read about it and other tutorial tips and tricks at http://blogs.sun.com/roller/page/divas?entry=new_tutorial_on_creating_bookmarkable
    Diva #2

    -

  • Keep button state on bookmarked Url

    I have a question about writing an actionscript function for
    calling rollovers--I am working on website that consists of two
    frames (a navigation frame on top and a content frame underneath).
    I am creating the navigation bar in Flash. How would I show the
    "down" state of a nav button if the user goes to the page through a
    bookmark (not by clicking the actual button on the nav bar)? Just
    wondering the best way to go about writing the actionscript for
    that.... a function? An ExternalInterface class?

    Hi -
    Have you figured this out? I've been trying to figure out the
    same type of problem, but haven't been able to so far. I haven't
    seen answers to this type of question posted anywhere.
    Doug

  • Bookmarked urls

    We recently upgraded our Apex from 1.6 to 2.2 (soon to become 3.0). Some of our app users have bookmarked certain pages (containing reports). When they invoked the bookmark (which included the session id), the report ran fine in v1.6, but in v2.2 it is asking them to login again.
    Perhaps this is a tighter security feature in v2.2. What are we to tell our users: that they can no longer bookmark application pages?
    By the way, this reprompting for login occurs regardless of whether the user is already logged in or not. If already logged in, the current session id is different from the one in the bookmark so the bookmark doesn't work.
    I tried modifying the bookmark using %26%SESSION_ID. but that doesn't work either.
    This particular app uses custom authentication against a users table and stored passwords. My colleague who uses SSO authentication manages to get the same session id each time they login (even after closing and reopening the browser session). So his bookmarks work. Not quite sure of the mechanics of SSO and how it manages to keep the same session id indefinitely (some kind of cookie being stored? It worked even after clearing cookies!) but we are not in a position to switch to SSO at this point.
    So the question is: is there a way to get bookmarked pages to work in an already authenticated session in 2.2 without a relogin?

    Chan,
    (1) it apparently used to work in htmldb 1.6. Ie, invoking the bookmark did not prompt a re-login if the user was already logged in.
    That is correct. We changed the code a couple of years ago, for 2.0.
    (2) If we remove the old session id from the bookmark, or replace it with a variable then I would expect it to pick up the existing session id if one exists. This is not happening.
    Right, we changed that too, all for improved security.
    (3) I can point you to an application (also 2.2) using SSO where bookmarks work. In that app, once you bookmark a page it will always work as long as you are already logged in before invoking the bookmark. The bookmark has a session id which appears to be reused.
    You don't have to enter credentials again, that's true. But a new session should get created. Why do you care if a new session is created or not?
    Let me ask you to clarify this - when the user logs in again after using one of these bookmarks, the user does get shown the originally requested application/page and it does function correctly, is that true? So the problem is that users prefer not to have to authenticate to non-SSO applications if they believe it's just extra work? Or am I missing part of the picture?
    Scott

  • All of a sudden my mozilla search field at the top with tools bookmarks url addresses has

    i have lost the mozilla top field with tools, bookmarks, search bar, etc

    Firefox 3.6+ versions have a feature to allow the user to hide the Menu bar.
    Hit the '''Alt''' key to temporarily show the Menu bar, then open View > Toolbars and select Menu bar, so it has a check-mark. <br />
    The F10 can also be used on most PC's to temporarily reveal the Menu bar.
    https://support.mozilla.com/en-US/kb/Menu+bar+is+missing

  • Bookmark a page with username/password in the URL

    I can add username/password for HTTP authentication directly to the URL (e.g. http://user:[email protected]/ ) and this works fine with the browser on Firefox OS 1.3 (on a ZTE Open C). However, when bookmarking that page, the bookmark doesn't include the username/password any more and so I'll have to manually enter the username/password when visiting that site again (after clearing private data) - and unfortunately there is no password manager for Firefox OS yet...
    Another way to add a bookmark appears to be via a small Javascript using the "save-bookmark", however that appears to only give me the option to add the bookmark to the Home Screen (and I am not sure if it will keep the username/password information in the bookmarked URL).
    Is there any other way to add a bookmark to the browser and keep the username/password information in the URL?

    Here is an example:
    http://user1:[email protected]/auth-basic/
    Works fine if you enter that URL in the URL bar. But when bookmarking it, it only gets bookmarked as http://test.webdav.org/auth-basic/ and so you will have to enter username and password again (after clearing cookies and session data) when opening from bookmarks.

  • Until the recent update, I could bookmark a url in different folders. Now I discover, after bkmarking to folder, the bkmrk command is gone and I can only edit

    I bookmark url's in different folders. With this most recent update, after bookmarking into the first folder, I discover I can only edit. Seriously? I need to store the link in entirely disparate folders for my own purposes. I have established an organized set of folders (taxonomy) flexible to my professional needs. Please revise to include the previous flexibility of bookmarking more than once.

    I need to bookmark a url into different folders for my professional work. This is not tagging, it is to make sure the url is available in completely discrete folders. If anyone knows of a solution, I would very much appreciate it. Until less than a week ago, I could bookmark into multiple folders without a problem.

  • HOW TO: Edit or Change the URL in an existing "home screen" iPhone bookmark

    I can create "home screen" bookmarks from web pages in the mobile Saafari on the iPhone, but in some cases we may need to create a URL for say a video link (e.g. WOWZA media server to iPhone)
    e.g.
    http://10.0.1.4:1935/live/mystream.sdp/playlistm.3u8
    Links like these don't allow you to click the "+" symbol to create a link in safari as they immediately launch the video player - so I'm looking for a way to edit another icon/URL that was saved before.
    I know you can edit Safari Bookmark URLs etc on the iPhone, but the convenience of a 'home screen' bookmark for say a live broadcast is very nice.
    Nigel

    I am calling an existing SAP Inbound proxy which is returning a transient ack in case of Application error.
    How is the ACK returned? In form of a XML message? Create a response structure which will have your Main Response Message and also fields for the ACK message.....get this message into BPM.....make a check in the BPM (using SWITCH) and check if the node containing ACK fields is existing....if yes then proceed as per the business needs.
    Accordingly the proxy should be configured to populate the ack details.
    Regards,
    Abhishek.

  • Why don't my bookmarks show url?

    Hello! Few days now I can't to see my bookmarks' url.Whenever a put the cursor over a bookmark it just shows the url for less than a second.Have I clicked something?How can I fix it?

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for