trac2github icon indicating copy to clipboard operation
trac2github copied to clipboard

Converts Trac milestones, tickets and comments into Github issues 2.0 using github api v3

Results 5 trac2github issues
Sort by recently updated
recently updated
newest added

The goal of this PR is to add some clarification for using the script with 2FA, and also listing the required PHP packages.

The following code in `translate_markup` ``` php // Translate Trac-style links to Markdown $data = preg_replace('/\[([^ ]+) ([^\]]+)\]/', '[$2]($1)', $data); ``` should not be applied inside a code block. Example...

Hi, Context : Trac 1.0.1, trac2github 76e8befb3cf261e539b6f9563f0ddb390e4d1f0a I use a PostgreSQL Trac database and I had to divide all times by 1000000 to get right dates for milestones, tickets and...

Hello, this patch adds support for converting attachments. It posts them as gists (one gist per attachment) and then posts comments to the ticket. Limitations: - it fetches attachments over...

@lukaseder has already added the function to convert wiki markup into GitHub syntax, but more can be done for it. Reference: [Trac's WikiFormatting](http://trac.edgewall.org/wiki/WikiFormatting) vs. [Markdown (used by GitHub)](http://daringfireball.net/projects/markdown/syntax/). I don't...