예제 #1
0
def get_cited_by_count(recid):
    """
    Return how many records cite given record.

    @param recid:

    @return: Number of records citing given record
    """
    from invenio.bibrank_citation_searcher import get_cited_by_count
    if recid:
        return get_cited_by_count(recid)
예제 #2
0
 def get_cited_by_count(self):
     return get_cited_by_count(self.recid)