Search by imported status - google-photos

In Google Photos, is there a way of searching all photos that have been manually imported through the web interface?
I have tried a couple of search strings in the search bar such as imported:true or is:imported but I couldn't find the right way to do this.

Related

Would it be possible to build faceted search with django-filters and Postgres Full-Text Search?

I want to build faceted search with django-filters and Postgres Full-Text Search. But I didn't find anywhere how to do it. May it be impossible. I noticed that people build faceted search with elastic. But I don't know it will be works with django-filters, or I will need to build without it.
It needs me for search and filters books/
Can you give me any advice how to do it?

Joomla Search issue ".com/index.php/component/users/?view=reset"

I am using Joomla for my website when I search in google for SAPBuddy I always get search result.
Can some one help me I tried to add my side in Google webmaster, but the result is same.
sapbuddy.com/index.php/component/users/?view=reset
Check you've followed these steps.
Create a sitemap. You can use an online tool for this, or a Joomla extension
If you used an online tool to create your sitemap, upload the site the xml file to your server. If you're using an extension, follow their direction. When finished, you should be able to open it with your web browser, e.g. www.domain.com/sitemap.xml . Check if the indexed pages looke good and copy this URL
In webmaster tooks, add your domain then register this sitemap, pasting in your URL
After a short period, check back on Webmaster tools. It will show which pages have been indexed and if there were any errors.
Good luck!

Site search with options while searching

I'd like to create a search on my site like dividata.com has. That means, it only searches by stock symbol and stock name and users may select something only if there exists a record of it? How can I do that? Can you point me to an article or something where I may find information how to do it?
I'm using django on openshift. I looked at haystack and elastic search, but it looks like integration of elasticsearch on openshift won't be that easy. But I think I don't need something as complex as elasticsearch. Thanks.
Maybe this can help if you are looking for autocomplete search bar, I've solved that but I have problem with something else.
Django-haystack full text search working but facets don't

Rewrite href links in strings

I have a bespoke CMS for a website that stores any uploaded files in the /Assets/ folder.
I'm preparing to move the website to the Azure platform and need some way of rewriting the links within the web pages. Here is what a current link looks like:
link to file
What do you suggest would be the best way to change those links to something like:
link to file
There are 100's of pages with tons of links. Also, to throw a spanner in the works, not all links are in sub folders within the assets folder.
Some links are like:
link to file
Suggestions are welcome, I'm open to anything, regex, htmlagilitypack or plain old string.Replace but I can't seem to get my head around how to do it...
You should take a look at the IIS Url Rewriting module which is installed on Azure web roles.
http://www.iis.net/learn/extensions/url-rewrite-module/using-the-url-rewrite-module
It basically allows you to define patterns using regex and ouput URLs however you like. In your case it would be quite simple to rewrite your embedded links to their locations in blob storage.
It's ok, I have sorted it, thanks for your comments. If anyone is interested I did a search & replace SQL query on the database.

open source spider to get links from web page , what is the fastest way?

I need to crawl web pages and extract only the links from the pages. Links can be
relative, like :
...\blah\foo.html
What is the fastest way to do this ?
Get web page
Extract links from any form
update :
Maybe what I need is htmlparser?