<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in disable</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3b8f08459569bf0faa21473e5cec2491e95c9349 - Merge head</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#3b8f08459569bf0faa21473e5cec2491e95c9349</link>
        <description>Merge head

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Mon, 28 Apr 2014 07:50:45 +0000</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>84e51a1b679bececc13cbe3cd3cb9b7d461b9fe7 - IFC @264767</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#84e51a1b679bececc13cbe3cd3cb9b7d461b9fe7</link>
        <description>IFC @264767

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Wed, 23 Apr 2014 21:52:43 +0000</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5748b897da441d1f10e1fe0c39155ea33d6d383a - Merge head up to r262222 (last merge was incomplete).</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#5748b897da441d1f10e1fe0c39155ea33d6d383a</link>
        <description>Merge head up to r262222 (last merge was incomplete).

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Wed, 19 Feb 2014 22:02:15 +0000</pubDate>
        <dc:creator>Martin Matuska &lt;mm@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>485ac45a536e186a26411277af1fe98ef0d17c2b - MFC @ r259205 in preparation for some SVM updates. (for real this time)</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#485ac45a536e186a26411277af1fe98ef0d17c2b</link>
        <description>MFC @ r259205 in preparation for some SVM updates. (for real this time)

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Tue, 04 Feb 2014 06:59:08 +0000</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d4ae33f0721c1b170fe37d97e395228ffcfb3f80 - Performance and debugging enhancements:</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#d4ae33f0721c1b170fe37d97e395228ffcfb3f80</link>
        <description>Performance and debugging enhancements:+ Remove UNAME_P=$(...) from startup/misc -- already supplied by common.subr+ Use f_getvar instead of $(eval echo \$$var) -- f_getvar is sub-shell free+ Add `-e&apos; and `-k var&apos; options to f_eval_catch -- increasing use-cases+ Use f_eval_catch to display errors on failure -- reducing duplicated code+ Use f_eval_catch when we need output from a command -- improving debugging+ Optimize f_isinter of strings.subr for performance -- now sub-shell free+ Improve error checking on pidfiles -- using f_eval_catch and f_isinteger+ Use $var_to_set arg of f_ifconfig_{inet,netmask} -- eliminate sub-shells+ Use f_sprintf instead of $(printf ...) -- consolidate sub-shells+ Use $var_to_set arg of f_route_get_default -- eliminate sub-shells+ Add f_count to replace $(set -- ...;echo $#) -- eliminate sub-shells+ Add f_count_ifs to replace $(IFS=x;set -- ...;echo $#) -- no sub-shells+ Replace var=&quot;$var${var:+ }...&quot; in loops with var=&quot;$var ...&quot; with a follow-  up var=&quot;${var# }&quot; to trim leading whitespace -- optimize loops+ Use $var_to_set arg of f_resolv_conf_nameservers -- eliminate sub-shells+ Comments for the f_eval_catch function+ Remove a duplicate `local ... desc ...&apos; in f_device_get_all of device.subr+ Use $var_to_set arg of f_device_capacity -- eliminate sub-shells+ Whitespace fixes in f_dialog_init of dialog.subr+ Optimize f_inet_atoi of media/tcpip.subr for performance -- sub-shell free+ In several cases, send stderr to /dev/null -- clean up runtime execution+ Change f_err of common.subr to go to program stderr not terminal stderr,  allowing redirection of output from functions that use f_err+ Disable debugging when using f_getvar to get variable argument to  f_startup_rcconf_map_expand of startup/rcconf.subr+ Use f_replace_all instead of $(echo ... | tr | sed) -- performance+ Add a $var_to_set option to f_index_{file,menusel_{command,keyword}} of  common.subr -- centralize sub-shells

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Sat, 07 Dec 2013 00:31:01 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0bfd163f522701b486e066fa2e56624c02f5081a - Merge head r233826 through r256722.</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#0bfd163f522701b486e066fa2e56624c02f5081a</link>
        <description>Merge head r233826 through r256722.

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Fri, 18 Oct 2013 09:32:02 +0000</pubDate>
        <dc:creator>Gleb Smirnoff &lt;glebius@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d1d015864103b253b3fcb2f72a0da5b0cfeb31b6 - Merge from head</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#d1d015864103b253b3fcb2f72a0da5b0cfeb31b6</link>
        <description>Merge from head

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Thu, 05 Sep 2013 20:18:59 +0000</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>40f65a4df509c6b29b9e72407c7afefe28838844 - IFC @ r254014</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#40f65a4df509c6b29b9e72407c7afefe28838844</link>
        <description>IFC @ r254014

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Wed, 07 Aug 2013 00:09:49 +0000</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>92e0a672a849f5d796f96108701ca1641bd77bc9 - IFC @ r253461</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#92e0a672a849f5d796f96108701ca1641bd77bc9</link>
        <description>IFC @ r253461

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Fri, 19 Jul 2013 03:27:04 +0000</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>552311f4bb98c81b1b9e0e81d74e0262fc12110b - IFC @253398</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#552311f4bb98c81b1b9e0e81d74e0262fc12110b</link>
        <description>IFC @253398

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Wed, 17 Jul 2013 01:32:29 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8e37a7c8b904c50714931a3ef635023dd658499e - Fix typos in the BSD License.</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#8e37a7c8b904c50714931a3ef635023dd658499e</link>
        <description>Fix typos in the BSD License.

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Sun, 07 Jul 2013 18:51:44 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f8ea072a542112d5e0e74a2d6ecf75d967c3054c - Be consistent with other usr.sbin programs w/respect to the copyright</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#f8ea072a542112d5e0e74a2d6ecf75d967c3054c</link>
        <description>Be consistent with other usr.sbin programs w/respect to the copyrightwording (&quot;All rights reserved.&quot;); I had the casing wrong on many instances.

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Sun, 07 Jul 2013 18:21:30 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2642f6b2c65b1a21f54c1c729a72ff96a0f59c37 - IFC @ r252288</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#2642f6b2c65b1a21f54c1c729a72ff96a0f59c37</link>
        <description>IFC @ r252288

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Thu, 27 Jun 2013 20:27:34 +0000</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c9c67103c371140fa440f0be08eaa8f308b23239 - More whitespace.</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#c9c67103c371140fa440f0be08eaa8f308b23239</link>
        <description>More whitespace.

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Mon, 24 Jun 2013 20:58:54 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>46b01b2c385329823c4553ba2d05cb7a3ea10df9 - IFC @ r252047</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#46b01b2c385329823c4553ba2d05cb7a3ea10df9</link>
        <description>IFC @ r252047

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Fri, 21 Jun 2013 01:22:29 +0000</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cfe30d02adda7c3b5c76156ac52d50d8cab325d9 - Merge fresh head.</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#cfe30d02adda7c3b5c76156ac52d50d8cab325d9</link>
        <description>Merge fresh head.

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Wed, 19 Jun 2013 11:36:13 +0000</pubDate>
        <dc:creator>Gleb Smirnoff &lt;glebius@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>131502c3031f053e9a0e0ade55e0620fb28914db - Use newly enhanced f_dialog_msgbox() from SVN r251912.</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#131502c3031f053e9a0e0ade55e0620fb28914db</link>
        <description>Use newly enhanced f_dialog_msgbox() from SVN r251912.

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Tue, 18 Jun 2013 08:59:47 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>74036c4de983981ee2b23f91e285363293aa7c3c - Improve portion of the dialog(1) API in dialog.subr responsible for</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/mouse/disable#74036c4de983981ee2b23f91e285363293aa7c3c</link>
        <description>Improve portion of the dialog(1) API in dialog.subr responsible forcalculating widget sizes. Instead of forking a sub-shell to calculate theoptimum size for a widget, use a byRef style call-out to set variables inthe parent namespace. For example, instead of:	size=$( f_dialog_buttonbox_size title btitle msg )	$DIALOG --title title --backtitle btitle --msgbox msg $sizeThe new API replaces the above with the following:	f_dialog_buttonbox_size height width title btitle msg	$DIALOG --title title --backtitle btitle --msgbox msg $height $widthThis reduces the number of forks, improves performance, and makes the codemore readable by revealing the argument-order for widget sizing. It alsomakes performing minor adjustments to the calculated values easier asyou no longer have to split-out the response (which required knowledge ofordering so was counter-intuitive).

            List of files:
            /src/usr.sbin/bsdconfig/mouse/disable</description>
        <pubDate>Fri, 31 May 2013 19:07:17 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
