View the DQSD CVS repository here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/
Update of /cvsroot/dqsd/dqsd/src/DQSDSearchWiz
In directory sc8-pr-cvs1:/tmp/cvs-serv26194/src/DQSDSearchWiz
Modified Files:
ChangeLog.txt DQSDSearchWiz.rc DQSDWizardDlg.cpp
Log Message:
Substitute ampersands (&) with '&' in link and form action
Index: ChangeLog.txt
===================================================================
RCS file: /cvsroot/dqsd/dqsd/src/DQSDSearchWiz/ChangeLog.txt,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** ChangeLog.txt 23 Oct 2002 06:19:20 -0000 1.23
--- ChangeLog.txt 27 Nov 2002 05:35:45 -0000 1.24
***************
*** 1,2 ****
--- 1,6 ----
+ Version 1.0.1 (final) 26-Nov-2002
+
+ * Substitute ampersands (&) with '&' in link and form action
+
Version 1.0.0 (final) 23-Oct-2002
Index: DQSDSearchWiz.rc
===================================================================
RCS file: /cvsroot/dqsd/dqsd/src/DQSDSearchWiz/DQSDSearchWiz.rc,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** DQSDSearchWiz.rc 23 Oct 2002 06:19:20 -0000 1.26
--- DQSDSearchWiz.rc 27 Nov 2002 05:35:45 -0000 1.27
***************
*** 55,60 ****
VS_VERSION_INFO VERSIONINFO
! FILEVERSION 0,1,0,0
! PRODUCTVERSION 0,1,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
--- 55,60 ----
VS_VERSION_INFO VERSIONINFO
! FILEVERSION 0,1,0,1
! PRODUCTVERSION 0,1,0,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
***************
*** 74,78 ****
VALUE "CompanyName", "http://www.glenncarr.com/\0"
VALUE "FileDescription", "Dave's Quick Search Deskbar Search Wizard\0"
! VALUE "FileVersion", "1.0.0\0"
VALUE "InternalName", "DQSDSearchWiz\0"
VALUE "LegalCopyright", "Copyright (c) 2002 Glenn Carr; Distributed
under the terms of the GNU General Public License, Version 2\0"
--- 74,78 ----
VALUE "CompanyName", "http://www.glenncarr.com/\0"
VALUE "FileDescription", "Dave's Quick Search Deskbar Search Wizard\0"
! VALUE "FileVersion", "1.0.1\0"
VALUE "InternalName", "DQSDSearchWiz\0"
VALUE "LegalCopyright", "Copyright (c) 2002 Glenn Carr; Distributed
under the terms of the GNU General Public License, Version 2\0"
***************
*** 81,85 ****
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "Dave's Quick Search Deskbar Search Wizard\0"
! VALUE "ProductVersion", "1.0.0\0"
VALUE "SpecialBuild", "\0"
END
--- 81,85 ----
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "Dave's Quick Search Deskbar Search Wizard\0"
! VALUE "ProductVersion", "1.0.1\0"
VALUE "SpecialBuild", "\0"
END
Index: DQSDWizardDlg.cpp
===================================================================
RCS file: /cvsroot/dqsd/dqsd/src/DQSDSearchWiz/DQSDWizardDlg.cpp,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** DQSDWizardDlg.cpp 21 Sep 2002 05:14:27 -0000 1.37
--- DQSDWizardDlg.cpp 27 Nov 2002 05:35:45 -0000 1.38
***************
*** 246,250 ****
cDisplayedForms += 1;
! strAction = GetAbsoluteActionPath( varAttributeValue );
CComPtr< IHTMLElement >* pspForm = new CComPtr<
IHTMLElement >( spForm ); // these are deleted in the dialog's dtor
--- 246,250 ----
cDisplayedForms += 1;
! strAction = EscapeXML( GetAbsoluteActionPath(
varAttributeValue ) );
CComPtr< IHTMLElement >* pspForm = new CComPtr<
IHTMLElement >( spForm ); // these are deleted in the dialog's dtor
***************
*** 442,446 ****
CWindow( GetDlgItem( IDC_Link ) ).GetWindowText( &bstr );
string strLink = W2T( bstr );
! strSearchFile += _T("\r\n <link>") + strLink + _T("</link>");
::SysFreeString( bstr );
--- 442,446 ----
CWindow( GetDlgItem( IDC_Link ) ).GetWindowText( &bstr );
string strLink = W2T( bstr );
! strSearchFile += _T("\r\n <link>") + EscapeXML( strLink ) +
_T("</link>");
::SysFreeString( bstr );
***************
*** 591,595 ****
if ( SUCCEEDED( (*pspForm)->getAttribute(
_bstr_t(_T("action")), 0, &varAttributeValue ) ) )
{
! strAction = GetAbsoluteActionPath(
varAttributeValue );
}
strFormXML += _T("\r\n action=\"") + strAction
+ _T("\"");;
--- 591,595 ----
if ( SUCCEEDED( (*pspForm)->getAttribute(
_bstr_t(_T("action")), 0, &varAttributeValue ) ) )
{
! strAction = EscapeXML( GetAbsoluteActionPath(
varAttributeValue ) );
}
strFormXML += _T("\r\n action=\"") + strAction
+ _T("\"");;
-------------------------------------------------------
This SF.net email is sponsored by: Get the new Palm Tungsten T
handheld. Power & Color in a compact size!
http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en
_______________________________________________
DQSD-CVS mailing list
https://lists.sourceforge.net/lists/listinfo/dqsd-cvs
DQSD CVS repository:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/