Recommended Posts

How much backend on a site is needed to support this, or is it as simple as creating a search provider in IE?

I can answer that :) The backend depends on the situation and who 'you' are.

For example in my case with Flickr, because Flickr doesn't natively support this, I had to develop a backend that acts as the middle-man between the RSS2 feed Windows 7 expects and the APIs Flickr provides. If the RSS2 feed was natively implemented in Flickr (bit different to the feeds they have now), then there would be no additional backend.

The actual search connector which users install to their PCs is an XML file, and is as simple as creating a search provider in IE.

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590189516
Share on other sites

I can answer that :) The backend depends on the situation and who 'you' are.

For example in my case with Flickr, because Flickr doesn't natively support this, I had to develop a backend that acts as the middle-man between the RSS2 feed Windows 7 expects and the APIs Flickr provides. If the RSS2 feed was natively implemented in Flickr (bit different to the feeds they have now), then there would be no additional backend.

The actual search connector which users install to their PCs is an XML file, and is as simple as creating a search provider in IE.

That's interesting. Thanks.

It would have some interesting applications for thinks like VOD content.

I take it the Connector supports different types of rich media and not just photos?

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590190404
Share on other sites

That's interesting. Thanks.

It would have some interesting applications for thinks like VOD content.

I take it the Connector supports different types of rich media and not just photos?

It supports any file format you throw at it (double clicking a file will launch whatever app usually launches that format), but visually supports image thumbnails.

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590190412
Share on other sites

It supports any file format you throw at it (double clicking a file will launch whatever app usually launches that format), but visually supports image thumbnails.

You can return a thumbnail for any item type. Basically, the server does the job of extracting the thumbnail for an item, and then returns the thumbnail (in a supported image format) to the client. That image could be a thumbnail for a picture, a video, a document, or it could just be an icon. If no thumbnail is provided, the item will have the icon for that file type, just as if it were on the desktop.

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590192610
Share on other sites

Could you create one for google or live pictures search and deviantart for example? It would be amazing ! :devil:

DeviantArt already has RSS output for their search results, and they even use MediaRSS which is great.

They have a bug though... their <media:content> elements lack the requires "type" attribute, so Explorer doesn't know to treat the items as images.

There is a workaround since their URLs contain the file extension. Win7 supports a special flag that tells it that the URL's file extension is okay to use for determining the type, though in general it's preferred not to use this and DeviantArt really should fix their feed.

Anyway, here's an OSDX for DeviantArt (I haven't tried it on the M3 build but it should work).

http://brandonlive.com/files/osd/Deviant%20Art.osdx

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590205026
Share on other sites

Actually, upon looking at their feed, that may not work as I expected on the 6801 pre-beta build :(

Can't be sure until somebody tries it I guess.

It says the server returned invalid data (in a nice yellow information bar, rather than a modal window with a stop sound, which is what I would have expected.)

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590205114
Share on other sites

It says the server returned invalid data (in a nice yellow information bar, rather than a modal window with a stop sound, which is what I would have expected.)

What did you search for when you got this message?

Glad you prefer the infobar :)

Are there any APIs for developers to customise the experience in Explorer? For example, Deviantart being able to add a context menu item for "Add to Favourites", "Leave Comment" or "Rate"?

If they install some client code they can use the same context menu extension capabilities that have existed in previous versions of Windows.

From the server side they can control what shows up in the list view, in the preview pane, etc. But not the context menu entires at this time.

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590205860
Share on other sites

What did you search for when you got this message?

Glad you prefer the infobar :)

I just searched for Wallpaper.

If they install some client code they can use the same context menu extension capabilities that have existed in previous versions of Windows.

From the server side they can control what shows up in the list view, in the preview pane, etc. But not the context menu entires at this time.

Sounds good. It would be good though if the context menu could be controlled or added to by server-side code; perhaps even items in the top bar thingy?

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590207550
Share on other sites

I just searched for Wallpaper.

Ah, yeah I'm getting the same error, seems specific to that query. I'll take a look when I get in the office today.

Sounds good. It would be good though if the context menu could be controlled or added to by server-side code; perhaps even items in the top bar thingy?

Thanks for the suggestion. That's actually on our "wish list" so to speak, but we want to make sure we get it done right and really think through the design and the scenarios where developers would want to use it, so it likely won't happen for this release. That said, feedback like this helps drive what gets prioritized, so it's much appreciated!

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590209278
Share on other sites

Ah, yeah I'm getting the same error, seems specific to that query. I'll take a look when I get in the office today.

Thanks for the suggestion. That's actually on our "wish list" so to speak, but we want to make sure we get it done right and really think through the design and the scenarios where developers would want to use it, so it likely won't happen for this release. That said, feedback like this helps drive what gets prioritized, so it's much appreciated!

No problem. It's brilliant to be able to be so direct with feedback.

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590209658
Share on other sites

FYI, the problem with DeviantArt is actually in their feed. They aren't escaping a character that is illegal in XML.

Internet Explorer will give you a similar error if you try to view the feed there:

http://backend.deviantart.com/rss.xml?q=bo...er&offset=1

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590222482
Share on other sites

FYI, the problem with DeviantArt is actually in their feed. They aren't escaping a character that is illegal in XML.

Internet Explorer will give you a similar error if you try to view the feed there:

