Skip to content

Commit

Permalink
use "**" for bold formatting instead "'''"
Browse files Browse the repository at this point in the history
Done via

    find . -iname '*.rst' -exec sed -r -i "s/'''([^']+)'''/\*\*\1\*\*/g" {} \;''"
  • Loading branch information
rutsky committed Jan 23, 2015
1 parent 4ae586e commit 78cbe80
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dijit/Tree.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Tree can interface to any class implementing the model API,
but typically interfaces through the :ref:`ObjectStoreModel <dijit/tree/ObjectStoreModel>`,
which itself interfaces with the powerful :ref:`dojo.store <dojo/store>` API.

It's important to note that the tree is merely a '''view''' onto the model.
It's important to note that the tree is merely a **view** onto the model.
The model is in charge of tasks like connecting to the data source (often on the server), lazy loading, and notifying the tree of changes to the data.
It's also in charge of handle drop operations, when someone drags and drops an item onto the tree.

Expand Down
2 changes: 1 addition & 1 deletion dojox/data/AtomReadStore.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The following attributes are available on items returned from the AtomReadStore:
+-----------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|category |An array of tags for the entry. Each category is a JSON object containing two values, 'scheme' and 'term'. E.g. '''store.getValue(item, 'category').term''' gives the category, or tag, value. |
+-----------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|author |A JSON object containing one or two elements, '''name''' and '''uri'''. The former is the name of the author, the latter is the authors personal uri, or web page. E.g. '''var author = store.getValue(item, 'author'); alert("Name is " + author.name + " and homepage is " + author.uri); |
|author |A JSON object containing one or two elements, **name** and **uri**. The former is the name of the author, the latter is the authors personal uri, or web page. E.g. '''var author = store.getValue(item, 'author'); alert("Name is " + author.name + " and homepage is " + author.uri); |
+-----------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

Query Syntax
Expand Down
6 changes: 3 additions & 3 deletions dojox/date/relative.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ Options
dojox.date.relative.format takes a JavaScript Date object, and an optional kwArgs parameter.

Possible values for the kwArgs are:
* '''locale''': Set if you want to specify a locale. Defaults to current locale.
* '''relativeDate''': Set if you want to calculate relative to a different date. Defaults to the current date and time.
* '''weekCheck''': Set to false if you do not want to do the week-based check (the second condition above)
* **locale**: Set if you want to specify a locale. Defaults to current locale.
* **relativeDate**: Set if you want to calculate relative to a different date. Defaults to the current date and time.
* **weekCheck**: Set to false if you do not want to do the week-based check (the second condition above)
2 changes: 1 addition & 1 deletion dojox/grid/EnhancedGrid/plugins/Filter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ For example:
Thus the filter definition will be sent to the server along with the request.

If you'd like to use a stateful server, which means the filter definition will only be sent when it is defined, and it should be remembered at serverside until it is changed, you can set the '''isStateful''' property:
If you'd like to use a stateful server, which means the filter definition will only be sent when it is defined, and it should be remembered at serverside until it is changed, you can set the **isStateful** property:

.. js ::
Expand Down
2 changes: 1 addition & 1 deletion quickstart/debugging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ the displayed error location will now be correct:
.. image :: debugging7.png
:alt: Debugging with debugAtAllCosts
'''Important!''' you should always remove debugAtAllCosts from production code. It slows down the client unnecessarily. Rather than manually inserting and removing them, I like to delegate that job to a server side language like PHP:
**Important!** you should always remove debugAtAllCosts from production code. It slows down the client unnecessarily. Rather than manually inserting and removing them, I like to delegate that job to a server side language like PHP:

.. html ::
Expand Down
2 changes: 1 addition & 1 deletion util/checkstyle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Checkstyle is a command line tool that generates a report of all JavaScript file
Usage of Command Line
=====================

Open a command window in the util/checkstyle folder. The commands listed below all use '''checkstyle.bat''', which is for MS Windows, but users of Linux and Macs can use '''checkstyle.sh'''.
Open a command window in the util/checkstyle folder. The commands listed below all use **checkstyle.bat**, which is for MS Windows, but users of Linux and Macs can use **checkstyle.sh**.

Run Checkstyle on all Dojo folders
----------------------------------
Expand Down

0 comments on commit 78cbe80

Please sign in to comment.