summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-07-27 16:49:09 -0400
committerJune McEnroe <june@causal.agency>2019-07-27 16:49:09 -0400
commit8aff3944f884805789bf474235bc9a6dcb068439 (patch)
tree4deb9816c2dc90a0c6b51011b9ee963074ec6261
parentMove pdf script to Makefile (diff)
downloadsrc-8aff3944f884805789bf474235bc9a6dcb068439.tar.gz
src-8aff3944f884805789bf474235bc9a6dcb068439.zip
Add c11.pdf
Diffstat (limited to '')
-rw-r--r--pdf/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/pdf/Makefile b/pdf/Makefile
index 6d1d1561..91de32b7 100644
--- a/pdf/Makefile
+++ b/pdf/Makefile
@@ -1,4 +1,5 @@
 PDFS += abi.pdf
+PDFS += c11.pdf
 PDFS += elf.pdf
 PDFS += intel-64-opt.pdf
 PDFS += intel-64-sdm-vol-1.pdf
@@ -11,6 +12,7 @@ ELF = http://refspecs.linuxbase.org/elf
 INTEL = https://software.intel.com/sites/default/files/managed
 
 URL_abi.pdf = ${ELF}/x64_64-abi-0.99.pdf
+URL_c11.pdf = http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1570.pdf
 URL_elf.pdf = ${ELF}/elf.pdf
 URL_intel-64-opt.pdf = ${INTEL}/9e/bc/64-ia-32-architectures-optimization-manual.pdf
 URL_intel-64-sdm-vol-1.pdf = ${INTEL}/a4/60/253665-sdm-vol-1.pdf
it-pink/commit/ui-shared.c?id=fe1bb0e765883fa4149fba12daee81b6ae070de3&follow=1'>ui-shared: use placeholder for empty commit subjectChristian Franke Display a placeholder when creating links to commits with empty subjects. This avoids the creation of links of the form <a></a>. 2012-10-27syntax-highlighting.sh: Fix command injection.Jason A. Donenfeld By not quoting the argument, an attacker with the ability to add files to the repository could pass arbitrary arguments to the highlight command, in particular, the --plug-in argument which can lead to arbitrary command execution. This patch adds simple argument quoting. 2012-10-18Fix man page typo.Jason A. Donenfeld 2012-10-17Makefile: Support OpenBSD just like FreeBSDJason A. Donenfeld 2012-10-17Makefile: support FreeBSD libiconv pathsJason A. Donenfeld According to Dan Rue <drue@therub.org>, FreeBSD requires the lib paths to get libiconv from /usr/local. 2012-10-17tests: check for proper html entityJason A. Donenfeld Since we're now properly writing ampersand literals as &amp; instead of as a plain &, we need to update the test accordingly. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2012-10-17ui-log: Add "commit-sort" option for controlling commit orderingTobias Bieniek This makes it possible to use strict commit date ordering or strict topological ordering by passing the corresponding flags to "git log". Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2012-10-17ui-repolist: Add "section-sort" flag to control section sorting.Tobias Bieniek Flag which, when set to "1", will sort the sections on the repository listing by name. Set this flag to "0" if the order in the cgitrc file should be preserved. Default value: "1". Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2012-10-17scan-tree: Unify gitweb.* and cgit.* settings into one config option.Jason A. Donenfeld After some back and forth with Jamie and René, it looks like the git config semantics are going to be like this: - gitweb.category maps to the cgit repo config key "section" - gitweb.description maps to the cgit repo config key "desc" - gitweb.owner maps to the cgit repo config key "owner" - cgit.* maps to all cgit repo config keys This option can be enabled with "enable-git-config=1", and replaces all previous "enable-gitweb-*" config keys. The order of operations is as follows: - git config settings are applied in the order that they exist in the git config file - if the owner is not set from git config, get the owner using the usual getpwuid call - if the description is not set from git config, look inside the static $path/description file - if section-from-path=1, override whatever previous settings were inside of git config using the section-from-path logic - parse $path/cgitrc for local repo.* settings, that override all previous settings 2012-10-17ui: Remember to print ampersand as proper html entities.William Bell 2012-10-16ui-repolist: Rename section-sort to repository-sort.Jason A. Donenfeld Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2012-10-16repo_config: do not let globals override repo settingsTobias Bieniek This makes it possible to activate the enable_commit_graph, enable_log_filecount, and enable_log_linecount for individual repositories, even if the global setting is "0" (default). The commit that introduced the broken behavior was e189344, and the commit message of that makes it clear that this wasn't the intended behavior. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2012-10-09README: times, they are a-changinJason A. Donenfeld 2012-10-09syntax-highlight: when the file has no extension, assume textFerry Huberts There are 2 situations: 1- empty extension: assuming text is better than highlight producing no output because of a missing argument. 2- no extension at all: assuming text is better than setting the extension to the filename, which is what now happens. Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl> 2012-10-09ui-repolist: do not use agefile if it's date could not be parsedFerry Huberts Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl> 2012-10-09Revert "filters/syntax-highlighting.sh: work around highlight --force bug"Ferry Huberts This reverts commit f50be7fda0a7ab57009169dd5905fcbab8eb5166. An update with the latest highlight landed in EPEL. This new version doesn't have the --force bug, so the workaround can now be removed. Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl> 2012-10-08Makefile: add tag target to generate ctagsJamie Couture Signed-off-by: Jamie Couture <jamie.couture@gmail.com> 2012-10-08ui-repolist: Bold the currently viewed page.Jamie Couture Signed-off-by: Jamie Couture <jamie.couture@gmail.com> 2012-10-02do not write outside heap buffer