forked from cakephp/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
116 changed files
with
1,747 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Appendices | ||
########## | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
3.0 Migration Guide | ||
=================== | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
appendices/3-0-migration-guide | ||
appendices/orm-migration | ||
|
||
3.1 Migration Guide | ||
=================== | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
appendices/3-1-migration-guide | ||
|
||
General Information | ||
=================== | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
appendices/cakephp-development-process | ||
appendices/glossary | ||
|
||
|
||
.. meta:: | ||
:title lang=tr: Appendices | ||
:keywords lang=tr: migration guide,migration path,new features,glossary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
3.0 Migration Guide | ||
################### | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
3.1 Migration Guide | ||
################### | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CakePHP Development Process | ||
########################### | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: CakePHP Development Process | ||
:keywords lang=tr: maintenance branch,community interaction,community feature,necessary feature,stable release,ticket system,advanced feature,power users,feature set,chat irc,leading edge,router,new features,members,attempt,development branches,branch development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
Glossary | ||
######## | ||
|
||
.. glossary:: | ||
|
||
routing array | ||
An array of attributes that are passed to :php:meth:`Router::url()`. | ||
They typically look like:: | ||
|
||
['controller' => 'Posts', 'action' => 'view', 5] | ||
|
||
HTML attributes | ||
An array of key => values that are composed into HTML attributes. For example:: | ||
|
||
// Given | ||
['class' => 'my-class', 'target' => '_blank'] | ||
|
||
// Would generate | ||
class="my-class" target="_blank" | ||
|
||
If an option can be minimized or accepts its name as the value, then ``true`` | ||
can be used:: | ||
|
||
// Given | ||
['checked' => true] | ||
|
||
// Would generate | ||
checked="checked" | ||
|
||
plugin syntax | ||
Plugin syntax refers to the dot separated class name indicating classes | ||
are part of a plugin:: | ||
|
||
// The plugin is "DebugKit", and the class name is "Toolbar". | ||
'DebugKit.Toolbar' | ||
|
||
// The plugin is "AcmeCorp/Tools", and the class name is "Toolbar". | ||
'AcmeCorp/Tools.Toolbar' | ||
|
||
dot notation | ||
Dot notation defines an array path, by separating nested levels with ``.`` | ||
For example:: | ||
|
||
Cache.default.engine | ||
|
||
Would point to the following value:: | ||
|
||
[ | ||
'Cache' => [ | ||
'default' => [ | ||
'engine' => 'File' | ||
] | ||
] | ||
] | ||
|
||
CSRF | ||
Cross Site Request Forgery. Prevents replay attacks, double | ||
submissions and forged requests from other domains. | ||
|
||
CDN | ||
Content Delivery Network. A 3rd party vendor you can pay to help | ||
distribute your content to data centers around the world. This helps | ||
put your static assets closer to geographically distributed users. | ||
|
||
routes.php | ||
A file in ``config`` directory that contains routing configuration. | ||
This file is included before each request is processed. | ||
It should connect all the routes your application needs so | ||
requests can be routed to the correct controller + action. | ||
|
||
DRY | ||
Don't repeat yourself. Is a principle of software development aimed at | ||
reducing repetition of information of all kinds. In CakePHP DRY is used | ||
to allow you to code things once and re-use them across your | ||
application. | ||
|
||
PaaS | ||
Platform as a Service. Platform as a Service providers will provide | ||
cloud based hosting, database and caching resources. Some popular | ||
providers include Heroku, EngineYard and PagodaBox | ||
|
||
DSN | ||
Data Source Name. A connection string format that is formed like a URI. | ||
CakePHP supports DSN's for Cache, Database, Log and Email connections. | ||
|
||
|
||
.. meta:: | ||
:title lang=tr: Glossary | ||
:keywords lang=tr: html attributes,array class,array controller,glossary glossary,target blank,dot notation,routing configuration,forgery,replay,router,syntax,config,submissions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
New ORM Upgrade Guide | ||
##################### | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Bake Console | ||
############ | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
bake/usage | ||
bake/development | ||
|
||
.. meta:: | ||
:title lang=tr: Bake Console | ||
:keywords lang=tr: command line interface,development,bake view, bake template syntax,erb tags,asp tags,percent tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Extending Bake | ||
############## | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: Extending Bake | ||
:keywords lang=tr: command line interface,development,bake view, bake template syntax,erb tags,asp tags,percent tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Code Generation with Bake | ||
######################### | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: Code Generation with Bake | ||
:keywords lang=tr: command line interface,functional application,database,database configuration,bash script,basic ingredients,project,model,path path,code generation,scaffolding,windows users,configuration file,few minutes,config,iew,shell,models,running,mysql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Completion Shell | ||
################ | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Running Shells as Cron Jobs | ||
########################### | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: Running Shells as cronjobs | ||
:keywords lang=tr: cronjob,bash script,crontab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Shell Helpers | ||
############# | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
I18N Shell | ||
########## | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: I18N shell | ||
:keywords lang=tr: pot files,locale default,translation tools,message string,app locale,php class,validation,i18n,translations,shell,models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
ORM Cache Shell | ||
############### | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.. _plugin-shell: | ||
|
||
Plugin Shell | ||
############ | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: Plugin Shell | ||
:keywords lang=tr: plugin,assets,shell,load,unload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Interactive Console (REPL) | ||
########################## | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Routes Shell | ||
############ | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.. _upgrade-shell: | ||
|
||
Upgrade Shell | ||
############# | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: Upgrade Shell | ||
:keywords lang=tr: api docs,shell,upgrade |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Contributing | ||
############ | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
contributing/documentation | ||
contributing/tickets | ||
contributing/code | ||
contributing/cakephp-coding-conventions | ||
contributing/backwards-compatibility | ||
|
||
.. meta:: | ||
:title lang=tr: Contributing | ||
:keywords lang=tr: coding conventions,documentation,maxdepth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Backwards Compatibility Guide | ||
############################# | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Coding Standards | ||
################ | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: Coding Standards | ||
:keywords lang=tr: curly brackets,indentation level,logical errors,control structures,control structure,expr,coding standards,parenthesis,foreach,readability,moose,new features,repository,developers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Code | ||
#### | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: Code | ||
:keywords lang=tr: cakephp source code,code patches,test ref,descriptive name,bob barker,initial setup,global user,database connection,clone,repository,user information,enhancement,back patches,checkout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Documentation | ||
############# | ||
|
||
Bu belge şu anda bu sayfa için Türkçe dilinde desteklenmemektedir. | ||
|
||
Yapmak istediğiniz değişiklikleri göndermek için, Github üzerinden istek yollayın ya da bu sayfanın üzerinde bulunan "Improve This Doc" butonuna tıklamaktan lütfen çekinmeyin. | ||
|
||
Bu sayfanın konusu hakkındaki İngilizce kaynağa erişmek için üst taraftaki seçim menüsünü kullanabilirsiniz. | ||
|
||
.. meta:: | ||
:title lang=tr: Documentation | ||
:keywords lang=tr: partial translations,translation efforts,html entities,text markup,asfd,asdf,structured text,english content,markdown,formatted text,dot org,repo,consistency,translator,freenode,textile,improvements,syntax,cakephp,submission |
Oops, something went wrong.