diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2019-06-27 21:08:14 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2019-06-30 17:48:19 +0200 |
commit | a89f1faf7b55dad33c40c840917c30ca9234cc06 (patch) | |
tree | 9f0bfc129813777d1a8407bbda80de74e73d7051 /win | |
parent | cccfa9dcfe2c161779824c01a84edfa64fc4378a (diff) | |
download | mariadb-git-a89f1faf7b55dad33c40c840917c30ca9234cc06.tar.gz |
Remove feedback from Windows MSI
Not much use of this feature so far.
Diffstat (limited to 'win')
-rw-r--r-- | win/packaging/extra.wxs.in | 58 |
1 files changed, 2 insertions, 56 deletions
diff --git a/win/packaging/extra.wxs.in b/win/packaging/extra.wxs.in index c9242a31dd3..907a2eac692 100644 --- a/win/packaging/extra.wxs.in +++ b/win/packaging/extra.wxs.in @@ -52,10 +52,6 @@ <!-- Disable advertised shortcuts weirdness --> <Property Id="DISABLEADVTSHORTCUTS" Secure="yes" Value="1"/> - <!-- Activate feedback plugin--> - <Property Id="FEEDBACK" Secure="yes"/> - - <!-- Quick configuration : set default storage engine to innodb, use strict sql_mode --> <Property Id="STDCONFIG" Secure="yes" Value="1"/> @@ -171,43 +167,6 @@ </Control> <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> </Dialog> - - <!-- Feedback dialog --> - <Dialog Id="Feedback" Width="370" Height="270" Title="[ProductName] Setup" NoMinimize="yes"> - - <Control Id="CheckBoxFeedback" Type="CheckBox" X="8" Y="61" Width="360" Height="12" Property="FEEDBACK" CheckBoxValue="1" TabSkip="no"> - <Text>{\Font1}Enable the Feedback plugin and submit anonymous usage information</Text> - </Control> - - <Control Id="Text" Type="Text" X="23" Y="82" Width="290" Height="55"> - <Text>Monty Program has created a Feedback plugin for MariaDB which, if enabled, collects basic anonymous statistical information. This information is used by the developers to improve MariaDB. Enabling this plugin is an easy way to help with MariaDB development. Collected statistics, and more information on the plugin, can be viewed at http://mariadb.org/feedback_plugin </Text> - </Control> - - <Control Id="MoreInfo" Type="PushButton" X="23" Y="140" Width="56" Height="17" Text="More Info" ToolTip="http://mariadb.org/feedback_plugin" > - <Publish Property="WixShellExecTarget" Value="http://mariadb.org/feedback_plugin" Order="1">1</Publish> - <Publish Event="DoAction" Value="LaunchUrl" Order="2">1</Publish> - </Control> - - - <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="&Back"> - <Publish Event="NewDialog" Value="ServicePortDlg">1</Publish> - </Control> - <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="&Next"> - <Publish Event="NewDialog" Value="VerifyReadyDlg">1</Publish> - </Control> - <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="Cancel"> - <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish> - </Control> - <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="WixUI_Bmp_Banner" /> - <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes"> - <Text>Submit usage information</Text> - </Control> - <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> - <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes"> - <Text>{\WixUI_Font_Title}[ProductName] setup</Text> - </Control> - <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> - </Dialog> <!-- Error popup dialog --> <Dialog Id="WarningDlg" Width="320" Height="85" Title="[ProductName] Setup" NoMinimize="yes"> @@ -358,7 +317,7 @@ </Publish> <Publish Event="DoAction" Value="CheckDatabaseProperties">NOT WarningText</Publish> <Publish Event="SpawnDialog" Value="WarningDlg">WarningText</Publish> - <Publish Event="NewDialog" Value="Feedback">Not WarningText</Publish> + <Publish Event="NewDialog" Value="VerifyReadyDlg">Not WarningText</Publish> </Control> <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="no" Text="Cancel"> <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish> @@ -388,7 +347,7 @@ NOT Installed AND UpgradableServiceFound </Publish> - <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="Feedback" Order="3" ><![CDATA[&DBInstance=3 AND NOT !DBInstance=3]]></Publish> + <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="ServicePortDlg" Order="3" ><![CDATA[&DBInstance=3 AND NOT !DBInstance=3]]></Publish> <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="3"> <![CDATA[OLDERVERSIONBEINGUPGRADED <>""]]></Publish> <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="ConfirmDataCleanupDlg" Order="1" ><![CDATA[(&DBInstance=2) AND (!DBInstance=3)]]></Publish> @@ -490,19 +449,6 @@ Key="innodb_buffer_pool_size" Value="[BUFFERPOOLSIZE]M" /> </Component> - <Component Id="C.feedback" Guid="*" Directory="DATADIR"> - <Condition>FEEDBACK</Condition> - <RegistryValue Root='HKLM' - Key='SOFTWARE\@CPACK_WIX_PACKAGE_NAME@' - Name='FEEDBACK' Value='1' Type='string' KeyPath='yes'/> - <IniFile Id="Ini5" - Action="createLine" - Directory="DATADIR" - Section="mysqld" - Name="my.ini" - Key="feedback" - Value="ON" /> - </Component> <Component Id="C.utf8" Guid="*" Directory="DATADIR"> <Condition>UTF8</Condition> |