comparison src/nabble/view/web/template/NabbleNamespace.java @ 21:aba8ed4c8a06

semiprivate
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 13 Jun 2020 22:30:48 -0600
parents 18cf4872fd7f
children b0e75dfe1853
comparison
equal deleted inserted replaced
20:47162510b27f 21:aba8ed4c8a06
111 111
112 @Command public void site_id(IPrintWriter out,Interpreter interp) { 112 @Command public void site_id(IPrintWriter out,Interpreter interp) {
113 out.print( site.getId() ); 113 out.print( site.getId() );
114 } 114 }
115 115
116 @Command public void is_semiprivate(IPrintWriter out,Interpreter interp) {
117 out.print( site.isSemiprivate() );
118 }
119
116 @Command public void base_url(IPrintWriter out,Interpreter interp) { 120 @Command public void base_url(IPrintWriter out,Interpreter interp) {
117 out.print( interp.encode( site.getBaseUrl() ) ); 121 out.print( interp.encode( site.getBaseUrl() ) );
118 } 122 }
119 123
120 public static final CommandSpec terms_of_use_url = CommandSpec.DO() 124 public static final CommandSpec terms_of_use_url = CommandSpec.DO()