Bug 142475. Add EULA to install for windows and license info in help dialog.
This commit is contained in:
parent
cae3740691
commit
828e8fb186
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 20 11:39:34 MST 2006 - jnorman@novell.com
|
||||||
|
|
||||||
|
- Bug 142475. Add EULA to install for windows and license info
|
||||||
|
in help dialog.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 19 11:17:34 MST 2006 - jnorman@novell.com
|
Thu Jan 19 11:17:34 MST 2006 - jnorman@novell.com
|
||||||
|
|
||||||
|
@ -72,7 +72,8 @@ namespace Novell.CASA.GUI
|
|||||||
dialogSingleInstance,
|
dialogSingleInstance,
|
||||||
dialogLoginReprompt,
|
dialogLoginReprompt,
|
||||||
dialogShortPassword,
|
dialogShortPassword,
|
||||||
dialogResetMP;
|
dialogResetMP,
|
||||||
|
dialogStillRunning;
|
||||||
|
|
||||||
[Glade.Widget]
|
[Glade.Widget]
|
||||||
Gtk.Entry entryMasterPassword1,
|
Gtk.Entry entryMasterPassword1,
|
||||||
@ -87,7 +88,8 @@ namespace Novell.CASA.GUI
|
|||||||
Gtk.CheckButton checkbuttonFirefox,
|
Gtk.CheckButton checkbuttonFirefox,
|
||||||
checkbuttonMozilla,
|
checkbuttonMozilla,
|
||||||
checkbuttonGnomeKeyring,
|
checkbuttonGnomeKeyring,
|
||||||
checkbuttonKdeWallet;
|
checkbuttonKdeWallet,
|
||||||
|
checkbuttonCloseMessage;
|
||||||
|
|
||||||
[Glade.Widget]
|
[Glade.Widget]
|
||||||
Gtk.Label label88,
|
Gtk.Label label88,
|
||||||
@ -812,6 +814,7 @@ namespace Novell.CASA.GUI
|
|||||||
LockGUI();
|
LockGUI();
|
||||||
if (mCasaTray != null)
|
if (mCasaTray != null)
|
||||||
mCasaTray.UpdateTrayIcon(true);
|
mCasaTray.UpdateTrayIcon(true);
|
||||||
|
RefreshStores();
|
||||||
Logger.DbgLog("GUI:CasaMain.OnLockMiCASASecrets() - END");
|
Logger.DbgLog("GUI:CasaMain.OnLockMiCASASecrets() - END");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -839,13 +842,12 @@ namespace Novell.CASA.GUI
|
|||||||
mmiDestroySecrets.Sensitive = false;
|
mmiDestroySecrets.Sensitive = false;
|
||||||
notebookStores.Sensitive = false;
|
notebookStores.Sensitive = false;
|
||||||
|
|
||||||
|
|
||||||
mmiNew.Sensitive = false;
|
mmiNew.Sensitive = false;
|
||||||
mmiRefresh.Sensitive = false;
|
mmiRefresh.Sensitive = false;
|
||||||
mmiDebug.Sensitive = false;
|
mmiDebug.Sensitive = false;
|
||||||
mmiOptions.Sensitive = false;
|
mmiOptions.Sensitive = false;
|
||||||
mmiEdit.Sensitive = false;
|
mmiEdit.Sensitive = false;
|
||||||
m_bGuiLocked = true;
|
m_bGuiLocked = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void UnlockGUI()
|
internal void UnlockGUI()
|
||||||
@ -1389,7 +1391,9 @@ namespace Novell.CASA.GUI
|
|||||||
{
|
{
|
||||||
if (m_bNotifyUser)
|
if (m_bNotifyUser)
|
||||||
{
|
{
|
||||||
// prompt user
|
// StillRunning(null, null);
|
||||||
|
// prompt user
|
||||||
|
|
||||||
MessageDialog md=new MessageDialog(null,Gtk.DialogFlags.Modal,
|
MessageDialog md=new MessageDialog(null,Gtk.DialogFlags.Modal,
|
||||||
Gtk.MessageType.Info,
|
Gtk.MessageType.Info,
|
||||||
Gtk.ButtonsType.Close,
|
Gtk.ButtonsType.Close,
|
||||||
@ -1402,6 +1406,7 @@ namespace Novell.CASA.GUI
|
|||||||
md.Show();
|
md.Show();
|
||||||
|
|
||||||
m_bNotifyUser = false;
|
m_bNotifyUser = false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mCasaTray.CasaManagerQuit();
|
mCasaTray.CasaManagerQuit();
|
||||||
@ -1411,7 +1416,32 @@ namespace Novell.CASA.GUI
|
|||||||
Application.Quit();
|
Application.Quit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///#######################################################################
|
||||||
|
/// StillRunning
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
public void StillRunning(object obj, EventArgs args)
|
||||||
|
{
|
||||||
|
Logger.DbgLog("GUI:CasaMain.StillRunning() - BEGIN");
|
||||||
|
|
||||||
|
Glade.XML gxmlTemp = new Glade.XML (Common.GladeFile, "dialogStillRunning", null);
|
||||||
|
gxmlTemp.Autoconnect (this);
|
||||||
|
dialogStillRunning.TransientFor = windowMain;
|
||||||
|
Logger.DbgLog("GUI:CasaMain.StillRunning() - END");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void btnStillRunning_clicked(object obj, EventArgs args)
|
||||||
|
{
|
||||||
|
if (checkbuttonCloseMessage.Active)
|
||||||
|
{
|
||||||
|
m_bNotifyUser = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
dialogStillRunning.Destroy();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
///#######################################################################
|
///#######################################################################
|
||||||
/// WINDOW MAIN FOCUS
|
/// WINDOW MAIN FOCUS
|
||||||
|
@ -280,8 +280,12 @@ namespace Novell.CASA.GUI
|
|||||||
{
|
{
|
||||||
MiCasaRequestReply.Send(MiCasaRequestReply.VERB_LOCK_STORE);
|
MiCasaRequestReply.Send(MiCasaRequestReply.VERB_LOCK_STORE);
|
||||||
if (mCasaMain != null)
|
if (mCasaMain != null)
|
||||||
|
{
|
||||||
mCasaMain.LockGUI();
|
mCasaMain.LockGUI();
|
||||||
|
mCasaMain.RefreshStores();
|
||||||
|
}
|
||||||
UpdateTrayIcon(true);
|
UpdateTrayIcon(true);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
|
<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
|
||||||
<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd">
|
<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd">
|
||||||
|
|
||||||
<glade-project>
|
<glade-project>
|
||||||
<name>Casa-1.5</name>
|
<name>Casa-1.5</name>
|
||||||
<program_name>casa-1.5</program_name>
|
<program_name>casa-1.5</program_name>
|
||||||
<pixmaps_directory></pixmaps_directory>
|
<pixmaps_directory></pixmaps_directory>
|
||||||
<gnome_support>FALSE</gnome_support>
|
<gnome_support>FALSE</gnome_support>
|
||||||
</glade-project>
|
</glade-project>
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -13,6 +13,12 @@
|
|||||||
"SccProvider" = "8:"
|
"SccProvider" = "8:"
|
||||||
"Hierarchy"
|
"Hierarchy"
|
||||||
{
|
{
|
||||||
|
"Entry"
|
||||||
|
{
|
||||||
|
"MsmKey" = "8:_08E7529D3C874D67919B514993DF2007"
|
||||||
|
"OwnerKey" = "8:_D1641051214046F78EDF37DC13C414ED"
|
||||||
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
"MsmKey" = "8:_1759661D2FDA4F2E95C0E7FC36CFA63C"
|
"MsmKey" = "8:_1759661D2FDA4F2E95C0E7FC36CFA63C"
|
||||||
@ -21,6 +27,12 @@
|
|||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
|
"MsmKey" = "8:_6CE0B932302E4E3783AAD1EA468ABD34"
|
||||||
|
"OwnerKey" = "8:_UNDEFINED"
|
||||||
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
|
}
|
||||||
|
"Entry"
|
||||||
|
{
|
||||||
"MsmKey" = "8:_8A1A4BA980A9443DBCD4DE4ACDA8F19A"
|
"MsmKey" = "8:_8A1A4BA980A9443DBCD4DE4ACDA8F19A"
|
||||||
"OwnerKey" = "8:_UNDEFINED"
|
"OwnerKey" = "8:_UNDEFINED"
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
@ -33,14 +45,14 @@
|
|||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
"MsmKey" = "8:_B9FB6EA3B8C14E949FE91EB4861F049B"
|
"MsmKey" = "8:_CF34BD04C0A64809A126C0013FE9AB68"
|
||||||
"OwnerKey" = "8:_8A1A4BA980A9443DBCD4DE4ACDA8F19A"
|
"OwnerKey" = "8:_8A1A4BA980A9443DBCD4DE4ACDA8F19A"
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
{
|
{
|
||||||
"MsmKey" = "8:_B9FB6EA3B8C14E949FE91EB4861F049B"
|
"MsmKey" = "8:_D0342628EEE84A0EBF9229899988B52A"
|
||||||
"OwnerKey" = "8:_D1641051214046F78EDF37DC13C414ED"
|
"OwnerKey" = "8:_UNDEFINED"
|
||||||
"MsmSig" = "8:_UNDEFINED"
|
"MsmSig" = "8:_UNDEFINED"
|
||||||
}
|
}
|
||||||
"Entry"
|
"Entry"
|
||||||
@ -140,6 +152,26 @@
|
|||||||
"IsDependency" = "11:FALSE"
|
"IsDependency" = "11:FALSE"
|
||||||
"IsolateTo" = "8:"
|
"IsolateTo" = "8:"
|
||||||
}
|
}
|
||||||
|
"{A582A373-4685-4296-BEFE-614B80A702C3}:_6CE0B932302E4E3783AAD1EA468ABD34"
|
||||||
|
{
|
||||||
|
"SourcePath" = "8:casa.rtf"
|
||||||
|
"TargetName" = "8:casa.rtf"
|
||||||
|
"Tag" = "8:"
|
||||||
|
"Folder" = "8:_E8900D5F0BD44DC0BB0BEFDF7C43B30C"
|
||||||
|
"Condition" = "8:"
|
||||||
|
"Transitive" = "11:FALSE"
|
||||||
|
"Vital" = "11:TRUE"
|
||||||
|
"ReadOnly" = "11:FALSE"
|
||||||
|
"Hidden" = "11:FALSE"
|
||||||
|
"System" = "11:FALSE"
|
||||||
|
"Permanent" = "11:FALSE"
|
||||||
|
"SharedLegacy" = "11:FALSE"
|
||||||
|
"PackageAs" = "3:1"
|
||||||
|
"Register" = "3:1"
|
||||||
|
"Exclude" = "11:TRUE"
|
||||||
|
"IsDependency" = "11:FALSE"
|
||||||
|
"IsolateTo" = "8:"
|
||||||
|
}
|
||||||
"{A582A373-4685-4296-BEFE-614B80A702C3}:_93A5D480D91747B086FD13789A12978B"
|
"{A582A373-4685-4296-BEFE-614B80A702C3}:_93A5D480D91747B086FD13789A12978B"
|
||||||
{
|
{
|
||||||
"SourcePath" = "8:..\\..\\c_gui\\images\\CASA.bmp"
|
"SourcePath" = "8:..\\..\\c_gui\\images\\CASA.bmp"
|
||||||
@ -160,6 +192,26 @@
|
|||||||
"IsDependency" = "11:FALSE"
|
"IsDependency" = "11:FALSE"
|
||||||
"IsolateTo" = "8:"
|
"IsolateTo" = "8:"
|
||||||
}
|
}
|
||||||
|
"{A582A373-4685-4296-BEFE-614B80A702C3}:_D0342628EEE84A0EBF9229899988B52A"
|
||||||
|
{
|
||||||
|
"SourcePath" = "8:eula.rtf"
|
||||||
|
"TargetName" = "8:eula.rtf"
|
||||||
|
"Tag" = "8:"
|
||||||
|
"Folder" = "8:_E8900D5F0BD44DC0BB0BEFDF7C43B30C"
|
||||||
|
"Condition" = "8:"
|
||||||
|
"Transitive" = "11:FALSE"
|
||||||
|
"Vital" = "11:TRUE"
|
||||||
|
"ReadOnly" = "11:FALSE"
|
||||||
|
"Hidden" = "11:FALSE"
|
||||||
|
"System" = "11:FALSE"
|
||||||
|
"Permanent" = "11:FALSE"
|
||||||
|
"SharedLegacy" = "11:FALSE"
|
||||||
|
"PackageAs" = "3:1"
|
||||||
|
"Register" = "3:1"
|
||||||
|
"Exclude" = "11:FALSE"
|
||||||
|
"IsDependency" = "11:FALSE"
|
||||||
|
"IsolateTo" = "8:"
|
||||||
|
}
|
||||||
"{A582A373-4685-4296-BEFE-614B80A702C3}:_EF467E7BEF8E4109BAD7E2FE47508D13"
|
"{A582A373-4685-4296-BEFE-614B80A702C3}:_EF467E7BEF8E4109BAD7E2FE47508D13"
|
||||||
{
|
{
|
||||||
"SourcePath" = "8:..\\..\\c_gui\\images\\CASAicons.ico"
|
"SourcePath" = "8:..\\..\\c_gui\\images\\CASAicons.ico"
|
||||||
@ -251,7 +303,7 @@
|
|||||||
"Name" = "8:Microsoft Visual Studio"
|
"Name" = "8:Microsoft Visual Studio"
|
||||||
"ProductName" = "8:CASA"
|
"ProductName" = "8:CASA"
|
||||||
"ProductCode" = "8:{C04BD335-7920-4895-BAC0-AB8E67FB746D}"
|
"ProductCode" = "8:{C04BD335-7920-4895-BAC0-AB8E67FB746D}"
|
||||||
"PackageCode" = "8:{688DB252-742A-4F98-8AB6-BD2BD805170B}"
|
"PackageCode" = "8:{D7892B28-8FB9-43E2-AE8D-9D7C6E76661D}"
|
||||||
"UpgradeCode" = "8:{DFD8B8A0-EA51-4202-831C-7CD2B90A63AE}"
|
"UpgradeCode" = "8:{DFD8B8A0-EA51-4202-831C-7CD2B90A63AE}"
|
||||||
"RestartWWWService" = "11:FALSE"
|
"RestartWWWService" = "11:FALSE"
|
||||||
"RemovePreviousVersions" = "11:TRUE"
|
"RemovePreviousVersions" = "11:TRUE"
|
||||||
@ -574,7 +626,7 @@
|
|||||||
{
|
{
|
||||||
"{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_168355FD285E4059925B44754162B77B"
|
"{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_168355FD285E4059925B44754162B77B"
|
||||||
{
|
{
|
||||||
"Sequence" = "3:300"
|
"Sequence" = "3:200"
|
||||||
"DisplayName" = "8:Confirm Installation"
|
"DisplayName" = "8:Confirm Installation"
|
||||||
"UseDynamicProperties" = "11:TRUE"
|
"UseDynamicProperties" = "11:TRUE"
|
||||||
"IsDependency" = "11:FALSE"
|
"IsDependency" = "11:FALSE"
|
||||||
@ -595,9 +647,56 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
"{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_72A96753BD2044C99316BD7497386565"
|
||||||
|
{
|
||||||
|
"Sequence" = "3:110"
|
||||||
|
"DisplayName" = "8:License Agreement"
|
||||||
|
"UseDynamicProperties" = "11:TRUE"
|
||||||
|
"IsDependency" = "11:FALSE"
|
||||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdLicenseDlg.wid"
|
||||||
|
"Properties"
|
||||||
|
{
|
||||||
|
"BannerBitmap"
|
||||||
|
{
|
||||||
|
"Name" = "8:BannerBitmap"
|
||||||
|
"DisplayName" = "8:#1001"
|
||||||
|
"Description" = "8:#1101"
|
||||||
|
"Type" = "3:8"
|
||||||
|
"ContextData" = "8:Bitmap"
|
||||||
|
"Attributes" = "3:4"
|
||||||
|
"Setting" = "3:1"
|
||||||
|
"UsePlugInResources" = "11:TRUE"
|
||||||
|
}
|
||||||
|
"EulaText"
|
||||||
|
{
|
||||||
|
"Name" = "8:EulaText"
|
||||||
|
"DisplayName" = "8:#1008"
|
||||||
|
"Description" = "8:#1108"
|
||||||
|
"Type" = "3:6"
|
||||||
|
"ContextData" = "8:"
|
||||||
|
"Attributes" = "3:0"
|
||||||
|
"Setting" = "3:2"
|
||||||
|
"Value" = "8:_D0342628EEE84A0EBF9229899988B52A"
|
||||||
|
"UsePlugInResources" = "11:TRUE"
|
||||||
|
}
|
||||||
|
"Sunken"
|
||||||
|
{
|
||||||
|
"Name" = "8:Sunken"
|
||||||
|
"DisplayName" = "8:#1007"
|
||||||
|
"Description" = "8:#1107"
|
||||||
|
"Type" = "3:5"
|
||||||
|
"ContextData" = "8:4;True=4;False=0"
|
||||||
|
"Attributes" = "3:0"
|
||||||
|
"Setting" = "3:0"
|
||||||
|
"Value" = "3:4"
|
||||||
|
"DefaultValue" = "3:4"
|
||||||
|
"UsePlugInResources" = "11:TRUE"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
"{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_DB237FC4DFF5418CA9F31A1501A7B924"
|
"{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_DB237FC4DFF5418CA9F31A1501A7B924"
|
||||||
{
|
{
|
||||||
"Sequence" = "3:210"
|
"Sequence" = "3:100"
|
||||||
"DisplayName" = "8:Welcome"
|
"DisplayName" = "8:Welcome"
|
||||||
"UseDynamicProperties" = "11:TRUE"
|
"UseDynamicProperties" = "11:TRUE"
|
||||||
"IsDependency" = "11:FALSE"
|
"IsDependency" = "11:FALSE"
|
||||||
@ -730,16 +829,24 @@
|
|||||||
}
|
}
|
||||||
"MergeModule"
|
"MergeModule"
|
||||||
{
|
{
|
||||||
"{35A69C6E-5BA4-440D-803D-762B59A45393}:_B9FB6EA3B8C14E949FE91EB4861F049B"
|
"{35A69C6E-5BA4-440D-803D-762B59A45393}:_08E7529D3C874D67919B514993DF2007"
|
||||||
{
|
{
|
||||||
"UseDynamicProperties" = "11:TRUE"
|
"UseDynamicProperties" = "11:TRUE"
|
||||||
"IsDependency" = "11:TRUE"
|
"IsDependency" = "11:TRUE"
|
||||||
"SourcePath" = "8:dotnetfxredist_x86.msm"
|
"SourcePath" = "8:dotnetfxredist_x86.msm"
|
||||||
"Properties"
|
"LanguageId" = "3:0"
|
||||||
{
|
"Exclude" = "11:FALSE"
|
||||||
}
|
"Folder" = "8:"
|
||||||
"LanguageId" = "3:1033"
|
"Feature" = "8:"
|
||||||
"Exclude" = "11:TRUE"
|
"IsolateTo" = "8:"
|
||||||
|
}
|
||||||
|
"{35A69C6E-5BA4-440D-803D-762B59A45393}:_CF34BD04C0A64809A126C0013FE9AB68"
|
||||||
|
{
|
||||||
|
"UseDynamicProperties" = "11:TRUE"
|
||||||
|
"IsDependency" = "11:TRUE"
|
||||||
|
"SourcePath" = "8:dotnetfxredist_x86.msm"
|
||||||
|
"LanguageId" = "3:0"
|
||||||
|
"Exclude" = "11:FALSE"
|
||||||
"Folder" = "8:"
|
"Folder" = "8:"
|
||||||
"Feature" = "8:"
|
"Feature" = "8:"
|
||||||
"IsolateTo" = "8:"
|
"IsolateTo" = "8:"
|
||||||
@ -749,7 +856,7 @@
|
|||||||
{
|
{
|
||||||
"{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_8A1A4BA980A9443DBCD4DE4ACDA8F19A"
|
"{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_8A1A4BA980A9443DBCD4DE4ACDA8F19A"
|
||||||
{
|
{
|
||||||
"SourcePath" = "8:..\\miCASA-msm\\Debug\\miCASA-msm.msm"
|
"SourcePath" = "8:..\\miCASA-msm\\Release\\miCASA-msm.msm"
|
||||||
"TargetName" = "8:"
|
"TargetName" = "8:"
|
||||||
"Tag" = "8:"
|
"Tag" = "8:"
|
||||||
"Folder" = "8:_E8900D5F0BD44DC0BB0BEFDF7C43B30C"
|
"Folder" = "8:_E8900D5F0BD44DC0BB0BEFDF7C43B30C"
|
||||||
@ -802,7 +909,7 @@
|
|||||||
}
|
}
|
||||||
"{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_D1641051214046F78EDF37DC13C414ED"
|
"{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_D1641051214046F78EDF37DC13C414ED"
|
||||||
{
|
{
|
||||||
"SourcePath" = "8:..\\miCASA-Dev-msm\\Debug\\miCASA-Dev-msm.msm"
|
"SourcePath" = "8:..\\miCASA-Dev-msm\\Release\\miCASA-Dev-msm.msm"
|
||||||
"TargetName" = "8:"
|
"TargetName" = "8:"
|
||||||
"Tag" = "8:"
|
"Tag" = "8:"
|
||||||
"Folder" = "8:_E8900D5F0BD44DC0BB0BEFDF7C43B30C"
|
"Folder" = "8:_E8900D5F0BD44DC0BB0BEFDF7C43B30C"
|
||||||
@ -834,20 +941,6 @@
|
|||||||
"SourcePath" = "8:..\\miCASA-Dev-msm\\Release\\miCASA-Dev-msm.msm"
|
"SourcePath" = "8:..\\miCASA-Dev-msm\\Release\\miCASA-Dev-msm.msm"
|
||||||
"Properties"
|
"Properties"
|
||||||
{
|
{
|
||||||
"_110C782579D5F3FFAF1E7E1B894B8863.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
|
||||||
{
|
|
||||||
"Name" = "8:_110C782579D5F3FFAF1E7E1B894B8863.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
|
||||||
"DisplayName" = "8:"
|
|
||||||
"Description" = "8:"
|
|
||||||
"Type" = "3:2"
|
|
||||||
"ContextData" = "8:InstallToGAC=;IsolateToManifest=_B75E61C5D9BF7B23594A9BB66CF04F8C.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
|
||||||
"Attributes" = "3:0"
|
|
||||||
"Setting" = "3:2"
|
|
||||||
"Value" = "8:_B75E61C5D9BF7B23594A9BB66CF04F8C.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
|
||||||
"DefaultValue" = "8:_B75E61C5D9BF7B23594A9BB66CF04F8C.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
|
||||||
"ParentName" = "8:_6418E7496A474EDDAC9A91150BBE4A26.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
|
||||||
"UsePlugInResources" = "11:FALSE"
|
|
||||||
}
|
|
||||||
"_2F9AFD8EAB18FFAE95D69C0907BF9455.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"_2F9AFD8EAB18FFAE95D69C0907BF9455.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
{
|
{
|
||||||
"Name" = "8:_2F9AFD8EAB18FFAE95D69C0907BF9455.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"Name" = "8:_2F9AFD8EAB18FFAE95D69C0907BF9455.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
@ -887,17 +980,17 @@
|
|||||||
"Setting" = "3:1"
|
"Setting" = "3:1"
|
||||||
"UsePlugInResources" = "11:FALSE"
|
"UsePlugInResources" = "11:FALSE"
|
||||||
}
|
}
|
||||||
"_7911B9C86E7405A41FD775D7EDBC60DF.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"_9A814366FF4D69481016CE6481D3E24F.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
{
|
{
|
||||||
"Name" = "8:_7911B9C86E7405A41FD775D7EDBC60DF.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"Name" = "8:_9A814366FF4D69481016CE6481D3E24F.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"DisplayName" = "8:"
|
"DisplayName" = "8:"
|
||||||
"Description" = "8:"
|
"Description" = "8:"
|
||||||
"Type" = "3:2"
|
"Type" = "3:2"
|
||||||
"ContextData" = "8:InstallToGAC=;IsolateToManifest=_9F5B3B1718CB12602C04643813A59337.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"ContextData" = "8:InstallToGAC=;IsolateToManifest=_2D4F6577FD35E7A2348C95E2D084FB77.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"Attributes" = "3:0"
|
"Attributes" = "3:0"
|
||||||
"Setting" = "3:2"
|
"Setting" = "3:2"
|
||||||
"Value" = "8:_9F5B3B1718CB12602C04643813A59337.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"Value" = "8:_2D4F6577FD35E7A2348C95E2D084FB77.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"DefaultValue" = "8:_9F5B3B1718CB12602C04643813A59337.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"DefaultValue" = "8:_2D4F6577FD35E7A2348C95E2D084FB77.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"ParentName" = "8:_6418E7496A474EDDAC9A91150BBE4A26.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"ParentName" = "8:_6418E7496A474EDDAC9A91150BBE4A26.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"UsePlugInResources" = "11:FALSE"
|
"UsePlugInResources" = "11:FALSE"
|
||||||
}
|
}
|
||||||
@ -915,17 +1008,31 @@
|
|||||||
"ParentName" = "8:_6418E7496A474EDDAC9A91150BBE4A26.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"ParentName" = "8:_6418E7496A474EDDAC9A91150BBE4A26.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"UsePlugInResources" = "11:FALSE"
|
"UsePlugInResources" = "11:FALSE"
|
||||||
}
|
}
|
||||||
"_A6B84DE148765639A2B8D63DD6D6B1C4.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"_A86ED4502E215942B312299B49F11BE0.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
{
|
{
|
||||||
"Name" = "8:_A6B84DE148765639A2B8D63DD6D6B1C4.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"Name" = "8:_A86ED4502E215942B312299B49F11BE0.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"DisplayName" = "8:"
|
"DisplayName" = "8:"
|
||||||
"Description" = "8:"
|
"Description" = "8:"
|
||||||
"Type" = "3:2"
|
"Type" = "3:2"
|
||||||
"ContextData" = "8:InstallToGAC=;IsolateToManifest=_827254DD557C9AB9A5525F963FBF3129.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"ContextData" = "8:InstallToGAC=;IsolateToManifest=_26F2A91A5812811D0807007823AEBC5A.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"Attributes" = "3:0"
|
"Attributes" = "3:0"
|
||||||
"Setting" = "3:2"
|
"Setting" = "3:2"
|
||||||
"Value" = "8:_827254DD557C9AB9A5525F963FBF3129.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"Value" = "8:_26F2A91A5812811D0807007823AEBC5A.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"DefaultValue" = "8:_827254DD557C9AB9A5525F963FBF3129.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"DefaultValue" = "8:_26F2A91A5812811D0807007823AEBC5A.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
|
"ParentName" = "8:_6418E7496A474EDDAC9A91150BBE4A26.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
|
"UsePlugInResources" = "11:FALSE"
|
||||||
|
}
|
||||||
|
"_AB371EF488BCED79C1383F2A5F3E4E07.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
|
{
|
||||||
|
"Name" = "8:_AB371EF488BCED79C1383F2A5F3E4E07.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
|
"DisplayName" = "8:"
|
||||||
|
"Description" = "8:"
|
||||||
|
"Type" = "3:2"
|
||||||
|
"ContextData" = "8:InstallToGAC=;IsolateToManifest=_A81E2C5B902040CBAE01F8816269FC8B.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
|
"Attributes" = "3:0"
|
||||||
|
"Setting" = "3:2"
|
||||||
|
"Value" = "8:_A81E2C5B902040CBAE01F8816269FC8B.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
|
"DefaultValue" = "8:_A81E2C5B902040CBAE01F8816269FC8B.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"ParentName" = "8:_6418E7496A474EDDAC9A91150BBE4A26.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
"ParentName" = "8:_6418E7496A474EDDAC9A91150BBE4A26.4F1ACC03A482468C9BEBF6D83FA4F7FE"
|
||||||
"UsePlugInResources" = "11:FALSE"
|
"UsePlugInResources" = "11:FALSE"
|
||||||
}
|
}
|
||||||
|
39
vs_solutions/CASAInstall/eula.rtf
Normal file
39
vs_solutions/CASAInstall/eula.rtf
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{\rtf1\ansi\ansicpg1252\uc1\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1033{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
|
||||||
|
{\f2\fmodern\fcharset0\fprq1{\*\panose 02070309020205020404}Courier New;}{\f36\froman\fcharset238\fprq2 Times New Roman CE;}{\f37\froman\fcharset204\fprq2 Times New Roman Cyr;}{\f39\froman\fcharset161\fprq2 Times New Roman Greek;}
|
||||||
|
{\f40\froman\fcharset162\fprq2 Times New Roman Tur;}{\f41\froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f42\froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f43\froman\fcharset186\fprq2 Times New Roman Baltic;}
|
||||||
|
{\f44\froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f56\fmodern\fcharset238\fprq1 Courier New CE;}{\f57\fmodern\fcharset204\fprq1 Courier New Cyr;}{\f59\fmodern\fcharset161\fprq1 Courier New Greek;}
|
||||||
|
{\f60\fmodern\fcharset162\fprq1 Courier New Tur;}{\f61\fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f62\fmodern\fcharset178\fprq1 Courier New (Arabic);}{\f63\fmodern\fcharset186\fprq1 Courier New Baltic;}
|
||||||
|
{\f64\fmodern\fcharset163\fprq1 Courier New (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;
|
||||||
|
\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\stylesheet{
|
||||||
|
\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 Normal;}{\*\cs10 \additive \ssemihidden Default Paragraph Font;}{\*
|
||||||
|
\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv
|
||||||
|
\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}}{\*\latentstyles\lsdstimax156\lsdlockeddef0}{\*\rsidtbl \rsid1538247\rsid5597720
|
||||||
|
\rsid6366133\rsid9387745\rsid10228552\rsid11414545}{\*\generator Microsoft Word 11.0.5604;}{\info{\title You must pay Cameron Mashayekhi 50 dollars to use this software}{\author User}{\operator User}{\creatim\yr2006\mo1\dy20\hr8\min54}
|
||||||
|
{\revtim\yr2006\mo1\dy20\hr10\min35}{\version6}{\edmins6}{\nofpages1}{\nofwords121}{\nofchars691}{\*\company Organization}{\nofcharsws811}{\vern24689}}
|
||||||
|
\widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1800\dgvorigin1440\dghshow1\dgvshow1
|
||||||
|
\jexpand\viewkind1\viewscale130\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct\asianbrkrule\nojkernpunct\rsidroot11414545
|
||||||
|
\fet0\sectd \linex0\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}
|
||||||
|
{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang
|
||||||
|
{\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ql \li0\ri0\widctlpar\faauto\rin0\lin0\itap0\pararsid6366133
|
||||||
|
\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\f2\fs20\insrsid6366133\charrsid6366133 Copyright (C) 2005-2006 Novell, Inc.
|
||||||
|
\par
|
||||||
|
\par This library is free software; you can redistribute}{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 it and/or}{\f2\fs20\insrsid9387745 }{\f2\fs20\insrsid6366133\charrsid6366133 modify it under the terms of the }{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 GNU Lesser General Public}{\f2\fs20\insrsid9387745 }{\f2\fs20\insrsid6366133\charrsid6366133 License as published by the}{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 Free Software Foundation; version 2.1}{\f2\fs20\insrsid9387745 }{\f2\fs20\insrsid6366133\charrsid6366133 of the License.
|
||||||
|
\par
|
||||||
|
\par This library is distributed in the hope that it will}{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 be useful,}{\f2\fs20\insrsid9387745 }{\f2\fs20\insrsid6366133\charrsid6366133 but WITHOUT ANY WARRANTY; without even the }{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 implied warranty of}{\f2\fs20\insrsid9387745 }{\f2\fs20\insrsid6366133\charrsid6366133 MERCHANTABILITY or FITNESS FOR A }{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 PARTICULAR PURPOSE. See the GNU}{\f2\fs20\insrsid9387745 }{\f2\fs20\insrsid6366133\charrsid6366133 Library General }{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 Public License for more details.
|
||||||
|
\par
|
||||||
|
\par You should have received a copy of the GNU Lesser }{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 General Public}{\f2\fs20\insrsid9387745 }{\f2\fs20\insrsid6366133\charrsid6366133 License along with this library; }{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 if not, write to the Free}{\f2\fs20\insrsid9387745 }{\f2\fs20\insrsid6366133\charrsid6366133 Software Foundation, Inc., }{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
\par
|
||||||
|
\par To contact Novell about this file by physical or }{\f2\fs20\insrsid9387745
|
||||||
|
\par }\pard \ql \li0\ri0\widctlpar\faauto\rin0\lin0\itap0\pararsid9387745 {\f2\fs20\insrsid6366133\charrsid6366133 electronic mail, you may find current contact }{\f2\fs20\insrsid9387745
|
||||||
|
\par }{\f2\fs20\insrsid6366133\charrsid6366133 information at www.novell.com.}{\insrsid11414545\charrsid6366133
|
||||||
|
\par }}
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user