-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
9331a87
commit 723505e
Showing
38 changed files
with
4,007 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,120 @@ | ||
/* | ||
@licstart The following is the entire license notice for the | ||
JavaScript code in this file. | ||
Copyright (C) 1997-2017 by Dimitri van Heesch | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation; either version 2 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
@licend The above is the entire license notice | ||
for the JavaScript code in this file | ||
*/ | ||
function toggleVisibility(linkObj) | ||
{ | ||
var base = $(linkObj).attr('id'); | ||
var summary = $('#'+base+'-summary'); | ||
var content = $('#'+base+'-content'); | ||
var trigger = $('#'+base+'-trigger'); | ||
var src=$(trigger).attr('src'); | ||
if (content.is(':visible')===true) { | ||
content.hide(); | ||
summary.show(); | ||
$(linkObj).addClass('closed').removeClass('opened'); | ||
$(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); | ||
} else { | ||
content.show(); | ||
summary.hide(); | ||
$(linkObj).removeClass('closed').addClass('opened'); | ||
$(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); | ||
} | ||
return false; | ||
} | ||
|
||
function updateStripes() | ||
{ | ||
$('table.directory tr'). | ||
removeClass('even').filter(':visible:even').addClass('even'); | ||
} | ||
|
||
function toggleLevel(level) | ||
{ | ||
$('table.directory tr').each(function() { | ||
var l = this.id.split('_').length-1; | ||
var i = $('#img'+this.id.substring(3)); | ||
var a = $('#arr'+this.id.substring(3)); | ||
if (l<level+1) { | ||
i.removeClass('iconfopen iconfclosed').addClass('iconfopen'); | ||
a.html('▼'); | ||
$(this).show(); | ||
} else if (l==level+1) { | ||
i.removeClass('iconfclosed iconfopen').addClass('iconfclosed'); | ||
a.html('►'); | ||
$(this).show(); | ||
} else { | ||
$(this).hide(); | ||
} | ||
}); | ||
updateStripes(); | ||
} | ||
|
||
function toggleFolder(id) | ||
{ | ||
// the clicked row | ||
var currentRow = $('#row_'+id); | ||
|
||
// all rows after the clicked row | ||
var rows = currentRow.nextAll("tr"); | ||
|
||
var re = new RegExp('^row_'+id+'\\d+_$', "i"); //only one sub | ||
|
||
// only match elements AFTER this one (can't hide elements before) | ||
var childRows = rows.filter(function() { return this.id.match(re); }); | ||
|
||
// first row is visible we are HIDING | ||
if (childRows.filter(':first').is(':visible')===true) { | ||
// replace down arrow by right arrow for current row | ||
var currentRowSpans = currentRow.find("span"); | ||
currentRowSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed"); | ||
currentRowSpans.filter(".arrow").html('►'); | ||
rows.filter("[id^=row_"+id+"]").hide(); // hide all children | ||
} else { // we are SHOWING | ||
// replace right arrow by down arrow for current row | ||
var currentRowSpans = currentRow.find("span"); | ||
currentRowSpans.filter(".iconfclosed").removeClass("iconfclosed").addClass("iconfopen"); | ||
currentRowSpans.filter(".arrow").html('▼'); | ||
// replace down arrows by right arrows for child rows | ||
var childRowsSpans = childRows.find("span"); | ||
childRowsSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed"); | ||
childRowsSpans.filter(".arrow").html('►'); | ||
childRows.show(); //show all children | ||
} | ||
updateStripes(); | ||
} | ||
|
||
|
||
function toggleInherit(id) | ||
{ | ||
var rows = $('tr.inherit.'+id); | ||
var img = $('tr.inherit_header.'+id+' img'); | ||
var src = $(img).attr('src'); | ||
if (rows.filter(':first').is(':visible')===true) { | ||
rows.css('display','none'); | ||
$(img).attr('src',src.substring(0,src.length-8)+'closed.png'); | ||
} else { | ||
rows.css('display','table-row'); // using show() causes jump in firefox | ||
$(img).attr('src',src.substring(0,src.length-10)+'open.png'); | ||
} | ||
} | ||
/* @license-end */ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,76 @@ | ||
<!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 1.8.15"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
<title>Sistema de Gerenciamento de Creche: Main Page</title> | ||
<link href="tabs.css" rel="stylesheet" type="text/css"/> | ||
<script type="text/javascript" src="jquery.js"></script> | ||
<script type="text/javascript" src="dynsections.js"></script> | ||
<link href="search/search.css" rel="stylesheet" type="text/css"/> | ||
<script type="text/javascript" src="search/searchdata.js"></script> | ||
<script type="text/javascript" src="search/search.js"></script> | ||
<link href="doxygen.css" rel="stylesheet" type="text/css" /> | ||
</head> | ||
<body> | ||
<div id="top"><!-- do not remove this div, it is closed by doxygen! --> | ||
<div id="titlearea"> | ||
<table cellspacing="0" cellpadding="0"> | ||
<tbody> | ||
<tr style="height: 56px;"> | ||
<td id="projectalign" style="padding-left: 0.5em;"> | ||
<div id="projectname">Sistema de Gerenciamento de Creche | ||
</div> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
<!-- end header part --> | ||
<!-- Generated by Doxygen 1.8.15 --> | ||
<script type="text/javascript"> | ||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */ | ||
var searchBox = new SearchBox("searchBox", "search",false,'Search'); | ||
/* @license-end */ | ||
</script> | ||
<script type="text/javascript" src="menudata.js"></script> | ||
<script type="text/javascript" src="menu.js"></script> | ||
<script type="text/javascript"> | ||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */ | ||
$(function() { | ||
initMenu('',true,false,'search.php','Search'); | ||
$(document).ready(function() { init_search(); }); | ||
}); | ||
/* @license-end */</script> | ||
<div id="main-nav"></div> | ||
</div><!-- top --> | ||
<!-- window showing the filter options --> | ||
<div id="MSearchSelectWindow" | ||
onmouseover="return searchBox.OnSearchSelectShow()" | ||
onmouseout="return searchBox.OnSearchSelectHide()" | ||
onkeydown="return searchBox.OnSearchSelectKey(event)"> | ||
</div> | ||
|
||
<!-- iframe showing the search results (closed by default) --> | ||
<div id="MSearchResultsWindow"> | ||
<iframe src="javascript:void(0)" frameborder="0" | ||
name="MSearchResults" id="MSearchResults"> | ||
</iframe> | ||
</div> | ||
|
||
<div class="header"> | ||
<div class="headertitle"> | ||
<div class="title">Sistema de Gerenciamento de Creche Documentation</div> </div> | ||
</div><!--header--> | ||
<div class="contents"> | ||
</div><!-- contents --> | ||
<!-- start footer part --> | ||
<hr class="footer"/><address class="footer"><small> | ||
Generated by  <a href="http://www.doxygen.org/index.html"> | ||
<img class="footer" src="doxygen.png" alt="doxygen"/> | ||
</a> 1.8.15 | ||
</small></address> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
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,50 @@ | ||
/* | ||
@licstart The following is the entire license notice for the | ||
JavaScript code in this file. | ||
Copyright (C) 1997-2017 by Dimitri van Heesch | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation; either version 2 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
@licend The above is the entire license notice | ||
for the JavaScript code in this file | ||
*/ | ||
function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { | ||
function makeTree(data,relPath) { | ||
var result=''; | ||
if ('children' in data) { | ||
result+='<ul>'; | ||
for (var i in data.children) { | ||
result+='<li><a href="'+relPath+data.children[i].url+'">'+ | ||
data.children[i].text+'</a>'+ | ||
makeTree(data.children[i],relPath)+'</li>'; | ||
} | ||
result+='</ul>'; | ||
} | ||
return result; | ||
} | ||
|
||
$('#main-nav').append(makeTree(menudata,relPath)); | ||
$('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); | ||
if (searchEnabled) { | ||
if (serverSide) { | ||
$('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><div class="left"><form id="FSearchBox" action="'+relPath+searchPage+'" method="get"><img id="MSearchSelect" src="'+relPath+'search/mag.png" alt=""/><input type="text" id="MSearchField" name="query" value="'+search+'" size="20" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)"></form></div><div class="right"></div></div></li>'); | ||
} else { | ||
$('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><span class="left"><img id="MSearchSelect" src="'+relPath+'search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/><input type="text" id="MSearchField" value="'+search+'" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/></span><span class="right"><a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="'+relPath+'search/close.png" alt=""/></a></span></div></li>'); | ||
} | ||
} | ||
$('#main-menu').smartmenus(); | ||
} | ||
/* @license-end */ |
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,25 @@ | ||
/* | ||
@ @licstart The following is the entire license notice for the | ||
JavaScript code in this file. | ||
Copyright (C) 1997-2017 by Dimitri van Heesch | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation; either version 2 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
@licend The above is the entire license notice | ||
for the JavaScript code in this file | ||
*/ | ||
var menudata={children:[ | ||
{text:"Main Page",url:"index.html"}]} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,12 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html><head><title></title> | ||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> | ||
<link rel="stylesheet" type="text/css" href="search.css"/> | ||
<script type="text/javascript" src="search.js"></script> | ||
</head> | ||
<body class="SRPage"> | ||
<div id="SRIndex"> | ||
<div class="SRStatus" id="NoMatches">No Matches</div> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.