This repository has been archived by the owner on Feb 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added pub_time and mirror_time to record when these things happen.
Rearchitected the Makefile stuff, so we can run makefiles inside Python. Update these fields during Makefile and Mirror. Closes #91002 and #91021. Synched gnome-import with DataLayer. update-static no longer runs make, since Makefile does a build. Add some new errors that happen during publishing. Removed user menu. A bit of documentation on the document publishing/Makefile.py system. Moved ERR_ constants into Globals.py. Fix timestamp formatting bug. Added alternating "banded" colors in tables with OddEven class and css. Icons now available in three sizes. Optional "block" layout for doctable, needs more integration still. Show document translations, version, timestamp, etc. Closes #89723.
- Loading branch information
david
committed
Aug 18, 2002
1 parent
71dc1a5
commit b16ccac
Showing
34 changed files
with
707 additions
and
330 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,6 @@ cd $LAMPADAS_LIB | |
./Makefile.py | ||
|
||
# Build outputs | ||
cd $LAMPADAS_CACHE | ||
make -ik | ||
#cd $LAMPADAS_CACHE | ||
#make -ik | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,31 @@ | ||
insert(1, | ||
[Datei nicht gefunden], | ||
[Die Quelldatei befindet sich nicht im CVS-Cache von Lampadas.]) | ||
[Datei nicht gefunden], | ||
[Die Quelldatei befindet sich nicht im CVS-Cache von Lampadas.]) | ||
insert(2, | ||
[Datei nicht beschreibbar], | ||
[Die Quelldatei existiert, ist aber nicht beschreibbar.]) | ||
[Datei nicht beschreibbar], | ||
[Die Quelldatei existiert, ist aber nicht beschreibbar.]) | ||
insert(3, | ||
[Keine Quelldateien], | ||
[Für dieses Dokument sind keine Quelldateien registriert.]) | ||
[Keine Quelldateien], | ||
[Für dieses Dokument sind keine Quelldateien registriert.]) | ||
insert(4, | ||
[Keine Primärdatei], | ||
[Keine der Quelldateien wurde zur Primärdatei erklärt.]) | ||
[Keine Primärdatei], | ||
[Keine der Quelldateien wurde zur Primärdatei erklärt.]) | ||
insert(5, | ||
[Mehrer Primärdateien], | ||
[Mehr als eine Datei wurde zur Primärdatei erklärt.]) | ||
[Mehrer Primärdateien], | ||
[Mehr als eine Datei wurde zur Primärdatei erklärt.]) | ||
insert(6, | ||
[Datei nicht lesbar], | ||
[Die Datei existiert, Lampadas kann aber nicht davon lesen.]) | ||
[Datei nicht lesbar], | ||
[Die Datei existiert, Lampadas kann aber nicht davon lesen.]) | ||
insert(7, | ||
[Cannot determine file format], | ||
[Lampadas cannot determine what format this file is stored in, so it cannot be published.]) | ||
[Cannot determine file format], | ||
[Lampadas cannot determine what format this file is stored in, so it cannot be published.]) | ||
insert(101, | ||
[Could not retrieve remote file.], | ||
[The mirroring system was unable to retrieve a remote file over HTTP or FTP.]) | ||
insert(201, | ||
[Cannot make because a source file is missing.], | ||
[The Make system tried to make the document, but a source file is missing. | ||
Th document will not be publishable until the problem is resolved.]) | ||
insert(202, | ||
[Make command returned an error], | ||
[A command returned a nonzero (failure) exit status, and Make was aborted.]) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,31 @@ | ||
insert(1, | ||
[File not found], | ||
[The source file does not exist in the Lampadas cvs cache.]) | ||
[File not found], | ||
[The source file does not exist in the Lampadas cvs cache.]) | ||
insert(2, | ||
[File not writable], | ||
[The source file exists, but is not writable.]) | ||
[File not writable], | ||
[The source file exists, but is not writable.]) | ||
insert(3, | ||
[No source files], | ||
[No source files are listed for the document.]) | ||
[No source files], | ||
[No source files are listed for the document.]) | ||
insert(4, | ||
[No primary files], | ||
[No source file is designated as primary.]) | ||
[No primary files], | ||
[No source file is designated as primary.]) | ||
insert(5, | ||
[Multiple primary files], | ||
[More than one file is designated as primary.]) | ||
[Multiple primary files], | ||
[More than one file is designated as primary.]) | ||
insert(6, | ||
[File not readable], | ||
[The file exists, but Lampadas cannot read it.]) | ||
[File not readable], | ||
[The file exists, but Lampadas cannot read it.]) | ||
insert(7, | ||
[Cannot determine file format], | ||
[Lampadas cannot determine what format this file is stored in, so it cannot be published.]) | ||
[Cannot determine file format], | ||
[Lampadas cannot determine what format this file is stored in, so it cannot be published.]) | ||
insert(101, | ||
[Could not retrieve remote file.], | ||
[The mirroring system was unable to retrieve a remote file over HTTP or FTP.]) | ||
insert(201, | ||
[Cannot make because a source file is missing.], | ||
[The Make system tried to make the document, but a source file is missing. | ||
Th document will not be publishable until the problem is resolved.]) | ||
insert(202, | ||
[Make command returned an error], | ||
[A command returned a nonzero (failure) exit status, and Make was aborted.]) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,31 @@ | ||
insert(1, | ||
[Fichier introuvable], | ||
[Ce fichier n\'existe pas dans le cache du cvs de Lampadas.]) | ||
[Fichier introuvable], | ||
[Ce fichier n\'existe pas dans le cache du cvs de Lampadas.]) | ||
insert(2, | ||
[Fichier protégé en écriture], | ||
[Ce fichier existe, mais est protégé en écriture.]) | ||
[Fichier protégé en écriture], | ||
[Ce fichier existe, mais est protégé en écriture.]) | ||
insert(3, | ||
[Pas de fichier source], | ||
[Pas de fichier source pour ce document.]) | ||
[Pas de fichier source], | ||
[Pas de fichier source pour ce document.]) | ||
insert(4, | ||
[Pas de fichier source principal], | ||
[Pas de fichier source principal.]) | ||
[Pas de fichier source principal], | ||
[Pas de fichier source principal.]) | ||
insert(5, | ||
[Plusieurs fichiers source principaux], | ||
[Plus d'un fichier source principal.]) | ||
[Plusieurs fichiers source principaux], | ||
[Plus d'un fichier source principal.]) | ||
insert(6, | ||
[Fichier illisible], | ||
[Ce fichier existe, mais est illisible.]) | ||
[Fichier illisible], | ||
[Ce fichier existe, mais est illisible.]) | ||
insert(7, | ||
[Cannot determine file format], | ||
[Lampadas cannot determine what format this file is stored in, so it cannot be published.]) | ||
[Cannot determine file format], | ||
[Lampadas cannot determine what format this file is stored in, so it cannot be published.]) | ||
insert(101, | ||
[Could not retrieve remote file.], | ||
[The mirroring system was unable to retrieve a remote file over HTTP or FTP.]) | ||
insert(201, | ||
[Cannot make because a source file is missing.], | ||
[The Make system tried to make the document, but a source file is missing. | ||
Th document will not be publishable until the problem is resolved.]) | ||
insert(202, | ||
[Make command returned an error], | ||
[A command returned a nonzero (failure) exit status, and Make was aborted.]) |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
insert(user, 1) | ||
m4_dnl insert(user, 1) | ||
m4_dnl insert(sysadmin, 3) | ||
insert(main, 2) | ||
insert(admin, 3) | ||
insert(news, 4) | ||
insert(volunteer, 5) | ||
insert(help, 6) | ||
insert(main, 1) | ||
insert(admin, 2) | ||
insert(news, 3) | ||
insert(volunteer, 4) | ||
insert(help, 5) | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
insert(user, [Benutzer]) | ||
insert(main, [Hauptmenü]) | ||
insert(admin, [Adminstratoren]) | ||
insert(news, [Neuigkeiten]) | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
insert(user, [User Menu]) | ||
insert(main, [Main Menu]) | ||
insert(admin, [Admin Menu]) | ||
insert(news, [News Menu]) | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.