Ubuntu Pastebin

Paste from dpm at Tue, 17 Mar 2015 15:50:04 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
$ tree edit-here/
edit-here/
├── cache
│   ├── ArticlesGenerator-Readers
│   └── PagesGenerator-Readers
├── content
│   ├── images
│   │   └── settings.gif
│   └── pages
│       ├── apps.md
│       ├── basic.md
│       ├── faq.md
│       ├── get-in-touch.md
│       ├── index.md
│       ├── scopes.md
│       ├── security.md
│       ├── settings.md
│       ├── store.md
│       └── ui.md
├── develop_server.sh
├── fabfile.py
├── generate-pot
├── generate-translations
├── index.html
├── __init__.py
├── Makefile
├── pelicanconf.py
├── pelicanconf.pyc
├── po
│   ├── de.po
│   ├── es.po
│   ├── fr.po
│   ├── help.pot
│   ├── it.po
│   ├── pt.po
│   └── ro.po
├── publishconf.py
├── __pycache__
│   └── q-and-a.cpython-34.pyc
├── q-and-a.py
├── q-and-a.pyc
├── run-tests
├── tests
│   ├── test_files.py
│   ├── test_links.py
│   └── test_translations.py
├── themes
│   ├── phone
│   │   ├── static
│   │   │   ├── css
│   │   │   │   └── app.css
│   │   │   └── js
│   │   │       └── app.js
│   │   └── templates
│   │       ├── base.html
│   │       ├── index.html
│   │       └── page.html
│   └── web
│       ├── static
│       │   ├── css
│       │   │   ├── core-print.css
│       │   │   ├── global-responsive.css
│       │   │   ├── styles.css
│       │   │   └── ubuntu-styles.css
│       │   ├── img
│       │   │   ├── favicon.ico
│       │   │   └── logo-ubuntu-orange.svg
│       │   └── js
│       │       ├── core.js
│       │       ├── global.js
│       │       ├── plugins
│       │       │   ├── Imager.js
│       │       │   └── modernizr.2.7.1.js
│       │       ├── respond.min.js
│       │       ├── scratch.js
│       │       └── yui-combined.min.js
│       └── templates
│           ├── base.html
│           ├── _footer.html
│           ├── _header.html
│           ├── _head.html
│           ├── index.html
│           └── page.html
└── translations.py

20 directories, 62 files
Download as text