// Code generated by qtc from "rename.qtpl". DO NOT EDIT. // See https://github.com/valyala/quicktemplate for details. // This dialog is to be shown to a user when they try to rename a hypha. //line templates/rename.qtpl:2 package templates //line templates/rename.qtpl:2 import ( qtio422016 "io" qt422016 "github.com/valyala/quicktemplate" ) //line templates/rename.qtpl:2 var ( _ = qtio422016.Copy _ = qt422016.AcquireByteBuffer ) //line templates/rename.qtpl:2 func StreamRenameAskHTML(qw422016 *qt422016.Writer, hyphaName string, isOld bool) { //line templates/rename.qtpl:2 qw422016.N().S(`
`) //line templates/rename.qtpl:4 streamnavHTML(qw422016, hyphaName, "rename-ask") //line templates/rename.qtpl:4 qw422016.N().S(` `) //line templates/rename.qtpl:5 if isOld { //line templates/rename.qtpl:5 qw422016.N().S(`

Rename `) //line templates/rename.qtpl:7 qw422016.E().S(hyphaName) //line templates/rename.qtpl:7 qw422016.N().S(`

New name
Settings

If you rename this hypha, all incoming links and all relative outcoming links will break. You will also lose all history for the new name. Rename carefully.

`) //line templates/rename.qtpl:24 } else { //line templates/rename.qtpl:24 qw422016.N().S(` `) //line templates/rename.qtpl:25 streamcannotRenameDueToNonExistence(qw422016, hyphaName) //line templates/rename.qtpl:25 qw422016.N().S(` `) //line templates/rename.qtpl:26 } //line templates/rename.qtpl:26 qw422016.N().S(`
`) //line templates/rename.qtpl:28 } //line templates/rename.qtpl:28 func WriteRenameAskHTML(qq422016 qtio422016.Writer, hyphaName string, isOld bool) { //line templates/rename.qtpl:28 qw422016 := qt422016.AcquireWriter(qq422016) //line templates/rename.qtpl:28 StreamRenameAskHTML(qw422016, hyphaName, isOld) //line templates/rename.qtpl:28 qt422016.ReleaseWriter(qw422016) //line templates/rename.qtpl:28 } //line templates/rename.qtpl:28 func RenameAskHTML(hyphaName string, isOld bool) string { //line templates/rename.qtpl:28 qb422016 := qt422016.AcquireByteBuffer() //line templates/rename.qtpl:28 WriteRenameAskHTML(qb422016, hyphaName, isOld) //line templates/rename.qtpl:28 qs422016 := string(qb422016.B) //line templates/rename.qtpl:28 qt422016.ReleaseByteBuffer(qb422016) //line templates/rename.qtpl:28 return qs422016 //line templates/rename.qtpl:28 } //line templates/rename.qtpl:30 func streamcannotRenameDueToNonExistence(qw422016 *qt422016.Writer, hyphaName string) { //line templates/rename.qtpl:30 qw422016.N().S(`

Cannot rename `) //line templates/rename.qtpl:32 qw422016.E().S(hyphaName) //line templates/rename.qtpl:32 qw422016.N().S(`

This hypha does not exist.

Go back

`) //line templates/rename.qtpl:36 } //line templates/rename.qtpl:36 func writecannotRenameDueToNonExistence(qq422016 qtio422016.Writer, hyphaName string) { //line templates/rename.qtpl:36 qw422016 := qt422016.AcquireWriter(qq422016) //line templates/rename.qtpl:36 streamcannotRenameDueToNonExistence(qw422016, hyphaName) //line templates/rename.qtpl:36 qt422016.ReleaseWriter(qw422016) //line templates/rename.qtpl:36 } //line templates/rename.qtpl:36 func cannotRenameDueToNonExistence(hyphaName string) string { //line templates/rename.qtpl:36 qb422016 := qt422016.AcquireByteBuffer() //line templates/rename.qtpl:36 writecannotRenameDueToNonExistence(qb422016, hyphaName) //line templates/rename.qtpl:36 qs422016 := string(qb422016.B) //line templates/rename.qtpl:36 qt422016.ReleaseByteBuffer(qb422016) //line templates/rename.qtpl:36 return qs422016 //line templates/rename.qtpl:36 }