Index: openacs-4/packages/xowf/tcl/iprange-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowf/tcl/iprange-init.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/xowf/tcl/iprange-init.tcl 3 Sep 2024 15:37:54 -0000 1.2 +++ openacs-4/packages/xowf/tcl/iprange-init.tcl 6 Nov 2024 15:51:59 -0000 1.3 @@ -3,22 +3,26 @@ # namespace eval ::xowf::iprange { - # - # The "all" range should be available on every sites - # ::xowf::IpRange create ::xowf::iprange::all \ -title "All" \ - -allowed {*} - - # - # One example for a WLAN. Note that multiple specs for allowed and - # disalled can be specified. For the allowed formats, see: - # - # https://openacs.org/xotcl/show-object?object=::xowf::IpRange - # - # ::xowf::IpRange create ::xowf::iprange::wlan \ - # -title "WU WLAN" \ - # -allowed { - # 137.208.216.0/21 - # } + -allowed {*} { + # + # The "all" range should be available on every site. + # + # One example for a WLAN. Note that multiple specs for allowed and + # disalled can be specified. For the allowed formats, see: + # + # https://openacs.org/xotcl/show-object?object=::xowf::IpRange + # + # ::xowf::IpRange create ::xowf::iprange::wlan \ + # -title "WU WLAN" \ + # -allowed { + # 137.208.216.0/21 + # } { + # # + # # I am the special WU IP range. + # # + # } + # + } }