From 8ab3f019d7f4802e5d29331dceae10b7c1613c93 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Wed, 25 Oct 2017 10:14:44 +1100 Subject: [PATCH] fix(docs): changing the github urls, because we're in an org now --- README.md | 10 +++++----- package.json | 6 +++--- types/log4js.d.ts | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 70ae719..38b2461 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ This is a conversion of the [log4js](https://github.com/stritti/log4js) framework to work with [node](http://nodejs.org). I started out just stripping out the browser-specific code and tidying up some of the javascript to work better in node. It grew from there. Although it's got a similar name to the Java library [log4j](https://logging.apache.org/log4j/2.x/), thinking that it will behave the same way will only bring you sorrow and confusion. -The full documentation is available [here](https://nomiddlename.github.io/log4js-node/). +The full documentation is available [here](https://log4js-node.github.io/log4js-node/). -There have been a few changes between log4js 1.x and 2.x (and 0.x too). You should probably read this [migration guide](https://nomiddlename.github.io/log4js-node/migration-guide.html) if things aren't working. +There have been a few changes between log4js 1.x and 2.x (and 0.x too). You should probably read this [migration guide](https://log4js-node.github.io/log4js-node/migration-guide.html) if things aren't working. Out of the box it supports the following features: @@ -70,9 +70,9 @@ Output (in `cheese.log`): If you're writing a library and would like to include support for log4js, without introducing a dependency headache for your users, take a look at [log4js-api](https://github.com/log4js-node/log4js-api). ## Documentation -Available [here](https://nomiddlename.github.io/log4js-node/). +Available [here](https://log4js-node.github.io/log4js-node/). -There's also [an example application](https://github.com/nomiddlename/log4js-example). +There's also [an example application](https://github.com/log4js-node/log4js-example). ## TypeScript ```ts @@ -89,7 +89,7 @@ configure({ ``` ## Contributing -Contributions welcome, but take a look at the [rules](https://github.com/nomiddlename/log4js-node/wiki/Contributing) first. +Contributions welcome, but take a look at the [rules](https://log4js-node.github.io/log4js-node/contrib-guidelines.html) first. ## License diff --git a/package.json b/package.json index 3a14793..4e4f5bf 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "log4js", "version": "2.3.9", "description": "Port of Log4js to work with node.", - "homepage": "https://nomiddlename.github.io/log4js-node/", + "homepage": "https://log4js-node.github.io/log4js-node/", "keywords": [ "logging", "log", @@ -15,10 +15,10 @@ "author": "Gareth Jones ", "repository": { "type": "git", - "url": "https://github.com/nomiddlename/log4js-node.git" + "url": "https://github.com/log4js-node/log4js-node.git" }, "bugs": { - "url": "http://github.com/nomiddlename/log4js-node/issues" + "url": "http://github.com/log4js-node/log4js-node/issues" }, "engines": { "node": ">=4.0" diff --git a/types/log4js.d.ts b/types/log4js.d.ts index 55d1ce2..b9b68ce 100644 --- a/types/log4js.d.ts +++ b/types/log4js.d.ts @@ -71,20 +71,20 @@ export type Layout = BaseLayout | ColoredLayout | MessagePassThroughLayout | Dum /** * Category Filter * - * @see https://nomiddlename.github.io/log4js-node/categoryFilter.html + * @see https://log4js-node.github.io/log4js-node/categoryFilter.html */ export interface CategoryFilterAppender { type: "categoryFilter"; // the category (or categories if you provide an array of values) that will be excluded from the appender. exclude?: string | string[]; - // the name of the appender to filter. see https://nomiddlename.github.io/log4js-node/layouts.html + // the name of the appender to filter. see https://log4js-node.github.io/log4js-node/layouts.html appender?: string; } /** * Console Appender * - * @see https://nomiddlename.github.io/log4js-node/console.html + * @see https://log4js-node.github.io/log4js-node/console.html */ export interface ConsoleAppender { type: 'console';