Where do the icons in the new Safari Favorites page come from?

Does anyone have an idea? Doesn't look like it is the same thing as the apple-touch-icon.png thing, but definitely not a favicon.ico either.
Note that the YouTube icon is rounded... Looks like it seems to not react the same way when the image is not totally filled with opaque pixels (= rounded square here).
Look also - Pinterest rounded icon

I guess I should have tried your suggestion before responding. I cannot locating anything remotely similar to an image in the path you described. First of all, when I go to my 'applications' folder I hit a dead end at 'Pages08'. There is no pages 'folder' that contains these shared resources. I've searched 10 different ways, including a spotlight search on the file name in the original response. Can anyone give me another path or a suggestion for a spotlight search that would turn up this 'content' folder of shared resources?
Again, many thanks.
Message was edited by: nicolef207

Similar Messages

  • Where does the JeelyBeans look and feel come from?

    Where does the JellyBeans Swing look & feel come from that is used in
    Workshop UI?
    -Nick

    Nick -- Thanks for the kind words.
    While we don't have plans to make the look and feel available outside of the IDE,
    you may want to check out some of the other look and feel resources within the
    Java community such as
    www.javootoo.com
    or
    http://directory.google.com/Top/Computers/Programming/Languages/Java/Class_Libraries/Graphics/User_Interface_Classes/Look_and_Feels/?tc=1
    We did use JDK 1.4 for Workshop and were very pleased with its performance and
    other aspects.
    - Pete Horadan
    Workshop Dev Mgr.
    "Nick Minutello" <[email protected]> wrote:
    I think it would be excellent if BEA made the JellyBeans look and feel
    freely available - even getting it added to the Sun JDK.
    There is a distinct interest in developing C# clients purely due to the
    fact
    that Swing doesnt perform and doesnt look good. JDK1.4 reportedly has
    numerous performance improvents. What is missing is a good look and feel.
    The Jelly Beans look and feel is quite good (I suspect that it is no
    accident that its flat look is similar to Visual Studion .NET.).
    I think that encouraging developers to remain with Java for GUI clients
    can
    only be good for Java and in turn J2EE as a whole. A pure java environment
    would be much better than a deliberatly mixed environment. Java RMI is
    much
    simpler than SOAP, etc.
    Aside from the ultruistic viewpoint, we would dearly like to use it in
    our
    Swing applications - perhaps we can stave off a turn to C# / .net clients.
    Regards,
    Nick
    "Carl Sjogreen" <[email protected]> wrote in message
    news:[email protected]...
    At this point we don't have plans to license the look and feel of the
    application (the swing components) separately, but I'd love to hearmore
    about what you had in mind.
    -Carl
    "Nick Minutello" <[email protected]>
    wrote
    in message news:[email protected]...
    I am really interested in the answer to this question... please
    =+=+=+=
    Does BEA have any intentions of making the look & feel commercially
    or
    freely
    available? (esp for existing, but potentially growing customers ;-)
    -Nick
    =+=+=+=
    -Nick
    "Ian M. Goldstein" <[email protected]> wrote in message
    news:[email protected]...
    It's homegrown. (There is no pluggable look-and-feel at this time.)
    Ian M. Goldstein
    Developer Relations Engineer
    BEA Systems, Inc.
    "Nick Minutello" <[email protected]>
    wrote
    in message news:[email protected]...
    Where does the JellyBeans Swing look & feel come from that is
    used
    in
    Workshop UI?
    -Nick

  • Where did the iPhoto 10 iCloud Photostream come from and how do I get rid of it?

    I just updated my MacBook Air to mavericks.  I have an iPad and iphone as well just updated to ios7.  My Mac updated iPhoto as well.  Now when I opened iPhoto I got my flickr and Facebook integrated folders in the left pane plus an iCloud photostream.
    I didn't have that before and it has 287 pictures pulled from many devices but I didn't set that up.  I only had/have a private photostream with a particular name and about 10 pics in it.  this new one is just called iCloud photostream and it has 287 pics of which some I know I took with my iPad and others with my iphone.  I of course sync both devices with my Mac so this pics are in my iPhoto library as well.
    Where did the iPhoto 10 iCloud Photostream come from and how do I get rid of it?

    In the iPhoto preferences turn PhotoStream off
    LN

  • Where does the Calendar and Home Calendar come from ?

    I have two iPhones, two iPads and a Mac that share one Apple id. Where do the Calendar and Home Calendar come from?

    Siretman wrote:
    I have two iPhones, two iPads and a Mac that share one Apple id. Where do the Calendar and Home Calendar come from?
    Are you asking which calender takes president?

  • Where does the «On my Mac» mailbox come from ?

    Hi ...  In the my Mail's Trash mailbox in the sidebar, recently a sub mailbox called «Sur mon Mac (On my Mac)» mailbox (see here) was created.  Where does it come from and what is it's purpose? 

    If you add/import your own mailboxes (I have a lot of them because I like to be organized), the system will automatically add a separate trash can for anything you may delete from one of those because the system treats those separately and, by default, assigns them to "on my Mac". If you delete anything from one of your own folders (not the system default mailboxes), it will wind up in the On My Mac trashcan.
    Any mailbox under my heading of IMPORT is considered "on my mac".

  • Where all the redo/archive log volume come from?

    Hi,
    I have a database with a size of around 50G. Thats not very much, but the crazy thing is that this database has a redo log volume per day that is nearly equal the size of the database:
    -- Daily View
    SQL> SELECT TRUNC(completion_time) AS time, ROUND(SUM(blocks * block_size)/1024/1024,2) AS size_mb, ROUND(SUM(blocks * block_size)/1024/1024/1024,2) AS size_gb FROM v$archived_log GROUP BY TRUNC(completion_time) ORDER BY 1 DESC;
    TIME          SIZE_MB    SIZE_GB
    2013-02-03    49599.7      48.44
    2013-02-02   50104.63      48.93
    2013-02-01   54466.36      53.19
    2013-01-31   52935.41      51.69
    2013-01-30   51596.85      50.39
    -- Hourly View
    SQL> SELECT TRUNC(completion_time,'HH24') AS time, ROUND(SUM(blocks * block_size)/1024/1024,2) AS size_mb, ROUND(SUM(blocks * block_size)/1024/1024/1024,2) AS size_gb FROM v$archived_log GROUP BY TRUNC(completion_time,'HH24') ORDER BY 1 DESC;
    TIME          SIZE_MB    SIZE_GB
    2013-02-03 23     160.68        .16
    2013-02-03 22     163.73        .16
    2013-02-03 21     195.65        .19
    2013-02-03 20    4492.44       4.39
    2013-02-03 19      176.3        .17
    2013-02-03 18     4259.8       4.16
    2013-02-03 17     226.99        .22
    2013-02-03 16    5465.64       5.34
    2013-02-03 15     166.47        .16
    2013-02-03 14     165.05        .16
    2013-02-03 13     253.33        .25
    2013-02-03 12    9568.93       9.34
    2013-02-03 11     391.14        .38
    2013-02-03 10    9585.36       9.36
    2013-02-03 09     160.02        .16
    2013-02-03 08      200.1         .2
    2013-02-03 07     166.66        .16
    2013-02-03 06     267.45        .26
    2013-02-03 05     309.26         .3
    2013-02-03 04    1486.87       1.45
    2013-02-03 03   11106.77      10.85
    2013-02-03 02      318.1        .31
    2013-02-03 01     147.47        .14
    2013-02-03 00     165.47        .16
    2013-02-02 23     160.17        .16
    2013-02-02 22     159.25        .16
    2013-02-02 21      205.9         .2
    2013-02-02 20    4473.27       4.37
    2013-02-02 19     124.64        .12
    2013-02-02 18    4364.69       4.26
    2013-02-02 17     295.02        .29
    2013-02-02 16    5415.06       5.29
    2013-02-02 15     166.22        .16
    2013-02-02 14     166.83        .16
    2013-02-02 13      84.62        .08
    2013-02-02 12    9905.55       9.67
    2013-02-02 11     418.31        .41
    2013-02-02 10    9548.78       9.32
    2013-02-02 09     166.51        .16
    2013-02-02 08     204.88         .2
    2013-02-02 07     167.37        .16I know that every database change produces redo, but why that much?
    Is there a way to investigate further where all the redo information comes from?
    Every 2 hours redo is backed up to tape.
    There are no significant batches, shaking and shuffling the data around all the time.
    Nearly all changes in this database is happening through user inputs.
    Database is 11gR2 on Redhat 5.6.
    Thanks
    941743
    Edited by: 941743 on 04.02.2013 15:32
    Edited by: 941743 on 04.02.2013 15:33

    I am afraid there is no easy and direct way to pull the answer from the data dictionary.
    But with some work, you can get to the bottom of this.
    This query shows you how much redo is used by the sessions in your system currently:
    select a.sid , a.value  from v$sesstat a,  v$statname b
    where a.statistic# = b.statistic#
    and b.name = 'redo size'Unfortunately, I am not aware of a AWR view (license required!) that corresponds to v$sesstat, so it would not be easy to look back and see which session generated the redo.
    One way is to troubleshoot the problem online, using a utility such as snapper- http://blog.tanelpoder.com/2010/03/22/oracle-session-snapper-v3-10/ . See which sessions generate most redo and see what SQL they are running at that time.
    The other way is to create your own “repository”. Sample V$SESSION, v$sesstat , v$statname and possibly V$SQL frequently (every few seconds) and record how much redo and what SQLs are running by each session. Once you gather enough data, look which sessions had the biggest “redo size” delta and what SQL were they running at that time.
    Iordan Iotzov
    http://iiotzov.wordpress.com/

  • Where do the current iMac G5 iSights come from?

    Anyone buy an iMac G5 online from the Apple store in the month of December?
    Where did yours ship from (origination)? ie: Shanghai, Elk Grove, Kentucky
    If you ordered the wired keyboard instead of Bluetooth keyboard model G5 iSight, what is the suffix of your serial number? ie AZTAR, or WLTAU, or BZTAV?
    Thanks, just curious.
    iMac G5 iSight 20"   Mac OS X (10.4.3)  

    This is the way of my future iMac.
    The last town in this list is about 20km far from my village.(Spain, EastCoast)
    And I´m still waiting for the delivery...
    Shipment Picked Up ------- SHANGHAI, SH, CN ------- 08 Dec 200 09:30
    Depart Terminal ------- SHANGHAI, SH, CN ------- 09 Dec 2005 15:55
    Arrive Terminal ------ AMSTERDAM, NH, NL ------ 13 Dec 2005 07:00
    Out For Delivery ------ AMSTERDAM, NH, NL ------ 13 Dec 2005 14:23
    Arrive Terminal ------ PRAT DE LLOBREGAT, BR, ES ------ 16 Dec 2005 05:18
    Arrive Terminal ------ PATERNA, VA, ES ------ 16 Dec 2005 13:57
    Tendered for Delivery ------ PATERNA, VA, ES ------ 16 Dec 2005 14:17
    Out For Delivery ------ CASTELLON DE LA PLANA, CS, ES ------ 16 Dec 2005 15:05

  • Where do the SharePoint components for Powershell come from?

    I am just learning and I am trying out some scripts. As soon as I type in the Get-SPWeb command I get something like this.
    PS C:\Windows\system32> $web = Get-SPWeb "https://xyz.sharepoint.com/"
    The term 'Get-SPWeb' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the
    path is correct and try again.
    At line:1 char:17
    + $web = Get-SPWeb <<<<  "https://xyz.sharepoint.com/"
        + CategoryInfo          : ObjectNotFound: (Get-SPWeb:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    Can someone please point me in the right direction?
    Thanks
    karl

    Hi Karl,
    If your workstation is on the same Active Directory domain as your SharePoint farm, you can also access SharePoint remotely via PowerShell remoting. You need to enable PowerShell remoting on your SharePoint servers and connect to them using PowerShell. Think
    of this as SSH and running an interactive console remotely.
    http://technet.microsoft.com/en-us/magazine/ff700227.aspx
    Once you're in the PowerShell remoting session, you can load the SharePoint PowerShell modules as was suggested earlier.
    Edwin Sarmiento SQL Server MVP | Microsoft Certified Master
    Blog |
    Twitter | LinkedIn
    SQL Server High Availability and Disaster Recover Deep Dive Course

  • Does anyone know how to do a text search in the new Safari for iPad iOS 7?

    Does anyone know how to do a text search in the new Safari for iPad iOS 7?

    The feature has been removed to make safari even less useable. You need to download a third party browser like atomic web browser to get the functionality you want back.
    Like many new IOS 7 "features", safari on the ipad is a FAIL.
    At least you can now bury safari in a folder containing hundreds of icons that you can only view 9 at a time.

  • What's up with the new Safari? I've done all the "tips". Still slow!

    I've tried all these prophylactic measures and read an hour's worth of articles about the new Safari (Version 5.0, 5533.16 apparently). But it gets stuck on even the most basic of Internet pages.
    Safari used to load eBay, Associated Content, TED, YouTube, Craigslist, StumbleUpon, etc. in mere SECONDS. Now all I see is a loading bar that gets stuck about 1/16 (just past the www....) in the loading process.
    Yeah, I've cleared the cookies and cache and all the whatnots. I'm not a computer genius but I can tell something is going on. Is Apple keeping a secret record of everything I do or what? Seriously, this is frustrating!
    To summarize:
    I used to pop open Safari and get my homepage, www.google.com, in less than one second. Now I get a blank page that gets stuck, takes about thirty seconds, and then finally finds its way.
    What can I REALLY do to make my new Safari work like it used to?
    Or, how can I get the old version of Safari back?
    And I've tried Firefox and other browsers, but they're messy and not as clean as my ol' Safari used to be. What's happening here?
    I'm not impatient, I just can tell that something wrong is going on. And I'd like to fix it.

    Hi there!
    Thanks for heads up. My Macbook says I'm running 10.5.8 right now.
    The steps I've taken:
    I deleted the weird web icons document (I think it was a .dlb or .lb or something in the Library folder for Safrari in my hardrive) which didn't seem to do much, and I've went to my Safari preferences and deleted all ma' cookies, changes my cookie preferences to "only accept from sites I visit" and I've done the "delete cache" option from the Safari menu as well as the "reset Safari" option (which I regularly do anyway 'cause it seems to keep things moving quickly). I've also restarted my computer a couple of times, usually after completing one of these suggestions.
    I'm using my computer from home on a wireless router thing from Netgear with super-high-speed way-too-expensive broadband Internet from our local provider, Charter. It's called a Negear Wireless Rangemax Router. I've never had a problem with it before, and 3-4 people use the Internet here at my home, often simultaneously, without difficulty.
    I'm gonna' try pluggin' in the ethernet cable now. Thanks! I appreciate it!
    --- I will say, after climbing up on a wobbly chair and plugging my laptop into the cable directly, that it worked a bit faster, but it still got "stuck" (which is what I'm now officially calling this phenomenon). For example, Google loaded in about five seconds instead of ten, and Safari generally responded better to random clicking around on links, but this page got "stuck" at "http://disc..." for quite a while (well, longer than your average modern day computer, I'd say; it still felt like I was on my old Powerbook) and then diddled around a while, until I refreshed the page and it loaded almost instantly.
    I noticed, too, that the biggest problem it seems to have is loading new web pages that I don't visit frequently. For example, I'll search "Leo Tolstoy" on Google, click on the Wikipedia page, and it just stops! The blue loading bar gets to about "http://en.wiki..." and then it just plain stops. Just a few days ago, it would breeze along with super fast speed.
    Thanks again. I appreciate your feedback!
    Something fishy is going on, for sure.
    Message was edited by: danwlawrence

  • Spent some time trying to find a Safari download site with no success.  Where is the iMac Safari download site?

    Spent some time trying to find a Safari download site with no success.  I found lots of Safari sites but no Safari download site.  Where is the iMac Safari download site?

    (The following does not apply to users of Lion OS 10.7 or later)
    If your Safari keeps crashing, or if you are updating Safari (or just have) and it is misbehaving:
    N.B. Never delete Safari, never run it under Rosetta, don't use proxy settings, and don't change the application's name or move it from the top level of the Applications Folder to a sub-folder.
    (If you prefer to download updates via Software Update in the Apple menu (which would ensure that the correct version for your Mac was being downloaded), it is not recommended to allow SU to install major (or even minor) updates automatically. Set Software Update to just download the updater without immediately installing it. There is always the possibility that the combined download and install (which can be a lengthy process) might be interrupted by a power outage or your cat walking across the keyboard, and an interrupted install will almost certainly cause havoc. Once it is downloaded, you can install at a time that suits you. You should make a backup copy of the updater on a CD in case you ever need a reinstall. Alternatively you can download Safari directly:
    Safari 4.1.3 for Tiger can be downloaded here:
    http://support.apple.com/kb/DL1069
    Safari 5.0.6 for Leopard can be downloaded from here:
    http://support.apple.com/kb/DL1422
    Safari 5.1 for Snow Leopard can be downloaded from here:
    http://support.apple.com/kb/DL1070
    Make sure you download the correct version for your system.
    Also, observe the recommended procedure for installing software: repair permissions and close all applications, install, then repair permissions again.)
    Input Managers and other plug-ins from third parties can do as much harm as good. They use a security loophole to reach right into your applications' code and change that code as the application starts up.  If Safari is crashing, the very first thing to do is clear out your InputManagers folders (both in your own Library and in the top-level Library), log out and log back in, and try again.
    So, disable all third party add-ons before updating Safari, as they may not have been updated yet for the new version. Add them back one by one. If something goes awry, remove it again and check on the software manufacturer's website for news of an update to match your version of Safari. Remember: Tiger up to 10.4.10 used Safari 2.0.4, Tiger 10.4.11 uses Safari 4.1.3, Leopard uses Safari 5.0.6,  and Snow Leopard uses Safari 5.1.x. If these latest versions of Safari are not the fastest browser you have ever used, then something is wrong!
    (Trying to revert to a previous version of Safari  can have repercussions, as previous versions of Safari used a completely different webkit on which other applications like iChat, Mail, Dashboard Widgets etc also rely, but if you really want to do this post back for instructions on the safe way to do so.)
    Most errors reported here after an update are due to an unrepaired or undetected inherent fault in the system, and/or a third party ad-on. Add-ons that have been frequently mentioned here, among others, for causing such problems are Piclens, Saft, AcidSearch and Pithhelmet, and the dreaded CT Toolbar. If you have them, trash them, and go the developer's sites to see if new versions are available for the latest version of Safari on your current operating system.
    You must also ensure that you have downloaded and installed all the correct version for your Mac of Security Updates. These require a restart and a permission repair.
    To reiterate, Input Managers reach right into an application and alter its code. This puts the behavior of the affected application outside the control and responsibility of its developers: a recipe for  problems. That's not to say that issues absolutely will ensue as a result of Input Managers, but you, as a user, must decide. If the functionality of a specific Input Manager or set thereof is really important to you, you may well choose to assume the associated risk.
    Again, the advice is to remove all Input Managers from the following directories:
    Hard Disk/Library/InputManagers
    Home/Library/InputManagers
    especially prior to system updates and updates to Safari (they can always be added back one-by-one later).
    Lastly, the Safari updates require a restart of your Mac, and sometimes even a double restart is required.

  • Hi there. Any one can tell me how erase cookies under the new safari Version 5.1 (7534.48.3)? Any one?

    Hi there. Any one can tell me how erase cookies under the new safari Version 5.1 (7534.48.3)? Any one?

    Click on the Safari menu then click on preferences the click the security icon.

  • My daughter downloaded the new safari update on her iMac and now it won't open without new os update

    We downloaded the new safari update on my daughter's iMac and one it won't open without the new os.   How do we go back to the previous safari?   Thanks!

    Which OS X is installed on your Mac ?
    Click the Apple () menu top left in your screen. From the drop down menu click About This Mac.
    The version is noted there.

  • We have an imac with os10.6.8 and safari 5.1.10 if we upgrade to the new safari will it be compatible, and will it work with our bank?

    We have an imac with os10.6.8 and safari 5.1.10 we have been getting messages that some site no longer support 5.1.10. I am concerned about upgrading, as we had trouble with a previous update with our bank. I checked with the bank and they are suggesting waiting, but other sites like youtube what the upgrade.  Has anyone had problems with the new safari? Our imac is pushing 8 years old, but we are not ready to replace it.

    Upgrading from 10.6.8 to a newer OS has implications for many Mac owners. Lion (10.7) ended support for software that was originally written for older Macs that used Motorola processors. Owners who kept their software current had few issues upgrading to Lion when it was released but a lot of people suddenly found they had software that wouldn’t run any longer.
    Another thing to consider is the age of your computer. A 2007 or 2008 iMac can run Lion fine and even Mt Lion (10.8) but Mavericks is a reach. It was Mavericks that prompted my purchase of a new iMac in late 2012. Given that you say your iMac is pushing 8 and you don’t want to replace it yet, don’t consider upgrading beyond Mt Lion. You won’t find Lion or Mt Lion for sale at the App store but I believe that you can still purchase them by contacting Apple directly.

  • Why is the new Safari (7) not letting sound be heard from Soundcloud widgets (players) on my website when the earlier Safari worked fine, and other browsers also work fine?

    Why is the new Safari (7) not letting sound be heard from Soundcloud widgets (players) on my website when the earlier Safari worked fine, and other browsers also work fine?

    Might be an incompatible extension or plugin ...
    Try troubleshooting Safari extensions and third party plugins.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test. If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow all other plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

Maybe you are looking for

  • Documents are not uploading to iCloud from Pages

    All software is up to date.  On OSX 10.9.1 I am only having this issue on my MBP.  Documents are uploading to iCloud from my phone just fine.  I had edited a document and it continues to just say "Waiting" and doesnt upload any changes.  I also start

  • The easiest ways to mark topics as read

    Just like a big email inbox, the way to stay organized on the Community is to know what's old and what's new. You can manually mark messages as read or, even better, you can let the system do it for you. To automatically mark topics as read: Sign in

  • USER PROFILE SERVICES: Service failed to Logon

    THE SOLUTION!!  It is so simple!  Microsoft or Windows "Restore Point".  Just go there and restore your system to any date when your system was working right.  In my case, an automatic update for Shockwave Flash Player caused my problem.  I just went

  • Trying to delete everything without a stoke or fill

    var doc = app.activeDocument; for(var i=doc.pathItems.length-1; i>-1; i--){ if(pathItem.filled==false && pathItem.stroked==false)    //I think this is where the error is   alert("Found "+pathItem);   doc.pathItems[i].remove() So I am trying to find e

  • Ad-hoc for ipod touch with internet

    Hi, I'm trying to forward the internet to my ipod touch. I believe I've gotten the ad-hoc network itself to work properly, as the ipod claims to be connected, but it cannot use the internet. I've looked at https://wiki.archlinux.org/index.php/Interne