Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0e5f67bfa4 | |||
| 14bb1a7c13 | |||
| a256e30c59 | |||
| 2856964858 | |||
| 3ca58a4da0 | |||
| 2cc9d91f5a | |||
| ee609cfaa4 |
@@ -1,3 +1,4 @@
|
|||||||
|
#Wkf
|
||||||
name: Release zip package
|
name: Release zip package
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@@ -33,7 +34,7 @@ jobs:
|
|||||||
"${{ gitea.server_url }}/api/v1/repos/${{ gitea.repository }}/releases" \
|
"${{ gitea.server_url }}/api/v1/repos/${{ gitea.repository }}/releases" \
|
||||||
-H "Authorization: token ${{ secrets.RELEASE_TOKEN }}" \
|
-H "Authorization: token ${{ secrets.RELEASE_TOKEN }}" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d "{\"tag_name\":\"${{ env.VERSION }}\",\"name\":\"SharePoint ToolBox ${{ env.VERSION }}\",\"body\":\"### Installation\\n1. Télécharger et extraire le zip\\n2. Lancer Sharepoint_ToolBox.ps1 avec PowerShell\\n3. Prérequis : Install-Module PnP.PowerShell\"}" \
|
-d "{\"tag_name\":\"${{ env.VERSION }}\",\"name\":\"SharePoint ToolBox ${{ env.VERSION }}\",\"body\":\"### How to use\\n1. Download and extract the archive\\n2. Launch Sharepoint_ToolBox.ps1 with PowerShell\\n\"}" \
|
||||||
| python3 -c "import sys,json; print(json.load(sys.stdin)['id'])")
|
| python3 -c "import sys,json; print(json.load(sys.stdin)['id'])")
|
||||||
echo "RELEASE_ID=${RELEASE_ID}" >> "$GITHUB_ENV"
|
echo "RELEASE_ID=${RELEASE_ID}" >> "$GITHUB_ENV"
|
||||||
|
|
||||||
|
|||||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -3,3 +3,6 @@
|
|||||||
*.json
|
*.json
|
||||||
!lang/
|
!lang/
|
||||||
!lang/*.json
|
!lang/*.json
|
||||||
|
!wiki/
|
||||||
|
!wiki/*.html
|
||||||
|
!wiki/*.md
|
||||||
@@ -1,4 +1,4 @@
|
|||||||

|

|
||||||
|
|
||||||
Application PowerShell avec interface graphique (WinForms) pour administrer, auditer et exporter des données depuis des sites SharePoint Online.
|
Application PowerShell avec interface graphique (WinForms) pour administrer, auditer et exporter des données depuis des sites SharePoint Online.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 390 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 384 KiB |
BIN
SPToolbox-logo.png
Normal file
BIN
SPToolbox-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 850 KiB |
File diff suppressed because it is too large
Load Diff
3
TODO.md
3
TODO.md
@@ -1,4 +1,5 @@
|
|||||||
# 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
|
- Copie de site à site
|
||||||
|
- Barre de recherche dans les fichiers HTML exportés
|
||||||
49
lang/fr.json
49
lang/fr.json
@@ -90,5 +90,52 @@
|
|||||||
"ph.created.by": "Prénom Nom ou email",
|
"ph.created.by": "Prénom Nom ou email",
|
||||||
"ph.modified.by": "Prénom Nom ou email",
|
"ph.modified.by": "Prénom Nom ou email",
|
||||||
"ph.library": "Chemin relatif optionnel ex : Documents partagés",
|
"ph.library": "Chemin relatif optionnel ex : Documents partagés",
|
||||||
"ph.dup.lib": "Toutes (laisser vide)"
|
"ph.dup.lib": "Toutes (laisser vide)",
|
||||||
|
|
||||||
|
"tab.transfer": " Transfert ",
|
||||||
|
"grp.xfer.source": "Source",
|
||||||
|
"grp.xfer.dest": "Destination",
|
||||||
|
"lbl.xfer.site": "URL du site :",
|
||||||
|
"lbl.xfer.library": "Bibliothèque / Dossier :",
|
||||||
|
"grp.xfer.options": "Options",
|
||||||
|
"chk.xfer.recursive": "Inclure les sous-dossiers (récursif)",
|
||||||
|
"chk.xfer.overwrite": "Écraser les fichiers existants",
|
||||||
|
"btn.xfer.start": "Lancer le transfert",
|
||||||
|
"btn.xfer.verify": "Vérifier",
|
||||||
|
"btn.xfer.open": "Ouvrir le rapport",
|
||||||
|
"ph.xfer.site": "https://tenant.sharepoint.com/sites/xxx",
|
||||||
|
"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).",
|
||||||
|
|
||||||
|
"tab.bulk": " Création en masse ",
|
||||||
|
"grp.bulk.list": "Sites à créer",
|
||||||
|
"btn.bulk.add": "Ajouter un site...",
|
||||||
|
"btn.bulk.csv": "Importer CSV...",
|
||||||
|
"btn.bulk.remove": "Supprimer",
|
||||||
|
"btn.bulk.clear": "Tout effacer",
|
||||||
|
"btn.bulk.create": "Créer tous les sites",
|
||||||
|
"bulk.col.name": "Nom du site",
|
||||||
|
"bulk.col.alias": "Alias URL",
|
||||||
|
"bulk.col.type": "Type",
|
||||||
|
"bulk.col.template": "Template",
|
||||||
|
"bulk.col.owners": "Propriétaires",
|
||||||
|
"bulk.col.members": "Membres",
|
||||||
|
"bulk.dlg.title": "Ajouter un site",
|
||||||
|
"bulk.dlg.title.edit": "Modifier un site",
|
||||||
|
"bulk.lbl.name": "Nom du site :",
|
||||||
|
"bulk.lbl.alias": "Alias URL (après /sites/) :",
|
||||||
|
"bulk.lbl.type": "Type de site :",
|
||||||
|
"bulk.rad.team": "Site d'équipe",
|
||||||
|
"bulk.rad.comm": "Site de communication",
|
||||||
|
"bulk.lbl.template": "Template :",
|
||||||
|
"bulk.lbl.owners": "Propriétaires (séparés par virgule) :",
|
||||||
|
"bulk.lbl.members": "Membres (séparés par virgule) :",
|
||||||
|
"bulk.btn.csv.members": "Importer CSV...",
|
||||||
|
"bulk.none": "(Aucun)",
|
||||||
|
"bulk.ph.owners": "admin@domaine.com, user2@domaine.com",
|
||||||
|
"bulk.ph.members": "user@domaine.com, ...",
|
||||||
|
"bulk.status.pending": "En attente",
|
||||||
|
"bulk.status.creating": "Création...",
|
||||||
|
"bulk.status.ok": "OK",
|
||||||
|
"bulk.status.error": "Erreur"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user