Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Fix empty links | Boris Verkhovskiy | 2024-05-19 | -40/+29 |
| | ||||
* | [jquery/tr] fix filename | Boris Verkhovskiy | 2024-05-17 | -1/+1 |
| | ||||
* | Remove unnecessary filenames | Boris Verkhovskiy | 2024-05-17 | -1/+0 |
| | ||||
* | [javascript/tr-tr] Javascript Documentation Translated into Turkish (#4667) | Kaan Kacar | 2024-05-13 | -0/+606 |
| | ||||
* | [python/*] proofread en and ru and all links | Boris Verkhovskiy | 2024-04-26 | -4/+2 |
| | ||||
* | spaces in code and link spans | Boris Verkhovskiy | 2024-04-20 | -8/+8 |
| | ||||
* | trailing newlines | Boris Verkhovskiy | 2024-04-20 | -1/+1 |
| | ||||
* | [typescript/*] Use ts for typescript syntax | Boris Verkhovskiy | 2024-04-19 | -1/+1 |
| | ||||
* | [typescript/*] remove dead links and format | Boris Verkhovskiy | 2024-04-18 | -7/+5 |
| | ||||
* | Move OpenCV, OpenGL, p5, PyQT, Qt Framework, raylib to 'Framework' section. | luminist7 | 2024-04-14 | -2/+2 |
| | ||||
* | [python/tr-tr] add missing quote | Boris Verkhovskiy | 2024-04-07 | -1/+1 |
| | ||||
* | [python/*] remove feedback email request | Boris Verkhovskiy | 2024-04-07 | -6/+0 |
| | ||||
* | Remove leading and trailing empty lines in code blocks | Boris Verkhovskiy | 2024-04-06 | -22/+8 |
| | ||||
* | iBooks -> Apple Books | Boris Verkhovskiy | 2024-04-06 | -1/+1 |
| | ||||
* | Github -> GitHub | Boris Verkhovskiy | 2024-04-04 | -1/+1 |
| | ||||
* | Convert \r\n to \n | Boris Verkhovskiy | 2024-04-04 | -124/+124 |
| | ||||
* | Fix broken 4clojure links | wang sy | 2023-01-14 | -1/+1 |
| | ||||
* | Update c to upercase C | Marcel Ribeiro-Dantas | 2022-08-01 | -1/+1 |
| | ||||
* | Update c# to upercase C# | Marcel Ribeiro-Dantas | 2022-08-01 | -1/+1 |
| | ||||
* | Update c++ to upercase C++ | Marcel Ribeiro-Dantas | 2022-08-01 | -1/+1 |
| | ||||
* | Fix language name | Marcel Ribeiro Dantas, Ph.D | 2022-08-01 | -1/+1 |
| | ||||
* | Fix filename extension for brainfuck file | Marcel Ribeiro Dantas, Ph.D | 2022-07-11 | -1/+1 |
| | ||||
* | Remove GitGuy dead link from git material (close #4314) | Marcel Ribeiro-Dantas | 2022-07-08 | -2/+0 |
| | ||||
* | Merge pull request #4007 from LeaveNhA/ruby/tr-tr | Adam Bard | 2020-09-05 | -0/+1598 |
|\ | | | | | [ruby/tr-tr] Ruby Original Document in Turkish! | |||
| * | Completed Ruby original Turkish document! | LeaveNhA | 2020-09-04 | -0/+1598 |
| | | ||||
* | | Update jquery-tr.html.markdown | Adam Bard | 2020-09-05 | -1/+2 |
| | | | | | | Fix category/language | |||
* | | jQuery Turkish document added. | LeaveNhA | 2020-04-12 | -0/+337 |
|/ | ||||
* | Python 3: Use 'filename: learnpython*.py' (no '3') | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Before renaming, Python 3 filenames were 'learnpython3*.py'. This commit removes the '3' part from the filename. To verify that the filenames were named consistently across translations prior to this commit, and to change this: ``` ack -H 'filename:' python.html.markdown find . -name "python-*.markdown" -exec ack -H 'filename:' {} \; sed -i 's/^filename: learnpython3/filename: learnpython/' \ python.html.markdown find . -name "python-*.markdown" -exec \ sed -i 's/^filename: learnpython3/filename: learnpython/' {} \; ``` | |||
* | Change 'filename:' for Python 2 (legacy) | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | | | | | Before renaming, all Python 2 filenames were 'learnpython-*.py'. This commit renames them to 'learnpythonlegacy-*.py'. To verify that the filenames were named consistently across translations prior to this commit, and to change this: ``` find . -name "pythonlegacy*.markdown" -exec ack filename: {} \; find . -name "pythonlegacy*.markdown" -exec \ sed -i 's/^filename: learnpython/filename: learnpythonlegacy/' {} \; ``` | |||
* | Python 3: 'language: Python' | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | | Instead of listing 'language: python3' for Python 3, use language: Python as #3450 does. ``` find . -iname "python-*.markdown" -exec \ sed -i 's/language: python3/language: Python/' {} \; ``` | |||
* | Python 2 'language': Python 2 (legacy) | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | Instead of listing 'language: python' for Python 2, use language: Python 2 (legacy) ``` find . -iname "*pythonlegacy*" -exec \ sed -i 's/^language: .*/language: Python 2 (legacy)/' {} \; ``` | |||
* | Switch links: 'python3 <-> python' and 'python <-> pythonlegacy' | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | The list of references is exhausted by running 'ack docs/python'. | |||
* | Rename Python 3 markdown files into 'python' | Simon Shine | 2020-02-12 | -0/+0 |
| | | | | | | | | ``` for f in $(find . -iname "*python3*" | grep -vE 'git'); do fnew=$(echo "$f" | sed 's/python3/python/') git mv "$f" "$fnew" done | |||
* | Rename Python 2 markdown files into 'pythonlegacy' | Simon Shine | 2020-02-12 | -0/+0 |
| | | | | | | | | | ``` for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do flegacy=$(echo "$f" | sed 's/python/pythonlegacy/') git mv "$f" "$flegacy" done ``` | |||
* | [c/tr] Fix book link | Heitor Pascoal de Bittencourt | 2019-10-08 | -1/+1 |
| | ||||
* | Merge pull request #3609 from mtnylnky/master | Divay Prakash | 2019-08-21 | -0/+125 |
|\ | | | | | Sql file added for Turkish | |||
| * | Sql file added for Turkish | Metin Yalçınkaya | 2019-08-17 | -0/+125 |
| | | | | | | Sql file created and added for Turkish language | |||
* | | [Edn/tr-tr] (#3607) | Seçkin Kükrer | 2019-08-21 | -0/+157 |
| | | | | | | | | | | | | | | | | * Added EDN documentation in Turkish * Contribution field added. Translation field added. Fixed file name. * Contributor field fixed, again. Added lang meta information. | |||
* | | [Clojure/tr-tr] Fix on Contributors field. (#3608) | Seçkin Kükrer | 2019-08-20 | -0/+1 |
|/ | | | | | | | * Added myself as a Contributor because this documentation is not just translation. Thank you for notice! * Same old pit-fall. 🤦 | |||
* | Update clojure-tr.html.markdown | Adam Bard | 2019-02-10 | -0/+1 |
| | ||||
* | Merge pull request #3458 from sanindya-iiitd/patch-1 | Andre Polykanine | 2019-02-09 | -1/+1 |
|\ | | | | | [python/all] Type correction for the output of math.sqrt() | |||
| * | Type correction for the output of math.sqrt() propagated across versions and ↵ | Anindya Srivastava | 2019-02-06 | -1/+1 |
| | | | | | | | | languages | |||
* | | Fix typo in fix for #3461 | Divay Prakash | 2019-02-05 | -1/+1 |
| | | ||||
* | | Fix #3461 | Divay Prakash | 2019-02-05 | -1/+2 |
| | | ||||
* | | [clojure/tr] Fix typo | Andre Polykanine | 2019-02-03 | -1/+1 |
| | | ||||
* | | Fixes: removed forgotten lines, fix contributors area. | LeaveNhA | 2019-02-01 | -5/+5 |
| | | ||||
* | | Insert more examples, for different, simple perspective. | LeaveNhA | 2019-01-21 | -0/+489 |
|/ | ||||
* | Dosya adı değiştirildi | Nuri Akman | 2019-01-15 | -0/+0 |
| | ||||
* | Düzeltmeler yapıldı | Nuri Akman | 2019-01-15 | -42/+33 |
| | ||||
* | Turkish HTML file added. | Kemal MUTLU | 2019-01-15 | -0/+165 |
| |