ajwillia-ms pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=dcf7634cfa92a3d597c27afe2cddb71e25f38973

commit dcf7634cfa92a3d597c27afe2cddb71e25f38973
Author: Andy Williams <a...@andywilliams.me>
Date:   Tue Oct 24 17:41:30 2017 +0100

    Fix links broken by last refactor
---
 pages/develop/efl/advanced/eflgfxfilter/blend.txt  |  4 +-
 pages/develop/efl/advanced/eflgfxfilter/blur.txt   |  4 +-
 pages/develop/efl/advanced/eflgfxfilter/buffer.txt |  6 +--
 pages/develop/efl/advanced/eflgfxfilter/bump.txt   |  2 +-
 pages/develop/efl/advanced/eflgfxfilter/colors.txt |  4 +-
 pages/develop/efl/advanced/eflgfxfilter/curve.txt  |  2 +-
 .../develop/efl/advanced/eflgfxfilter/displace.txt |  4 +-
 pages/develop/efl/advanced/eflgfxfilter/fill.txt   |  4 +-
 .../efl/advanced/eflgfxfilter/fillmodes.txt        |  6 +--
 pages/develop/efl/advanced/eflgfxfilter/grow.txt   |  4 +-
 pages/develop/efl/advanced/eflgfxfilter/mask.txt   |  4 +-
 .../develop/efl/advanced/eflgfxfilter/padding.txt  |  4 +-
 pages/develop/efl/advanced/eflgfxfilter/state.txt  |  4 +-
 .../efl/advanced/eflgfxfilter/transform.txt        |  4 +-
 pages/develop/efl/advanced/eflgfxfilters.txt       | 50 +++++++++++-----------
 pages/program_guide/widgets/basics.txt             |  2 +-
 pages/tutorial/basic/button.txt                    |  2 +-
 pages/tutorial/basic_tutorial.txt                  |  2 +-
 pages/tutorial/javascript_tutorial.txt             |  4 +-
 pages/wiki/syntax.txt                              |  4 +-
 20 files changed, 60 insertions(+), 60 deletions(-)

diff --git a/pages/develop/efl/advanced/eflgfxfilter/blend.txt 
b/pages/develop/efl/advanced/eflgfxfilter/blend.txt
index bceb379c..3eb07121 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/blend.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/blend.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Blend ====
 
