Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
a9e91efe
Commit
a9e91efe
authored
Oct 01, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small fixes thoughout the guide
parent
2fbce2fa
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
11 deletions
+15
-11
README.md
docs/guide/README.md
+2
-2
output-formatter.md
docs/guide/output-formatter.md
+2
-1
start-looking-ahead.md
docs/guide/start-looking-ahead.md
+6
-6
tutorial-advanced-app.md
docs/guide/tutorial-advanced-app.md
+2
-0
tutorial-i18n.md
docs/guide/tutorial-i18n.md
+2
-2
ApiMarkdownLaTeX.php
extensions/apidoc/helpers/ApiMarkdownLaTeX.php
+1
-0
No files found.
docs/guide/README.md
View file @
a9e91efe
...
...
@@ -82,7 +82,7 @@ Working with Databases
*
**TBD**
[
Sphinx
](
db-sphinx.md
)
*
**TBD**
[
Redis
](
db-redis.md
)
*
**TBD**
[
MongoDB
](
db-mongodb.md
)
*
**TBD**
[
ElasticSearch
](
db-elastic
-
search.md
)
*
**TBD**
[
ElasticSearch
](
db-elasticsearch.md
)
Getting Data from Users
...
...
@@ -97,7 +97,7 @@ Getting Data from Users
Displaying Data
---------------
*
**TBD**
[
Data Formatting
](
output-formatt
ing
.md
)
*
**TBD**
[
Data Formatting
](
output-formatt
er
.md
)
*
**TBD**
[
Pagination
](
output-pagination.md
)
*
**TBD**
[
Sorting
](
output-sorting.md
)
*
[
Data Providers
](
output-data-providers.md
)
...
...
docs/guide/output-formatter.md
View file @
a9e91efe
...
...
@@ -68,7 +68,8 @@ For more details about the available properties check out the [[yii\i18n\Formatt
'decimalSeparator' => ',',
'thousandSeparator' => ' ',
'currencyCode' => 'EUR',
];
],
],
```
Formatting Dates
...
...
docs/guide/start-looking-ahead.md
View file @
a9e91efe
...
...
@@ -25,9 +25,9 @@ This section will summarize the Yii resources available to help you be more prod
*
[
Extensions
](
http://www.yiiframework.com/extensions/
)
:
Yii boasts a library of thousands of user-contributed extensions that can be easily plugged into your applications, thereby making your application development even faster and easier.
*
Community
-
[
Forum
](
http://www.yiiframework.com/forum/
)
-
[
GitHub
](
https://github.com/yiisoft/yii2
)
-
[
Facebook
](
https://www.facebook.com/groups/yiitalk/
)
-
[
Twitter
](
https://twitter.com/yiiframework
)
-
[
LinkedIn
](
https://www.linkedin.com/groups/yii-framework-1483367
)
-
Forum:
<http://www.yiiframework.com/forum/>
-
IRC chat: The #yii channel on the freenode network (
<irc:
//
irc
.
freenode
.
net
/
yii
>
)
-
GitHub:
<https://github.com/yiisoft/yii2>
-
Facebook:
<https://www.facebook.com/groups/yiitalk/>
-
Twitter:
<https://twitter.com/yiiframework>
-
LinkedIn:
<https://www.linkedin.com/groups/yii-framework-1483367>
docs/guide/tutorial-advanced-app.md
View file @
a9e91efe
...
...
@@ -87,6 +87,8 @@ Predefined path aliases
-
`@console`
- console directory.
-
`@runtime`
- runtime directory of currently running web application.
-
`@vendor`
- Composer vendor directory.
-
`@bower`
- vendor directory that contains the
[
bower packages
](
http://bower.io/
)
.
-
`@npm`
- vendor directory that contains
[
npm packages
](
https://www.npmjs.org/
)
.
-
`@web`
- base URL of currently running web application.
-
`@webroot`
- web root directory of currently running web application.
...
...
docs/guide/tutorial-i18n.md
View file @
a9e91efe
...
...
@@ -7,8 +7,8 @@ Internationalization (I18N) refers to the process of designing a software applic
various languages and regions without engineering changes. For Web applications, this is of particular importance
because the potential users may be worldwide.
Yii offers several tools that help with internationalisation of a website such as
[
message translation
][]
,
[
number and date formatting
][]
.
Yii offers several tools that help with internationalisation of a website such as
message translation and
number- and date-formatting
.
Locale and Language
-------------------
...
...
extensions/apidoc/helpers/ApiMarkdownLaTeX.php
View file @
a9e91efe
...
...
@@ -41,6 +41,7 @@ class ApiMarkdownLaTeX extends GithubMarkdown
{
list
(
$html
,
$offset
)
=
$this
->
parseApiLinks
(
$text
);
// TODO allow break also on camel case
$latex
=
'\texttt{'
.
str_replace
([
'\\textbackslash'
,
'::'
],
[
'\allowbreak{}\\textbackslash'
,
'\allowbreak{}::\allowbreak{}'
],
$this
->
escapeLatex
(
strip_tags
(
$html
)))
.
'}'
;
return
[
$latex
,
$offset
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment