Changeset 170418a in rtems-docs


Ignore:
Timestamp:
05/18/16 17:47:42 (7 years ago)
Author:
Amar Takhar <verm@…>
Branches:
4.11, 5, master
Children:
489740f
Parents:
bc37517
Message:

Move images to a common directory.

Files:
7 edited
8 moved

Legend:

Unmodified
Added
Removed
  • c_user/overview.rst

    rbc37517 r170418a  
    121121localized to the low level device drivers.
    122122
    123 .. figure:: rtemsarc.png
     123.. figure:: ../images/c_user/rtemsarc.png
    124124         :width: 488
    125125         :height: 100px
     
    147147following figure illustrates this organization:
    148148
    149 .. figure:: rtemspie.png
     149.. figure:: ../images/c_user/rtemspie.png
    150150         :width: 70%
    151151         :align: center
  • c_user/scheduling_concepts.rst

    rbc37517 r170418a  
    328328other system resources.
    329329
    330 .. figure:: states.png
     330.. figure:: ../images/c_user/states.png
    331331         :width: 70%
    332332         :align: center
  • c_user/semaphore_manager.rst

    rbc37517 r170418a  
    242242following tree figure illustrates the valid combinations.
    243243
    244 .. figure:: semaphore_attributes.png
     244.. figure:: ../images/c_user/semaphore_attributes.png
    245245         :width: 90%
    246246         :align: center
  • common/waf.py

    rbc37517 r170418a  
    120120
    121121def html_resources(ctx):
    122         for dir in ["_static", "_templates"]:
    123                 files = ctx.path.parent.find_node("common").ant_glob("%s/*" % dir)
    124                 ctx.path.get_bld().make_node(dir).mkdir() # dirs
     122        for dir_name in ["_static", "_templates"]:
     123                files = ctx.path.parent.find_node("common").ant_glob("%s/*" % dir_name)
     124                ctx.path.get_bld().make_node(dir_name).mkdir() # dirs
    125125
    126126                ctx(
     
    128128                        is_copy     = True,
    129129                        source      = files,
    130                         target      = [ctx.bldnode.find_node(dir).get_bld().make_node(x.name) for x in files]
     130                        target      = [ctx.bldnode.find_node(dir_name).get_bld().make_node(x.name) for x in files]
    131131                )
     132
     133        # copy images
     134#       ctx.path.get_bld().make_node("images").mkdir()
     135#       files = ctx.path.parent.ant_glob("images/**")
     136#       ctx(
     137#               features    = "subst",
     138#               is_copy     = True,
     139#               source      = files,
     140#               target      = [x.srcpath().replace("../", "") for x in files]
     141#       )
     142
     143
    132144
    133145
  • networking/dec_21140.rst

    rbc37517 r170418a  
    6060
    6161
    62 .. image:: images/PCIreg.jpg
     62.. image:: ../images/networking/PCIreg.jpg
    6363
    6464
     
    124124
    125125
    126 .. image:: images/recvbd.jpg
     126.. image:: images/networking/recvbd.jpg
    127127
    128128
  • networking/network_task_structure.rst

    rbc37517 r170418a  
    1010networking application is shown in the following figure:
    1111
    12 .. image:: images/networkflow.jpg
     12.. image:: ../images/networking/networkflow.jpg
    1313
    1414
  • user/start/depend.rst

    rbc37517 r170418a  
    244244Open a 64bit MSYS shell from the Start Menu:
    245245
    246 .. figure:: msys2-minw64-start-menu.png
     246.. figure:: ../../images/msys2-minw64-start-menu.png
    247247  :width: 50%
    248248  :align: center
Note: See TracChangeset for help on using the changeset viewer.