iil

Changes On Branch mistakes
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch mistakes Excluding Merge-Ins

This is equivalent to a diff from 222bc20bdd to b26dee2460

2012-05-19
18:17
proper fix for empty if statement check-in: f1de5f83bb user: labla tags: trunk
18:03
fix empty if statement, thanks go to: c00kiemon5ter Closed-Leaf check-in: b26dee2460 user: labla tags: mistakes
16:21
add symlink readme.txt to be used by fossil server check-in: 222bc20bdd user: labla tags: trunk
15:53
refresh list, every time it is displayed check-in: 1dd2b4ae7a user: labla tags: trunk

Changes to iil.sh.

49
50
51
52
53
54
55
56

57
58
59
60
61
62
63
64
65
49
50
51
52
53
54
55

56


57
58
59
60
61
62
63







-
+
-
-







  # echo "channel list:" $last_channel $channel_list
}

show_tag()
{
  # check if $current_tag is proper integer, otherwise set to 0
  
  if [ $current_tag -eq $current_tag 2> /dev/null ] ; then
  if [ $current_tag -ne $current_tag 2> /dev/null ] ; then
    # do nothing
  else
    current_tag=0
  fi

  # check if $current_tag is in range of $last_server..$last_channel
  # otherwise wrap to first ($last_server) or last item ($last_channel)
  
  if [ $current_tag -gt $last_channel ] ; then