*** empty log message ***

svn path=/trunk/boinc/; revision=12287
This commit is contained in:
David Anderson 2007-03-30 03:33:57 +00:00
parent d72c002779
commit f3a7e400fd
6 changed files with 34 additions and 13 deletions

View File

@ -2958,3 +2958,10 @@ Rom 29 Mar 2007
clientgui/
ViewProjectsGrid.cpp
David 29 Mar 2007
- Manager: text tweaks
clientgui/
AdvancedFrame.cpp
DlgAbout.cpp

View File

@ -436,8 +436,8 @@ bool CAdvancedFrame::CreateMenu() {
);
menuAdvanced->Append(
ID_SHUTDOWNCORECLIENT,
_("Shutdown connected client..."),
_("Shutdown the currently connected core client")
_("Shut down connected client..."),
_("Shut down the currently connected core client")
);
menuAdvanced->Append(
ID_FILERUNBENCHMARKS,
@ -447,8 +447,7 @@ bool CAdvancedFrame::CreateMenu() {
menuAdvanced->Append(
ID_COMMANDSRETRYCOMMUNICATIONS,
_("Retry &communications"),
_("Report completed work, get latest credit, "
"get latest preferences, and possibly get more work.")
_("Retry all deferred network communication.")
);
menuAdvanced->Append(
ID_READ_CONFIG,

View File

@ -135,7 +135,7 @@ void CDlgAbout::CreateControls() {
m_AboutBOINCTitleCtrl = new wxStaticText;
m_AboutBOINCTitleCtrl->Create( itemDialog1, wxID_STATIC, _("BOINC Manager"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE );
m_AboutBOINCTitleCtrl->SetFont(wxFont(24, wxDEFAULT, wxNORMAL, wxBOLD, false, _T("")));
m_AboutBOINCTitleCtrl->SetFont(wxFont(16, wxDEFAULT, wxNORMAL, wxBOLD, false, _T("")));
itemBoxSizer2->Add(m_AboutBOINCTitleCtrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxHORIZONTAL);
@ -165,7 +165,7 @@ void CDlgAbout::CreateControls() {
itemFlexGridSizer7->Add(itemStaticText10, 0, wxALIGN_RIGHT|wxALIGN_TOP|wxLEFT|wxRIGHT, 5);
wxStaticText* itemStaticText11 = new wxStaticText;
itemStaticText11->Create( itemDialog1, wxID_STATIC, _("(C) 2003-2007 University of California at Berkeley.\nAll Rights Reserved."), wxDefaultPosition, wxDefaultSize, 0 );
itemStaticText11->Create( itemDialog1, wxID_STATIC, _("(C) 2003-2007 University of California, Berkeley.\nAll Rights Reserved."), wxDefaultPosition, wxDefaultSize, 0 );
itemFlexGridSizer7->Add(itemStaticText11, 0, wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 5);
m_AboutBOINCSloganCtrl = new wxStaticText;
@ -173,7 +173,7 @@ void CDlgAbout::CreateControls() {
itemBoxSizer2->Add(m_AboutBOINCSloganCtrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
wxStaticText* itemStaticText13 = new wxStaticText;
itemStaticText13->Create( itemDialog1, wxID_STATIC, _("A system for volunteer computing"), wxDefaultPosition, wxDefaultSize, 0 );
itemStaticText13->Create( itemDialog1, wxID_STATIC, _("Berkeley Open Infrastructure for Network Computing"), wxDefaultPosition, wxDefaultSize, 0 );
itemBoxSizer2->Add(itemStaticText13, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
m_AboutBOINCURLCtrl = new wxHyperLink;

View File

@ -194,10 +194,10 @@ Investigate.
<li> Add 'referral' mechanism:
new user creates account, enters email of 'referrer'
(or goes to URL that has it embedded).
Add referrerid to DB.
Give referrer a fraction of credit
(or a 1-time bonus).
List referrals on user page (show only those still active).
Add new referral table to DB.
</ul>
</ul>

View File

@ -1,6 +1,10 @@
<?
$project_news = array(
array("March 29, 2007",
"If you can read Czech, czech out an excellent
<a href=http://www.kd-web.info/clanky.php>Flash-based BOINC tutorials</a>."
),
array("March 23, 2007",
"Africa@home (with support from the
Geneva International Academic Network)

View File

@ -116,11 +116,22 @@ Show if the servers of various projects are up or down.
</ul>
<a name=misc></a>
<h3>Miscellaneous</h3>
<ul>
<li> <a href=http://www.myboinc.com/>BOINC Users of the Day</a>
<li> <a href=http://groups.myspace.com/BOINConMYSPACE>BOINC on MySpace</a>
<li> <a href=http://www.boincuk.com/repository.php>bunc</a> (excellent newsletter produced by BOINC UK)
";
$misc_sites = array(
array("http://www.kd-web.info/clanky.php", "Flash-based BOINC tutorial", "(in Czech)"),
array("http://www.myboinc.com/", "BOINC Users of the Day"),
array("http://groups.myspace.com/BOINConMYSPACE", "BOINC on MySpace"),
array("http://www.boincuk.com/repository.php", "bunc", "(excellent newsletter produced by BOINC UK)"),
);
echo "<ul>";
foreach ($misc_sites as $m) {
$u = $m[0];
$t1 = $m[1];
$t2 = $m[2];
echo "<li> <a href=$u>$t1</a> $t2
";
}
echo "
</ul>
<a name=skins></a>
<h3>Skins for the BOINC Manager</h3>