Skip to content

Commit

Permalink
Path-first URLs (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-adam authored Feb 20, 2024
1 parent 3716c29 commit 9fdaf25
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions resources/views/begin.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ <h2>Setup:</h2>
the <a href="reagent-initialize.view">initialize</a> script to populate the database.
<p>
After initializing, add or remove
<a href="<%=contextPath%>/query<%=containerPath%>/executeQuery.view?schemaName=reagent&query.queryName=Manufacturers">Manufacturers</a>,
<a href="<%=contextPath%>/query<%=containerPath%>/executeQuery.view?schemaName=reagent&query.queryName=Antigens">Antigens</a>,
<a href="<%=contextPath%>/query<%=containerPath%>/executeQuery.view?schemaName=reagent&query.queryName=Labels">Labels</a>, and
<a href="<%=contextPath%>/query<%=containerPath%>/executeQuery.view?schemaName=reagent&query.queryName=Species">Species</a>
<a href="<%=contextPath%><%=containerPath%>/query-executeQuery.view?schemaName=reagent&query.queryName=Manufacturers">Manufacturers</a>,
<a href="<%=contextPath%><%=containerPath%>/query-executeQuery.view?schemaName=reagent&query.queryName=Antigens">Antigens</a>,
<a href="<%=contextPath%><%=containerPath%>/query-executeQuery.view?schemaName=reagent&query.queryName=Labels">Labels</a>, and
<a href="<%=contextPath%><%=containerPath%>/query-executeQuery.view?schemaName=reagent&query.queryName=Species">Species</a>
specific for your site. Once you have added Manufactuers, Antigens, Labels, and Species, you can add new
<a href="<%=contextPath%>/query<%=containerPath%>/executeQuery.view?schemaName=reagent&query.queryName=Reagents">Reagents</a>
<a href="<%=contextPath%><%=containerPath%>/query-executeQuery.view?schemaName=reagent&query.queryName=Reagents">Reagents</a>
and
<a href="<%=contextPath%>/query<%=containerPath%>/executeQuery.view?schemaName=reagent&query.queryName=Lots">Lots</a>. After adding Lots,
<a href="<%=contextPath%><%=containerPath%>/query-executeQuery.view?schemaName=reagent&query.queryName=Lots">Lots</a>. After adding Lots,
you may want to add a
<a href="<%=contextPath%>/query<%=containerPath%>/executeQuery.view?schemaName=reagent&query.queryName=Titrations">Titration</a>
<a href="<%=contextPath%><%=containerPath%>/query-executeQuery.view?schemaName=reagent&query.queryName=Titrations">Titration</a>
experiment and
<a href="<%=contextPath%>/query<%=containerPath%>/executeQuery.view?schemaName=reagent&query.queryName=Vials">Vials</a>
<a href="<%=contextPath%><%=containerPath%>/query-executeQuery.view?schemaName=reagent&query.queryName=Vials">Vials</a>
to the Lot.

<h2>Summary of tables:</h2>
Expand Down Expand Up @@ -48,7 +48,7 @@ <h2>Summary of tables:</h2>
var query = queries[name];
if (query && query.name && query.description)
{
html += "<dt><a href='<%=contextPath%>/query<%=containerPath%>/executeQuery.view?schemaName=reagent&query.queryName=" + query.name + "'>" + query.name + "</a></dt>";
html += "<dt><a href='<%=contextPath%><%=containerPath%>/query-executeQuery.view?schemaName=reagent&query.queryName=" + query.name + "'>" + query.name + "</a></dt>";
html += "<dd>" + query.description + "</dd>";
}
}
Expand Down

0 comments on commit 9fdaf25

Please sign in to comment.