{"commit":"7db7ba75063124c524e861b0f608b4f643504d37","subject":"Full parboiled grammar - not tested yet","message":"Full parboiled grammar - not tested yet\n","repos":"tcolar\/fantomidemodule,tcolar\/fantomidemodule","old_file":"test\/parser_test\/test.fan","new_file":"test\/parser_test\/test.fan","new_contents":"using netColarJco::JcoConData\n\nclass Jco3Con\n{\n\/*\nml comment\n*\/\n\tInt i1\n\tStr:Int m1; [Str:Int] m2 \/\/eol comment\n\t[Str:Int]:Str m3\n\/\/ line comment\n\t[Str:Int]:[Int:Str] m4\n\t[Str:Int]?[]?:[Int:Str]? m5\n\t[Str:Int][]:[Int:Str]?[] m6\n\t[Str:Int][]:[Int:Str]?[] m7\n\n}\n\n\/* incomplete ml comment <- parser should stop here at end of line\n\n**\n** Impl of destination provider\n**\nclass DestinationDataProviderImpl : DestinationDataProvider\n{\n\tstatic void myMethod(Str toto)\n\t{\n\t\ttoto := \"Thibaut\"\n\t\techo(\"hello $toto\")\n\t}\n}\n","old_contents":"using netColarJco::JcoConData\n\nclass Jco3Con\n{\n\/*\nml comment\n*\/\n\tInt i1\n\tStr:Int m1; [Str:Int] m2 \/\/eol comment\n\t[Str:Int]:Str m3\n\/\/ line comment\n\t[Str:Int]:[Int:Str] m4\n\t[Str:Int]?[]?:[Int:Str]? m5\n\t[Str:Int][]:[Int:Str]?[] m6\n\t[Str:Int][]:[Int:Str]?[] m7\n}\n\n\/* incomplete ml comment <- parser should stop here at end of line\n\n**\n** Impl of destination provider\n**\nclass DestinationDataProviderImpl : DestinationDataProvider\n{}\n","returncode":0,"stderr":"","license":"artistic-2.0","lang":"Fantom"} {"commit":"18525a7a3eef4422f0d39b6bea5e36a69b33ed31","subject":"updated test prj","message":"updated test prj\n","repos":"tcolar\/fantomidemodule,tcolar\/fantomidemodule","old_file":"test\/ideTest\/fan\/Main.fan","new_file":"test\/ideTest\/fan\/Main.fan","new_contents":"\/\/ To change this License template, choose Tools \/ Templates\n\/\/ and edit Licenses \/ FanDefaultLicense.txt\n\/\/\n\/\/ History:\n\/\/ 2-Apr-2010 tcolar Creation\n\/\/\n\n**\n** Main\n**\nclass Main\n{\n\n Void doTest()\n {\n echo(\"hello\")\n list := [\"one\", \"two\", \"three\"]\n f := |->| { echo(\"hi there\") }\n f.isImmutable\n f2 := |Int a, Int b->Int| { return a + b }\n nine := f2(4,5)\n counter := 0\n f3 := |->Int| { return ++counter }\n f3.isImmutable\n evens := list.findAll(|Int v->Bool| { return v%2==0 })\n evens2 := list.findAll() |Int v->Bool| { return v%2==0 }\n evens3 := list.findAll |Int v->Bool| { return v%2==0 }\n s := evens3.size\n list.each |Str val, Int index| { echo(\"$index = $val\") }\n list.each |Str v, Int i| { echo(\"$i = $v\") }\n\n [\"a\", \"b\", \"c\"].each |Str s| { echo(s.upper) }\n [\"a\", \"b\", \"c\"].each { echo(it.upper) }\n [\"a\", \"b\", \"c\"].each { echo(upper) }\n [\"a\", \"b\", \"c\"].each { echo(it.upper) }\n\n list9 := Str[,].with { fill(\"x\",3) }\n list10 := Str[,] { fill(\"x\", 3) }\n }\n **\n ** Main method\n **\n static Void main()\n {\n doTest\n }\n \n}\n\n\n","old_contents":"\/\/ To change this License template, choose Tools \/ Templates\n\/\/ and edit Licenses \/ FanDefaultLicense.txt\n\/\/\n\/\/ History:\n\/\/ 2-Apr-2010 tcolar Creation\n\/\/\n\n**\n** Main\n**\nclass Main\n{\n\n Void doTest()\n {\n echo(\"hello\")\n list := [\"one\", \"two\", \"three\"]\n f := |->| { echo(\"hi there\") }\n f.isImmutable\n f2 := |Int a, Int b->Int| { return a + b }\n nine := f2(4,5)\n counter := 0\n f3 := |->Int| { return ++counter }\n f3.isImmutable\n evens := list.findAll(|Int v->Bool| { return v%2==0 })\n evens2 := list.findAll() |Int v->Bool| { return v%2==0 }\n evens3 := list.findAll |Int v->Bool| { return v%2==0 }\n s := evens3.size\n list.each |Str val, Int index| { echo(\"$index = $val\") }\n list.each |Str v, Int i| { echo(\"$i = $v\") }\n list.each |v, i| { i.abs }\n\n [\"a\", \"b\", \"c\"].each |Str s| { echo(s.upper) }\n [\"a\", \"b\", \"c\"].each { echo(it.upper) }\n [\"a\", \"b\", \"c\"].each { echo(upper) }\n [\"a\", \"b\", \"c\"].each { echo(it.upper) }\n\n list9 := Str[,].with { filla(x,3) }\n list10 := Str[,] { fill(\"x\", 3) }\n\n b := Button {text=\"\"}\n }\n **\n ** Main method\n **\n static Void main()\n {\n doTest\n }\n \n}\n\n\n","returncode":0,"stderr":"","license":"artistic-2.0","lang":"Fantom"} {"commit":"2d16548f049a187f7dce1b47aac0c6804a76ced7","subject":"Cleaning up temp dir once done","message":"Cleaning up temp dir once done\n","repos":"tcolar\/netColarJar","old_file":"fan\/BuildJar.fan","new_file":"fan\/BuildJar.fan","new_contents":"\/\/ History:\n\/\/ Dec 15, 2009 thibautc Creation\n\/\/\nusing build\n\n**\n** Build standalone Java jars (TODO: JNLP, wars).\n** It basically build a jar with a minimal Fantom runtime and some pods\n** The jar contains a Java launcher that does the following:\n** - When the jar is run, it copies the Fantom runtime into a dir\n** - Then the launcher starts a given Fantom program using that runtime.\n**\nclass BuildJar : JdkTask\n{\n ** Required: Destination file\n File destFile\n\n ** Required: Pod names to include, dependant pods will be resolved\n ** and added as well\n Str[] pods := [,]\n\n ** Required: Main class\/method\n ** Ex: 'mypod::Main.main'\n ** Ex: 'mypod::Main' same as 'mypod::Main.main'\n ** Ex: 'mypod' same as 'mypod::Main.main'\n Str appMain\n\n ** Any extra files to be copied (to relative dest uri)\n ** Example : `.\/swt\/swt.jar` : `lib\/java\/ext\/swt.jar`\n Uri:Uri extraFiles := [:]\n\n ** Constructor\n new make(BuildScript script, |This|? f := null) : super(script)\n {\n if(f != null)\n {\n f(this)\n }\n }\n\n ** Build a standalone Jar (Containing a minimal Fantom runtime)\n override Void run()\n {\n File temp := script.scriptDir + `temp\/`\n File tempFantom := temp + `fantom\/`\n File tempLib := tempFantom + `lib\/`\n File tempFan := tempLib + `fan\/`\n File tempJava := tempLib + `java\/`\n File tempExt := tempJava + `ext\/`\n File tempLauncher := temp + `fanjarlauncher\/`\n File tempEtcSys := tempFantom + `etc\/sys\/`\n manifest := temp + `Manifest.mf`\n libFan := script.devHomeDir + `lib\/fan\/`\n binDir := script.devHomeDir + `bin\/`\n libJavaDir := script.devHomeDir + `lib\/java\/`\n\n \/\/ make temp dirs\n temp.delete\n temp.create\n temp.deleteOnExit\n tempLib.create\n tempFan.create\n tempExt.create\n tempEtcSys.create\n\n \/\/ Add fan runtime\n log.info(\"Adding Fantom binaries: $binDir\")\n binDir.copyInto(tempFantom)\n \/\/ etc\/sys files needed for runtime\n File tz := script.devHomeDir + `etc\/sys\/timezones.ftz`\n tz.copyInto(tempEtcSys)\n File conf := script.devHomeDir + `etc\/sys\/config.props`\n conf.copyInto(tempEtcSys)\n File syntax := script.devHomeDir + `etc\/syntax\/`\n syntax.copyTo(tempEtcSys.parent+`syntax\/`, [\"overwrite\" : true])\n \/\/ java libs\n log.info(\"Adding Fantom Java libraries $libJavaDir\")\n libJavaDir.listFiles.each |File f| {f.copyInto(tempJava)}\n \/\/ add other libs requested by the user\n extraFiles.each |Uri to, Uri from|\n {\n File src := from.toFile\n File dest := tempFantom + to\n if(src.exists)\n {\n log.info(\"Adding Extra file: $src to $dest\")\n src.copyTo(dest, [\"overwrite\":true])\n }\n else\n {\n throw Err(\"Extra file not found! : $src\")\n }\n }\n \/\/ Add pods and their dependencies (recursively))\n buildPodList.each |Str podName|\n {\n log.info(\"Adding Fantom Pod: $podName\")\n podFile := libFan + `${podName}.pod`\n podFile.copyInto(tempFan)\n }\n\n \/\/ Copy custom Java Launcher code\n thispod := libFan + `${this.typeof.pod.name}.pod`\n zip := Zip.open(thispod)\n zip.contents.each {\n if( ! it.isDir && it.path[0]==\"fanjarlauncher\")\n {\n it.copyInto(tempLauncher)\n }\n }\n zip.close\n\n \/\/ write manifest\n log.info(\"Write Manifest [${manifest.osPath}]\")\n out := manifest.out\n out.printLine(\"Manifest-Version: 1.0\")\n\n \/\/ Custom entry for the app \"Main\"\"\n out.printLine(\"Fantom-Main: $appMain\")\n out.printLine(\"Main-Class: fanjarlauncher.Launcher\")\n out.close\n\n \/\/ ensure jar target directory exists\n destFile.parent.create\n\n \/\/ jar up temp directory\n log.info(\"Jar [${destFile.osPath}]\")\n Exec(script, [jarExe, \"cfm\", destFile.osPath, manifest.osPath, \"-C\", temp.osPath, \".\"], temp).run\n\n temp.delete\n }\n\n ** Build the list of pods required for this jar\n ** It starts with the pods listed in the \"pods\" array and adds all dependencies as well.\n internal Str[] buildPodList()\n {\n \/\/ always want the sys pod\n Str[] resPods := [\"sys\"]\n \/\/ Then add user specified pods and their dependencies\n pods.each |Str podName|\n {\n pod := Pod.find(podName)\n if(pod == null)\n {\n throw Err(\"Pod not found $podName\")\n }\n else\n {\n \/\/ no duplicates\n if( ! resPods.contains(podName))\n {\n resPods.add(podName)\n resolveDeps(resPods, pod)\n }\n }\n }\n return resPods\n }\n\n ** Finds a pod Dependencies (other pods) and add them to results\n ** - Recursive\n internal Void resolveDeps(Str[] results, Pod pod)\n {\n pod.depends.each |Depend dep|\n {\n depPod := Pod.find(dep.name)\n if(depPod == null)\n {\n throw Err(\"Pod not found $pod.name\")\n }\n else if( ! dep.match(depPod.version))\n {\n throw Err(\"Pod version mismatch for $pod.name . Required: $dep.version , Found: $depPod.version\")\n }\n else\n {\n \/\/ No duplicates\n if( ! results.contains(dep.name))\n {\n results.add(dep.name)\n \/\/ recurse into pod dependencies\n resolveDeps(results, depPod)\n }\n }\n }\n }\n}\n\n\n","old_contents":"\/\/ History:\n\/\/ Dec 15, 2009 thibautc Creation\n\/\/\nusing build\n\n**\n** Build standalone Java jars (TODO: JNLP, wars).\n** It basically build a jar with a minimal Fantom runtime and some pods\n** The jar contains a Java launcher that does the following:\n** - When the jar is run, it copies the Fantom runtime into a dir\n** - Then the launcher starts a given Fantom program using that runtime.\n**\nclass BuildJar : JdkTask\n{\n ** Required: Destination file\n File destFile\n\n ** Required: Pod names to include, dependant pods will be resolved\n ** and added as well\n Str[] pods := [,]\n\n ** Required: Main class\/method\n ** Ex: 'mypod::Main.main'\n ** Ex: 'mypod::Main' same as 'mypod::Main.main'\n ** Ex: 'mypod' same as 'mypod::Main.main'\n Str appMain\n\n ** Any extra files to be copied (to relative dest uri)\n ** Example : `.\/swt\/swt.jar` : `lib\/java\/ext\/swt.jar`\n Uri:Uri extraFiles := [:]\n\n ** Constructor\n new make(BuildScript script, |This|? f := null) : super(script)\n {\n if(f != null)\n {\n f(this)\n }\n }\n\n ** Build a standalone Jar (Containing a minimal Fantom runtime)\n override Void run()\n {\n File temp := script.scriptDir + `temp\/`\n File tempFantom := temp + `fantom\/`\n File tempLib := tempFantom + `lib\/`\n File tempFan := tempLib + `fan\/`\n File tempJava := tempLib + `java\/`\n File tempExt := tempJava + `ext\/`\n File tempLauncher := temp + `fanjarlauncher\/`\n File tempEtcSys := tempFantom + `etc\/sys\/`\n manifest := temp + `Manifest.mf`\n libFan := script.devHomeDir + `lib\/fan\/`\n binDir := script.devHomeDir + `bin\/`\n libJavaDir := script.devHomeDir + `lib\/java\/`\n\n \/\/ make temp dirs\n temp.delete\n temp.create\n temp.deleteOnExit\n tempLib.create\n tempFan.create\n tempExt.create\n tempEtcSys.create\n\n \/\/ Add fan runtime\n log.info(\"Adding Fantom binaries: $binDir\")\n binDir.copyInto(tempFantom)\n \/\/ etc\/sys files needed for runtime\n File tz := script.devHomeDir + `etc\/sys\/timezones.ftz`\n tz.copyInto(tempEtcSys)\n File conf := script.devHomeDir + `etc\/sys\/config.props`\n conf.copyInto(tempEtcSys)\n File syntax := script.devHomeDir + `etc\/syntax\/`\n syntax.copyTo(tempEtcSys.parent+`syntax\/`, [\"overwrite\" : true])\n \/\/ java libs\n log.info(\"Adding Fantom Java libraries $libJavaDir\")\n libJavaDir.listFiles.each |File f| {f.copyInto(tempJava)}\n \/\/ add other libs requested by the user\n extraFiles.each |Uri to, Uri from|\n {\n File src := from.toFile\n File dest := tempFantom + to\n if(src.exists)\n {\n log.info(\"Adding Extra file: $src to $dest\")\n src.copyTo(dest, [\"overwrite\":true])\n }\n else\n {\n throw Err(\"Extra file not found! : $src\")\n }\n }\n \/\/ Add pods and their dependencies (recursively))\n buildPodList.each |Str podName|\n {\n log.info(\"Adding Fantom Pod: $podName\")\n podFile := libFan + `${podName}.pod`\n podFile.copyInto(tempFan)\n }\n\n \/\/ Copy custom Java Launcher code\n thispod := libFan + `${this.typeof.pod.name}.pod`\n zip := Zip.open(thispod)\n zip.contents.each {\n if( ! it.isDir && it.path[0]==\"fanjarlauncher\")\n {\n it.copyInto(tempLauncher)\n }\n }\n zip.close\n\n \/\/ write manifest\n log.info(\"Write Manifest [${manifest.osPath}]\")\n out := manifest.out\n out.printLine(\"Manifest-Version: 1.0\")\n\n \/\/ Custom entry for the app \"Main\"\"\n out.printLine(\"Fantom-Main: $appMain\")\n out.printLine(\"Main-Class: fanjarlauncher.Launcher\")\n out.close\n\n \/\/ ensure jar target directory exists\n destFile.parent.create\n\n \/\/ jar up temp directory\n log.info(\"Jar [${destFile.osPath}]\")\n Exec(script, [jarExe, \"cfm\", destFile.osPath, manifest.osPath, \"-C\", temp.osPath, \".\"], temp).run\n }\n\n ** Build the list of pods required for this jar\n ** It starts with the pods listed in the \"pods\" array and adds all dependencies as well.\n internal Str[] buildPodList()\n {\n \/\/ always want the sys pod\n Str[] resPods := [\"sys\"]\n \/\/ Then add user specified pods and their dependencies\n pods.each |Str podName|\n {\n pod := Pod.find(podName)\n if(pod == null)\n {\n throw Err(\"Pod not found $podName\")\n }\n else\n {\n \/\/ no duplicates\n if( ! resPods.contains(podName))\n {\n resPods.add(podName)\n resolveDeps(resPods, pod)\n }\n }\n }\n return resPods\n }\n\n ** Finds a pod Dependencies (other pods) and add them to results\n ** - Recursive\n internal Void resolveDeps(Str[] results, Pod pod)\n {\n pod.depends.each |Depend dep|\n {\n depPod := Pod.find(dep.name)\n if(depPod == null)\n {\n throw Err(\"Pod not found $pod.name\")\n }\n else if( ! dep.match(depPod.version))\n {\n throw Err(\"Pod version mismatch for $pod.name . Required: $dep.version , Found: $depPod.version\")\n }\n else\n {\n \/\/ No duplicates\n if( ! results.contains(dep.name))\n {\n results.add(dep.name)\n \/\/ recurse into pod dependencies\n resolveDeps(results, depPod)\n }\n }\n }\n }\n}\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"Fantom"} {"commit":"95b8966ee568d9cda7e0bf9ec775e2fefbeb5d96","subject":"Part 2 of Fantom done","message":"Part 2 of Fantom done\n","repos":"larouxn\/palindrome,larouxn\/palindrome,larouxn\/palindrome,larouxn\/palindrome,larouxn\/palindrome,larouxn\/palindrome,larouxn\/palindrome,larouxn\/palindrome","old_file":"palindrome.fan","new_file":"palindrome.fan","new_contents":"class Palindrome\n{\n static Bool isPalindrome(Str s) {s == s.reverse}\n\n \/\/ Frequency map graciously stolen from\n \/\/ http:\/\/fantom.org\/doc\/examples\/sys-wordcount\n static Void checkIfPossible(Str input)\n {\n chCounts := Int:Int[:] { def = 0 }\n input.each |ch| { chCounts[ch] += 1 }\n evenCounts := chCounts.findAll |v| {v % 2 == 0}\n oddCounts := chCounts.exclude |v| {v % 2 == 0}\n if (oddCounts.size > 1)\n echo(input + \" cannot be made into a palindrome\")\n else\n echo(\"dingo\") \/\/ TODO use .toChar on the Int keys\n }\n\n static Void main(Str[] args)\n {\n input := args[0]\n if (isPalindrome(input))\n echo(input + \" is a palindrome\")\n else\n checkIfPossible(input)\n }\n}\n","old_contents":"class Palindrome\n{\n static Bool isPalindrome(Str s) { s == s.reverse }\n\n static Void main(Str[] args)\n {\n input := args[0]\n if (isPalindrome(input))\n echo(input + \" is a palindrome\")\n else\n {\n \/\/ TODO\n }\n }\n}\n","returncode":0,"stderr":"","license":"mit","lang":"Fantom"} {"commit":"aa77c07e277ab9a23cb3e17ba6afadd6113181c8","subject":"Fix to parser tests test folder has the few files failing parsing test","message":"Fix to parser tests\ntest folder has the few files failing parsing test\n","repos":"tcolar\/fantomidemodule,tcolar\/fantomidemodule","old_file":"test\/pod.fan","new_file":"test\/pod.fan","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tcolar\/fantomidemodule.git\/': The requested URL returned error: 403\n","license":"artistic-2.0","lang":"Fantom"} {"commit":"2d8d22482413a2d3029269aa099ed050533b2554","subject":"test file for closures","message":"test file for closures\n","repos":"tcolar\/fantomidemodule,tcolar\/fantomidemodule","old_file":"test\/parser_test\/Main.fan","new_file":"test\/parser_test\/Main.fan","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tcolar\/fantomidemodule.git\/': The requested URL returned error: 403\n","license":"artistic-2.0","lang":"Fantom"} {"commit":"8890618fa585877f0a12d5fff76d8423a24757e6","subject":"added example file for fantom lexer","message":"added example file for fantom lexer\n","repos":"zmughal\/pygments-mirror,sol\/pygments,sol\/pygments,sol\/pygments,zmughal\/pygments-mirror,zmughal\/pygments-mirror,sol\/pygments,zmughal\/pygments-mirror,zmughal\/pygments-mirror,sol\/pygments,sol\/pygments,sol\/pygments,zmughal\/pygments-mirror,zmughal\/pygments-mirror,sol\/pygments,zmughal\/pygments-mirror,sol\/pygments,zmughal\/pygments-mirror,sol\/pygments,zmughal\/pygments-mirror,sol\/pygments,zmughal\/pygments-mirror,zmughal\/pygments-mirror,zmughal\/pygments-mirror,zmughal\/pygments-mirror,zmughal\/pygments-mirror,zmughal\/pygments-mirror,zmughal\/pygments-mirror,sol\/pygments,zmughal\/pygments-mirror,sol\/pygments,zmughal\/pygments-mirror,sol\/pygments","old_file":"tests\/examplefiles\/test.fan","new_file":"tests\/examplefiles\/test.fan","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sol\/pygments.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"Fantom"} {"commit":"cbd3e57433e84e5d35b6fe8b6c35b90b4cd611c1","subject":"added example file for fantom lexer","message":"added example file for fantom lexer\n","repos":"tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments,tomstuart\/pygments","old_file":"tests\/examplefiles\/test.fan","new_file":"tests\/examplefiles\/test.fan","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tomstuart\/pygments.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"Fantom"} {"commit":"cae1a65f30e9b17d11cb3ba47ee7538b3e7db728","subject":"added example file for fantom lexer","message":"added example file for fantom lexer\n","repos":"kirbyfan64\/pygments-unofficial,nsfmc\/pygments,dbrgn\/pygments-mirror,kirbyfan64\/pygments-unofficial,Khan\/pygments,nsfmc\/pygments,kirbyfan64\/pygments-unofficial,kirbyfan64\/pygments-unofficial,Khan\/pygments,Khan\/pygments,dbrgn\/pygments-mirror,dbrgn\/pygments-mirror,dbrgn\/pygments-mirror,Khan\/pygments,nsfmc\/pygments,nsfmc\/pygments,dbrgn\/pygments-mirror,nsfmc\/pygments,dbrgn\/pygments-mirror,kirbyfan64\/pygments-unofficial,kirbyfan64\/pygments-unofficial,kirbyfan64\/pygments-unofficial,nsfmc\/pygments,Khan\/pygments,nsfmc\/pygments,Khan\/pygments,kirbyfan64\/pygments-unofficial,Khan\/pygments,Khan\/pygments,kirbyfan64\/pygments-unofficial,dbrgn\/pygments-mirror,kirbyfan64\/pygments-unofficial,nsfmc\/pygments,dbrgn\/pygments-mirror,dbrgn\/pygments-mirror,kirbyfan64\/pygments-unofficial,dbrgn\/pygments-mirror,nsfmc\/pygments,dbrgn\/pygments-mirror,kirbyfan64\/pygments-unofficial,nsfmc\/pygments,nsfmc\/pygments,nsfmc\/pygments,Khan\/pygments,dbrgn\/pygments-mirror,kirbyfan64\/pygments-unofficial,Khan\/pygments,dbrgn\/pygments-mirror,Khan\/pygments,nsfmc\/pygments,dbrgn\/pygments-mirror,kirbyfan64\/pygments-unofficial,Khan\/pygments,Khan\/pygments,dbrgn\/pygments-mirror,nsfmc\/pygments,nsfmc\/pygments,nsfmc\/pygments,Khan\/pygments,Khan\/pygments,dbrgn\/pygments-mirror,kirbyfan64\/pygments-unofficial,kirbyfan64\/pygments-unofficial,Khan\/pygments","old_file":"tests\/examplefiles\/test.fan","new_file":"tests\/examplefiles\/test.fan","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Khan\/pygments.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"Fantom"} {"commit":"57687ee106888f7840d37fa16b79d6756947afe9","subject":"added example file for fantom lexer","message":"added example file for fantom lexer\n","repos":"pygments\/pygments,pygments\/pygments,pygments\/pygments,pygments\/pygments,dscorbett\/pygments,dscorbett\/pygments,pygments\/pygments,dscorbett\/pygments,dscorbett\/pygments,dscorbett\/pygments,dscorbett\/pygments,pygments\/pygments,dscorbett\/pygments,dscorbett\/pygments,pygments\/pygments,pygments\/pygments,dscorbett\/pygments,dscorbett\/pygments,pygments\/pygments,pygments\/pygments,pygments\/pygments,pygments\/pygments,pygments\/pygments,dscorbett\/pygments,dscorbett\/pygments,dscorbett\/pygments,dscorbett\/pygments,pygments\/pygments,dscorbett\/pygments,pygments\/pygments,pygments\/pygments,dscorbett\/pygments,pygments\/pygments,dscorbett\/pygments,dscorbett\/pygments,pygments\/pygments","old_file":"tests\/examplefiles\/test.fan","new_file":"tests\/examplefiles\/test.fan","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/pygments\/pygments.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"Fantom"} {"commit":"c5b3ce1cf51562e91f3ddc778e6e6019eaa86d71","subject":"added example file for fantom lexer","message":"added example file for fantom lexer\n","repos":"pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments,pathawks\/pygments","old_file":"tests\/examplefiles\/test.fan","new_file":"tests\/examplefiles\/test.fan","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/pathawks\/pygments.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"Fantom"}