<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/yedgen/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/yedgen/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 19 Jun 2014 14:47:05 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/yedgen/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Guillermo Cherencio</title><link>https://sourceforge.net/p/yedgen/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -54,11 +54,5 @@
 There is a property file for ANSI C generator code application parameters at /yEdgen/plugins/AnsiC.properties .

-
-You can see
-y  This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/yedgen/wiki/markdown_syntax/) syntax.
-
 [[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guillermo Cherencio</dc:creator><pubDate>Thu, 19 Jun 2014 14:47:05 -0000</pubDate><guid>https://sourceforge.neted00fb87109c238536bb55a8e2a36131eccbf015</guid></item><item><title>Home modified by Guillermo Cherencio</title><link>https://sourceforge.net/p/yedgen/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -3,7 +3,8 @@
 yEdGen is a java 1.7 swing application (it also can be used as a command line application, enable you batch processing). You can open a [graphml](http://graphml.graphdrawing.org/) file, select a generator (yEdGen has an ANSI C generator code installed by default, but you can develop your own code generator for other languages/versions/etc) , click on start button and get your ANSI C code generated!.
 How can I create a graphml file? You can do it with [yEd Graph Editor](http://www.yworks.com/en/products_yed_about.html).
 What kind of diagrams yEdGen working with? You can use Flowcharts diagram and save them as graphml file.
-You must follow some general rules to draw a flowchart (yEd based on, you can hover the symbol to see its name):
+
+**You must follow some general rules to draw a flowchart** (yEd based on, you can hover the symbol to see its name):
 1. starts the flowchart using "Start 1" symbol 
 2. ends the flowchart using "Terminator" symbol
 3. use "Manual Input" for keyboard input
@@ -13,16 +14,48 @@
 7. starts a loop using "Begin Loop" symbol
 8. ends a loop using "End Loop" symbol

-You must follow some specific rules to draw a flowchart using our "ANSI C" generator:
-1. Sintax for manual input: it can be labeled as:
-::
+**You must follow some specific rules to draw a flowchart using our "ANSI C" generator:**      
+Sintax for "Manual Input": it can be labeled as:
+   `::`
 i.e.
-Input a Number:num:int
-2. Sintax for start loop: it can be labeled as:
-   2.1 for loop:
-       &lt;var&gt;=..
-   
+   `Input a Number:num:int`

+Sintax for "Begin Loop": it can be labeled as:
+**for loop:**
+   `&lt;/var&gt;&lt;var&gt;=..`
+i.e.
+   `n=1..10`
+**while loop:**
+   `mientras `
+i.e.
+   `mientras a &lt; 10`
+**do loop:**
+   `hacer`
+i.e.
+   `hacer`
+
+Sintax for "End Loop": it can be labeled as:
+**for loop:** it doesn't requiere a label
+**while loop:** it doesn't requiere a label
+**do loop:**
+   `mientras `
+i.e.
+   `mientras a &lt; 10`
+
+
+**Directory Info:**
+/yEdgen/app application interface
+/yEdgen/model xml parsing, properties manage, algorithm representation (nodes and edges), source generator interface, utilities classes, etc.
+/yEdgen/examples graphml examples maded with yEd Graph Editor.
+/yEdgen/plugins source generators that implements source generator model interface.
+
+**Properties files:**
+There is a property file for global application parameters at /yEdgen/app/App.properties .
+There is a property file for ANSI C generator code application parameters at /yEdgen/plugins/AnsiC.properties .
+
+
+
+You can see
 y  This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].

 The wiki uses [Markdown](/p/yedgen/wiki/markdown_syntax/) syntax.
&lt;/var&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guillermo Cherencio</dc:creator><pubDate>Thu, 19 Jun 2014 14:43:04 -0000</pubDate><guid>https://sourceforge.neta40e4844b1a3c20b4de44b9c21c42e17d3e996d7</guid></item><item><title>Home modified by Guillermo Cherencio</title><link>https://sourceforge.net/p/yedgen/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,6 +1,29 @@
-Welcome to your wiki!
+**yEdGen code generator**

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+yEdGen is a java 1.7 swing application (it also can be used as a command line application, enable you batch processing). You can open a [graphml](http://graphml.graphdrawing.org/) file, select a generator (yEdGen has an ANSI C generator code installed by default, but you can develop your own code generator for other languages/versions/etc) , click on start button and get your ANSI C code generated!.
+How can I create a graphml file? You can do it with [yEd Graph Editor](http://www.yworks.com/en/products_yed_about.html).
+What kind of diagrams yEdGen working with? You can use Flowcharts diagram and save them as graphml file.
+You must follow some general rules to draw a flowchart (yEd based on, you can hover the symbol to see its name):
+1. starts the flowchart using "Start 1" symbol 
+2. ends the flowchart using "Terminator" symbol
+3. use "Manual Input" for keyboard input
+4. use "Display" for console output
+5. use "Process" for arithmetic operations, assignments, etc
+6. use "Decision" for decision or selection. You must label the decision symbol with a valid boolean expression. Allways decision finish with "Start 2" symbol (endif mark). There is only one "Start 2" symbol per decision. You must label the decision's arrows with "T,V,v,t,verdad,verdadero" for true arrow. You must label the decision's arrows with "F,f,M,m,false,falso,mentira" for false arrow.
+7. starts a loop using "Begin Loop" symbol
+8. ends a loop using "End Loop" symbol
+
+You must follow some specific rules to draw a flowchart using our "ANSI C" generator:
+1. Sintax for manual input: it can be labeled as:
+::
+i.e.
+Input a Number:num:int
+2. Sintax for start loop: it can be labeled as:
+   2.1 for loop:
+       &lt;var&gt;=..
+   
+
+y  This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].

 The wiki uses [Markdown](/p/yedgen/wiki/markdown_syntax/) syntax.

&lt;/var&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guillermo Cherencio</dc:creator><pubDate>Thu, 19 Jun 2014 13:48:02 -0000</pubDate><guid>https://sourceforge.net6ab08db1a122eaa6a26e8225919e04117710182a</guid></item><item><title>Home modified by Guillermo Cherencio</title><link>https://sourceforge.net/p/yedgen/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/yedgen/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
&lt;ul class="md-users-list"&gt;
&lt;li&gt;&lt;a href="/u/grchere/"&gt;Guillermo Cherencio&lt;/a&gt; (admin)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-53a1ace9c4d10465f31a9ad4" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guillermo Cherencio</dc:creator><pubDate>Wed, 18 Jun 2014 15:14:49 -0000</pubDate><guid>https://sourceforge.net625532efab6f5b55e64e5487be224cd5e849d0ca</guid></item></channel></rss>