forked from ScoDoc/ScoDoc
16 lines
304 B
Python
16 lines
304 B
Python
# -*- mode: python -*-
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""essai: ceci serait un module ScoDoc/sco_xxx.py
|
|
"""
|
|
|
|
import types
|
|
|
|
import sco_utils as scu
|
|
|
|
def sco_get_version(context, REQUEST=None):
|
|
"""Une fonction typique de ScoDoc7
|
|
"""
|
|
return """<html><body><p>%s</p></body></html>""" % scu.SCOVERSION
|
|
|