unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob b05d23a3199264f708975a45f5a16e0ea09ab584 9209 bytes (raw)
name: website/www/help.scm 	 # note: path name is non-authoritative(*)

  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
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
 
(define-module (www help)
  #:export (help))

(define help
  '(html (@ (lang "en"))
	 (head (meta (@ (charset "utf-8")))
	       (meta (@ (name "author")
			(content "GuixSD Contributors")))
	       (meta (@ (name "description")
			(content
			 "GuixSD is GNU's advanced system
distribution. GNU is an operating system which respects the freedom of
computer users. You are free to run the system for any purpose, study
how it works, improve it, and share it with the whole world.")))
	       (meta (@ (name "keywords")
			(content
			 "GNU, FSF, Free Software Foundation, Linux,
Emacs, GCC, Unix, Free Software, Libre Software, Operating System, GNU
Kernel, GNU Hurd, GUix Package Manager, Guile Scheme, Functional
package management")))
	       (meta (@ (name "viewport")
			(content "width=device-width, initial-scale=1.0")))
	       (link (@ (type "text/css")
			(rel "stylesheet")
			(href "/software/guix/static/base/css/base.css")))
	       (link (@ (type "text/css")
			(rel "stylesheet")
			(href "/software/guix/static/base/css/help.css")))
	       (link (@ (type "image/png")
			(rel "icon")
			(href "/software/guix/static/base/img/favicon.png")))
	       (link (@ (rel "license") (href "Pending...")))
	       (title "Help - GuixSD"))
	 (body (div (@ (class "message-box msg-info"))
		    (span (@ (class "msg-label")) "Note")
		    "The Guix System Distribution (GuixSD) is alpha
software. This means it is not production-ready. It may contain bugs
and lack important features. But more than a disclaimer, this is an
invitation to join us in improving it. See "
		    (a (@ (href "/software/guix/contribute/"))
		       "Contributing")
		    ", for more information. We hope you can soon
switch to GuixSD without fear. ")
	       (div (@ (id "header-box"))
		    (a (@ (id "logo") (href "/software/guix/"))
		       (img (@ (src "/software/guix/static/base/img/GuixSD-logo.png")
			       (alt "GuixSD"))))
		    (ul (@ (id "site-nav"))
			(li (a (@ (href "/software/guix/download/"))
			       "Download"))
			(li (a (@ (href "/software/guix/package-list.html"))
			       "Packages"))
			(li (a (@ (href "/software/guix/help/")) "Help"))
			(li (a (@ (href "/software/guix/contribute/"))
			       "Contribute"))
			(li (a (@ (href "/software/guix/donate/"))
			       "Donate"))
			(li (a (@ (href "/software/guix/about/"))
			       "About"))))
	       (div (@ (id "content-box"))
		    (article
		     (h1 "Help")
		     (div (@ (class "text-center"))
			  (div (@ (class "summary-box"))
			       (div (@ (class "text-center"))
				    (img (@ (src "/software/guix/static/base/img/guixsd-manual-icon.png")
					    (alt ""))))
			       (h2 "GuixSD Manual")
			       (p "The documentation about the Guix
System Distribution is available online as part of the GNU Guix
package manager manual.")
			       (a (@ (href "/software/guix/manual/guix.html#GNU-Distribution")
				     (class "hlink-more-dark"))
				  "Read the manual"))
			  (div (@ (class "summary-box"))
			       (div (@ (class "text-center"))
				    (img (@ (src "/software/guix/static/base/img/guix-manual-icon.png")
					    (alt ""))))
			       (h2 "GNU Guix Manual")
			       (p "Documentation for the GNU Guix
package manager is available online. You may also find more
information about Guix by running "
				  (em "info\xa0guix")
				  ".")
			       (a (@ (href "/software/guix/manual/")
				     (class "hlink-more-dark"))
				  "Read the manual"))
			  (div (@ (class "summary-box"))
			       (div (@ (class "text-center"))
				    (img (@ (src "/software/guix/static/base/img/library-icon.png")
					    (alt ""))))
			       (h2 "GNU Manuals")
			       (p "GuixSD is a distribution of the "
				  (a (@ (href "http://www.gnu.org/"))
				     "GNU operating system")
				  ". Most GNU software is documented
and the documentation is available online in various formats. ")
			       (a (@ (href "http://www.gnu.org/doc/doc.en.html")
				     (class "hlink-more-dark"))
				  "Browse the manuals"))
			  (div (@ (class "summary-box"))
			       (div (@ (class "text-center"))
				    (img (@ (src "/software/guix/static/base/img/chat-icon.png")
					    (alt ""))))
			       (h2 "IRC Chat")
			       (p "For real-time support from the
community, you can connect to the "
				  (em "#guix")
				  " channel on irc.freenode.net. There
you can get help about anything related to both the Guix System
Distribution and GNU Guix.")
			       (p "The "
				  (em "#guix")
				  " channel is logged. Previous
conversations can be browsed online. See the "
				  (a (@ (href "https://gnunet.org/bot/log/guix/"))
				     "channel logs")
				  ". ")
			       (a (@ (href "http://webchat.freenode.net/?channels=%23guix")
				     (class "hlink-more-dark"))
				  "Connect"))
			  (div (@ (class "summary-box"))
			       (div (@ (class "text-center"))
				    (img (@ (src "/software/guix/static/base/img/email-icon.png")
					    (alt ""))))
			       (h2 "Mailing lists")
			       (p "Email support from the community is
also available through the following mailing lists. The messages sent
to the lists are public and archived online.")
			       (p (a (@ (href "https://lists.gnu.org/mailman/listinfo/guix-devel"))
				     (b "guix-devel"))
				  (small " ("
					 (a (@ (href "https://lists.gnu.org/archive/html/guix-devel"))
					    "archive")
					 ") ")
				  (br)
				  "Discussion about the development of
GNU Guix and the Guix System Distribution (GuixSD).")
			       (p (a (@ (href "https://lists.gnu.org/mailman/listinfo/bug-guix"))
				     (b "bug-guix"))
				  (small " ("
					 (a (@ (href "https://lists.gnu.org/archive/html/bug-guix"))
					    "archive")
					 ") ")
				  (br)
				  "Bug reports for GNU Guix and the
Guix System Distribution. ")
			       (a (@ (href "https://savannah.gnu.org/mail/?group=guix")
				     (class "hlink-more-dark"))
				  "Check all the lists")))
		     (h2 "Additional Documentation")
		     (ul (li (a (@ (href "http://arxiv.org/abs/1305.4584"))
				(i "Functional Package Management with Guix"))
			     ", presented at the "
			     (a (@ (href "http://www-sop.inria.fr/members/Manuel.Serrano/conferences/els13.html"))
				"2013 European Lisp Symposium (ELS)")
			     ", describes the rationale, design, and
implementation of Guix's packaging API. \t "))
		     (h2 (@ (id "talks")) "Talks")
		     (ul (li "February 2015, "
			     (a (@ (href "https://fosdem.org/2015/schedule/event/the_emacs_of_distros/"))
				"FOSDEM")
			     ": "
			     (a (@ (href "guix-fosdem-20150131.pdf"))
				"slides")
			     ", "
			     (a (@ (href "http://audio-video.gnu.org/video/misc/2015-01__GNU_Guix__The_Emacs_of_Distros.webm"))
				"video")
			     " (WebM; 47 minutes) ")
			 (li "August 2014, "
			     (a (@ (href "http://audio-video.gnu.org/video/ghm2014/"))
				"GNU Hackers Meeting")
			     ": "
			     (a (@ (href "guix-ghm-20140815.pdf"))
				"slides")
			     ", "
			     (a (@ (href "http://audio-video.gnu.org/video/ghm2014/2014-08--courtes--were-building-the-gnu-system--ghm.webm"))
				"video")
			     " (WebM; 60 minutes) ")
			 (li "July 2014, "
			     (a (@ (href "http://www.open-bio.org/wiki/Codefest_2014"))
				"Open Bioinformatics Codefest 2014")
			     ": "
			     (a (@ (href "guix-openbio-codefest-20140709.pdf"))
				"slides"))
			 (li "February 2014, "
			     (a (@ (href "https://fosdem.org/2014/schedule/event/gnuguix/"))
				"FOSDEM")
			     ": "
			     (a (@ (href "guix-fosdem-20140201.pdf"))
				"slides")
			     ", "
			     (a (@ (href "http://video.fosdem.org/2014/H1302_Depage/Sunday/Growing_a_GNU_with_Guix.webm"))
				"video")
			     " (WebM; 55 minutes) ")
			 (li "August 2013, "
			     (a (@ (href "/ghm/2013/paris"))
				"GNU Hackers Meeting")
			     (ul (li (i "GNU Guix: Package without a
scheme!")
				     ", by Andreas: "
				     (a (@ (href "guix-ghm-andreas-20130823.pdf"))
					"slides"))
				 (li (i "Guix, the Computing Freedom
Deployment Tool")
				     ", by Ludovic: "
				     (a (@ (href "guix-ghm-ludo-20130823.pdf"))
					"slides")
				     ", "
				     (a (@ (href "http://audio-video.gnu.org/video/ghm2013/Ludovic_Courtes-GNU_Guix_the_computing_freedom_deployment_tool_.webm"))
					"video")
				     " (WebM; 60 minutes, 127MB) ")))
			 (li "June 2013, "
			     (a (@ (href "http://www-sop.inria.fr/members/Manuel.Serrano/conferences/els13.html"))
				" European Lisp Symposium (ELS)")
			     ": "
			     (a (@ (href "guix-els-20130603.pdf"))
				"slides")
			     ", "
			     (a (@ (href "http://www.nicklevine.org/els2013/ludovic-courtes.mp3"))
				"audio"))
			 (li "July 2012, "
			     (a (@ (href "/ghm/2012/ddorf/"))
				"GNU Hackers Meeting")
			     ": "
			     (a (@ (href "guix-ghm-20120721.pdf"))
				"slides")
			     ", "
			     (a (@ (href "http://audio-video.gnu.org/video/ghm2012/guix.ogv"))
				"video")
			     " (Ogg/"
			     (a (@ (href "http://theora.org/")) "Theora")
			     "; 84 minutes, 88.1MB)"))))
	       (div (@ (id "footer-box"))
		    "copyleft 2015 GuixSD "
		    (a (@ (href "/software/guix/contribute/")
			  (class "hlink-yellow"))
		       "Contributors")
		    ". Made with "
		    (span (@ (class "metta")) "♥")
		    " by humans."))))

debug log:

solving b05d23a ...
found b05d23a in https://yhetil.org/guix-devel/87h9rp2snk.fsf@openmailbox.org/

applying [1/1] https://yhetil.org/guix-devel/87h9rp2snk.fsf@openmailbox.org/
diff --git a/website/www/help.scm b/website/www/help.scm
new file mode 100644
index 0000000..b05d23a

Checking patch website/www/help.scm...
Applied patch website/www/help.scm cleanly.

index at:
100644 b05d23a3199264f708975a45f5a16e0ea09ab584	website/www/help.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).