Index: openacs-4/packages/acs-subsite/tcl/group-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/tcl/group-init.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/acs-subsite/tcl/group-init.tcl 3 Sep 2024 15:37:33 -0000 1.2 +++ openacs-4/packages/acs-subsite/tcl/group-init.tcl 6 Nov 2024 15:51:58 -0000 1.3 @@ -1,14 +1,15 @@ -# -# Create group cache. The sizes can be tailored in the config -# file like the following: -# -# ns_section ns/server/${server}/acs/acs-subsite -# ns_param GroupCache 2MB -# ::acs::KeyPartitionedCache create ::acs::group_cache \ -package_key acs-subsite \ -parameter GroupCache \ - -default_size 2MB + -default_size 2MB { + # + # Create group cache. The sizes can be tailored in the config + # file like the following: + # + # ns_section ns/server/${server}/acs/acs-subsite + # ns_param GroupCache 2MB + # + } # Local variables: # mode: tcl 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. + # # + # } + # + } }