[DEL] Clean up files

master
Olivier DOSSMANN 2016-01-21 22:35:23 +01:00
parent 820fa8f2b6
commit 7a07f7be77
15 changed files with 0 additions and 176 deletions

View File

@ -1,10 +0,0 @@
# [[Category name]]Description
[[Domaines]]Liste des domaines recensés
# Link title ## HTTP website address ## Link description ## Image filename
#Install Party##http://ip.depotoi.re/##Règles pour faire une Install Party##devices/computer.png
#Lerna##http://lerna.depotoi.re/##Site d'une connaissance éloignée##emblems/emblem-favorite.png
#L'auteur##http://m.depotoi.re/##Contacter l'auteur##status/meeting-chair.png
#Portedesetoiles##http://portedesetoiles.depotoi.re/##Site en travaux permanent sur Stargate SG-1##places/bookmarks.png
#Dépôt Nanoblogger##http://nanoblogger.depotoi.re/##Dépôt pour Nanoblogger##apps/system-file-manager.png
#Dépotoire##http://f.depotoi.re/##Dépôt par défaut de Dépotoire##apps/system-file-manager.png
Arche à blogs##http://arche.depotoi.re##Une arche complète de blogs##actions/go-home.png

View File

@ -1,6 +0,0 @@
[[Projets]]Ensemble des projets hébergés sur la plateforme Dépotoire
BlogBox##http://blogbox.depotoi.re##Projet de blog à la maison sur une petite machine##apps/utilities-file-archiver.png
ELI##http://eli.depotoi.re##Badge StatusNet pour son site web##actions/view-pim-notes.png
Makefly##http://makefly.depotoi.re##Projet de blog statique pour les geeks##makefly-48x48.gif
PorteAil##http://porteail.depotoi.re##Projet de création d'un portail web statique##actions/office-chart-ring.png
Rave Comment##http://rave.depotoi.re/##Service de commentaire##rave.png

View File

@ -1,4 +0,0 @@
[[Outils]]Quelques outils dont dispose Dépotoire
Almanax Dofus##http://almanax.depotoi.re##Outil de prévisualisation des 6 prochains jours de l'Almanax de Dofus##dofus.png
Forge##http://forge.depotoi.re##Outil de gestion de projet##forge_64.png
Lighty Dmap##http://dmap.depotoi.re##Carte des ressources Dofus##dofus.png

View File

@ -1,5 +0,0 @@
# This is a comment
[[Example category]]The description of my category
Are you lost?##http://perdu.com##Go to perdu.com website##apps/preferences-system-session-services.png
Exalead##http://exalead.fr##Visit Exalead##apps/preferences-web-browser-shortcuts.png
Google PorteAil Search##http://www.google.com/search?q=porteail&ie=utf-8&oe=utf-8&client=ubuntu&channel=fs##Search PorteAil on Google##

View File

@ -1,58 +0,0 @@
#!/usr/bin/env lua
-- display.lua
-- Display content of a file and attempt to match some specific words
-- author: Olivier DOSSMANN (olivier+lua@dossmann.net)
--[[ requirement ]]--
require 'lfs' -- apt-get install liblua5.1-filesystem0 || luarocks install luafilesystem
function process(filepath)
-- parse given file
for line in io.lines(filepath) do
-- check if this line is a comment ("# my comment"), a category ("[[My category]]Its description") or an element ("Title##Description##URL##Image")
is_comment = string.find(line, '^#+.*')
is_title = string.find(line, '%[%[(.*)%]%](.*)')
is_element = string.find(line, '(.*)##(.*)##(.*)##(.*)')
if is_comment then
-- do nothing because it's a comment
elseif is_title then
title = ''
for t in string.gmatch(line, '%[%[(.*)%]%].*') do title = title .. t end
description =''
for d in string.gmatch(line, '%[%[.*%]%](.*)') do description = description .. d end
print("TITLE: " .. '\n\t' .. title .. '\n\t' .. description)
elseif is_element then
title = ''
description = ''
url = ''
img = ''
for t in string.gmatch(line, '(.*)##.*##.*##.*') do title = title .. t end
for d in string.gmatch(line, '.*##(.*)##.*##.*') do description = description .. d end
for u in string.gmatch(line, '.*##.*##(.*)##.*') do url = url .. u end
for i in string.gmatch(line, '.*##.*##.*##(.*)') do img = img .. i end
print("ELEMENT: " .. '\n\t' .. title .. '\n\t' .. description .. '\n\t' .. url .. '\n\t' .. img)
end
end
end
function help()
print('Usage: ' .. arg[0] .. ' FILE...')
end
if arg and table.getn(arg) > 0 then
for i, file in pairs(arg) do
if i > 0 then
attr = lfs.attributes(file)
if attr and attr.mode == 'file' then
process(file)
else
print('INFO: ' .. file .. ' is not a file or doesn\'t exists.')
end
end
end
else
print('WARNING: No argument given.')
help()
os.exit(1)
end

