summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPete Travis <immanetize@fedoraproject.org>2014-08-21 23:23:23 -0600
committerPete Travis <immanetize@fedoraproject.org>2014-08-21 23:23:23 -0600
commit93c9346aaf50248cd2262e65ea652e6277cbbc6e (patch)
tree5f33b591589bf20ac336215939244ec688a8d31c
parent7e6575e650e358dcdbb7a5b1bc7c6aa7ee0bb918 (diff)
downloadfedora-cookbook-93c9346aaf50248cd2262e65ea652e6277cbbc6e.tar.gz
fedora-cookbook-93c9346aaf50248cd2262e65ea652e6277cbbc6e.tar.xz
fedora-cookbook-93c9346aaf50248cd2262e65ea652e6277cbbc6e.zip
added a productivity chapter, and Ankur's first draft of a taskd recipe
-rw-r--r--en-US/Fedora_Cookbook.xml3
-rw-r--r--en-US/Productivity.xml10
-rw-r--r--en-US/Productivity/taskd.xml47
3 files changed, 59 insertions, 1 deletions
diff --git a/en-US/Fedora_Cookbook.xml b/en-US/Fedora_Cookbook.xml
index dc3864b..4ffc863 100644
--- a/en-US/Fedora_Cookbook.xml
+++ b/en-US/Fedora_Cookbook.xml
@@ -9,6 +9,8 @@
<xi:include href="Documenting_Fedora.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Storage.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+<xi:include href="Productivity.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Communications.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Multimedia.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
@@ -16,7 +18,6 @@
<xi:include href="Cloud.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Virtualization.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Security.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-
<index />
</book>
diff --git a/en-US/Productivity.xml b/en-US/Productivity.xml
new file mode 100644
index 0000000..0b3f3ab
--- /dev/null
+++ b/en-US/Productivity.xml
@@ -0,0 +1,10 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "Fedora_Cookbook.ent">
+%BOOK_ENTITIES;
+]>
+<chapter id="Productivity">
+<title>Productivity</title>
+ <para />
+<xi:include href="Productivity/taskd.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+</chapter>
diff --git a/en-US/Productivity/taskd.xml b/en-US/Productivity/taskd.xml
new file mode 100644
index 0000000..16a33ac
--- /dev/null
+++ b/en-US/Productivity/taskd.xml
@@ -0,0 +1,47 @@
+<?xml version='1.0' encoding='utf-8' ?>
+ <!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+ "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+ <!ENTITY % BOOK_ENTITIES SYSTEM "Fedora_Cookbook.ent">
+ %BOOK_ENTITIES;
+]>
+<!-- Do not edit above this line -->
+<!--
+ Please provide some information so we can give you credit:
+ name: Ankur_Sinha
+ fas_id: ankursinha
+ email: ankursinha@fedoraproject.org
+ article_category: user
+-->
+
+<section id="task_managing">
+ <title>Managing tasks using Taskwarrior</title>
+ <para>
+ Taskwarrior is an open-source cross platform command-line task management tool that allows you to easily capture, annotate, manipulate and present your tasks as well as sync them among your devices. In this recipe, we see how to set up a Taskwarrior server and a set of clients.
+ </para>
+ <section id="task_managing-ingredients">
+ <title>Required Ingredients</title>
+ <!-- list packages, services, other recipes etc that are required -->
+ <itemizedlist>
+ <listitem>
+ <para>
+ <emphasis>taskd</emphasis> from the Fedora repositories - sudo yum install taskd
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>task</emphasis> from the Fedora repositories - sudo yum install task
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>vit</emphasis> - optional - from the Fedora repositories - sudo yum install vit
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>Your favorite text editor.</emphasis> You can use whatever you prefer, but please save them as a plain text file instead of a binary format such as <literal>ODF</literal>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+ </section>