Update help text

makefile
--------
  o Added helper target 'view' for local markdown rendering.

README.md
---------
  o Added URLs for command query results

Change-Id: I4fe1c291d5a0dbe84c598a3bb14f6ffceffcfaa9
diff --git a/jira/README.md b/jira/README.md
index 83ed343..ff616d8 100644
--- a/jira/README.md
+++ b/jira/README.md
@@ -13,12 +13,12 @@
 Conditional Searches
 ====================
 
-| Command | Description |
-| ------- | ----------- |
-| ./jira-search.sh -–opencord –-unresolved –-component bbsim | Search for unresolved tickets with a component of bbsim |
-| ./jira-search.sh -–opencord -–unresolved -–label bbsim | Search for unresolved tickets with 'bbsim' mentioned in the label field. |
-| ./jira-search.sh -–opencord -–unresolved -–text bbsim | Search for unresolved tickets with 'bbsim' mentioned in the description |
-| ./jira-search.sh -–opencord -–component onos -–component bbsim --label Testing | Switches can be combined but construction logic still needs work.  Query will be loaded into a browser and can be manually cleaned up. |
+| Jira | Command | Description |
+| ---- | ------- | ----------- |
+| [x](https://jira.opencord.org/browse/VOL-5287?jql=component%20IN%20(bbsim)%20AND%20(resolved%20IS%20EMPTY)) | ./jira-search.sh -–opencord –-unresolved –-component bbsim | Search for unresolved tickets with a component of bbsim |
+| [x](https://jira.opencord.org/browse/VOL-5220?jql=(labels%20IN%20(bbsim))%20AND%20(resolved%20IS%20EMPTY)) | ./jira-search.sh -–opencord -–unresolved -–label bbsim | Search for unresolved tickets with 'bbsim' mentioned in the label field. |
+| [x](https://jira.opencord.org/browse/VOL-5118?jql=(text%20~%20"bbsim")%20AND%20(resolved%20IS%20EMPTY)) | ./jira-search.sh -–opencord -–unresolved -–text bbsim | Search for unresolved tickets with 'bbsim' mentioned in the description |
+| [x](https://jira.opencord.org/browse/VOL-5293?jql=component%20IN%20(onos%2Cbbsim)%20AND%20(resolved%20IS%20EMPTY)) | ./jira-search.sh -–opencord -–component onos -–component bbsim | Switches can be combined but construction logic still needs work.  Query will be loaded into a browser and can be manually cleaned up. |
 
 Help
 ====
diff --git a/jira/bin/jira-search.sh b/jira/bin/jira-search.sh
index 462df4d..829cb4a 100755
--- a/jira/bin/jira-search.sh
+++ b/jira/bin/jira-search.sh
@@ -684,9 +684,7 @@
 fi
 
 [[ -v debug ]] && [[ -v url ]] && echo "URL: $url"
-# browser="${BROWSER:-/snap/bin/firefox}"
-# browser="${BROWSER:-/opt/firefox/current/firefox}"
-browser="${BROWSER:-opera}"
+browser="${BROWSER:-firefox}"
 echo "$browser ${urls_filt[@]} ${urls_raw[@]}"
 
 if [[ ! -v dry_run ]]; then
diff --git a/jira/makefile b/jira/makefile
new file mode 100644
index 0000000..02f5ad5
--- /dev/null
+++ b/jira/makefile
@@ -0,0 +1,8 @@
+# -*- makefile -*-
+
+all:
+
+view :
+	pandoc README.md | lynx --stdin
+
+# [EOF]