http://backend.deviantart.com/rss.xml?q=bo...er&offset=1

I learned to overcome that problem the hard way, a.k.a. tearing my hair out and banging on the table hard.

Link to comment
https://www.neowin.net/forum/topic/700802-flickr-search/#findComment-590222792
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Linux 7.1 arrives with an NTFS overhaul and major hardware performance boosts by Paul Hill The founder of the Linux kernel has just announced the availability of Linux 7.1. This is a stable version of the kernel that will now be tested by various Linux distributions before it is shipped to users through update managers. Some users, like those on Debian, for example, might not get it for a long time, if at all, while Fedora users can expect it in the near future. With Linux 7.1 out on time, the merge window for Linux 7.2 is now open, giving contributors the opportunity to send in major new features that have been waiting for the last two months. Torvalds warned that he is currently travelling and will be in another timezone, so timing for the merge window may be irregular due to timezone differences and limited internet access. Torvalds said that he has already fetched early pull requests to allow him to do some offline work, but the travel could still cause disruption. Right now, he is not planning to extend the release, but did consider it. He said he might later regret not extending, though. In terms of this last week of development for Linux 7.1, Torvalds said there were no major or alarming changes. This week consisted mostly of smaller driver updates to GPU, networking, and sound, networking fixes, trace tooling fixes, and misc minor fixes. The shortlog this week lists fixes for driver bugs, memory leaks, I/O and USB fixes, networking and RDMA fixes, DRM/graphics fixes, and tooling and verification improvements. Specific fixes include USB series heap-overflow and buffer overflow fixes, and multiple use-after-free, memory-leak, and refcount corrections across subsystems such as i2c, zram, gpio, and net. There are fixes for graphics drivers, including amdgpu, i915, and virtio, as well as hypervisor and virtualization tweaks affecting mshv, vmbus, and hyperv. According to Phoronix, anyone running Linux 7.1 should look out for the new NTFS driver, Intel FRED for improved performance on Panther Lake and future CPUs, faster graphics with Intel Arc Battlemage, and improvements for older AMD Radeon GPUs. If you are running Linux on your computer and everything is fine, then you don’t need to worry about updating to Linux 7.1 as a priority; just wait for it to be pushed to you. If you have tried Linux on hardware but it didn’t work properly, trying again with a distro that uses Linux 7.1 could cause Linux to work on your machine, thanks to the new hardware support.
    • you can also do this with this tool: PowerSettingsExplorer made by mbk1969 at 3dguru forum.. I found it by accident researching on modern standby and annoying quirks of it in 2022
    • AB Download Manager 1.9.1 by Razvan Serea AB Download Manager is an open-source, feature-rich download manager designed to accelerate downloads, organize files efficiently, and provide seamless control over downloads. With support for multiple connections, resume capability, and an intuitive interface, it enhances the downloading experience for users seeking speed and reliability. The software integrates with various browsers, enabling quick link grabbing and batch downloading. It supports HTTP, HTTPS, and FTP protocols, ensuring broad compatibility with different file sources. Users can schedule downloads, set speed limits, and categorize files automatically for better organization. AB Download Manager is lightweight yet powerful, making it a great alternative to proprietary download managers. Its open-source nature allows developers to contribute, customize, and improve the software as needed. Whether you're downloading large files, managing multiple downloads at once, or seeking an ad-free experience, this tool offers a practical and efficient solution. Key features of AB Download Manager: Multi-Connection Support – Accelerates downloads by splitting files into multiple segments. Resume Capability – Allows paused or interrupted downloads to be resumed without starting over. Batch Downloading – Supports downloading multiple files at once for improved efficiency. Browser Integration – Captures download links directly from browsers for seamless operation. HTTP, HTTPS, and FTP Support – Ensures compatibility with a wide range of file sources. Download Scheduling – Enables users to automate downloads at specific times. Speed Limiting – Lets users control bandwidth usage for optimized performance. File Categorization – Automatically organizes downloaded files into designated folders. User-Friendly Interface – Simple and intuitive design for easy navigation. Cross-Platform Compatibility – Works on multiple operating systems. Ad-Free Experience – No intrusive ads or tracking for a clean user experience. AB Download Manager 1.9.1 changelog: Added An option to customize notification sounds (#1259) Fixed Ongoing notification was laggy on Samsung One UI devices (#1269) Improved Updated Translations Minor UI/UX improvements Download: AB Download Manager 1.9.1 | Portable | ~80.0 MB (Open Source) Download: ARM64 | Portable ARM64 | Android Links: AB Download Manager Website | Github Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • watching him because of the Mr Klinton cat
    • yup dude, ADS on this website are terrible
  • Recent Achievements

    • Week One Done
      rolfus earned a badge
      Week One Done
    • One Month Later
      Leroy Jethro Gibbs earned a badge
      One Month Later
    • Conversation Starter
      flexorcist earned a badge
      Conversation Starter
    • One Month Later
      AndreaB earned a badge
      One Month Later
    • One Month Later
      agatameier earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      506
    2. 2
      +Edouard
      196
    3. 3
      PsYcHoKiLLa
      140
    4. 4
      ATLien_0
      90
    5. 5
      Steven P.
      81
  • Tell a friend

    Love Neowin? Tell a friend!