Check-in [6c29fe0c80]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add implicit SourceForge= url for SF-imports. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6c29fe0c80d52e271f8651f97fc5a562 |
| User & Date: | mario 2014-10-12 04:30:04 |
Context
|
2014-10-17
| ||
| 00:08 | Switch to current working directory in config.php, to avoid relative path handling in cron scripts. check-in: b942a0cd9b user: mario tags: trunk | |
|
2014-10-12
| ||
| 04:30 | Add implicit SourceForge= url for SF-imports. check-in: 6c29fe0c80 user: mario tags: trunk | |
| 04:29 | Highlight every major N.0.0 project release. check-in: 567d720d23 user: mario tags: trunk | |
Changes
Changes to submit_import.php.
| ︙ | ︙ | |||
332 333 334 335 336 337 338 |
"tags" => implode(", ",
array_merge(
array_column($data["categories"]["language"], "shortname"),
array_column($data["categories"]["environment"], "fullname"),
array_column($data["categories"]["topic"], "shortname")
)
),
| | > | 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
"tags" => implode(", ",
array_merge(
array_column($data["categories"]["language"], "shortname"),
array_column($data["categories"]["environment"], "fullname"),
array_column($data["categories"]["topic"], "shortname")
)
),
"state" => $data["categories"]["developmentstatus"][0]["shortname"],
"urls" => "SourceForge = https://sourceforge.net/projects/$name\nGitHub = \n",
);
}
}
}
#print_r((new project_import)->freecode("firefox"));
?>
|