This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
bpoussin 02123d15cc modification de .spec:
- pour qu'il genere 2 packages (glasnost, glanost-gtk)
- creation de package noarch
- ajout d'une dependance a python-docutils
amelioration du makefile pour la construction du rpm
2003-06-30 16:16:26 +00:00
debian supprimé référence à paquets qui n'eurent qu'un temps 2003-06-30 14:41:11 +00:00
doc poussin@cube:/usr/local/src/PROJET/glasnost/doc$ cat /tmp/cvsbNrzMD 2003-06-25 16:19:19 +00:00
extensions supprimé toute (presque) occurence de lignes > 90 caractères (yep, c'est 80 2003-06-21 19:52:49 +00:00
glasnost-curses Attention : ce commit amène des changements en profondeur et est susceptible 2003-06-02 11:32:41 +00:00
glasnost-gtk option EmailAdmin par dispatcherId, correction glasnost-gtk, début de prise en 2003-06-20 16:33:55 +00:00
glasnost-web - submit du login va vers https quand demandé (ce n'était même pas le cas 2003-06-30 09:18:41 +00:00
po/glasnost-web s/every-articles/every-article/g 2003-06-30 10:04:36 +00:00
redhat modification de .spec: 2003-06-30 16:16:26 +00:00
scripts Ajout d'un script quick & dirty. 2003-06-26 22:27:52 +00:00
servers Correction de _callServer et getServerAccessor, creation de 2003-06-27 21:41:52 +00:00
shared module parsers accessible depuis TAL, parser spip ok quand texte is None 2003-06-30 11:41:22 +00:00
system Ajout de la phrase avertissant que ce projet est financé par l'UCIP. 2003-06-19 22:15:26 +00:00
templates mise à jour templates rap 2003-06-30 13:06:19 +00:00
tests Modification des instructions Meta et ForEach, afin qu'elles gerent mieux le 2003-06-29 21:00:58 +00:00
.cvsignore ajouté glasnost.spec aux fichiers ignorés 2003-06-25 14:29:57 +00:00
COPYING supprimé GPL.txt du répertoire web, fichier COPYING dans la racine, changements 2003-01-24 10:18:30 +00:00
INSTALL encore deux trois mots à la "doc" d'install 2003-02-12 19:59:35 +00:00
Makefile modification de .spec: 2003-06-30 16:16:26 +00:00
README.config (ré-?)implémentation de l'option CacheTime qui était documentée mais n'existait 2003-06-25 15:28:49 +00:00
config.in Ajout de l'option PublicPort a la Gateway. 2003-06-25 14:21:13 +00:00
glasnost-convert-ids Ajout de Sébastien Régnier au copyright. 2003-05-15 16:54:39 +00:00
glasnost-export Ajout de Sébastien Régnier au copyright. 2003-05-15 16:54:39 +00:00
glasnost-import Ajout de Sébastien Régnier au copyright. 2003-05-15 16:54:39 +00:00
glasnost-make-system Ajout d'un "exit 0", dont l'absence faisait planter "make system". 2003-06-02 17:10:18 +00:00
glasnost-start Attention : ce commit amène des changements en profondeur et est susceptible 2003-06-02 11:32:41 +00:00
glasnost-variables-filename Ajout de Sébastien Régnier au copyright. 2003-05-15 16:54:39 +00:00
glasnost-variables.in Suppression des restes de feu le workflow. 2003-06-18 17:06:11 +00:00

README.config

Available configuration options for /etc/glasnost/config
========================================================

General options
---------------

(under [Misc])

# Show debugging information when an error occurs. (boolean, default: false)
Debug = false

# Show special information for debugging TAL
DebugTAL = false

# How many minutes should the cache held files? (default: 15)
CacheTime = 15 

# Expiration time for user session (default: 120)
ExpirationTime = 120

# Use buffered requests (boolean, default: false) (experimental)
UseBufferedRequests = false

# Disable spellchecking (used in preview for textarea)
DisableSpellchecking = false

# Use tables for form layout (bad) (default: false)
UseTablesForFormLayout = false

# Define the directory to look for .py files when not found in DocumentRoot
# (WARNING: no trailing slash)
WebDirectoryPath = 

# Display balloons for form elements
UseBalloonHelp = true

# Cache files? (boolean, default: false)
CacheFiles = false

# Domains to use for translations going through gettext (don't change)
GettextDomains = glasnost-web

Per dispatcher options
----------------------

It is possible to customize several options on a per dispatcher basis,
for example:

[glasnost://a.potential.dispatcher.id]
AdminEmailAddress = fred@localhost
DataDirectoryPath = /var/vhosts/go-there/glasnost-data/
ScriptDirectoryPath = /var/vhosts/go-there/glasnost-scripts/
TalExtensionsDirectoryPath = /var/vhosts/go-there/glasnost-extensions/
TemplateDirectoryPath = %(vardir)s/templates
SendEmailToUsers = true
WelcomeEmailSubject = Welcome on this site
WelcomeEmail-fr = /var/lib/glasnost/welcome.fr

 - SendEmailToUsers: set if the PeopleServer should send emails to users
 - WelcomeEmailSubject: subject for the email sent when a new person registers
 - WelcomeEmail-fr (or any two-letters language code): filename with the
   welcome email

It is also possible to define custom modules to use for different server roles
with:

%(serverRole)s-common = ...
%(serverRole)s-proxy = ...


Per virtual host options
------------------------

It is possible to set some general options to apply only when processing
some host:

[www.example.com]
Debug = true
UseHTTPS = false

The available options are:

BaseSectionLevel:
    Define the base tag for article subtitles  (default: 2 -> <h2>)

CacheFiles:
    Define if Glasnost should cache page results in some circumstances (user
    not logged, no active session...)  (default: false)
    
CacheTime:
    Define (in minutes) how long cached files should stay in cache.
    (default: 15)

Debug:
    Show debugging information when an error occurs. (default: false)

DisableSpellchecking:
    Disable spellchecking (used in <textarea> previews). (default: false)

GettextDomains:
    Allows to add more gettext domains to look in for translations.

ShowFullListInSelectIdForServerRoles:
    Define the server roles for which the whole list should appear in SelectId
    <select> widgets (instead of the last visited objects).
    
UseBalloonHelp:
    Define if the site should provide balloon helps on forms.
    (default: true)

UseBufferedRequests:
    Buffer requests so the whole response is sent to the web browser when it is
    ready  (opposed to serving content as soon as it is available).
    (default: false)

UseHTTPS:
    Define if the site should switch to HTTPS when user logs in.
    (default: false)

UseTablesForFormLayout:
    Define if the site should render forms using tables for the layout.  This
    is bad since tables were only intended for tabular datas but alternatives
    may have problems in obsolete browsers.  (default: false)


WebDirectoryPath:
    Define an additional path where to look for .py files after site
    DocumentRoot and before Glasnost-wide WebDirectoryPath.

It is also possible to define custom modules to use for different server roles
with:

%(serverRole)s-web = ...

Exemple: articles-web = lyonarticles


Per server options
------------------

OnlyForDispatchers
ServerHostName
ServerPort


Gateway specific option
-----------------------

PublicPort:
    Public port of the gateway (eg 8000), which is redirected by the firewall
    to the real ServerPort of the gateway (eg 8001).