summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
9835865)
add missing gcomiit scripts
--- /dev/null
+perl/gcommit
\ No newline at end of file
#
# usage: gtkconsole [<callsign>] [<host> <port>]
#
#
# usage: gtkconsole [<callsign>] [<host> <port>]
#
-# Copyright (c) 2001-6 Dirk Koopman G1TLH
+# Copyright (c) 2006-2007 Dirk Koopman G1TLH
our $bot; # the cmd entry window
our $date; # the current date
our $bot; # the cmd entry window
our $date; # the current date
+require "$root/local/DXVars.pm" if -e "$root/local/DXVars.pm";
+
# read in the user data
our $userfn = "$ENV{HOME}/.gtkconsole_data";
our $user = read_user_data();
# read in the user data
our $userfn = "$ENV{HOME}/.gtkconsole_data";
our $user = read_user_data();
my $node = $user->{clusters}->{$user->{node}};
if ($node->{call} || $user->{call}) {
my $node = $user->{clusters}->{$user->{node}};
if ($node->{call} || $user->{call}) {
- $call = $node->{call} || $user->{call};
+ $call = $node->{call} || $user->{call} || $main::myalias;
$host = $node->{passwd};
$host = $node->{host};
$port = $node->{port};
$host = $node->{passwd};
$host = $node->{host};
$port = $node->{port};
}
unless ($call && $host) {
}
unless ($call && $host) {
- if (-e "$root/local/DXVars.pm") {
- require "$root/local/DXVars.pm";
- $call = $main::myalias;
- $call = $main::myalias; # for the warning
- }
if (-e "$root/local/Listeners.pm") {
require "$root/local/Listeners.pm";
$host = $main::listen->[0]->[0];
$port = $main::listen->[0]->[1];
if (-e "$root/local/Listeners.pm") {
require "$root/local/Listeners.pm";
$host = $main::listen->[0]->[0];
$port = $main::listen->[0]->[1];
+ $host ||= '127.0.0.1';
+ $host = "127.0.0.1" if $host eq '0.0.0.0';
+ $port ||= 7300;
+ 'LOCAL' => {host => '127.0.0.1', port => 7300},
'GB7DJK' => {host => 'gb7djk.dxcluster.net', port => 7300},
'WR3D' => {host => 'wr3d.dxcluster.net', port => 7300},
'GB7BAA' => {host => 'gb7baa.dxcluster.net', port => 7300},
},
'GB7DJK' => {host => 'gb7djk.dxcluster.net', port => 7300},
'WR3D' => {host => 'wr3d.dxcluster.net', port => 7300},
'GB7BAA' => {host => 'gb7baa.dxcluster.net', port => 7300},
},
+ node => 'LOCAL',
+ call => $main::myalias,
};
write_user_data($u);
}
};
write_user_data($u);
}
use vars qw($version $build);
$version = '1.53';
use vars qw($version $build);
$version = '1.53';
--- /dev/null
+#!/bin/sh
+# do a startard git commit
+/spider/perl/issue.pl
+git commit -a $@