toc.html
2.5 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
	"http://www.w3.org/TR/html4/loose.dtd">
<html lang="es">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="robots" content="noindex, nofollow" />
	<title>Guía del usuario de CKFinder</title>
	<style type="text/css">
		body
		{
			margin: 0px;
			font-family: Trebuchet, Trebuchet MS, Arial;
		}
		a { text-decoration: none ; }
		a:hover { text-decoration: underline ; }
		ul { list-style-type: none; padding-left: 20px; margin:0px; }
		li { white-space: nowrap; padding-left:2px; padding-right:2px; }
		.toc
		{
			background-color: #696969;
			color: #f5f5f5;
			margin: 0px;
			font-weight: bold;
			text-align: center;
		}
		.contents { padding: 10px; }
		.active  { color: highlighttext; background-color: highlight; }
	</style>
	<script type="text/javascript">
window.onload = function()
{
	for ( var i = 0 ; i < document.links.length ; i++ )
	{
		var link = document.links[i] ;
		link.target = 'CKDocsMain' ;
		link.innerHTML = ' ' + link.innerHTML + ' ' ;
	}
}
var lastLink = null ;
window.top.SetActiveTopic = function( topicUrl )
{
	var pageName = topicUrl.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] ;
	if ( lastLink )
		lastLink.className = '' ;
	for ( var i = 0 ; i < document.links.length ; i++ )
	{
		var link = document.links[i] ;
		if ( link.href.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] == pageName )
		{
			lastLink = link ;
			link.className = 'active' ;
			return ;
		}
	}
}
	</script>
</head>
<body>
	<p class="toc">
		 Índice
	</p>
	<div class="contents">
		<ul style="padding-left: 0px;">
			<li><a href="001.html">Bienvenido</a></li>
			<li><a href="002.html">La interfaz de CKFinder</a>
				<ul>
					<li><a href="003.html">El panel de carpetas </a></li>
					<li><a href="004.html">El panel de ficheros </a></li>
					<li><a href="005.html">La barra de herramientas </a>
						<ul>
							<li><a href="006.html">Añadir ficheros </a></li>
							<li><a href="007.html">Actualizar</a></li>
							<li><a href="008.html">Configuración</a></li>
							<li><a href="009.html">Ayuda</a></li>
						</ul>
					</li>
					<li><a href="010.html">La barra de Estado </a></li>
					<li><a href="012.html">Menú contextual </a></li>
				</ul>
			</li>
			<li><a href="013.html">Compatibilidad y requerimientos del sistema </a></li>
			<li><a href="011.html">Avisos legales </a></li>
			<li><a href="suggestions.html">¿Sugerencias?</a></li>
		</ul>
	</div>
</body>
</html>