aboutsummaryrefslogtreecommitdiffstats
path: root/www/inks/patches/patch-inks_go.orig
diff options
context:
space:
mode:
authorla-ninpre <aaoth@aaoth.xyz>2023-04-27 01:02:53 +0300
committerla-ninpre <aaoth@aaoth.xyz>2023-04-27 01:02:53 +0300
commita8921593398f8b600e09b82a69a2c4a077785510 (patch)
tree7ffd099758732d7532a37ba45e0f0fb15d33110e /www/inks/patches/patch-inks_go.orig
parent6cdfb9b9ab548157f190e620b8da6e86afe2f95b (diff)
downloadports-a8921593398f8b600e09b82a69a2c4a077785510.tar.gz
ports-a8921593398f8b600e09b82a69a2c4a077785510.zip
www/inks: add 0.9.2pre20230325
this is not a real version, but since there were no releases for some time, i packaged the latest tip of mercurial repository and put it on my webserver.
Diffstat (limited to 'www/inks/patches/patch-inks_go.orig')
-rw-r--r--www/inks/patches/patch-inks_go.orig62
1 files changed, 62 insertions, 0 deletions
diff --git a/www/inks/patches/patch-inks_go.orig b/www/inks/patches/patch-inks_go.orig
new file mode 100644
index 0000000..2fe69ee
--- /dev/null
+++ b/www/inks/patches/patch-inks_go.orig
@@ -0,0 +1,62 @@
+Index: inks.go
+--- inks.go.orig
++++ inks.go
+@@ -44,7 +44,7 @@ var tagName = "inks,2019"
+
+ func getInfo(r *http.Request) map[string]interface{} {
+ templinfo := make(map[string]interface{})
+- templinfo["StyleParam"] = getstyleparam("views/style.css")
++ templinfo["StyleParam"] = getstyleparam("${TRUEPREFIX}/share/${PKGSTEM}/views/style.css")
+ templinfo["UserInfo"] = login.GetUserInfo(r)
+ templinfo["LogoutCSRF"] = login.GetCSRF("logout", r)
+ templinfo["ServerName"] = serverName
+@@ -323,7 +323,7 @@ func showtags(w http.ResponseWriter, r *http.Request)
+ w.Header().Set("Cache-Control", "max-age=300")
+ }
+
+- err := readviews.Execute(w, "tags.html", templinfo)
++ err := readviews.Execute(w, "$tags.html", templinfo)
+ if err != nil {
+ log.Printf("error templating inks: %s", err)
+ }
+@@ -381,7 +381,7 @@ func showsources(w http.ResponseWriter, r *http.Reques
+ templinfo := getInfo(r)
+ templinfo["SaveCSRF"] = login.GetCSRF("savesource", r)
+ templinfo["Sources"] = getsources()
+- err := readviews.Execute(w, "sources.html", templinfo)
++ err := readviews.Execute(w, "$sources.html", templinfo)
+ if err != nil {
+ log.Print(err)
+ }
+@@ -474,7 +474,7 @@ func showrandomrss(w http.ResponseWriter, r *http.Requ
+
+ func servecss(w http.ResponseWriter, r *http.Request) {
+ w.Header().Set("Cache-Control", "max-age=7776000")
+- http.ServeFile(w, r, "views"+r.URL.Path)
++ http.ServeFile(w, r, "${are/${PKGSTEM}/views"+r.URL.Path)
+ }
+ func servehtml(w http.ResponseWriter, r *http.Request) {
+ templinfo := getInfo(r)
+@@ -569,15 +569,15 @@ func serve() {
+ getconfig("debug", &debug)
+
+ readviews = templates.Load(debug,
+- "views/header.html",
+- "views/inks.html",
+- "views/tags.html",
+- "views/addlink.html",
+- "views/sources.html",
+- "views/login.html",
++ "${TRUEPREFIX}/share/${PKGSTEM}/views/header.html",
++ "${TRUEPREFIX}/share/${PKGSTEM}/views/inks.html",
++ "${TRUEPREFIX}/share/${PKGSTEM}/views/tags.html",
++ "${TRUEPREFIX}/share/${PKGSTEM}/views/addlink.html",
++ "${TRUEPREFIX}/share/${PKGSTEM}/views/sources.html",
++ "${TRUEPREFIX}/share/${PKGSTEM}/views/login.html",
+ )
+ if !debug {
+- s := "views/style.css"
++ s := "${TRUEPREFIX}/share/${PKGSTEM}/views/style.css"
+ savedstyleparams[s] = getstyleparam(s)
+
+ }