added 'show' option

master
KatolaZ 8 years ago
parent ee3dc59322
commit 32e86d1129
  1. 6
      html/index.html
  2. 2
      main.go

@ -7,9 +7,11 @@
<br />
Paste:
<br />
<textarea name="paste" cols="80" rows="10"> </textarea>
<textarea name="paste" cols="80" rows="10"></textarea>
<br />
<input type="submit" value="PasteMe!">
<input type="checkbox" name="show" value="1" checked />Show link
<br />
<input type="submit" value="Binit!">
</form>
</body>

@ -101,7 +101,7 @@ func handle_put_paste(w http.ResponseWriter, r *http.Request) {
// and then we return the URL:
log.Printf(" `-- saving paste to : %s", paste_dir + paste_name)
hostname := r.Host
if show := req_body.Get("show"); show != "" {
if show := req_body.Get("show"); show != "1" {
fmt.Fprintf(w, "%s/%s", hostname, paste_name)
return
} else{

Loading…
Cancel
Save