Search functionality in Github/Repo/Projects - search

Update: The issue was forwarded by Github’s Support to their Engineers (13.02.2018).
I am currently learning Github and want to integrate the Projects tab in my repository into my workflow.
I did the small tutorial and am now trying to make columns with my costum tags, ie: TODO, DONE, IDEA, etc.
I figured that I can add labels in the Issues tab
Projects tab and search for them. That's already a great plus.
The picture in 1. includes some cards but using search results in some unexpected behaviour
2.1 Search: "feature", returns the result in the first column TODO, but won't return the third column FEATURE Search Result 1
2.2 Search: "more", won't return the third column FEATURE aswell.
Search result 2
I looked into Tracking the progress of your work with project boards already but couldn't find an answer there.
The questions/issues are:
- Why did the searching for "more" not result into anything?
- What do I have to type into the search bar to get the result for "more"?
I tried is:note more but it seems is:note will just returns the notes in the columns and accepts no other words.

Support replied and issue is now fixed.

Related

Work Items Feature Related Across the project

Is it possible to create two work items in different project but related each other ?
Description;
i mean Project 1 has a work item "ABC", and Project 2 has work item "ABC"
if I change state of my work item "ABC" from doing to done at Project 1, is it possible to have my work item "ABC" at Project 2 automatically change from doing to done as well?
looking for help
Thank you
Regards
Azh
If you only want to relate two work items and regardless of automatically change state, you can certainly relate two work items that are in different project. What you need to do is the same as relating two work items in the same project. You can refer to this document for detailed steps.
As of this time, however, the function of automatically change work items' state is not supported. But Microsoft have added the feature to their roadmap and offered an alternative solution. Please click this link for details and documentation.
There is a vote on this function in Developer Community, where you can follow the latest development of this feature.

People listage in SharePoint page

i have an intranet (which is my main website) and a several sub-websites, which refers to the departments of the company. I need to add a list with people related to department of the current web-site. The list can be the same view of the SharePoint native search.
I find this component (Search Results), which i was able to add my criterias (like people which department is equals to "HR"), and i get the right results. However, i couldn't find an way to make the view similar to the results of the image above.
Somebody can help me? Thanks
Edit:
I've changed the configurations to use "People Item" display index. Firstly, i had to import a javascript file. Then, even though that i had the right results, the properties aren't filled in the fields of the display item (as is shown in the image below).

Google docs - automated List of tables

Is it possible to add captions to tables in Google docs?
I would like to be able to produce an automated list of tables.
For example something like this :
Any idea ?
The Caption Maker Add-on detects figures and tables in a Google Doc, puts numbered captions above or below them and creates lists of figures and tables that can even be updated as the document evolves.
The "Captionizer" Addon seems to be able to do this now, albeit without page numbering. The creator says there is no way to lookup the page number in a google doc to be able to add that feature.
Captionizer
As #Falko Menge suggested in the first response Caption Maker appears to be the best option. I went down for some time, but you can install it without problems.
Caption Maker is available here: https://workspace.google.com/marketplace/app/caption_maker/226603355104
It seems to be working just fine.
Cheers!

Sharepoint 2010 - Pass "u" parameter to advanced search

The scenario - I am building a site to house a number of reports - thirty or so subsites under a main web for different report categories, and several libraries in each site, one for each separate report. In total, about 600 reports (libraries) across the thirty report categories (sites). This design has been decided on, and cannot change.
I plan/want to have a single advanced search page to search all the reports, using various custom metadata columns. That bit's easy, I can do that out of the box.
One of the most important search criteria is which report on which to search, of which, as I mentioned, there are many. The dictate is to make the report type added "invisibly" - they will select the report category, then the report type, and THEN get presented with the search page. The search should "know" which report is being searched on.
Scope selection is not a viable option, as there's too many libraries, and more will be added as new reports are created.
Now, I can get the results I want in the results if I add the "u" parameter to the URL as in;
results.aspx?k="RunDate=1/23/13"&U=http://site/report_type/library"
(address left unescaped for clarity)
My challenge is finding a way to feed that parameter TO the advanced search, and get it to tack it on to the end of its generated query.
I'm confident it can be done with only a little fidgeting to the webpart, but I need a bit of a shove in the right direction.
Or, as always, if y'all have a more brillianter idea, I could do that.
Now, I have a second issue where the different reports have their own varying set of metadata columns, and they only want the RIGHT ones to show up for each report, but one crisis at a time.
EDIT - upon further research, it seems I can't extend the advanced search webpart, as it's a sealed type. Has anyone either a way around that, or have a third-party advanced search page that I CAN crack into?
I was able to find a solution to this issue by overriding the JavaScript function NavigateTo(url) which is responsible for the redirect. My solution can be found here
What you are actually asking about is a contextual search box, as the u parameter resembles the contextual search scope.
I'm not sure that the standard search box can be configured the way you want it to, so it always adds the query string u=<current url>. I think you will have to resort to some (even if simple) code.
An example you can find here: Create a SharePoint Contextual Search Box in a Content Editor Web Part.
Of course you could do the same thing with server side code, but as you only want to add a querytring parameter, JavaScript should be enough.

How to modify opencart basic search module to a more advanced one?

I am pretty new to opencart and I want to learn how can I create a more advanced search function.
For example I have products in my store, some of them are blue and some of them are red.
How can I specify or where I can specify a product's color (but not in the title, something like an attribute)?
And after that how can I search for red products?
I do not want to search by the keywords. I want a tab where to select the color and if I choose blue the search will show me all the blue products.
I hope you understand what I wish.(and can you please give me some code examples: where to add what to add to achieve what)
Thank you!
Normally, you would use Product Tags for this (field is under Product description on Product Page in Admin > Catalog > Products). You could have problems with very short tags 3 characters or less. See this post for more info:
mysql fulltext MATCH,AGAINST returning 0 results
You would add tags to your products like: red,black,brown,leather,s,m,l,xl small, medium, large
Then you could search any of the terms
[EDIT: in response to comment #1]
I would imagine that you just type multiple terms into search box:
'brown','large'
then all products that have (any? both?) of these tags returned.
You could use a Tag cloud or similar module to display tags on your pages, also you could use these terms in search field. If you search for 'brown', all products that have this tag will be returned.
You may also consider a third party extension for a more advanced search, check Opencart site's extension section.
If you want to modify/improve the search functionality yourself, you'll need to tinker with SQL queries in catalog/model/catalog/product.php
Opencart Search is considered by many to be one of the weak points of this package. There have been discussions on Opencart forums on this matter.
Just see how it works for you with the out-of-the-box setup, then if you need more functionality, look for an extension that does what you want, hire a programmer or code it yourself.

Resources