Youming Lin

Results 11 comments of Youming Lin

@mathiasbynens Yup, it is Apache 2.0 licensed: https://github.com/IBM-Swift/swift-html-entities Version 1 supports HTML4 named character references; I'm currently working on version 2 which will support HTML5 named character references and improve...

We should slate a name change for the next major version release. If another library is extending from `Error` without specifying `Swift.Error`, and the application imports both that library and...

I was thinking of a namespace issue, but I guess in my example it's not an issue due to the third party library not having a dependency on `Kitura-net`.

Unable to `setenv` in Swift code on Linux: https://bugs.swift.org/browse/SR-5076 Moving command-line argv test to XCTest should be possible as `CommandLine.arguments` is a mutable array. `ProcessInfo.processInfo.environment` is a `get`-only dictionary so...

Problem should be solved in `Package.swift` with the new SPM in Swift 4: https://swift.org/blog/swift-package-manager-manifest-api-redesign/ ``` Declare all regular and test targets. All targets and their dependencies should be explicitly declared....

Thanks for the feedback. Since the `LoggerAPI` dependency doesn't yet support Cocoapods, I haven't added podspec to `Configuration`. In the mean time, I've added Carthage support with the latest release.

@svanimpe Depends on your use case, but I lean towards `.pwd` now. It is the method least affected by changes in build process. As it is currently,`swift build --build-path` can...

Are these errors due to no matched routes found? Kitura sends 404 ```Cannot GET /some/endpoint``` by default if no middleware/handler for a route was found, or if none of the...

@RndmTsk >// This pattern seemed to work, but defeated the point of using a sub-router that doesn't know about a parent's pattern: router.all("/users/:id(\\S+)", middleware: subrouter) This is actually possible via...

Further investigation of differences between `Kitura-Credentials` and PassportJS is required. Making session optional for redirecting plugins will require API-breaking changes.