Move ccextractor out of sourceforge #96

Closed
opened 2026-01-29 16:35:11 +00:00 by claunia · 9 comments
Owner

Originally created by @cfsmp3 on GitHub (Dec 13, 2015).

Originally assigned to: @cfsmp3 on GitHub.

Looks like sourceforge is starting to do bad things to installers...

Originally created by @cfsmp3 on GitHub (Dec 13, 2015). Originally assigned to: @cfsmp3 on GitHub. Looks like sourceforge is starting to do bad things to installers...
Author
Owner

@ghost commented on GitHub (Nov 28, 2016):

Github (probably) has a releases function that should let you put up the downloads you currently have on sourceforge.

@ghost commented on GitHub (Nov 28, 2016): Github (probably) has a releases function that should let you put up the downloads you currently have on sourceforge.
Author
Owner

@MatejMecka commented on GitHub (Dec 15, 2016):

@cfsmp3 I did the migration but sadly you rejected it #455

@MatejMecka commented on GitHub (Dec 15, 2016): @cfsmp3 I did the migration but sadly you rejected it #455
Author
Owner

@canihavesomecoffee commented on GitHub (Dec 15, 2016):

With an empty pull request?

@canihavesomecoffee commented on GitHub (Dec 15, 2016): With an empty pull request?
Author
Owner

@cfsmp3 commented on GitHub (Dec 15, 2016):

#455 contains nothing :-)

On Thu, Dec 15, 2016 at 6:47 AM, Matej Plavevski notifications@github.com
wrote:

@cfsmp3 https://github.com/cfsmp3 I did the migration but sadly you
rejected it #455 https://github.com/CCExtractor/ccextractor/pull/455


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/CCExtractor/ccextractor/issues/256#issuecomment-267344992,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AFrJ2VcFwHrGpYG4yVweR_5kFbdPEsV7ks5rIVLwgaJpZM4G0SZw
.

@cfsmp3 commented on GitHub (Dec 15, 2016): #455 contains nothing :-) On Thu, Dec 15, 2016 at 6:47 AM, Matej Plavevski <notifications@github.com> wrote: > @cfsmp3 <https://github.com/cfsmp3> I did the migration but sadly you > rejected it #455 <https://github.com/CCExtractor/ccextractor/pull/455> > > — > You are receiving this because you were mentioned. > Reply to this email directly, view it on GitHub > <https://github.com/CCExtractor/ccextractor/issues/256#issuecomment-267344992>, > or mute the thread > <https://github.com/notifications/unsubscribe-auth/AFrJ2VcFwHrGpYG4yVweR_5kFbdPEsV7ks5rIVLwgaJpZM4G0SZw> > . >
Author
Owner

@gautamchitnis commented on GitHub (Mar 13, 2017):

Valid for GSoC points? If so, how many points?

@gautamchitnis commented on GitHub (Mar 13, 2017): Valid for GSoC points? If so, how many points?
Author
Owner

@cfsmp3 commented on GitHub (Jan 11, 2018):

Missing here:

  • Redirect from sourceforge to github (edit sourceforge page)
  • Remove all links to sourceforge from everywhere
@cfsmp3 commented on GitHub (Jan 11, 2018): Missing here: - Redirect from sourceforge to github (edit sourceforge page) - Remove all links to sourceforge from everywhere
Author
Owner

@MatejMecka commented on GitHub (Jan 12, 2018):

@cfsmp3 since I can't modify the pages directly to ccextractor.org but I found the pages containing sourceforge.

https://www.ccextractor.org/public:general:http:sourceforge.net_donate_index.php
https://www.ccextractor.org/public:general:downloads
https://www.ccextractor.org/public:gsoc:translating_captions?s[]=sourceforge

@MatejMecka commented on GitHub (Jan 12, 2018): @cfsmp3 since I can't modify the pages directly to ccextractor.org but I found the pages containing sourceforge. https://www.ccextractor.org/public:general:http:sourceforge.net_donate_index.php https://www.ccextractor.org/public:general:downloads https://www.ccextractor.org/public:gsoc:translating_captions?s[]=sourceforge
Author
Owner

@MatejMecka commented on GitHub (Jan 12, 2018):

To redirect to sourceforge you can probably attach a php or html block that does the job.

<?php
/* Redirect browser */
header("Location: https://github.com/ccextractor/ccextractor");
/* Make sure that code below does not get executed when we redirect. */
exit;
?>

or

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
    <head>
    <title>Redirect</title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <!--Redirect browser, 1 indicates number of seconds before redirect-->
    <meta http-equiv="refresh" content="1;URL=https://github.com/ccextractor/ccextractor">
    </head>
    <body>
        <p>Redirecting to: <a href="http://example.com">https://github.com/ccextractor/ccextractor</a></p>
    </body>
</html>
@MatejMecka commented on GitHub (Jan 12, 2018): To redirect to sourceforge you can probably attach a php or html block that does the job. ``` <?php /* Redirect browser */ header("Location: https://github.com/ccextractor/ccextractor"); /* Make sure that code below does not get executed when we redirect. */ exit; ?> ``` or ``` <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>Redirect</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!--Redirect browser, 1 indicates number of seconds before redirect--> <meta http-equiv="refresh" content="1;URL=https://github.com/ccextractor/ccextractor"> </head> <body> <p>Redirecting to: <a href="http://example.com">https://github.com/ccextractor/ccextractor</a></p> </body> </html> ```
Author
Owner

@cfsmp3 commented on GitHub (Mar 9, 2018):

Closing, I think this is done already completely.

@cfsmp3 commented on GitHub (Mar 9, 2018): Closing, I think this is done already completely.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#96