ChangeSet ID: 27062
CVSROOT: /opt/cvs-commit
Module name: lostwages
Changes by: jnewman(a)winehq.org 2006/08/02 14:03:43
Modified files:
templates/en/wineconf: travel.template
Log message:
Robert Shearman <rob(a)codeweavers.com>
Clarify that no refunds will be possible for university accomodation.
Patch: http://cvs.winehq.org/patch.py?id=27062
Old revision New revision Changes Path
1.17 1.18 +2 -1 lostwages/templates/en/wineconf/travel.template
Index: lostwages/templates/en/wineconf/travel.template
diff -u -p lostwages/templates/en/wineconf/travel.template:1.17 lostwages/templates/en/wineconf/travel.template:1.18
--- lostwages/templates/en/wineconf/travel.template:1.17 2 Aug 2006 19: 3:43 -0000
+++ lostwages/templates/en/wineconf/travel.template 2 Aug 2006 19: 3:43 -0000
@@ -87,7 +87,8 @@ rooms will prioritised in the allocation
<p>Due to restrictions placed on us by the University of Reading <b>everyone requesting
a room at the university will have to pay for it by 12<sup>th</sup> August
-2006</b>. Also, due to tax reasons the <b>only</b> method of payment is to
+2006</b> and no refunds will be possible once you have been allocated a room.
+Also, due to tax reasons the <b>only</b> method of payment is to
PayPal $75 US per night to the Wine fund using the button below. In your
donation message, you need to indicate which nights you're staying, your name,
a contact phone number and an email address.</p>
Module: wine
Branch: refs/heads/master
Commit: 244405af473be6bb1662ee261e5fcba7b22ee9a0
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=244405af473be6bb1662ee2…
Author: Mike McCormack <mike(a)codeweavers.com>
Date: Wed Aug 2 13:41:06 2006 +0200
msi: Register advertised components too.
---
dlls/msi/classes.c | 20 ++++++--------------
1 files changed, 6 insertions(+), 14 deletions(-)
diff --git a/dlls/msi/classes.c b/dlls/msi/classes.c
index e2daaf8..e4cfcbb 100644
--- a/dlls/msi/classes.c
+++ b/dlls/msi/classes.c
@@ -807,11 +807,6 @@ UINT ACTION_RegisterClassInfo(MSIPACKAGE
if (rc != ERROR_SUCCESS)
return ERROR_FUNCTION_FAILED;
- /* install_on_demand should be set if OLE supports install on demand OLE
- * servers. For now i am defaulting to FALSE because i do not know how to
- * check, and i am told our builtin OLE does not support it
- */
-
LIST_FOR_EACH_ENTRY( cls, &package->classes, MSICLASS, entry )
{
MSICOMPONENT *comp;
@@ -826,17 +821,14 @@ UINT ACTION_RegisterClassInfo(MSIPACKAGE
feature = cls->Feature;
- /*
- * yes. MSDN says that these are based on _Feature_ not on
- * Component. So verify the feature is to be installed
+ /*
+ * MSDN says that these are based on Feature not on Component.
*/
- if (!ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_LOCAL ))
- /* && !(install_on_demand &&
- ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_ADVERTISED ))) */
+ if (!ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_LOCAL ) &&
+ !ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_ADVERTISED ))
{
- TRACE("Skipping class %s reg due to disabled feature %s\n",
- debugstr_w(cls->clsid),
- debugstr_w(feature->Feature));
+ TRACE("Skipping class %s reg due to disabled feature %s\n",
+ debugstr_w(cls->clsid), debugstr_w(feature->Feature));
continue;
}