-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
149 additions
and
249 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,3 @@ Debug | |
build | ||
test_save_config.cfg | ||
.idea | ||
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
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,8 @@ | ||
#projectname, #projectbrief { | ||
color: var(--header-foreground) !important; /* Inherit color from parent */ | ||
text-decoration: none; /* Remove underline */ | ||
} | ||
|
||
#projectname:hover, #projectbrief:hover { | ||
text-decoration: none; /* Ensure no underline on hover */ | ||
} |
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,59 @@ | ||
<!-- HTML header for doxygen 1.9.1--> | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> | ||
<meta http-equiv="X-UA-Compatible" content="IE=9"/> | ||
<meta name="generator" content="Doxygen $doxygenversion"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME--> | ||
<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME--> | ||
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/> | ||
<script type="text/javascript" src="$relpath^jquery.js"></script> | ||
<script type="text/javascript" src="$relpath^dynsections.js"></script> | ||
$treeview | ||
$search | ||
$mathjax | ||
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" /> | ||
$extrastylesheet | ||
</head> | ||
<body> | ||
<div id="top"><!-- do not remove this div, it is closed by doxygen! --> | ||
|
||
<!--BEGIN TITLEAREA--> | ||
<div id="titlearea"> | ||
<table cellspacing="0" cellpadding="0"> | ||
<tbody> | ||
<tr style="height: 56px;"> | ||
<!--BEGIN PROJECT_LOGO--> | ||
<td id="projectlogo"> | ||
<a href="/index.html"> | ||
<img alt="Logo" src="$relpath^$projectlogo"/> | ||
</a> | ||
</td> | ||
<!--END PROJECT_LOGO--> | ||
<!--BEGIN PROJECT_NAME--> | ||
<td id="projectalign" style="padding-left: 0.5em;"> | ||
<a href="/index.html" id="projectname">$projectname | ||
<!--BEGIN PROJECT_NUMBER--> <span id="projectnumber">$projectnumber</span><!--END PROJECT_NUMBER--> | ||
</a> | ||
</td> | ||
<!--END PROJECT_NAME--> | ||
<!--BEGIN !PROJECT_NAME--> | ||
<!--BEGIN PROJECT_BRIEF--> | ||
<td style="padding-left: 0.5em;"> | ||
<div id="projectbrief">$projectbrief</div> | ||
</td> | ||
<!--END PROJECT_BRIEF--> | ||
<!--END !PROJECT_NAME--> | ||
<!--BEGIN DISABLE_INDEX--> | ||
<!--BEGIN SEARCHENGINE--> | ||
<td>$searchbox</td> | ||
<!--END SEARCHENGINE--> | ||
<!--END DISABLE_INDEX--> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
<!--END TITLEAREA--> | ||
<!-- end header part --> |
File renamed without changes
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 |
---|---|---|
@@ -1,17 +1,18 @@ | ||
SRCS := Doxyfile $(shell find ../src/commons -name "*.h") ../README.md | ||
SRCS := $(shell find . -not -path "./build**") $(shell find ../src/commons -name "*.h") ../README.md | ||
|
||
all: html | ||
all: build | ||
|
||
clean: | ||
rm -rf html | ||
rm -rf build | ||
|
||
serve: all | ||
python3 -m http.server -d html | ||
python3 -m http.server -d build/html | ||
|
||
watch: | ||
echo "$(SRCS)" | tr ' ' '\n' | entr -r make serve | ||
|
||
.PHONY: all clean serve watch | ||
|
||
html: $(SRCS) | ||
build: $(SRCS) | ||
doxygen | ||
echo "var menudata = $$(cat navbar.config.json);" > build/html/menudata.js |
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,45 @@ | ||
{ | ||
"children": [ | ||
{ | ||
"text": "Headers", | ||
"url": "#", | ||
"children": [ | ||
{ | ||
"text": "commons", | ||
"url": "#", | ||
"children": [ | ||
{ | ||
"text": "collections", | ||
"url": "#", | ||
"children": [ | ||
{ "text": "list.h", "url": "list_8h.html" }, | ||
{ "text": "dictionary.h", "url": "dictionary_8h.html" }, | ||
{ "text": "queue.h", "url": "queue_8h.html" } | ||
] | ||
}, | ||
{ "text": "bitarray.h", "url": "bitarray_8h.html" }, | ||
{ "text": "config.h", "url": "config_8h.html" }, | ||
{ "text": "log.h", "url": "log_8h.html" }, | ||
{ "text": "memory.h", "url": "memory_8h.html" }, | ||
{ "text": "process.h", "url": "process_8h.html" }, | ||
{ "text": "string.h", "url": "string_8h.html" }, | ||
{ "text": "temporal.h", "url": "temporal_8h.html" }, | ||
{ "text": "txt.h", "url": "txt_8h.html" } | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"text": "Código fuente", | ||
"url": "#", | ||
"children": [ | ||
{ "text": "Repositorio de GitHub ↗", "url": "https://faq.utnso.com.ar/commons" }, | ||
{ "text": "Archivos fuente ↗", "url": "https://faq.utnso.com.ar/commons/tree/master/src/commons" }, | ||
{ "text": "Unit tests ↗", "url": "https://faq.utnso.com.ar/commons/tree/master/tests/unit-tests" } | ||
] | ||
}, | ||
{ "text": "Blog ↗", "url": "https://faq.utnso.com.ar/blog" }, | ||
{ "text": "Guías ↗", "url": "https://faq.utnso.com.ar/docs" }, | ||
{ "text": "Inscripciones ↗", "url": "https://faq.utnso.com.ar/inscripciones" } | ||
] | ||
} |
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
Oops, something went wrong.