- Oct 08, 2014
-
-
Bruno Nocera Zanette authored
-
Bruno Nocera Zanette authored
Fix "tipo_perfil" query
-
- Oct 07, 2014
-
-
Bruno Nocera Zanette authored
Update basic structure with "tipo_perfil" tag
-
- Oct 06, 2014
-
-
Bruno Nocera Zanette authored
Add user's "tipo_perfil" information
-
- Sep 09, 2014
-
-
Bruno Nocera Zanette authored
Remove "friends" section from basic file structure
-
- Sep 05, 2014
-
-
Bruno Nocera Zanette authored
Remove "xyz" from JSON Basic structure
-
Bruno Nocera Zanette authored
Update Dir_Results to adapt to new Opendata Page
-
- Sep 02, 2014
-
-
Bruno Nocera Zanette authored
Update Dir_Results
-
- Oct 23, 2013
-
-
Bruno Nocera Zanette authored
Remove user's friend list because now it is considered as a personal information. More info at: http://redmine.c3sl.ufpr.br/issues/1205#note-16 Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
- Sep 19, 2013
-
-
Bruno Nocera Zanette authored
The names of indentation control variables were a bit ambiguous, so they were changed to avoid confusion. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Just some more small bug fixes. Hopefully this was the last one!!! Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
- Sep 18, 2013
-
-
Bruno Nocera Zanette authored
Just some small bug fixes. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Section functions were adapted to the new class model. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
This commit modifies the support functions for each version (xml and json) into a class definition. This change was made to simplify the code. For example, there is no need to pass the database and output file as arguments anymore. Also, it was implemented a function to update the indentation every time a tag is opened or closed, so that there is no need to specify the indentation every time a write tag functions is called. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
- Sep 17, 2013
-
-
Bruno Nocera Zanette authored
This commit reorganized library's folder structure to remove duplicated files and functions's definitions, as it was happening with string functions, like "urlparticipa", that was being defined on multiple files. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
This commit reorganized library's folder structure to remove duplicated files and functions's definitions, as it was happening with "queries_definitions.py" file. Also, it were removed 'xml' and 'json' subfolders, and their contents were moved to lib file with "xml_" and "json_" prefixes. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
This commit reorganized library's folder structure to remove duplicated files and functions's definitions, as it was happening with "queries_definitions.py" file. Also, it were removed 'xml' and 'json' subfolders, and their contents were moved to lib file with "xml_" and "json_" prefixes. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
This commit adds the support for writing one file per user/group. Each of this files contains only the information about a single user or group. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Fixed a typo on open file function Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
- Sep 16, 2013
-
-
Bruno Nocera Zanette authored
Moved filename's definition from "main" function to inside functions that write the files. Once again, this change was made to simplify the process of writing multiple files. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
For a matter of interpretation. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
For a matter of interpretation. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Added a function to open file. This change is meant for the case of having to write multiple files. For example, one file for each user, or group. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
- Sep 13, 2013
-
-
Bruno Nocera Zanette authored
Removed all "_" from tag's names. Example: "breve_descricao" for "breveDescricao" This change was made to make tag's names more OO stylish. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
This commits implements a better solution to the problem. Actually the problem was with '\n' and '\r', and not with HTML tags. This fix simply substitute this chars for ' ' (space). Now, the text encoding is not needed anymore! Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Add rule to ignore gedit's temporary files ending with "~". Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
-
Bruno Nocera Zanette authored
Fixed the problem of invalid chars in text, like', '\'. These chars crash the parser because the parser identifies them as the end of the tag, and then gets confused with the rest of the text. The solution was to include a '\' in front of these chars on the small tags, like names and titles, and codify the whole text when it is too big, like descriptions and messages. This process makes the text unreadable for humans, but it doesnt loose any information when it is decoded. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Fixed the problem of invalid chars in text, like', '\'. These chars crash the parser because the parser identifies them as the end of the tag, and then gets confused with the rest of the text. The solution was to include a '\' in front of these chars on the small tags, like names and titles, and codify the whole text when it is too big, like descriptions and messages. This process makes the text unreadable for humans, but it doesnt loose any information when it is decoded. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
- Sep 12, 2013
-
-
Bruno Nocera Zanette authored
Fixed IDs strings. HREF strings were being written with XML style, for example: "link":" href="xyz"" instead of "link":"xyz" Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Fixed IDs strings. IDs strings were being written with XML style, for example: "uid":" uid="xyz"" instead of "uid":"xyz" Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
This commit implemets a more elegant solution to the comma's problem. On the function call it is given whether the flag is True (to use comma) or False (to not comma), or an expression. This expression is based on total rows and the current row. If row is less then max row it is True, so it will use comma. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
This commit implements the first solution to the comma's problem. The comma's problem consists whether the closing tag is with or without comma, depending if the current element is the last one or not. The solution is not a pretty one, but it works. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
- Sep 11, 2013
-
-
Bruno Nocera Zanette authored
This commit adds the first iteration of the JSON version of OpenData. It is based on the XML version, and it is not functional yet. There are several bugs and the resulting JSON file is not valid. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Source-file structure was reorganized. The main change was the creation of a lib directory. Also, the old lib_<section>_section.py files was divided into others lib files. Now all queries are into an unique file, and support's functions into another. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Source-file structure was reorganized. The main change was the creation of a lib directory. Also, the old lib_<section>_section.py files was divided into others lib files. Now all queries are into an unique file, and support's functions into another. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
- Sep 10, 2013
-
-
Bruno Nocera Zanette authored
At these files are described the basic JSON's structure of each section. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Added PID (Post ID) attribute to entities of type "post". Before this change it was a HREF attribute. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
Bruno Nocera Zanette authored
Moved HREF link to UID/CID on entities tags, and removed HREF attribute. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-
- Sep 09, 2013
-
-
Bruno Nocera Zanette authored
Updated XML'ss basic structures with "HREF" into tags that directly reference a web page. Signed-off-by:
Bruno Nocera Zanette <brunonzanette@gmail.com>
-