Translations:Printing/164/zh

From Gentoo Wiki
Jump to:navigation Jump to:search
Important
所有URI中特殊字符都应该进行转换一遍正确引用。例如:

smb://BEN-DESKTOP/HP Color LaserJet CP1510 series PCL6

应转换为:

smb://BEN-DESKTOP/HP%20Color%20LaserJet%20CP1510%20series%20PCL6

可以运行以下命令来获取转换后的字符串:

user $python2 -c 'import urllib; print "smb://" + urllib.quote("BEN-DESKTOP/HP Color LaserJet CP1510 series PCL6")'