-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #372
- Loading branch information
Showing
7 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
ROOT=.. | ||
|
||
SRCROOT=$(ROOT)/cvssource | ||
DOCROOT=$(SRCROOT)/docs | ||
TESTROOT=$(SRCROOT)/tests | ||
LIBROOT=$(SRCROOT)/lib | ||
CURL=$(ROOT) | ||
|
||
include $(ROOT)/mainparts.mk | ||
include $(ROOT)/setup.mk | ||
|
||
MAINPARTS += _menu.html | ||
MKRELNOTES = ./mk-release-notes.pl | ||
MAN2HTML = roffit --bare | ||
|
||
PAGES = index.html \ | ||
manual.html | ||
|
||
all: $(PAGES) | ||
(cd wcurl-repo && git pull) | ||
|
||
wcurl.gen: wcurl-repo/wcurl.1 | ||
$(MAN2HTML) < $< > wcurl.gen | ||
|
||
manual.html: _manual.html $(MAINPARTS) wcurl.gen | ||
$(ACTION) | ||
|
||
index.html: _index.html $(MAINPARTS) | ||
$(ACTION) | ||
|
||
clean: | ||
rm -f $(PAGES) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#include "_doctype.html" | ||
<html> | ||
<head> <title>wcurl</title> | ||
#include "css.t" | ||
</head> | ||
|
||
#define CURL_URL /wcurl | ||
|
||
#include "_menu.html" | ||
#include "setup.t" | ||
|
||
WHERE1(wcurl) | ||
|
||
<center><img src="wcurl-logo.png" alt="wcurl logo" style="width:70%; padding-top: 8px; padding-bottom: 30px;"> | ||
</center> | ||
|
||
<div class="relatedbox"> | ||
<b>Related:</b> | ||
<br><a href="https://github.com/curl/wcurl">GitHub repo</a> | ||
<br><a href="manual.html">manpage</a> | ||
</div> | ||
<p> | ||
wcurl is a command line tool which lets you download URLs without having to | ||
remember any parameters. | ||
<p> | ||
Invoke wcurl with a list of URLs you want to download and wcurl will pick sane | ||
defaults; using curl under the hood. | ||
|
||
SUBTITLE(Pronunciation) | ||
<p> | ||
"double-u curl" | ||
|
||
#include "_footer.html" | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#include "_doctype.html" | ||
<html> | ||
<head> <title>wcurl - How To Use</title> | ||
#include "css.t" | ||
#include "manpage.t" | ||
</head> | ||
|
||
#define CURL_WCURL | ||
#define CURL_URL wcurl/manual.html | ||
|
||
#include "_menu.html" | ||
#include "setup.t" | ||
|
||
WHERE2(wcurl, "/wcurl/", Manpage) | ||
|
||
TITLE(wcurl manpage) | ||
<div class="relatedbox"> | ||
<b>Related:</b> | ||
<br><a href="https://github.com/curl/wcurl">GitHub repo</a> | ||
<br><a href="/wcurl/">wcurl</a> | ||
</div> | ||
#include "wcurl.gen" | ||
#include "_footer.html" | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#ifndef __MENU | ||
#define __MENU | ||
|
||
#include "setup.t" | ||
|
||
#ifndef NOBODY | ||
|
||
<body> | ||
#endif | ||
|
||
#define SEP <br> | ||
|
||
#define NOW(text) <b>text</b> | ||
#define REF(link,text) <a href=link>text</a> | ||
|
||
<div class="main"> | ||
<div class="menu"> | ||
|
||
<div class="dropdown"> | ||
<a class="dropbtn" href="/">curl.se</a> | ||
</div> | ||
<div class="dropdown"> | ||
<a class="dropbtn" href="/dev/">wcurl</a> | ||
<div class="dropdown-content"> | ||
<a href="https://github.com/curl/wcurl">GitHub repo</a> | ||
<a href="/wcurl/code-review.html">manpage</a> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
START_OF_MAIN | ||
#endif |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.