mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9802
This commit is contained in:
parent
c1de003586
commit
58a68280b6
|
@ -3597,3 +3597,14 @@ Rom 5 Apr 2006
|
|||
win_screensaver.cpp
|
||||
clientgui/
|
||||
ViewWork.cpp
|
||||
|
||||
Rom 6 Apr 2006
|
||||
- Bug Fix: Add some text about connectivity problems to the proxy
|
||||
into page.
|
||||
- Bug Fix: Remove the code that was keeping the 'Not Found' page from
|
||||
going to the 'Account Info' page.
|
||||
|
||||
clientgui/
|
||||
ProxyInfoPage.cpp
|
||||
WizardAccountManager.cpp
|
||||
WizardAttachProject.cpp
|
||||
|
|
|
@ -193,11 +193,15 @@ void CErrProxyInfoPage::OnPageChanged( wxWizardExEvent& event ) {
|
|||
_("BOINC failed to communicate on the Internet. The most likely\n"
|
||||
"reasons are:\n"
|
||||
"\n"
|
||||
"1) Personal firewall software is blocking BOINC. You must\n"
|
||||
"1) Connectivity problem. Please check your network or modem\n"
|
||||
"connection and hit the back button to retry the previous\n"
|
||||
"operation.\n"
|
||||
"\n"
|
||||
"2) Personal firewall software is blocking BOINC. You must\n"
|
||||
"configure your personal firewall to let BOINC communicate\n"
|
||||
"on port 80. Once this is fixed, click Back to try again.\n"
|
||||
"\n"
|
||||
"2) You are using a proxy server and BOINC needs to know\n"
|
||||
"3) You are using a proxy server and BOINC needs to know\n"
|
||||
"about it.")
|
||||
);
|
||||
m_pDirectionsStaticCtrl->SetLabel(
|
||||
|
|
|
@ -319,7 +319,6 @@ bool CWizardAccountManager::HasNextPage( wxWizardPageEx* page )
|
|||
bNoNextPageDetected |= (page == m_ErrNotDetectedPage);
|
||||
bNoNextPageDetected |= (page == m_ErrUnavailablePage);
|
||||
bNoNextPageDetected |= (page == m_ErrNoInternetConnectionPage);
|
||||
bNoNextPageDetected |= (page == m_ErrNotFoundPage);
|
||||
|
||||
if (bNoNextPageDetected)
|
||||
return false;
|
||||
|
|
|
@ -325,7 +325,6 @@ bool CWizardAttachProject::HasNextPage( wxWizardPageEx* page )
|
|||
bNoNextPageDetected |= (page == m_CompletionPage);
|
||||
bNoNextPageDetected |= (page == m_CompletionErrorPage);
|
||||
bNoNextPageDetected |= (page == m_ErrNotDetectedPage);
|
||||
bNoNextPageDetected |= (page == m_ErrNotFoundPage);
|
||||
bNoNextPageDetected |= (page == m_ErrUnavailablePage);
|
||||
bNoNextPageDetected |= (page == m_ErrAlreadyAttachedPage);
|
||||
bNoNextPageDetected |= (page == m_ErrNoInternetConnectionPage);
|
||||
|
|
Loading…
Reference in New Issue