From patchwork Sun Feb 21 20:21:17 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Lohmann <20h@r-36.net> X-Patchwork-Id: 8369351 Return-Path: X-Original-To: patchwork-linux-wpan@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 833059F52D for ; Sun, 21 Feb 2016 20:31:28 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id A3482203AC for ; Sun, 21 Feb 2016 20:31:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1CBA6202C8 for ; Sun, 21 Feb 2016 20:31:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751122AbcBUUbZ (ORCPT ); Sun, 21 Feb 2016 15:31:25 -0500 Received: from r-36.net ([78.46.55.227]:36249 "EHLO r-36.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751106AbcBUUbZ (ORCPT ); Sun, 21 Feb 2016 15:31:25 -0500 X-Greylist: delayed 542 seconds by postgrey-1.27 at vger.kernel.org; Sun, 21 Feb 2016 15:31:24 EST Received: by r-36.net (Postfix, from userid 5011) id 88E2912A22C4E; Sun, 21 Feb 2016 21:22:19 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from localhost (p579325BE.dip0.t-ipconnect.de [87.147.37.190]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: chrissi) by r-36.net (Postfix) with ESMTPSA id 6B17E1021B7D9; Sun, 21 Feb 2016 21:22:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=r-36.net; s=mail; t=1456086136; bh=IlKdldlZPVHMt3V0u0t6g1v5xP0qcqE4eh/8OyxSDEY=; h=From:To:Cc:Subject:Date; b=If/QO4FVEiXnufMVxVVoVtax4VLjA7r1n+y5KuUrvlAZL8CS2N0xQBqwXt1AjP2ss 2haFFXMqcs+Pyrk1YVbPIzdfJ6Zyz72Mut3fXlIH4kzVv3m3+WsVkNVrfKwxwJvAVI cfmfhEXuYFqRDjaJB2Jel7UadCXgUTk1qhHEf79I= From: Christoph Lohmann <20h@r-36.net> To: linux-wpan@vger.kernel.org Cc: Christoph Lohmann <20h@r-36.net> Subject: [PATCH] Be more helpful in how to contribute to the website. Date: Sun, 21 Feb 2016 21:21:17 +0100 Message-Id: <1456086077-14163-1-git-send-email-20h@r-36.net> X-Mailer: git-send-email 2.7.0 Sender: linux-wpan-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wpan@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Clear examples are reducing the entry level for contributions. --- website/index.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/website/index.txt b/website/index.txt index 3ac44b6..3ccca3f 100644 --- a/website/index.txt +++ b/website/index.txt @@ -209,4 +209,26 @@ Specifications * https://www.iana.org/assignments/_6lowpan-parameters/_6lowpan-parameters.xhtml[6LoWPAN IANA assignments] + +Changing the Website +~~~~~~~~~~~~~~~~~~~~ + +If you want to take part in developing this website, do the following: + + +--------------------------------------------------------------------- +git clone https://github.com/linux-wpan/wpan-misc.git +cd wpan-misc/website +git checkout -b myproposal +# Change this page to whatever you like. +$EDITOR index.txt +git commit -a +# be sure to be registered to linux-wpan@vger.kernel.org before sending the +# patch +git send-email --to linux-wpan@vger.kernel.org -1 +--------------------------------------------------------------------- + +Next wait for the reactions on the mailinglist and if your change is +integrated. + // vim: set syntax=asciidoc: