]> bicyclesonthemoon.info Git - ott/bsta/commitdiff
show return link from comment even if there is no content to show
authorb <rowerynaksiezycu@gmail.com>
Tue, 9 Jan 2024 21:40:52 +0000 (21:40 +0000)
committerb <rowerynaksiezycu@gmail.com>
Tue, 9 Jan 2024 21:40:52 +0000 (21:40 +0000)
install.sh [new file with mode: 0755]
makefile
makefile.1.mak
opomba.1.pl

diff --git a/install.sh b/install.sh
new file mode 100755 (executable)
index 0000000..22a4f9e
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/sh
+make clean
+make -B TARGET=bsta makefile
+make install
+make clean
+make -B TARGET=again makefile
+make install
+make clean
index d2dab1f39c1ec1e8cf67afa7a3435f5376ce3f89..7007b12b9e72c8191b4e8608406fadf92c87e8b8 100644 (file)
--- a/makefile
+++ b/makefile
@@ -153,6 +153,7 @@ timer.js
 
 
 all: $(BIN) setuid exec
+       
 
 makefile: makefile.1.mak $(CONFIGFILE) configure.pl
        $(CONFIGURE_CMD) < makefile.1.mak > makefile
@@ -202,9 +203,11 @@ cp_cron: bsta.cron
        $(SUDO) $(CP) bsta.cron $(CRON)
 
 install: all cp_bin cp_lib cp_www cp_conf cp_cron
+       
 
 clean:
        $(RM) -f configure.pl $(TO_GENERATE) $(PERL_WRAP_EXEC) $(PERL_WRAP_EXEC:=.c)
        $(PERL) config/configure.1.pl $(DEFAULT_CONFIGFILE) < makefile.1.mak > makefile
 
 PHONY: all clean install setuid exec mktree cp_bin cp_lib cp_www cp_conf cp_cron
+       
index ea0971c950acc90193577494cf36cc56778d5d12..7ff6c93cd9b53950ddc0039688ef9217edf62633 100644 (file)
@@ -153,6 +153,7 @@ timer.js
 
 
 all: $(BIN) setuid exec
+       
 
 makefile: makefile.1.mak $(CONFIGFILE) configure.pl
        $(CONFIGURE_CMD) < makefile.1.mak > makefile
@@ -202,9 +203,11 @@ cp_cron: bsta.cron
        $(SUDO) $(CP) bsta.cron $(CRON)
 
 install: all cp_bin cp_lib cp_www cp_conf cp_cron
+       
 
 clean:
        $(RM) -f configure.pl $(TO_GENERATE) $(PERL_WRAP_EXEC) $(PERL_WRAP_EXEC:=.c)
        $(PERL) config/configure.1.pl $(DEFAULT_CONFIGFILE) < makefile.1.mak > makefile
 
 PHONY: all clean install setuid exec mktree cp_bin cp_lib cp_www cp_conf cp_cron
+       
index e35aa0b2ddfa1cd859e856e0b07e836a652c6f1d..28b3b49bb8f670c49760145b7bccaa04d6b041f8 100644 (file)
@@ -531,9 +531,9 @@ sub output {
                print '   </div>'."\n";
        }
        
+       print '   <div id="insw" class="ins">'."\n";
+       
        if ($show_content) {
-               print '   <div id="insw" class="ins">'."\n";
-               
                print '    <div class="undertext" id="words">'."\n";
                print '     <form method="post" action="'.$_post_url.'">'."\n";
                unless ($remove) {
@@ -582,12 +582,12 @@ sub output {
                        print '     </div>'."\n";
                }
                print '    </div>'."\n";
-               print '    <div id="underlinks">'."\n";
-               print '     <a href="'.$_return_url.'">Return</a>'."\n";
-               print '    </div>'."\n";
-               
-               print '   </div>'."\n";
        }
+       print '    <div id="underlinks">'."\n";
+       print '     <a href="'.$_return_url.'">Return</a>'."\n";
+       print '    </div>'."\n";
+       
+       print '   </div>'."\n";
        
        print_html_body_end(\*STDOUT, $ong_state == STATE->{'inactive'});
        print_html_end(\*STDOUT);