@@ -21,4 +21,4 @@ blend ({ src = input, dst = output, ox = 0, oy = 0, color = 
'white', fillmode =
 <code Lua>
 blend ({ color = '#fff8' })
 </code>
-{{:docs:efl:advanced:filter-blend.png|}}
\ No newline at end of file
+{{:docs:efl:advanced:filter-blend.png|}}
diff --git a/pages/develop/efl/advanced/eflgfxfilter/blur.txt 
b/pages/develop/efl/advanced/eflgfxfilter/blur.txt
index f9503bbe..41653f9a 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/blur.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/blur.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Blur ====
 
@@ -43,4 +43,4 @@ blur { 15 }
 blur { 10, ox = 5, oy = 5, color = 'black' }
 blend {}
 </code>
-{{:docs:efl:advanced:filter-dropshadow.png|}}
\ No newline at end of file
+{{:docs:efl:advanced:filter-dropshadow.png|}}
diff --git a/pages/develop/efl/advanced/eflgfxfilter/buffer.txt 
b/pages/develop/efl/advanced/eflgfxfilter/buffer.txt
index 1bad6d4d..75ec4024 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/buffer.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/buffer.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Buffer ====
 
@@ -8,7 +8,7 @@ All buffers have the same size unless they come from an 
external source, in whic
 
 Buffers are either Alpha surfaces (8 bit, values in the range 0-255) or full 
RGBA bitmaps (32 bits).
 
-Various buffers can be combined together with commands such as 
[[:docs:efl:advanced:eflgfxfilter:blend|blend]], 
[[:docs:efl:advanced:eflgfxfilter:blur|blur]], 
[[:docs:efl:advanced:eflgfxfilter:mask|mask]], etc...
+Various buffers can be combined together with commands such as 
[[:develop:efl:advanced:eflgfxfilter:blend|blend]], 
[[:develop:efl:advanced:eflgfxfilter:blur|blur]], 
[[:develop:efl:advanced:eflgfxfilter:mask|mask]], etc...
 
 == Syntax ==
 
@@ -47,4 +47,4 @@ name5 = buffer({ src = "partname" })
 
 Some commands might require the creation of internal buffers, which the script 
can not use directly, and that serve only as intermediate image processing 
surfaces.
 
-This means that the memory usage of a filter operation might be larger than 
just that of the ''input'' and ''output'' buffers.
\ No newline at end of file
+This means that the memory usage of a filter operation might be larger than 
just that of the ''input'' and ''output'' buffers.
diff --git a/pages/develop/efl/advanced/eflgfxfilter/bump.txt 
b/pages/develop/efl/advanced/eflgfxfilter/bump.txt
index 8c749373..b9da266a 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/bump.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/bump.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Bump mapping ====
 
diff --git a/pages/develop/efl/advanced/eflgfxfilter/colors.txt 
b/pages/develop/efl/advanced/eflgfxfilter/colors.txt
index 07bf5115..1dcdd7bc 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/colors.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/colors.txt
@@ -1,10 +1,10 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Colors ====
 
 Many filter operations will take one (or more) color arguments. \\ Since EFL 
1.15, the supported syntax to create colors has expanded using Lua class 
appropriately named ''color''.
 
-<note tip>The color values used in 
[[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]] are **not** premultiplied 
and range from 0 to 255.</note>
+<note tip>The color values used in 
[[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]] are **not** 
premultiplied and range from 0 to 255.</note>
 
 <note important>If alpha is not specified or 0 (in the form '#rgba'), then the 
color will be opaque (i.e. alpha = 255), **unless** the color is ''invisible'' 
or '#0000'.</note>
 
diff --git a/pages/develop/efl/advanced/eflgfxfilter/curve.txt 
b/pages/develop/efl/advanced/eflgfxfilter/curve.txt
index a533b831..08e763b6 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/curve.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/curve.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 === Color curves ===
 
diff --git a/pages/develop/efl/advanced/eflgfxfilter/displace.txt 
b/pages/develop/efl/advanced/eflgfxfilter/displace.txt
index 7d6dbc7b..85d718cd 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/displace.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/displace.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Displacement mapping ====
 
@@ -42,4 +42,4 @@ displace { 'image1', intensity = 20, fillmode = 'stretch', 
dst = a }
 blend { a }
 </code>
 ^ Displacement map ^ Output ^
-|  {{ :docs:efl:advanced:filter-texture.png |}} | {{ 
:docs:efl:advanced:filter-displace.png |}} |
\ No newline at end of file
+|  {{ :docs:efl:advanced:filter-texture.png |}} | {{ 
:docs:efl:advanced:filter-displace.png |}} |
diff --git a/pages/develop/efl/advanced/eflgfxfilter/fill.txt 
b/pages/develop/efl/advanced/eflgfxfilter/fill.txt
index 593d693c..c77d1368 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/fill.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/fill.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Fill ====
 
@@ -30,4 +30,4 @@ padding_set(20)
 fill { output, 'blue', 5, 10, 20, 50 }
 blend { color = 'silver' }
 </code>
-{{:docs:efl:advanced:filter-fillpad.png|}}
\ No newline at end of file
+{{:docs:efl:advanced:filter-fillpad.png|}}
diff --git a/pages/develop/efl/advanced/eflgfxfilter/fillmodes.txt 
b/pages/develop/efl/advanced/eflgfxfilter/fillmodes.txt
index f1edeb91..4b2dd2bc 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/fillmodes.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/fillmodes.txt
@@ -1,8 +1,8 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Fill modes ====
 
-Similar to [[Evas.Fill_Mode]], the 
[[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]] fill modes specify how to 
use an input buffer to paint in a buffer of different size, by stretching or 
repeating the image.
+Similar to [[Evas.Fill_Mode]], the 
[[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]] fill modes specify how 
to use an input buffer to paint in a buffer of different size, by stretching or 
repeating the image.
 
 Here is the list of all accepted fill modes that can be passed as value for  
''fillmode'' arguments (in ''mask'', ''blend'', etc...).
 
@@ -25,4 +25,4 @@ b = buffer{ src = 'image2' }
 padding_set(20)
 fill { color = white }
 blend { src = b, fillmode = 'none' }
-</code>
\ No newline at end of file
+</code>
diff --git a/pages/develop/efl/advanced/eflgfxfilter/grow.txt 
b/pages/develop/efl/advanced/eflgfxfilter/grow.txt
index ffdb5357..7cc65f22 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/grow.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/grow.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Grow and shrink ====
 
@@ -30,4 +30,4 @@ a = buffer { 'rgba' }
 blend { dst = a }
 grow { -4, src = a }
 </code>
-{{:docs:efl:advanced:filter-shrink.png|}}
\ No newline at end of file
+{{:docs:efl:advanced:filter-shrink.png|}}
diff --git a/pages/develop/efl/advanced/eflgfxfilter/mask.txt 
b/pages/develop/efl/advanced/eflgfxfilter/mask.txt
index 278310b2..e2b17894 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/mask.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/mask.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Masking and texturing ====
 
@@ -37,4 +37,4 @@ curve ({ points = p, src = a, dst = a })
 blend ({ color = 'black' })
 mask ({ mask = a, color = 'cyan' })
 </code>
-{{:docs:efl:advanced:filter-innershadow.png|}}
\ No newline at end of file
+{{:docs:efl:advanced:filter-innershadow.png|}}
diff --git a/pages/develop/efl/advanced/eflgfxfilter/padding.txt 
b/pages/develop/efl/advanced/eflgfxfilter/padding.txt
index 4b039e5b..d9e25baa 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/padding.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/padding.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Padding ====
 
@@ -30,4 +30,4 @@ grow ({ 30, dst = fat })
 blur ({ 40, src = fat, color = 'white' })
 blend ({ color = 'darkblue' })
 </code>
-{{:docs:efl:advanced:filter-padding.png|}}
\ No newline at end of file
+{{:docs:efl:advanced:filter-padding.png|}}
diff --git a/pages/develop/efl/advanced/eflgfxfilter/state.txt 
b/pages/develop/efl/advanced/eflgfxfilter/state.txt
index 5dc6e95f..97b518eb 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/state.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/state.txt
@@ -1,10 +1,10 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filters]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filters]].
 
 <note>Since EFL 1.15 (August 2015)</note>
 
 ==== State ====
 
