*** empty log message ***

svn path=/trunk/boinc/; revision=8717
This commit is contained in:
Rom Walton 2005-10-20 02:18:43 +00:00
parent 3fb39524d0
commit 56bd907d8e
5 changed files with 49 additions and 11 deletions

View File

@ -13248,3 +13248,24 @@ David 20 Oct 2005
client/
scheduler_op.C
Rom 20 Oct 2005
- Bug Fix: use strLink instead of strBuffer when describing the URL to
go to on Linux when a browser cannot be detected.
- Bug Fix: Change missing browser message box text.
clientgui/
hyperlink.cpp
Rom 20 Oct 2005
- Include localization files in the Linux sea.
sea/
Makefile.am
make-tar.sh
make-tar_debug.sh
Rom 20 Oct 2005 (stable)
- Tag for 5.2.3 release, all platforms
boinc_core_release_5_2_3

View File

@ -216,18 +216,17 @@ void wxHyperLink::ExecuteLink (const wxString &strLink) {
if(cmd.IsEmpty()) {
wxString strBuffer = wxEmptyString;
strBuffer.Printf(
_("BOINC could not determine what your default browser is.\n"
"Please verify that you have either the 'mailcap' package installed or\n"
"'mime' package installed, and that the 'text/html' mime type is\n"
"configured for your favorite browser. Another method is to set the\n"
"BROWSER environment variable to point to whatever your favorite\n"
"web browser is. Please open a browser window to the following URL:\n\n"
"%s"),
strBuffer.c_str()
_("BOINC tried to display the web page\n"
"\t%s\n"
"but couldn't find a web browser.\n"
"To fix this, set the environment variable\n"
"BROWSER to the path of your web browser,\n"
"then restart BOINC."),
strLink.c_str()
);
::wxMessageBox(
strBuffer,
_("BOINC Manager"),
_("BOINC Manager - Can't find web browser"),
wxOK | wxICON_INFORMATION
);
} else {

View File

@ -23,10 +23,10 @@ $(sea_debug): sea_debug.tar make-sea.sh Makefile
./make-sea.sh sea_debug.tar $(sea_debug) BOINC_debug/binstall.sh
sea.tar: $(tarfiles)
tar cf sea.tar $(tarfiles)
./make-tar.sh
sea_debug.tar: $(tarfiles_debug)
tar cf sea_debug.tar $(tarfiles_debug)
./make-tar_debug.sh
BOINC/boinc: ../client/boinc BOINC
cp ../client/boinc BOINC/boinc

9
sea/make-tar.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
rm -fr BOINC/.CVS
mkdir BOINC
mkdir BOINC/locale
find ../locale/client -name '*.mo' | cut -d '/' -f 4 | awk '{print "BOINC/locale/"$0}' | xargs mkdir
find ../locale/client -name '*.mo' | cut -d '/' -f 4,5 | awk '{print "cp \"../locale/client/"$0"\" \"BOINC/locale/"$0"\""}' | bash
tar cvvf sea.tar BOINC/

9
sea/make-tar_debug.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
rm -fr BOINC_debug/.CVS
mkdir BOINC_debug
mkdir BOINC_debug/locale
find ../locale/client -name '*.mo' | cut -d '/' -f 4 | awk '{print "BOINC_debug/locale/"$0}' | xargs mkdir
find ../locale/client -name '*.mo' | cut -d '/' -f 4,5 | awk '{print "cp \"../locale/client/"$0"\" \"BOINC_debug/locale/"$0"\""}' | bash
tar cvvf sea_debug.tar BOINC_debug/