From 623c9dc23a454c1d647e2da9004ca2903a0cbdfb Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 26 Jul 2013 23:16:07 +0200 Subject: add cpuinfo page --- cpuinfo.buetow.org/PROJECT | 1 + cpuinfo.buetow.org/content/20.Manpage.xml | 12 ++++++++++++ cpuinfo.buetow.org/content/40.Changelog.xml | 12 ++++++++++++ cpuinfo.buetow.org/content/50.Download.xml | 24 ++++++++++++++++++++++++ cpuinfo.buetow.org/content/98.contact.xml | 20 ++++++++++++++++++++ cpuinfo.buetow.org/content/99.license.xml | 7 +++++++ cpuinfo.buetow.org/content/home.xml | 10 ++++++++++ cpuinfo.buetow.org/htdocs/images/cpuinfo.png | Bin 0 -> 27560 bytes 8 files changed, 86 insertions(+) create mode 100644 cpuinfo.buetow.org/PROJECT create mode 100644 cpuinfo.buetow.org/content/20.Manpage.xml create mode 100644 cpuinfo.buetow.org/content/40.Changelog.xml create mode 100644 cpuinfo.buetow.org/content/50.Download.xml create mode 100644 cpuinfo.buetow.org/content/98.contact.xml create mode 100644 cpuinfo.buetow.org/content/99.license.xml create mode 100644 cpuinfo.buetow.org/content/home.xml create mode 100644 cpuinfo.buetow.org/htdocs/images/cpuinfo.png (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/PROJECT b/cpuinfo.buetow.org/PROJECT new file mode 100644 index 0000000..e38dc0a --- /dev/null +++ b/cpuinfo.buetow.org/PROJECT @@ -0,0 +1 @@ +This is an humble GNU AWK script to print out some CPU infos. diff --git a/cpuinfo.buetow.org/content/20.Manpage.xml b/cpuinfo.buetow.org/content/20.Manpage.xml new file mode 100644 index 0000000..11dd9c7 --- /dev/null +++ b/cpuinfo.buetow.org/content/20.Manpage.xml @@ -0,0 +1,12 @@ + + + Manpage + This is the manpage of the current master branch: + + + use LWP::Simple; + get("http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=docs/cbars.txt;hb=HEAD"); + + + + diff --git a/cpuinfo.buetow.org/content/40.Changelog.xml b/cpuinfo.buetow.org/content/40.Changelog.xml new file mode 100644 index 0000000..452db02 --- /dev/null +++ b/cpuinfo.buetow.org/content/40.Changelog.xml @@ -0,0 +1,12 @@ + + + Changelog + This is the changelog file of the current master branch: + + + use LWP::Simple; + get("http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=debian/changelog;hb=HEAD"); + + + + diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml new file mode 100644 index 0000000..0ce4751 --- /dev/null +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -0,0 +1,24 @@ + + + Download + CPUInfo can be downloaded from a deb repo or from git. + Install from deb repository + If you have Debian GNU/Linux Squeeze you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: +deb ftp://deb.buetow.org/apt wheezy main +deb-src ftp://deb.buetow.org/apt wheezy main + Or if you prefer http: +deb http://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main + To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | apt-key add -". + Download from Git repository + For git just type "git clone git://git.buetow.org/cpuinfo". + To update to the latest stable version just type "cd ./cpuinfo; git pull". + + Go to + gitweb + to browse the online repository. The master branch always keeps the current stable version. The devel branch always keeps the current development version. For releases there are tags and for screenshots check out the screenshots branch. + + For bleeding edge you can fetch the devel branch with "git clone -b develop git://git.buetow.org/cpuinfo cbars-develop". But be warned, this one might be broken! It will be merged to master when it's done. + + + diff --git a/cpuinfo.buetow.org/content/98.contact.xml b/cpuinfo.buetow.org/content/98.contact.xml new file mode 100644 index 0000000..f46ee65 --- /dev/null +++ b/cpuinfo.buetow.org/content/98.contact.xml @@ -0,0 +1,20 @@ + + + Contact Me/Us + + Please use the + Development Mailing List + for any considerations of this humble programming project or any other programming project of mine. + + + But you may also use other methods such as listed + on this site + for example. + + + If you are interested in other projects please visit + http://dev.buetow.org + :) + + + diff --git a/cpuinfo.buetow.org/content/99.license.xml b/cpuinfo.buetow.org/content/99.license.xml new file mode 100644 index 0000000..eb304e9 --- /dev/null +++ b/cpuinfo.buetow.org/content/99.license.xml @@ -0,0 +1,7 @@ + + + License + CPUInfo is licensed under the GNU Gerneral Public License Version 3 or later. + + + diff --git a/cpuinfo.buetow.org/content/home.xml b/cpuinfo.buetow.org/content/home.xml new file mode 100644 index 0000000..15d6c58 --- /dev/null +++ b/cpuinfo.buetow.org/content/home.xml @@ -0,0 +1,10 @@ + + + CPUInfo + CPU, who are you?... + + + CPUInfo is a program written in GNU AWK for Linux that can be used to obtain some infos about your CPU. This program is a very humble one, but enjoy it! + + + diff --git a/cpuinfo.buetow.org/htdocs/images/cpuinfo.png b/cpuinfo.buetow.org/htdocs/images/cpuinfo.png new file mode 100644 index 0000000..e3ae0d4 Binary files /dev/null and b/cpuinfo.buetow.org/htdocs/images/cpuinfo.png differ -- cgit v1.2.3 From 22a437b137d22ca9d91a6526bd48ce3c646ebf42 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 26 Jul 2013 23:24:08 +0200 Subject: descale --- cpuinfo.buetow.org/htdocs/images/cpuinfo.png | Bin 27560 -> 13939 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/htdocs/images/cpuinfo.png b/cpuinfo.buetow.org/htdocs/images/cpuinfo.png index e3ae0d4..88d7247 100644 Binary files a/cpuinfo.buetow.org/htdocs/images/cpuinfo.png and b/cpuinfo.buetow.org/htdocs/images/cpuinfo.png differ -- cgit v1.2.3 From ad6f2f40f95116e4fa624a819c34c4f9329a61e5 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 26 Jul 2013 23:27:28 +0200 Subject: fix --- cpuinfo.buetow.org/content/20.Manpage.xml | 2 +- cpuinfo.buetow.org/content/50.Download.xml | 2 +- cpuinfo.buetow.org/content/home.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/20.Manpage.xml b/cpuinfo.buetow.org/content/20.Manpage.xml index 11dd9c7..46ee743 100644 --- a/cpuinfo.buetow.org/content/20.Manpage.xml +++ b/cpuinfo.buetow.org/content/20.Manpage.xml @@ -5,7 +5,7 @@ use LWP::Simple; - get("http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=docs/cbars.txt;hb=HEAD"); + get("http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=docs/cpuinfo.txt;hb=HEAD"); diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index 0ce4751..584a6e8 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -18,7 +18,7 @@ deb-src http://deb.buetow.org/apt wheezy main gitweb to browse the online repository. The master branch always keeps the current stable version. The devel branch always keeps the current development version. For releases there are tags and for screenshots check out the screenshots branch. - For bleeding edge you can fetch the devel branch with "git clone -b develop git://git.buetow.org/cpuinfo cbars-develop". But be warned, this one might be broken! It will be merged to master when it's done. + For bleeding edge you can fetch the devel branch with "git clone -b develop git://git.buetow.org/cpuinfo cpuinfo-develop". But be warned, this one might be broken! It will be merged to master when it's done. diff --git a/cpuinfo.buetow.org/content/home.xml b/cpuinfo.buetow.org/content/home.xml index 15d6c58..1652208 100644 --- a/cpuinfo.buetow.org/content/home.xml +++ b/cpuinfo.buetow.org/content/home.xml @@ -3,7 +3,7 @@ CPUInfo CPU, who are you?... - + CPUInfo is a program written in GNU AWK for Linux that can be used to obtain some infos about your CPU. This program is a very humble one, but enjoy it! -- cgit v1.2.3 From 0feeb38ff7065fdc9ffa5f08fc40db94aee42433 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 26 Jul 2013 23:31:46 +0200 Subject: fix logo --- cpuinfo.buetow.org/content/home.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/home.xml b/cpuinfo.buetow.org/content/home.xml index 1652208..db3d6fc 100644 --- a/cpuinfo.buetow.org/content/home.xml +++ b/cpuinfo.buetow.org/content/home.xml @@ -1,9 +1,9 @@ + CPUInfo CPU, who are you?... - CPUInfo is a program written in GNU AWK for Linux that can be used to obtain some infos about your CPU. This program is a very humble one, but enjoy it! -- cgit v1.2.3 From 6da53f3f7052f7eeee2973c8af9c56e35987e1b7 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 26 Jul 2013 23:47:32 +0200 Subject: fpo --- cpuinfo.buetow.org/content/home.xml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/home.xml b/cpuinfo.buetow.org/content/home.xml index db3d6fc..df0d006 100644 --- a/cpuinfo.buetow.org/content/home.xml +++ b/cpuinfo.buetow.org/content/home.xml @@ -5,6 +5,8 @@ CPU, who are you?... CPUInfo is a program written in GNU AWK for Linux that can be used to obtain some infos about your CPU. This program is a very humble one, but enjoy it! + If you wanna stay in touch please + subscribe on freecode. -- cgit v1.2.3 From 32e575a30e53389d3ae96346b69ddc6a756c7a37 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (pluto.buetow.org)" Date: Sun, 15 Sep 2013 12:35:45 +0200 Subject: s/link/hyperlink/ --- cpuinfo.buetow.org/content/98.contact.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/98.contact.xml b/cpuinfo.buetow.org/content/98.contact.xml index f46ee65..11dcff3 100644 --- a/cpuinfo.buetow.org/content/98.contact.xml +++ b/cpuinfo.buetow.org/content/98.contact.xml @@ -13,7 +13,7 @@ If you are interested in other projects please visit - http://dev.buetow.org + http://dev.buetow.org :) -- cgit v1.2.3 From cdb7dd9163e208669ee1e758514ecc2d43186546 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (pluto.buetow.org)" Date: Sat, 28 Sep 2013 17:31:34 +0200 Subject: fix --- cpuinfo.buetow.org/content/home.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/home.xml b/cpuinfo.buetow.org/content/home.xml index df0d006..16b079a 100644 --- a/cpuinfo.buetow.org/content/home.xml +++ b/cpuinfo.buetow.org/content/home.xml @@ -2,7 +2,7 @@ CPUInfo - CPU, who are you?... + CPU, who are you?... CPUInfo is a program written in GNU AWK for Linux that can be used to obtain some infos about your CPU. This program is a very humble one, but enjoy it! If you wanna stay in touch please -- cgit v1.2.3 From 2bfe5014a3ec0c2dc04fc3a72420ca86f5fac524 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Sat, 28 Sep 2013 18:02:25 +0200 Subject: reformat XML --- cpuinfo.buetow.org/content/20.Manpage.xml | 5 ++-- cpuinfo.buetow.org/content/40.Changelog.xml | 5 ++-- cpuinfo.buetow.org/content/50.Download.xml | 38 ++++++++++++++--------------- cpuinfo.buetow.org/content/98.contact.xml | 35 +++++++++++++------------- cpuinfo.buetow.org/content/99.license.xml | 4 +-- cpuinfo.buetow.org/content/home.xml | 5 ++-- 6 files changed, 42 insertions(+), 50 deletions(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/20.Manpage.xml b/cpuinfo.buetow.org/content/20.Manpage.xml index 46ee743..9cbe920 100644 --- a/cpuinfo.buetow.org/content/20.Manpage.xml +++ b/cpuinfo.buetow.org/content/20.Manpage.xml @@ -1,12 +1,11 @@ - + Manpage This is the manpage of the current master branch: - + use LWP::Simple; get("http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=docs/cpuinfo.txt;hb=HEAD"); - diff --git a/cpuinfo.buetow.org/content/40.Changelog.xml b/cpuinfo.buetow.org/content/40.Changelog.xml index 452db02..a3a4474 100644 --- a/cpuinfo.buetow.org/content/40.Changelog.xml +++ b/cpuinfo.buetow.org/content/40.Changelog.xml @@ -1,12 +1,11 @@ - + Changelog This is the changelog file of the current master branch: - + use LWP::Simple; get("http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=debian/changelog;hb=HEAD"); - diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index 584a6e8..d874a4b 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -1,24 +1,22 @@ - + - Download - CPUInfo can be downloaded from a deb repo or from git. - Install from deb repository - If you have Debian GNU/Linux Squeeze you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: -deb ftp://deb.buetow.org/apt wheezy main + Download + CPUInfo can be downloaded from a deb repo or from git. + Install from deb repository + If you have Debian GNU/Linux Squeeze you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: + deb ftp://deb.buetow.org/apt wheezy main deb-src ftp://deb.buetow.org/apt wheezy main - Or if you prefer http: -deb http://deb.buetow.org/apt wheezy main + Or if you prefer http: + deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main - To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | apt-key add -". - Download from Git repository - For git just type "git clone git://git.buetow.org/cpuinfo". - To update to the latest stable version just type "cd ./cpuinfo; git pull". - - Go to - gitweb - to browse the online repository. The master branch always keeps the current stable version. The devel branch always keeps the current development version. For releases there are tags and for screenshots check out the screenshots branch. - - For bleeding edge you can fetch the devel branch with "git clone -b develop git://git.buetow.org/cpuinfo cpuinfo-develop". But be warned, this one might be broken! It will be merged to master when it's done. + To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | apt-key add -". + Download from Git repository + For git just type "git clone git://git.buetow.org/cpuinfo". + To update to the latest stable version just type "cd ./cpuinfo; git pull". + + Go to + gitweb + to browse the online repository. The master branch always keeps the current stable version. The devel branch always keeps the current development version. For releases there are tags and for screenshots check out the screenshots branch. + + For bleeding edge you can fetch the devel branch with "git clone -b develop git://git.buetow.org/cpuinfo cpuinfo-develop". But be warned, this one might be broken! It will be merged to master when it's done. - - diff --git a/cpuinfo.buetow.org/content/98.contact.xml b/cpuinfo.buetow.org/content/98.contact.xml index 11dcff3..a881cc3 100644 --- a/cpuinfo.buetow.org/content/98.contact.xml +++ b/cpuinfo.buetow.org/content/98.contact.xml @@ -1,20 +1,19 @@ - + - Contact Me/Us - - Please use the - Development Mailing List - for any considerations of this humble programming project or any other programming project of mine. - - - But you may also use other methods such as listed - on this site - for example. - - - If you are interested in other projects please visit - http://dev.buetow.org - :) - + Contact Me/Us + + Please use the + Development Mailing List + for any considerations of this humble programming project or any other programming project of mine. + + + But you may also use other methods such as listed + on this site + for example. + + + If you are interested in other projects please visit + http://dev.buetow.org + :) + - diff --git a/cpuinfo.buetow.org/content/99.license.xml b/cpuinfo.buetow.org/content/99.license.xml index eb304e9..80e33b5 100644 --- a/cpuinfo.buetow.org/content/99.license.xml +++ b/cpuinfo.buetow.org/content/99.license.xml @@ -1,7 +1,5 @@ - + License CPUInfo is licensed under the GNU Gerneral Public License Version 3 or later. - - diff --git a/cpuinfo.buetow.org/content/home.xml b/cpuinfo.buetow.org/content/home.xml index 16b079a..bf7c21f 100644 --- a/cpuinfo.buetow.org/content/home.xml +++ b/cpuinfo.buetow.org/content/home.xml @@ -1,6 +1,6 @@ - + - + CPUInfo CPU, who are you?... @@ -9,4 +9,3 @@ subscribe on freecode. - -- cgit v1.2.3 From 297e838b5a08ccc4d7eaae94d7ed06ecda1a0d9e Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Tue, 1 Oct 2013 20:14:34 +0200 Subject: add sitemap --- cpuinfo.buetow.org/SITEMAP | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 cpuinfo.buetow.org/SITEMAP (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/SITEMAP b/cpuinfo.buetow.org/SITEMAP new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3 From 232e70178316ff7ebfbdd65b588dd444b15b7c61 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Sun, 15 Dec 2013 11:30:52 +0100 Subject: change deb src from ftp do http --- cpuinfo.buetow.org/content/50.Download.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index d874a4b..e2c972b 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -5,7 +5,7 @@ Install from deb repository If you have Debian GNU/Linux Squeeze you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: deb ftp://deb.buetow.org/apt wheezy main -deb-src ftp://deb.buetow.org/apt wheezy main +deb-src http://deb.buetow.org/apt wheezy main Or if you prefer http: deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main -- cgit v1.2.3 From 9c2be04aade944eb6d0d34e00cc4afb03e533e29 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Sun, 15 Dec 2013 11:31:30 +0100 Subject: change deb src from ftp do http --- cpuinfo.buetow.org/content/50.Download.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index e2c972b..6af4ab8 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -4,7 +4,7 @@ CPUInfo can be downloaded from a deb repo or from git. Install from deb repository If you have Debian GNU/Linux Squeeze you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: - deb ftp://deb.buetow.org/apt wheezy main + deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main Or if you prefer http: deb http://deb.buetow.org/apt wheezy main -- cgit v1.2.3 From 43c94a43b7320967d145763c173685efd3c8ded2 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Sat, 21 Dec 2013 12:24:28 +0100 Subject: fix duplicate repo tuts --- cpuinfo.buetow.org/content/50.Download.xml | 3 --- 1 file changed, 3 deletions(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index 6af4ab8..e1adf3f 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -5,9 +5,6 @@ Install from deb repository If you have Debian GNU/Linux Squeeze you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: deb http://deb.buetow.org/apt wheezy main -deb-src http://deb.buetow.org/apt wheezy main - Or if you prefer http: - deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | apt-key add -". Download from Git repository -- cgit v1.2.3 From 8f9afe65075d800acc42c72dbfc3c59f6054d764 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Sat, 21 Dec 2013 12:30:16 +0100 Subject: add sudo --- cpuinfo.buetow.org/content/50.Download.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index e1adf3f..69b8fa8 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -6,7 +6,7 @@ If you have Debian GNU/Linux Squeeze you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main - To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | apt-key add -". + To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add -". Download from Git repository For git just type "git clone git://git.buetow.org/cpuinfo". To update to the latest stable version just type "cd ./cpuinfo; git pull". -- cgit v1.2.3 From edeb4da17b252179a70a30f78b7ab7931f5d468c Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Tue, 31 Dec 2013 00:56:19 +0100 Subject: s/Squeeze/Wheezy/ --- cpuinfo.buetow.org/content/50.Download.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index 69b8fa8..53a036d 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -3,7 +3,7 @@ Download CPUInfo can be downloaded from a deb repo or from git. Install from deb repository - If you have Debian GNU/Linux Squeeze you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: + If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add -". -- cgit v1.2.3 From 1b87cc26359127f58125d905bf6cf1105fafdb71 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Tue, 31 Dec 2013 11:54:11 +0100 Subject: case sensitiviness --- cpuinfo.buetow.org/content/50.Download.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index 53a036d..d4bfb97 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -7,7 +7,7 @@ deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add -". - Download from Git repository + Download from git repository For git just type "git clone git://git.buetow.org/cpuinfo". To update to the latest stable version just type "cd ./cpuinfo; git pull". -- cgit v1.2.3 From d29ce82c44bd9db69b8f8c9c996188212c1861ac Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Sat, 22 Mar 2014 11:50:04 +0100 Subject: try HOSTNAME --- cpuinfo.buetow.org/content/50.Download.xml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index d4bfb97..750e009 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -1,19 +1,15 @@ Download - CPUInfo can be downloaded from a deb repo or from git. + !!HOSTNAME!! can be downloaded from a deb repo or from git. Install from deb repository If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add -". Download from git repository - For git just type "git clone git://git.buetow.org/cpuinfo". - To update to the latest stable version just type "cd ./cpuinfo; git pull". Go to - gitweb - to browse the online repository. The master branch always keeps the current stable version. The devel branch always keeps the current development version. For releases there are tags and for screenshots check out the screenshots branch. + - For bleeding edge you can fetch the devel branch with "git clone -b develop git://git.buetow.org/cpuinfo cpuinfo-develop". But be warned, this one might be broken! It will be merged to master when it's done. -- cgit v1.2.3 From b20c39f0607413f69160947d68ddebf231e71c0b Mon Sep 17 00:00:00 2001 From: "Paul Buetow (mars.fritz.box)" Date: Sat, 22 Mar 2014 11:51:18 +0100 Subject: fix link --- cpuinfo.buetow.org/content/50.Download.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index 750e009..a59c202 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -10,6 +10,6 @@ deb-src http://deb.buetow.org/apt wheezy main Download from git repository Go to - + http://github.com/rantanplan/!!HOSTNAME!! -- cgit v1.2.3 From 90a6331414bb767bf92a44d358024cc5c88e6d64 Mon Sep 17 00:00:00 2001 From: "Paul C. Buetow (mars.fritz.box)" Date: Sun, 27 Apr 2014 12:25:44 +0200 Subject: use inject --- cpuinfo.buetow.org/content/20.Manpage.xml | 5 +---- cpuinfo.buetow.org/content/40.Changelog.xml | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/20.Manpage.xml b/cpuinfo.buetow.org/content/20.Manpage.xml index 9cbe920..d6d76df 100644 --- a/cpuinfo.buetow.org/content/20.Manpage.xml +++ b/cpuinfo.buetow.org/content/20.Manpage.xml @@ -3,9 +3,6 @@ Manpage This is the manpage of the current master branch: - - use LWP::Simple; - get("http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=docs/cpuinfo.txt;hb=HEAD"); - + http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=docs/cpuinfo.txt;hb=HEAD diff --git a/cpuinfo.buetow.org/content/40.Changelog.xml b/cpuinfo.buetow.org/content/40.Changelog.xml index a3a4474..6da200b 100644 --- a/cpuinfo.buetow.org/content/40.Changelog.xml +++ b/cpuinfo.buetow.org/content/40.Changelog.xml @@ -3,9 +3,6 @@ Changelog This is the changelog file of the current master branch: - - use LWP::Simple; - get("http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=debian/changelog;hb=HEAD"); - + http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=debian/changelog;hb=HEAD -- cgit v1.2.3 From cbe9aad85b2e42162f533298d24bb64eb1220a25 Mon Sep 17 00:00:00 2001 From: "Paul C. Buetow (mars.fritz.box)" Date: Mon, 16 Jun 2014 09:19:45 +0200 Subject: You will overcome the attacks of jealous associates. --- cpuinfo.buetow.org/content/50.Download.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index a59c202..1e946c1 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -3,10 +3,14 @@ Download !!HOSTNAME!! can be downloaded from a deb repo or from git. Install from deb repository - If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list, and run apt-get update;apt-get install cpuinfo: + If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list: deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main - To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add -". + (Please replace wheezy with jessie if you are debian GNU/Linux Jessie) and run afterwards: + curl http://deb.buetow.org/apt/pubkey.gpg | +sudo apt-key add - +apt-get update +apt-get install cpuinfo Download from git repository Go to -- cgit v1.2.3 From bea5c3e4560bc85f4fb9c794c79c6e22d77a7c76 Mon Sep 17 00:00:00 2001 From: "Paul C. Buetow (mars.fritz.box)" Date: Mon, 16 Jun 2014 09:25:53 +0200 Subject: typo --- cpuinfo.buetow.org/content/50.Download.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index 1e946c1..3a653e0 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -6,7 +6,7 @@ If you have Debian GNU/Linux Wheezy you can add the following into a new apt source file, e.g. /etc/apt/source.list.d/buetoworg.list: deb http://deb.buetow.org/apt wheezy main deb-src http://deb.buetow.org/apt wheezy main - (Please replace wheezy with jessie if you are debian GNU/Linux Jessie) and run afterwards: + (Please replace wheezy with jessie if you are using Debian GNU/Linux Jessie) and run afterwards: curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add - apt-get update -- cgit v1.2.3 From 258d6a2d29fde041078c8b10eb147f7439a331b6 Mon Sep 17 00:00:00 2001 From: "Paul C. Buetow (mars.fritz.box)" Date: Fri, 20 Jun 2014 01:33:13 +0200 Subject: fix --- cpuinfo.buetow.org/content/50.Download.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/50.Download.xml b/cpuinfo.buetow.org/content/50.Download.xml index 3a653e0..b48740e 100644 --- a/cpuinfo.buetow.org/content/50.Download.xml +++ b/cpuinfo.buetow.org/content/50.Download.xml @@ -10,7 +10,7 @@ deb-src http://deb.buetow.org/apt wheezy main curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add - apt-get update -apt-get install cpuinfo +apt-get install !!HOSTNAME!! Download from git repository Go to -- cgit v1.2.3 From 926bc98bfb6ff456efd7483dfa8cf043cffc7035 Mon Sep 17 00:00:00 2001 From: "Paul C. Buetow (mars.fritz.box)" Date: Sun, 22 Jun 2014 10:58:45 +0200 Subject: remove references to freshmeat aka freecode --- cpuinfo.buetow.org/content/home.xml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/home.xml b/cpuinfo.buetow.org/content/home.xml index bf7c21f..b8416a1 100644 --- a/cpuinfo.buetow.org/content/home.xml +++ b/cpuinfo.buetow.org/content/home.xml @@ -3,9 +3,5 @@ CPUInfo CPU, who are you?... - - CPUInfo is a program written in GNU AWK for Linux that can be used to obtain some infos about your CPU. This program is a very humble one, but enjoy it! - If you wanna stay in touch please - subscribe on freecode. - + CPUInfo is a program written in GNU AWK for Linux that can be used to obtain some infos about your CPU. This program is a very humble one, but enjoy it! -- cgit v1.2.3 From 05d5182057114508206c52146645b8ceca30cf91 Mon Sep 17 00:00:00 2001 From: "Chuck Norris (uranus.fritz.box)" Date: Sun, 17 Aug 2014 22:54:37 +0200 Subject: Repartee is something we think of twenty-four hours too late. -- Mark Twain --- cpuinfo.buetow.org/content/20.Manpage.xml | 2 +- cpuinfo.buetow.org/content/40.Changelog.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/20.Manpage.xml b/cpuinfo.buetow.org/content/20.Manpage.xml index d6d76df..f749c18 100644 --- a/cpuinfo.buetow.org/content/20.Manpage.xml +++ b/cpuinfo.buetow.org/content/20.Manpage.xml @@ -3,6 +3,6 @@ Manpage This is the manpage of the current master branch: - http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=docs/cpuinfo.txt;hb=HEAD + http://web.buetow.org/cgit/cpuinfo.git/plain/docs/cpuinfo.txt diff --git a/cpuinfo.buetow.org/content/40.Changelog.xml b/cpuinfo.buetow.org/content/40.Changelog.xml index 6da200b..90c4fa0 100644 --- a/cpuinfo.buetow.org/content/40.Changelog.xml +++ b/cpuinfo.buetow.org/content/40.Changelog.xml @@ -3,6 +3,6 @@ Changelog This is the changelog file of the current master branch: - http://web.buetow.org/git/?p=cpuinfo.git;a=blob_plain;f=debian/changelog;hb=HEAD + http://web.buetow.org/cgit/cpuinfo.git/plain/debian/changelog -- cgit v1.2.3 From dace221b1fabae687dc68dc1bce3085579c72da6 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (uranus)" Date: Sat, 27 Dec 2014 15:30:21 +0100 Subject: fix listurls --- cpuinfo.buetow.org/content/98.contact.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpuinfo.buetow.org') diff --git a/cpuinfo.buetow.org/content/98.contact.xml b/cpuinfo.buetow.org/content/98.contact.xml index a881cc3..d3d66b0 100644 --- a/cpuinfo.buetow.org/content/98.contact.xml +++ b/cpuinfo.buetow.org/content/98.contact.xml @@ -3,7 +3,7 @@ Contact Me/Us Please use the - Development Mailing List + Development Mailing List for any considerations of this humble programming project or any other programming project of mine. -- cgit v1.2.3