css-team: insert basic next/pre page

git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@246 a672b425-5310-4d7a-af5c-997e18724b81
This commit is contained in:
britea 2018-11-17 15:10:28 +00:00
parent 77722b9440
commit a80ce6491b
23 changed files with 42 additions and 28 deletions

View File

@ -1,6 +1,6 @@
<div class="menuDesktop"> <div class="menuDesktop">
<div class="logo"> <div class="logo">
<a href="/index.html"><img src="/assets/style/theshell.png" height="30"></a> <a href="/index.html" style="text-decoration:none;color:white;"><h1><span class="NotoSansLight">the</span><span class="NotoSansBold">shell</span></h1></a>
</div> </div>
<div class="fill-space"></div> <div class="fill-space"></div>
<div class="search-box"> <div class="search-box">

View File

@ -14,7 +14,7 @@
</div> </div>
<nav class="nav-menu"> <nav class="nav-menu">
<div>Learn <div>Learn
<ul> <ul style="background-color:#000;">
<li><a href="{{ site.baseurl }}/pages/topic/cmd/basic.html">Basic commands</a></li> <li><a href="{{ site.baseurl }}/pages/topic/cmd/basic.html">Basic commands</a></li>
<li><a href="{{ site.baseurl }}/pages/topic/cmd/interm.html">Intermediate commands</a></li> <li><a href="{{ site.baseurl }}/pages/topic/cmd/interm.html">Intermediate commands</a></li>
<li><a href="{{ site.baseurl }}/pages/topic/cmd/advanced.html">Advanced commands</a></li> <li><a href="{{ site.baseurl }}/pages/topic/cmd/advanced.html">Advanced commands</a></li>
@ -24,7 +24,7 @@
</div> </div>
<code>|</code> <code>|</code>
<div>About <div>About
<ul> <ul style="background-color:#000;">
<li><a href="{{ site.baseurl }}/pages/info/project.html">The project</a></li> <li><a href="{{ site.baseurl }}/pages/info/project.html">The project</a></li>
<li><a href="{{ site.baseurl }}/pages/info/people.html">The people</a></li> <li><a href="{{ site.baseurl }}/pages/info/people.html">The people</a></li>
<li><a href="{{ site.baseurl }}/pages/topic/about.html">More...</a></li> <li><a href="{{ site.baseurl }}/pages/topic/about.html">More...</a></li>
@ -88,7 +88,6 @@ if (isChrome) {
document.getElementById('foolChrome').remove(); document.getElementById('foolChrome').remove();
var homeVideo = document.getElementById('videoHome'); var homeVideo = document.getElementById('videoHome');
homeVideo.muted = true;
homeVideo.play(); homeVideo.play();
} }

View File

@ -1,5 +1,6 @@
--- ---
layout: main layout: main
author: Andrea Brites Marto
--- ---
<article class="post"> <article class="post">

View File