-In order to allow developers and designers to implement animations based on 
the [[:docs:efl:advanced:eflgfxfilters|filters]], the ''state'' table gives 
enough information to the filter to implement a transition from one Edje state 
to another.
+In order to allow developers and designers to implement animations based on 
the [[:develop:efl:advanced:eflgfxfilters|filters]], the ''state'' table gives 
enough information to the filter to implement a transition from one Edje state 
to another.
 
 When used from Edje (ie. from EDC), the ''state'' table contains data about 
the current and next states of the part being filtered (''TEXT'' or ''IMAGE'').
 
diff --git a/pages/develop/efl/advanced/eflgfxfilter/transform.txt 
b/pages/develop/efl/advanced/eflgfxfilter/transform.txt
index 126043af..5f1b04f3 100644
--- a/pages/develop/efl/advanced/eflgfxfilter/transform.txt
+++ b/pages/develop/efl/advanced/eflgfxfilter/transform.txt
@@ -1,4 +1,4 @@
-Go back to [[:docs:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
+Go back to [[:develop:efl:advanced:eflgfxfilters|Efl.Gfx.Filter]].
 
 ==== Transformations ====
 
@@ -27,4 +27,4 @@ transform ({ oy = 20, dst = t })
 blend ({ src = t, color = '#fff8' })
 blend ({ color = 'white' })
 </code>
-{{:docs:efl:advanced:filter-mirror.png|}}
\ No newline at end of file
+{{:docs:efl:advanced:filter-mirror.png|}}
diff --git a/pages/develop/efl/advanced/eflgfxfilters.txt 
b/pages/develop/efl/advanced/eflgfxfilters.txt
index 701378ea..f1e0726f 100644
--- a/pages/develop/efl/advanced/eflgfxfilters.txt
+++ b/pages/develop/efl/advanced/eflgfxfilters.txt
@@ -8,18 +8,18 @@ Since 1.19 textblock also supports filters by using the 
"gfx_filter" format tag.
 
 ===== Functions =====
 Summary of the supported filtering functions:
-  *[[:docs:efl:advanced:eflgfxfilter:blend|blend]]
-  *[[:docs:efl:advanced:eflgfxfilter:blur|blur]]
-  *[[:docs:efl:advanced:eflgfxfilter:grow|grow]]
-  *[[:docs:efl:advanced:eflgfxfilter:curve|curve]]
-  *[[:docs:efl:advanced:eflgfxfilter:fill|fill]]
-  *[[:docs:efl:advanced:eflgfxfilter:mask|mask]]
-  *[[:docs:efl:advanced:eflgfxfilter:bump|bump]]
-  *[[:docs:efl:advanced:eflgfxfilter:displace|displace]]
-  *[[:docs:efl:advanced:eflgfxfilter:transform|transform]]
-  *[[:docs:efl:advanced:eflgfxfilter:buffer|buffer]]
-  *[[:docs:efl:advanced:eflgfxfilter:padding_set|padding_set]]
-  *[[:docs:efl:advanced:eflgfxfilter:state|state]]
+  *[[:develop:efl:advanced:eflgfxfilter:blend|blend]]
+  *[[:develop:efl:advanced:eflgfxfilter:blur|blur]]
+  *[[:develop:efl:advanced:eflgfxfilter:grow|grow]]
+  *[[:develop:efl:advanced:eflgfxfilter:curve|curve]]
+  *[[:develop:efl:advanced:eflgfxfilter:fill|fill]]
+  *[[:develop:efl:advanced:eflgfxfilter:mask|mask]]
+  *[[:develop:efl:advanced:eflgfxfilter:bump|bump]]
+  *[[:develop:efl:advanced:eflgfxfilter:displace|displace]]
+  *[[:develop:efl:advanced:eflgfxfilter:transform|transform]]
+  *[[:develop:efl:advanced:eflgfxfilter:buffer|buffer]]
+  *[[:develop:efl:advanced:eflgfxfilter:padding_set|padding_set]]
+  *[[:develop:efl:advanced:eflgfxfilter:state|state]]
 
 ===== Core concepts =====
 
@@ -37,30 +37,30 @@ Since [[Efl.Gfx.Filter]] works on both [[Evas.Image]] and 
[[Evas.Text]] objects,
 
 === Buffer management ===
 
-It is also possible to manually create more buffers using the 
[[:docs:efl:advanced:eflgfxfilter:buffer|buffer]] function.
+It is also possible to manually create more buffers using the 
[[:develop:efl:advanced:eflgfxfilter:buffer|buffer]] function.
 
-Read more [[:docs:efl:advanced:eflgfxfilter:buffer|here]].
+Read more [[:develop:efl:advanced:eflgfxfilter:buffer|here]].
 
 === Padding ===
 
 Since the filters may modify pixels based on their neighbors (blur) or move 
pixels around (displace, transform), a filter ends up requiring the input 
buffer to be padded to avoid cropping of the effect. The filter engine will 
automatically compute the necessary padding for you, but this may be too much 
in some situations (eg. blur 10 + blur 20 will add a padding of 30 but most 
pixels will be blank).
 
-You can set the padding to a fixed value with the 
[[:docs:efl:advanced:eflgfxfilter:padding|padding_set]] command.
+You can set the padding to a fixed value with the 
[[:develop:efl:advanced:eflgfxfilter:padding|padding_set]] command.
 
 ==== Base filters ====
 
 The following table lists all the core filter functions, applied to an 
[[Evas.Text]] object.
 
 ^ Feature ^ Function ^ Example ^
-| [[:docs:efl:advanced:eflgfxfilter:blend|Blend]] | ''blend'' | {{ 
:docs:efl:advanced:filter-blend.png |}} |
-| [[:docs:efl:advanced:eflgfxfilter:blur|Blurs, glows and shadows]] | ''blur'' 
| {{ :docs:efl:advanced:filter-blur.png |}} |
-| [[:docs:efl:advanced:eflgfxfilter:grow|Grow and shrink]] | ''grow'' |  {{ 
:docs:efl:advanced:filter-grow.png |}} {{ :docs:efl:advanced:filter-shrink.png 
|}} |
-| [[:docs:efl:advanced:eflgfxfilter:curve|Color curves]] | ''curve'' | {{ 
:docs:efl:advanced:filter-curve.png |}} |
-| [[:docs:efl:advanced:eflgfxfilter:fill|Solid color fill]] | ''fill'' | {{ 
:docs:efl:advanced:filter-fill.png |}} |
-| [[:docs:efl:advanced:eflgfxfilter:mask|Masking and texturing]] | ''mask'' | 
{{ :docs:efl:advanced:filter-mask.png |}} |
-| [[:docs:efl:advanced:eflgfxfilter:bump|Bump maps]] | ''bump'' |  {{ 
:docs:efl:advanced:filter-bump.png |}} |
-| [[:docs:efl:advanced:eflgfxfilter:displace|Displacement maps]] | 
''displace'' | {{ :docs:efl:advanced:filter-displace.png |}} |
-| [[:docs:efl:advanced:eflgfxfilter:transform|Transformation]] | ''transform'' 
| {{ :docs:efl:advanced:filter-transform.png |}} |
+| [[:develop:efl:advanced:eflgfxfilter:blend|Blend]] | ''blend'' | {{ 
:docs:efl:advanced:filter-blend.png |}} |
+| [[:develop:efl:advanced:eflgfxfilter:blur|Blurs, glows and shadows]] | 
''blur'' | {{ :docs:efl:advanced:filter-blur.png |}} |
+| [[:develop:efl:advanced:eflgfxfilter:grow|Grow and shrink]] | ''grow'' |  {{ 
:docs:efl:advanced:filter-grow.png |}} {{ :docs:efl:advanced:filter-shrink.png 
|}} |
+| [[:develop:efl:advanced:eflgfxfilter:curve|Color curves]] | ''curve'' | {{ 
:docs:efl:advanced:filter-curve.png |}} |
+| [[:develop:efl:advanced:eflgfxfilter:fill|Solid color fill]] | ''fill'' | {{ 
:docs:efl:advanced:filter-fill.png |}} |
+| [[:develop:efl:advanced:eflgfxfilter:mask|Masking and texturing]] | ''mask'' 
| {{ :docs:efl:advanced:filter-mask.png |}} |
+| [[:develop:efl:advanced:eflgfxfilter:bump|Bump maps]] | ''bump'' |  {{ 
:docs:efl:advanced:filter-bump.png |}} |
+| [[:develop:efl:advanced:eflgfxfilter:displace|Displacement maps]] | 
''displace'' | {{ :docs:efl:advanced:filter-displace.png |}} |
+| [[:develop:efl:advanced:eflgfxfilter:transform|Transformation]] | 
''transform'' | {{ :docs:efl:advanced:filter-transform.png |}} |
 
 ==== Complex filters ====
 
@@ -106,4 +106,4 @@ Step by step, this is what happens to the contents of our 
buffers.
 | Step 1 | {{ :docs:efl:advanced:filter-input-bg.png |}} | {{ 
:docs:efl:advanced:filter-bg-full.png |}} | {{ 
:docs:efl:advanced:filter-bg-full.png |}} |
 | Step 2 | {{ :docs:efl:advanced:filter-input-bg.png |}} | {{ 
:docs:efl:advanced:filter2-a.png |}} | {{ :docs:efl:advanced:filter-bg-full.png 
|}} |
 | Step 3 | {{ :docs:efl:advanced:filter-input-bg.png |}} | {{ 
:docs:efl:advanced:filter2-a.png |}} | {{ :docs:efl:advanced:filter2-3.png |}} |
-| Step 4 | {{ :docs:efl:advanced:filter-input-bg.png |}} | {{ 
:docs:efl:advanced:filter2-a.png |}} | {{ :docs:efl:advanced:filter2.png |}} |
\ No newline at end of file
+| Step 4 | {{ :docs:efl:advanced:filter-input-bg.png |}} | {{ 
:docs:efl:advanced:filter2-a.png |}} | {{ :docs:efl:advanced:filter2.png |}} |
diff --git a/pages/program_guide/widgets/basics.txt 
b/pages/program_guide/widgets/basics.txt
index c44560d1..ce2ba2a8 100644
--- a/pages/program_guide/widgets/basics.txt
+++ b/pages/program_guide/widgets/basics.txt
@@ -52,7 +52,7 @@ allocated with Elementary in the main loop, and finally shut 
down Elementary.
 
 <note>
 An Elementary application should use the ''ELM_MAIN()'' macro, which already
-calls the ''elm_init()'' function. [[docs/efl/start|EFL Hello World Tutorial]]
+calls the ''elm_init()'' function. [[develop/efl/start|EFL Hello World 
Tutorial]]
 shows a basic Elementary application that uses this macro.
 </note>
 
diff --git a/pages/tutorial/basic/button.txt b/pages/tutorial/basic/button.txt
index 7723cb81..3129296c 100644
--- a/pages/tutorial/basic/button.txt
+++ b/pages/tutorial/basic/button.txt
@@ -4,7 +4,7 @@
 
 //**__Basic text button__**//
 
-As seen in [[docs/efl/start|Get started with EFL]] tutorial, a text-only
+As seen in [[develop/efl/start|Get started with EFL]] tutorial, a text-only
 button is created as follows:
 
 <code c>
diff --git a/pages/tutorial/basic_tutorial.txt 
b/pages/tutorial/basic_tutorial.txt
index 85a2c237..97d4309a 100644
--- a/pages/tutorial/basic_tutorial.txt
+++ b/pages/tutorial/basic_tutorial.txt
@@ -5,7 +5,7 @@ These basic tutorials describe the basics of widget 
interactions.
 
 == Prerequisite ==
 
-    * Do a helloworld program: [[docs/efl/start|Get started with EFL]].
+    * Do a helloworld program: [[develop/efl/start|Get started with EFL]].
     * Work with this example.
 
 <code c>
diff --git a/pages/tutorial/javascript_tutorial.txt 
b/pages/tutorial/javascript_tutorial.txt
index cd289b82..bc45cb4a 100644
--- a/pages/tutorial/javascript_tutorial.txt
+++ b/pages/tutorial/javascript_tutorial.txt
@@ -11,7 +11,7 @@ The Javascript bindings are currently in BETA state.
 
 Before you start you may want to read about how to compile the EFL:
 
-    * Installed from source: [[docs/efl/start|Get started with EFL]].
+    * Installed from source: [[develop/efl/start|Get started with EFL]].
 
 === Dependencies ===
 
@@ -376,4 +376,4 @@ Then compile it to the .edj format that your app will load:
 
 <code bash>
 ~$ edje_cc your_edc_file.edc # Will generate your_edc_file.edj
-</code>
\ No newline at end of file
+</code>
diff --git a/pages/wiki/syntax.txt b/pages/wiki/syntax.txt
index 9703a7f1..ac31ceb9 100644
--- a/pages/wiki/syntax.txt
+++ b/pages/wiki/syntax.txt
@@ -110,10 +110,10 @@ A horizontal rule is like
 
 ----
 
-An external link like: [[http://example.com|External Link]] would go here. An 
internal link that uses the wiki page title as text is like: [[syntax]]. Or you 
can give it a manual title like [[syntax|this here]]. You can link to a full 
path like [[:docs:efl:start|This here]].
+An external link like: [[http://example.com|External Link]] would go here. An 
internal link that uses the wiki page title as text is like: [[syntax]]. Or you 
can give it a manual title like [[syntax|this here]]. You can link to a full 
path like [[:develop:efl:start|This here]].
 
 <code>
-An external link like: [[http://example.com|External Link]] would go here. An 
internal link that uses the wiki page title as text is like: [[syntax]]. Or you 
can give it a manual title like [[syntax|this here]]. You can link to a full 
path like [[:docs:efl:start|This here]].
+An external link like: [[http://example.com|External Link]] would go here. An 
internal link that uses the wiki page title as text is like: [[syntax]]. Or you 
can give it a manual title like [[syntax|this here]]. You can link to a full 
path like [[:develop:efl:start|This here]].
 </code>
 
 ----

-- 


Reply via email to