View File

@ -1,5 +0,0 @@
# [[Category name]]Description
[[Education]]Education topic
# Link title ## HTTP website address ## Link description ## Image filename
Seeks##http://www.seeks-project.info/search.php/websearch-hp##Decentralized search meta-engine##apps/nepomuk.png
OOo4kids##http://wiki.ooo4kids.org/index.php/Main_Page/fr##Free desktop software for 7-12 year old kids##apps/okteta.png

View File

@ -1,8 +0,0 @@
# [[Category name]]Description
[[Miscellaneous]]Some elements
# Link title ## HTTP website address ## Link description ## Image filename
Inkscape##http://inkscape.org/##Vectorial creation software##apps/inkscape.png
Wine##http://www.winehq.org/##Use Windows tools on Linux, BSD, Mac or Solaris##apps/wine.png
Dogmazic##http://www.dogmazic.net/##Free music##devices/multimedia-player.png
Vim##http://www.vim.org/##Shell mode editor##apps/utilities-terminal.png
ChiliProject##https://www.chiliproject.org/##Project management tool##status/script-error.png

View File

@ -1,9 +0,0 @@
<!-- Category - ${CATEG_TITLE} -->
<h2>${CATEG_TITLE}</h2>
<p>${CATEG_DESC}</p>
<ul class="ensemble_element">
${ELEMENTS}
</ul>
<div class="espace">&nbsp;</div>

View File

@ -1,10 +0,0 @@
<li>
<a class="cadre" href="${ELEMENT_URL}" title="${ELEMENT_DESC}">
<span class="element">
${ELEMENT_TITLE} <br />
<img src="${IMG_URL}" alt="${IMG_DESC}" title="${ELEMENT_DESC}" />
</span>
</a>
</li>

File diff suppressed because one or more lines are too long

View File

@ -1,31 +0,0 @@
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<title>${TITLE}</title>
<!--[if lt IE 9]>
<script src="html5.js" type="text/javascript"></script>
<![endif]-->
<link rel="stylesheet" href="${DEFAULT_CSS}" type="text/css" media="all" title="${CSS_NAME}" />
<link rel="stylesheet" href="${CSS_COLOR}" type="text/css" media="all" title="${CSS_NAME}" />
</head>
<body>
<!-- Header -->
<header>
<h1>${PORTEAIL_TITLE}</h1>
</header>
<!-- Content -->
<div id="corps">
${INTRODUCTION}
${CONTENT}
</div>
${MENU}
<!-- Footer -->
<footer>
<p>${POWERED_BY} <a href="http://porteail.depotoi.re/" title="${POWERED_BY_DESC}">PorteAil ${VERSION}</a></p>
</footer>
</body>
</html>

View File

@ -1,4 +0,0 @@
<!-- Webpage introduction -->
<p>Depotoire est un ensemble de sites webs divers et vari&eacute;s qui ne suivent aucune r&egrave;gle particuli&egrave;re.</p>
<p>Tout ce qu'il faut pour qu'un site existe : avoir la permission du possesseur de ce domaine.</p>

View File

@ -1,11 +0,0 @@
<!-- Webpage introduction -->
<p>
This message permit to introduce our webpage subject and quickly explain why this website exists, why all these categories, elements, etc.<br />
This one is editable in <em>introduction.html</em> file located in <em>composants</em> directory from main <a href="http://gitorious.org/porteail/" title="Go to PorteAil repositories">PorteAil</a> directory.
</p>
<p>
For more information about <a href="http://gitorious.org/porteail/" title="Go to PorteAil repositories">PorteAil</a>, please refer to <em>README.md</em> file situated in <a href="http://gitorious.org/porteail/" title="Se rendre sur le dépôt de fichier de PorteAil">PorteAil</a> main directory.
</p>
<p>
Categories are filled in <em>categ</em> directory in which some example file should be talkative for you. This will allow you to generate your first <a href="http://gitorious.org/porteail/" title="Go to PorteAil repositories">PorteAil</a> homepage.
</p>

View File

@ -1,11 +0,0 @@
<!-- Webpage menu -->
<nav id="cartable">
<div class="sacoche">
<h3>Menu</h3>
<ul>
<li>Link 1</li>
<li>Link 2</li>
<li>Link 3</li>
</ul>
</div>
</nav>

View File

@ -6,7 +6,6 @@ title = "Nos projets"
+++
* {{< button title="Forge" href="http://forge.depotoi.re" src="forge_64.png" >}}
* {{< button title="BlogBox" href="http://blogbox.depotoi.re" src="apps/utilities-file-archiver.png" >}}
* {{< button title="ELI" href="http://eli.depotoi.re" src="actions/view-pim-notes.png" >}}
* {{< button title="Makefly" href="http://makefly.depotoi.re" src="makefly-48x48.gif" >}}
* {{< button title="hugo-portal" href="http://github.com/blankoworld/hugo-portal" src="actions/office-chart-ring.png" >}}