1. 30 11月, 2020 2 次提交
  2. 29 11月, 2020 1 次提交
  3. 28 11月, 2020 2 次提交
  4. 27 11月, 2020 2 次提交
  5. 26 11月, 2020 2 次提交
  6. 24 11月, 2020 1 次提交
  7. 21 11月, 2020 1 次提交
  8. 19 11月, 2020 1 次提交
    • A
      Add cutToFirstSignificantSubdomainWithWWW() · 48645eae
      Azat Khuzhin 提交于
      Sometimes it is odd to get TLD itself from the
      cutToFirstSignificantSubdomain() (since you will not get TLD itself if
      you pass it directly):
      - cutToFirstSignificantSubdomain('org')            -> ""
      - cutToFirstSignificantSubdomain('www.org')        -> org
      - cutToFirstSignificantSubdomain('kernel.org')     -> kernel.org
      - cutToFirstSignificantSubdomain('www.kernel.org') -> kernel.org
      
      So add one more function to get www.org in this case:
      - cutToFirstSignificantSubdomainWithWWW('org')            -> ""
      - cutToFirstSignificantSubdomainWithWWW('www.org')        -> www.org
      - cutToFirstSignificantSubdomainWithWWW('kernel.org')     -> kernel.org
      - cutToFirstSignificantSubdomainWithWWW('www.kernel.org') -> kernel.org
      
      P.S. not sure about the naming though, so it will great if someone has
      suggestion for the name.
      48645eae
  9. 18 11月, 2020 5 次提交
  10. 17 11月, 2020 3 次提交
  11. 16 11月, 2020 1 次提交
  12. 15 11月, 2020 3 次提交
  13. 14 11月, 2020 3 次提交
  14. 13 11月, 2020 9 次提交
  15. 12 11月, 2020 3 次提交
  16. 11 11月, 2020 1 次提交