~ubuntu-branches/ubuntu/utopic/ubuntu-docs/utopic-proposed

« back to all changes in this revision

Viewing changes to ubuntu-help/C/check_status.sh

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha, James Plate, Jeremy Bicha, Gunnar Hjalmarsson
  • Date: 2012-10-09 00:17:51 UTC
  • Revision ID: package-import@ubuntu.com-20121009001751-tehz2xs44b94uvzi
Tags: 12.10.3
[ James Plate ]
* Use "Super" key instead of "Windows" key on shell-window-switching.page
  (LP: #993770)

[ Jeremy Bicha ]
* Re-merge with gnome-user-docs
* Add "What's new in Ubuntu 12.10?"
* Rewrite the Unity docs, including adding pages for each of the
  default lenses
* "Tap" instead of "type" Alt to close HUD (LP: #992683)
* Fix instructions for changing Compose key setting (LP: #884639)
* Provide keyboard-only instructions for turning on Mouse Keys
  (LP: #1030767)
* Fix typos in lens pages (LP: #1058565)
* Fix spelling of 'hierarchies' (LP: #1058658)
* Change "Super+P" shortcut to "Super+C" (LP: #1049090)

[ Gunnar Hjalmarsson ]
* shell-guest-session.page:
  - Mentioning of the possibility to launch a guest session from the 
    login screen
  - Link to the tutorial "Customize Guest Session" reinserted (It was
    silently removed in revision 104 of lp:ubuntu/precise/ubuntu-docs.)
    (LP: #987788)

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
if [ "x$1" = "x" -o "x$1" = "x--none" ]; then
8
8
    echo " "
9
9
    echo "== NONE =="
10
 
    grep -l "12\.04.*status=\"none" *.page
 
10
    grep -l "12\.10.*status=\"none" *.page
11
11
fi
12
12
if [ "x$1" = "x" -o "x$1" = "x--stub" ]; then
13
13
    echo " "
14
14
    echo "== STUB =="
15
 
    grep -l "12\.04.*status=\"stub" *.page
 
15
    grep -l "12\.10.*status=\"stub" *.page
16
16
fi
17
17
if [ "x$1" = "x" -o "x$1" = "x--incomplete" ]; then
18
18
    echo " "
19
19
    echo "== INCOMPLETE =="
20
 
    grep -l "12\.04.*status=\"incomplete" *.page
 
20
    grep -l "12\.10.*status=\"incomplete" *.page
21
21
fi
22
22
if [ "x$1" = "x" -o "x$1" = "x--draft" ]; then
23
23
    echo " "
24
24
    echo "== DRAFT =="
25
 
    grep -l "12\.04.*status=\"draft" *.page
 
25
    grep -l "12\.10.*status=\"draft" *.page
26
26
fi
27
27
if [ "x$1" = "x" -o "x$1" = "x--review" ]; then
28
28
    echo " "
29
29
    echo "== REVIEW =="
30
 
    grep -l "12\.04.*status=\"review" *.page
 
30
    grep -l "12\.10.*status=\"review" *.page
31
31
fi
32
32
if [ "x$1" = "x" -o "x$1" = "x--candidate" ]; then
33
33
    echo " "
34
34
    echo "== CANDIDATE =="
35
 
    grep -l "12\.04.*status=\"candidate" *.page
 
35
    grep -l "12\.10.*status=\"candidate" *.page
36
36
fi
37
37
if [ "x$1" = "x" -o "x$1" = "x--final" ]; then
38
38
    echo " "
39
39
    echo "== FINAL =="
40
 
    grep -l "12\.04.*status=\"final" *.page
 
40
    grep -l "12\.10.*status=\"final" *.page
41
41
fi
42
42
if [ "x$1" = "x" -o "x$1" = "x--outdated" ]; then
43
43
    echo " "
44
44
    echo "== OUTDATED =="
45
 
    grep -l "12\.04.*status=\"outdated" *.page
 
45
    grep -l "12\.10.*status=\"outdated" *.page
46
46
fi
47
47
 
48
48
if [ "x$1" = "x" ]; then
51
51
if [ "x$1" = "x" -o "x$1" = "x--summary" ]; then
52
52
    echo " "
53
53
    echo "== SUMMARY =="
54
 
    echo "None:                 " `grep "12\.04.*status=\"none" *.page | wc -l`
55
 
    echo "Stub:                 " `grep "12\.04.*status=\"stub" *.page | wc -l`
56
 
    echo "Incomplete:   " `grep "12\.04.*status=\"incomplete" *.page | wc -l`
57
 
    echo "Draft:                " `grep "12\.04.*status=\"draft" *.page | wc -l`
58
 
    echo "Review:       " `grep "12\.04.*status=\"review" *.page | wc -l`
59
 
    echo "Candidate:    " `grep "12\.04.*status=\"candidate" *.page | wc -l`
60
 
    echo "Final:                " `grep "12\.04.*status=\"final" *.page | wc -l`
61
 
    echo "Outdated:     " `grep "12\.04.*status=\"outdated" *.page | wc -l`
 
54
    echo "None:                 " `grep "12\.10.*status=\"none" *.page | wc -l`
 
55
    echo "Stub:                 " `grep "12\.10.*status=\"stub" *.page | wc -l`
 
56
    echo "Incomplete:   " `grep "12\.10.*status=\"incomplete" *.page | wc -l`
 
57
    echo "Draft:                " `grep "12\.10.*status=\"draft" *.page | wc -l`
 
58
    echo "Review:       " `grep "12\.10.*status=\"review" *.page | wc -l`
 
59
    echo "Candidate:    " `grep "12\.10.*status=\"candidate" *.page | wc -l`
 
60
    echo "Final:                " `grep "12\.10.*status=\"final" *.page | wc -l`
 
61
    echo "Outdated:     " `grep "12\.10.*status=\"outdated" *.page | wc -l`
62
62
fi
63
63
echo " "