File indexing completed on 2025-03-16 04:40:46
0001 # SPDX-License-Identifier: GPL-2.0-or-later 0002 # SPDX-FileCopyrightText: 2014 Yuri Chornoivan <yurchor@ukr.net> 0003 0004 function get_files 0005 { 0006 echo bibliography.xml 0007 } 0008 0009 function po_for_file 0010 { 0011 case "$1" in 0012 bibliography.xml) 0013 echo kbibtex_xml_mimetypes.po 0014 ;; 0015 esac 0016 } 0017 0018 function tags_for_file 0019 { 0020 case "$1" in 0021 bibliography.xml) 0022 echo comment 0023 ;; 0024 esac 0025 }