mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
Titles for search results
This commit is contained in:
parent
18740b6336
commit
b573550660
|
@ -41,6 +41,7 @@ orderby s.IndexOf(query) ascending
|
|||
{
|
||||
Url = Url.Route("Source Root", new { controller = "build", action = "source", source = s }),
|
||||
Label = s.Replace(query, "<strong>" + query + "</strong>"),
|
||||
Title = s,
|
||||
Group = "Source"
|
||||
};
|
||||
|
||||
|
@ -54,6 +55,7 @@ where string.Format("{0}.{1}", v.Major, v.Minor).StartsWith(query)
|
|||
{
|
||||
Url = Url.Route("Version Root", new { controller = "build", action = "version", major = v.Major, minor = v.Minor }),
|
||||
Label = string.Format("{0}.{1}", v.Major, v.Minor).Replace(query, "<strong>" + query + "</strong>"),
|
||||
Title = "",
|
||||
Group = "Version"
|
||||
};
|
||||
|
||||
|
@ -67,6 +69,7 @@ orderby y descending
|
|||
{
|
||||
Url = Url.Route("Year Root", new { controller = "build", action = "year", year = y }),
|
||||
Label = y.ToString().Replace(query, "<strong>" + query + "</strong>"),
|
||||
Title = "",
|
||||
Group = "Year"
|
||||
};
|
||||
|
||||
|
@ -80,6 +83,7 @@ orderby l.IndexOf(query) ascending
|
|||
{
|
||||
Url = Url.Route("Lab Root", new { controller = "build", action = "lab", lab = l }),
|
||||
Label = l.Replace(query, "<strong>" + query + "</strong>"),
|
||||
Title = l,
|
||||
Group = "Lab"
|
||||
};
|
||||
|
||||
|
@ -94,6 +98,7 @@ b.BuildTime descending
|
|||
{
|
||||
Url = Url.Route("Actions", new { controller = "build", action = "info", id = b.Id }),
|
||||
Label = b.FullBuildString.Replace(query, "<strong>" + query + "</strong>"),
|
||||
Title = b.FullBuildString,
|
||||
Group = "Build"
|
||||
};
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ public class SearchResult
|
|||
{
|
||||
public string Url { get; set; }
|
||||
public string Label { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Group { get; set; }
|
||||
}
|
||||
}
|
|
@ -169,7 +169,7 @@
|
|||
@Scripts.Render("~/bundles/jsrender")
|
||||
<script type="text/javascript" src="~/Scripts/bfs.js"></script>
|
||||
<script id="result-template" type="text/x-jsrender">
|
||||
<a href="{{:Url}}" class="list-group-item">
|
||||
<a href="{{:Url}}" class="list-group-item" title="{{:Title}}">
|
||||
<h4 class="list-group-item-heading">{{:Label}}</h4>
|
||||
<p class="list-group-item-text">{{:Group}}</p>
|
||||
</a>
|
||||
|
|
Loading…
Reference in New Issue
Block a user