This file contains hidden or 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
| System.getProperty("tomcat.http.port") |
This file contains hidden or 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
| #!/bin/sh | |
| fichierProperties=$1 | |
| repertoireBaseProjet=$2 | |
| fichierRapport=$3 | |
| while read line | |
| do | |
| key=${line%%[ =]*} |
This file contains hidden or 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
| [Desktop Entry] | |
| Exec=/usr/bin/libreoffice --calc --view %f | |
| Name=Ouvrir avec LibreOffice Calc (en lecture seule) | |
| MimeType=application/vnd.ms-excel;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet; | |
| Type=Application | |
| NoDisplay=true | |
| Icon=libreoffice-calc | |
| Name[fr_FR]=Ouvrir avec LibreOffice Calc (en lecture seule) |
This file contains hidden or 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
| SELECT DISTINCT | |
| schemaR.name AS tbname, | |
| '' AS name, | |
| '' AS colno, | |
| CASE | |
| WHEN schemaA.name IS NULL AND schemaB.name IS NOT NULL THEN 'Table créée' | |
| WHEN schemaA.name IS NOT NULL AND schemaB.name IS NULL THEN 'Table supprimée' | |
| END AS typeModif, | |
| '' AS coltype, | |
| '' AS length, |