| Server IP : 93.86.61.54 / Your IP : 216.73.216.104 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /bin/ |
Upload File : |
#!/usr/bin/python3
"""
This script is now just a wrapper around the cinnamon-xlet-makepot utility.
It is kept for backwards compatibility as it is currently used by other scripts
(notably the cinnamon-spices-makepot script found in the 3rd party spices repos).
for usage info type:
cinnamon-xlet-makepot -h
* Note that the Javascript arguement is inverted because previously Javascript files
were not scanned by default, but now are.
"""
import os
import sys
args = sys.argv[1:]
if '-h' in args:
print("cinnamon-json-makepot is deprecated - please use cinnamon-xlet-makepot instead\ntype cinnamon-xlet-makepot -h for usage information.")
quit()
if '-i' not in args and '--install' not in args and \
'-r' not in args and '--remove' not in args:
potfile = args.pop()
if '-j' in args:
args.remove('-j')
elif '--js' in args:
args.remove('--js')
else:
args.append('-j')
args.append('-o')
args.append(potfile)
args.append(os.getcwd())
command = 'cinnamon-xlet-makepot'
args.insert(0, command)
os.execvp(command, args)