Проверка шаблона шины для iOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pipeFormat.py 475B

10ヶ月前
11ヶ月前
10ヶ月前
11ヶ月前
12345678910111213141516
  1. def pipeFormat(fmtExRecent, fmtMany, fmtRecent, fmtSet, fmtToggle, fmtToggleNil, name, entity):
  2. props = entity.pipes[name]
  3. if "many" in props:
  4. return fmtMany
  5. elif "recent" and "ex" in props:
  6. return fmtExRecent
  7. elif "recent" in props:
  8. return fmtRecent
  9. elif "set" in props:
  10. return fmtSet
  11. elif "toggle" in props:
  12. return fmtToggle
  13. elif "toggleNil" in props:
  14. return fmtToggleNil
  15. return "НИНАЮ"