예제 #1
0
파일: xreport.py 프로젝트: c2corg/v6_api
def set_author(xreport):
    """Set the creator (the user who is an author) of the report.
    """
    set_creator_on_documents([xreport], 'author')
예제 #2
0
파일: xreport.py 프로젝트: sriks123/v6_api
def set_author(xreport):
    """Set the creator (the user who is an author) of the report.
    """
    set_creator_on_documents([xreport], 'author')
예제 #3
0
파일: article.py 프로젝트: c2corg/v6_api
def set_author(article):
    """Set the creator (the user who created an image) on an article.
    """
    set_creator_on_documents([article], 'author')
예제 #4
0
파일: image.py 프로젝트: millerf/v6_api
def set_creator(image):
    """Set the creator (the user who created an image) on an image.
    """
    set_creator_on_documents([image], 'creator')
예제 #5
0
파일: image.py 프로젝트: c2corg/v6_api
def set_creator(image):
    """Set the creator (the user who created an image) on an image.
    """
    set_creator_on_documents([image], 'creator')
예제 #6
0
파일: article.py 프로젝트: c2corg/v6_api
def set_author(article):
    """Set the creator (the user who created an image) on an article.
    """
    set_creator_on_documents([article], 'author')