@ -57,7 +57,7 @@
@font-face{ @font-face{
font-family:'NotoSansLight'; font-family:'NotoSansLight';
src:url('/assets/style/NotoSansMono/NotoSansMono-Light.ttf '); src:url('/assets/style/NotoSansMono/NotoSansMono-Thin.ttf ');
} }
@font-face{ @font-face{

View File

@ -23,7 +23,7 @@
background: #6a6; background: #6a6;
border-radius: 100%; border-radius: 100%;
padding: 4px 12px; padding: 4px 12px;
font-size: 25px; font-size: 2.8vh;
transition:500ms; transition:500ms;
} }
@ -54,7 +54,6 @@
} }
.description-section{ .description-section{
width: 65%;
margin: auto; margin: auto;
line-height: 30px; line-height: 30px;
border-left: 5px solid #000; border-left: 5px solid #000;

View File

@ -6,7 +6,7 @@ title: Home page
--- ---
<iframe id="foolChrome" src="{{ site.baseurl }}/assets/style/silence.mp3" allow="autoplay" style="display:none"></iframe> <iframe id="foolChrome" src="assets/style/silence.mp3" allow="autoplay" style="display:none"></iframe>
<video autoplay id="videoHome"> <video autoplay id="videoHome">
<source src="assets/front/hero_video.mp4" type="video/mp4"> <source src="assets/front/hero_video.mp4" type="video/mp4">

View File

@ -1,11 +1,12 @@
--- ---
layout: page layout: page
category-page: basic category-page: basic
category-title: Basic commands category-title: Basic commands
author: Joy Albertini author: Joy Albertini
tags:directory file chown symbolic link tags: directory file chown symbolic link
title: chown title: chown
previous-page: pages/cmd/basic/info.html
next-page: pages/cmd/basic/mv.html
--- ---
<p>The <code>chown</code> <p>The <code>chown</code>

View File

@ -5,7 +5,8 @@ category-title: Basic commands
tags: Clear shell tags: Clear shell
author: Marzio Lunghi author: Marzio Lunghi
title: clear title: clear
<!--next-page: pages/cmd/basic/ --> <!-- The sequence must be defined --> previous-page: pages/cmd/basic/more-less.html
next-page: pages/cmd/basic/say.html
--- ---
If you want to clear the shell screen up to the start you have to digit If you want to clear the shell screen up to the start you have to digit
the <code>clear</code> command: the <code>clear</code> command:

View File

@ -5,7 +5,8 @@ category-title: Basic commands
tags: Close shell tags: Close shell
author: Marzio Lunghi author: Marzio Lunghi
title: Closing the shell title: Closing the shell
<!--next-page: pages/cmd/basic/ --> <!-- The sequence must be defined --> previous-page: pages/cmd/basic/terminal-toolbar.html
next-page: pages/cmd/basic/ls.html
--- ---
If you want to close the shell session, there are several ways to do so: If you want to close the shell session, there are several ways to do so:

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: manual tags: manual
author: Gianmarco De Vita author: Gianmarco De Vita
title: info title: info
previous-page: pages/cmd/basic/mkdir.html previous-page: pages/cmd/basic/whatis.html
next-page: pages/cmd/basic/man.html next-page: pages/cmd/basic/chown.html
--- ---
An <i>.info</i> file is an information document created by Texinfo.<br> An <i>.info</i> file is an information document created by Texinfo.<br>
It stores documentation in a book format with chapters, sections, It stores documentation in a book format with chapters, sections,

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: directory list tags: directory list
author: Alessandro Marinelli author: Alessandro Marinelli
title: ls title: ls
previous-page: pages/cmd/basic/cd.html previous-page: pages/cmd/basic/closeshell.html
next-page: pages/cmd/basic/mkdir.html next-page: pages/cmd/basic/man.html
--- ---
The <code>ls</code> command is used to list a directory content or a file.<br> The <code>ls</code> command is used to list a directory content or a file.<br>
The name stands for <i>LiSt</i>. The name stands for <i>LiSt</i>.

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: manual tags: manual
author: Gianmarco De Vita author: Gianmarco De Vita
title: man title: man
previous-page: pages/cmd/basic/info.html previous-page: pages/cmd/basic/ls.html
next-page: pages/cmd/basic/say.html next-page: pages/cmd/basic/open.html
--- ---
The <code>man</code> tool allows you to explore the various utilities The <code>man</code> tool allows you to explore the various utilities
of the Shell. To search for more information about a command, just write</p> of the Shell. To search for more information about a command, just write</p>

View File

@ -5,6 +5,8 @@ category-title: Basic commands
tags: More and less tags: More and less
author: Marzio Lunghi author: Marzio Lunghi
title: more and Less title: more and Less
previous-page: pages/cmd/basic/open.html
next-page: pages/cmd/basic/clear.html
--- ---
Both commands show the content of one or more files and its possible to do a research with Both commands show the content of one or more files and its possible to do a research with
particular flags, but the “less” one allows us to go also backwards while reading the text particular flags, but the “less” one allows us to go also backwards while reading the text

View File

@ -1,5 +1,3 @@
--- ---
layout: page layout: page
category-page: basic category-page: basic
@ -7,6 +5,7 @@ category-title: Basic commands
author: Joy Albertini author: Joy Albertini
tags: directory path mv file tags: directory path mv file
title: mv title: mv
previous-page: pages/cmd/basic/chown.html
--- ---
<p>The <code>mv</code> move a file from a directory to another: <p>The <code>mv</code> move a file from a directory to another:

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: open tags: open
author: Gianmarco De Vita author: Gianmarco De Vita
title: open title: open
previous-page: pages/cmd/basic/openshell.html previous-page: pages/cmd/basic/man.html
next-page: pages/cmd/basic/cd.html next-page: pages/cmd/basic/more-less.html
--- ---
You can open files and folder as new windows through the terminal. You can open files and folder as new windows through the terminal.

View File

@ -5,7 +5,7 @@ category-title: Basic commands
tags: Open the Shell tags: Open the Shell
author: Gianmarco De Vita author: Gianmarco De Vita
title: Open the Shell title: Open the Shell
next-page: pages/cmd/basic/open.html next-page: pages/cmd/basic/terminal-toolbar.html
--- ---
The tool that allows us to interact with the system with the shell is the terminal. The tool that allows us to interact with the system with the shell is the terminal.

View File

@ -5,7 +5,8 @@ category-title: Basic commands
tags: say tags: say
author: Gianmarco De Vita author: Gianmarco De Vita
title: say title: say
previous-page: pages/cmd/basic/man.html previous-page: pages/cmd/basic/clear.html
next-page: pages/cmd/basic/whatis.html
--- ---
You can convert text into audible speech just by writing the command You can convert text into audible speech just by writing the command

View File

@ -5,7 +5,8 @@ category-page: basic
category-title: Basic commands category-title: Basic commands
author: Marzio Lunghi author: Marzio Lunghi
title: MacOS terminal toolbar title: MacOS terminal toolbar
<!--next-page: pages/cmd/basic/ --> <!-- The sequence must be defined --> previous-page: pages/cmd/basic/openshell.html
next-page: pages/cmd/basic/closeshell.html
--- ---
Once the MacOS Terminal app has been opened, a menu bar will appear exactly in the upper Once the MacOS Terminal app has been opened, a menu bar will appear exactly in the upper

View File

@ -5,7 +5,8 @@ category-title: Basic commands
tags: Whatis tags: Whatis
author: Marzio Lunghi author: Marzio Lunghi
title: whatis title: whatis
<!--next-page: pages/cmd/basic/ --> <!-- The sequence must be defined --> previous-page: pages/cmd/basic/say.html
next-page: pages/cmd/basic/info.html
--- ---
The <code>whatis</code> command gives you a brief description of a command. The <code>whatis</code> command gives you a brief description of a command.

View File

@ -4,4 +4,5 @@ category-page: advanced
title: Advanced Commands title: Advanced Commands
--- ---
<!-- Description by Domenico Votta -->
<p class="description-section">In advanced topics we will see advanced commands such as those for text manipulation and some Unix text editors. Text manipulation is very important if you decide to use your computer through the shell, this way you can take the notes or modify and examine text file quickly.</p> <p class="description-section">In advanced topics we will see advanced commands such as those for text manipulation and some Unix text editors. Text manipulation is very important if you decide to use your computer through the shell, this way you can take the notes or modify and examine text file quickly.</p>

View File

@ -3,5 +3,5 @@ layout: topic
category-page: basic category-page: basic
title: Basic Commands title: Basic Commands
--- ---
<!-- Description by Gianmarco De Vita -->
<p class="description-section">If you are new to the shell or a beginner who just want to refresh his knowledge this is the section for you. Move your first steps in this interface by learning and trying this selection of basic commands which allow you to do routine operations in a different way.</p> <p class="description-section">If you are new to the shell or a beginner who just want to refresh his knowledge this is the section for you. Move your first steps in this interface by learning and trying this selection of basic commands which allow you to do routine operations in a different way.</p>

View File

@ -4,4 +4,6 @@ category-page: intermediate
title: Intermediate Commands title: Intermediate Commands
--- ---
<!-- Description by Joao Tomazoni -->
<p class="description-section">This section attempts to be your guide through a wide range of effective and slightly convoluted shell commands: once you get comfortable with working on the terminal and its basics, you will be able to understand further the importance and usefulness of acquiring a solid knowledge of Shell. Most commands in this section are appropriate to your daily tasks as a computer scientist, you can also learn how to script these tasks and automate them. These commands vary from compressing a file and changing group permissions to installing new commands available on diverse online sources. A lot of examples are available for each individual command and their most relevant flags, so that you can learn in an interactive and visual way.</p> <p class="description-section">This section attempts to be your guide through a wide range of effective and slightly convoluted shell commands: once you get comfortable with working on the terminal and its basics, you will be able to understand further the importance and usefulness of acquiring a solid knowledge of Shell. Most commands in this section are appropriate to your daily tasks as a computer scientist, you can also learn how to script these tasks and automate them. These commands vary from compressing a file and changing group permissions to installing new commands available on diverse online sources. A lot of examples are available for each individual command and their most relevant flags, so that you can learn in an interactive and visual way.</p>

View File

@ -3,5 +3,10 @@ layout: topic
category-page: fs category-page: fs
title: Filesystem title: Filesystem
--- ---
<!-- Description by Ricardo Vivanco -->
<p class="description-section">The File System (FS) shell includes various shell-like commands that directly interact with the Hadoop Distributed File System (HDFS) as well as other file systems that Hadoop supports, such as Local FS, HFTP FS, S3 FS, and others. The FS shell is invoked by:
<p>Here we will learn how to interact with the file system...</p> bin/hadoop fs
All FS shell commands take path URIs as arguments. The URI format is scheme://authority/path. For HDFS the scheme is hdfs, and for the Local FS the scheme is file. The scheme and authority are optional. If not specified, the default scheme specified in the configuration is used. An HDFS file or directory such as /parent/child can be specified as hdfs://namenodehost/parent/child or simply as /parent/child (given that your configuration is set to point to hdfs://namenodehost).
Most of the commands in FS shell behave like corresponding Unix commands. Differences are described with each of the commands. Error information is sent to stderr and the output is sent to stdout.</p>