Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab39e55194 | |||
| a1edea3007 | |||
| db0f87dc00 | |||
| 28e4c21e80 | |||
| 5c5e4b1415 | |||
| 086804edf9 | |||
| 9dc85c8057 | |||
| 9bcbad5d5b |
File diff suppressed because it is too large
Load Diff
1
TODO.md
1
TODO.md
@@ -1,5 +1,4 @@
|
|||||||
# Features à ajouter :
|
# Features à ajouter :
|
||||||
- Sauvegarde du contexte d'authentification en plus des profils
|
- Sauvegarde du contexte d'authentification en plus des profils
|
||||||
- Possibilité de demander la liste de site auquels un user precis a acces
|
- Possibilité de demander la liste de site auquels un user precis a acces
|
||||||
- Copie de site à site
|
|
||||||
- Barre de recherche dans les fichiers HTML exportés
|
- Barre de recherche dans les fichiers HTML exportés
|
||||||
8
examples/bulk_add_members.csv
Normal file
8
examples/bulk_add_members.csv
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
Email
|
||||||
|
user1@contoso.com
|
||||||
|
user2@contoso.com
|
||||||
|
user3@contoso.com
|
||||||
|
manager1@contoso.com
|
||||||
|
designer@contoso.com
|
||||||
|
analyste@contoso.com
|
||||||
|
stagiaire@contoso.com
|
||||||
|
6
examples/bulk_create_sites.csv
Normal file
6
examples/bulk_create_sites.csv
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
Name;Alias;Type;Template;Owners;Members
|
||||||
|
Projet Alpha;projet-alpha;Team;;admin@contoso.com;user1@contoso.com, user2@contoso.com
|
||||||
|
Projet Beta;;Team;;admin@contoso.com;user3@contoso.com, user4@contoso.com
|
||||||
|
Communication RH;;Communication;;rh-admin@contoso.com;manager1@contoso.com, manager2@contoso.com
|
||||||
|
Equipe Marketing;equipe-marketing;Team;;marketing-lead@contoso.com;designer@contoso.com, redacteur@contoso.com
|
||||||
|
Portail Intranet;;Communication;;it-admin@contoso.com;
|
||||||
|
4
examples/bulk_transfer.csv
Normal file
4
examples/bulk_transfer.csv
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
SourceSite;SourceLibrary;DestSite;DestLibrary
|
||||||
|
https://contoso.sharepoint.com/sites/ProjectA;Shared Documents;https://contoso.sharepoint.com/sites/Archive;Shared Documents/ProjectA
|
||||||
|
https://contoso.sharepoint.com/sites/ProjectB;Shared Documents/Reports;https://contoso.sharepoint.com/sites/Archive;Shared Documents/ProjectB/Reports
|
||||||
|
https://contoso.sharepoint.com/sites/HR;Documents RH;https://contoso.sharepoint.com/sites/HR-Backup;Documents RH
|
||||||
|
20
examples/folder_structure.csv
Normal file
20
examples/folder_structure.csv
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Level1;Level2;Level3;Level4
|
||||||
|
Administration;;;
|
||||||
|
Administration;Comptabilite;;
|
||||||
|
Administration;Comptabilite;Factures;
|
||||||
|
Administration;Comptabilite;Bilans;
|
||||||
|
Administration;Ressources Humaines;;
|
||||||
|
Administration;Ressources Humaines;Contrats;
|
||||||
|
Administration;Ressources Humaines;Fiches de paie;
|
||||||
|
Projets;;;
|
||||||
|
Projets;Projet Alpha;;
|
||||||
|
Projets;Projet Alpha;Documents;
|
||||||
|
Projets;Projet Alpha;Livrables;
|
||||||
|
Projets;Projet Beta;;
|
||||||
|
Projets;Projet Beta;Documents;
|
||||||
|
Communication;;;
|
||||||
|
Communication;Interne;;
|
||||||
|
Communication;Interne;Notes de service;
|
||||||
|
Communication;Externe;;
|
||||||
|
Communication;Externe;Communiques de presse;
|
||||||
|
Communication;Externe;Newsletter;
|
||||||
|
35
lang/fr.json
35
lang/fr.json
@@ -106,6 +106,11 @@
|
|||||||
"ph.xfer.site": "https://tenant.sharepoint.com/sites/xxx",
|
"ph.xfer.site": "https://tenant.sharepoint.com/sites/xxx",
|
||||||
"ph.xfer.library": "Documents partagés/sous-dossier",
|
"ph.xfer.library": "Documents partagés/sous-dossier",
|
||||||
"xfer.note": "Seule la version actuelle de chaque fichier est transférée (pas d'historique de versions).",
|
"xfer.note": "Seule la version actuelle de chaque fichier est transférée (pas d'historique de versions).",
|
||||||
|
"chk.xfer.create.folders": "Créer les dossiers manquants",
|
||||||
|
"btn.xfer.csv": "Importer CSV...",
|
||||||
|
"btn.xfer.csv.clear": "Effacer",
|
||||||
|
"lbl.xfer.csv.info": "{0} transfert(s) chargé(s)",
|
||||||
|
"lbl.xfer.report.fmt": "Rapport :",
|
||||||
|
|
||||||
"tab.bulk": " Création en masse ",
|
"tab.bulk": " Création en masse ",
|
||||||
"grp.bulk.list": "Sites à créer",
|
"grp.bulk.list": "Sites à créer",
|
||||||
@@ -137,5 +142,33 @@
|
|||||||
"bulk.status.pending": "En attente",
|
"bulk.status.pending": "En attente",
|
||||||
"bulk.status.creating": "Création...",
|
"bulk.status.creating": "Création...",
|
||||||
"bulk.status.ok": "OK",
|
"bulk.status.ok": "OK",
|
||||||
"bulk.status.error": "Erreur"
|
"bulk.status.error": "Erreur",
|
||||||
|
|
||||||
|
"tab.structure": " Structure ",
|
||||||
|
"grp.struct.csv": "Import CSV",
|
||||||
|
"lbl.struct.desc": "Importez un CSV pour créer une arborescence. Chaque colonne représente un niveau de profondeur.",
|
||||||
|
"btn.struct.csv": "Charger CSV...",
|
||||||
|
"grp.struct.preview": "Aperçu",
|
||||||
|
"grp.struct.target": "Cible",
|
||||||
|
"lbl.struct.library": "Bibliothèque cible :",
|
||||||
|
"ph.struct.library": "Documents partagés",
|
||||||
|
"btn.struct.create": "Créer l'arborescence",
|
||||||
|
"btn.struct.clear": "Effacer",
|
||||||
|
"struct.col.path": "Chemin complet",
|
||||||
|
"struct.col.depth": "Profondeur",
|
||||||
|
|
||||||
|
"tab.versions": " Versions ",
|
||||||
|
"grp.ver.keep": "Versions à conserver",
|
||||||
|
"lbl.ver.count": "Nombre de versions à garder :",
|
||||||
|
"chk.ver.date": "Filtrer aussi par date",
|
||||||
|
"rad.ver.before": "Garder les versions avant le :",
|
||||||
|
"rad.ver.after": "Garder les versions après le :",
|
||||||
|
"grp.ver.scope": "Périmètre",
|
||||||
|
"lbl.ver.library": "Bibliothèque / Dossier :",
|
||||||
|
"ph.ver.library": "Documents partagés",
|
||||||
|
"chk.ver.recursive": "Inclure les sous-dossiers (récursif)",
|
||||||
|
"chk.ver.subsites": "Inclure les sous-sites",
|
||||||
|
"chk.ver.dryrun": "Simulation (aperçu uniquement, aucune suppression)",
|
||||||
|
"btn.ver.run": "Nettoyer les versions",
|
||||||
|
"btn.ver.open": "Ouvrir le rapport"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user