svn path=/trunk/boinc/; revision=19012

This commit is contained in:
David Anderson 2009-09-07 05:26:23 +00:00
parent f132ef9790
commit bd8f1f20d1
2 changed files with 33 additions and 11 deletions

View File

@ -1,13 +1,16 @@
<?php
// 0 filename or URL
// 1 name
// 2 version
// 3 short desc
// 4 origin URL
// 5 platform
// 6 long desc
// 7 unix date
$example =
array(
'filename or URL',
'name',
'version',
'short description',
'origin URL',
'platform',
'long description',
'unix date'
);
$win = array(
array(
@ -563,6 +566,27 @@ array('phpBOINCer-1.5.zip',
1215641230
),
array(
'http://apps.facebook.com/boinc_milestones/',
'BOINC Milestones',
'',
'Facebook application that posts credit milestones in your Status',
'',
'',
'Enter your Cross-Project ID, and each time you pass a credit milestone (10,000, 50,000 etc.) BOINC Milestones will post a message in your Status, where all your friends can see it.',
1252300894
),
array(
'http://apps.facebook.com/processors/new.php',
'Progress Thru Processors',
'',
'Facebook-based interface to BOINC',
'',
'',
'A Facebook application that lets you attach to projects and view your status through a Facebook application. Operated by Intel in conjunction with GridRepublic.',
1252300894
),
);

View File

@ -231,9 +231,7 @@ int SCHED_CONFIG::parse(FILE* f) {
// don't complain about unparsed XML;
// there are lots of tags the scheduler doesn't know about
xp.skip_unexpected(
tag, log_messages.debug_level==3, "SCHED_CONFIG::parse"
);
xp.skip_unexpected(tag, false, "SCHED_CONFIG::parse");
}
return ERR_XML_PARSE;
}