You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
336 B
14 lines
336 B
<?php |
|
|
|
/** |
|
* Ths file updates sources.xml, adds new files and moves removed file to the section "removed" |
|
*/ |
|
|
|
include dirname(__FILE__) . '/inc.php/sourceXmlParser.php'; |
|
|
|
$parser = new SourceParser(); |
|
$parser->load(); |
|
$parser->checkFiles(dirname(__FILE__) . '/../src/'); |
|
$parser->save(); |
|
|
|
print "sources.xml updated successfully.\n";
|
|
|