11 Jun, 2015
9 commits
-
Signed-off-by: Fabio Teixeira <fabio1079@gmail.com>
-
Signed-off-by: Antonio Terceiro <terceiro@colivre.coop.br> Signed-off-by: Arthur Del Esposte <arthurmde@gmail.com> Signed-off-by: Gabriela Navarro <navarro1703@gmail.com>
-
Signed-off-by: Arthur Del Esposte <arthurmde@gmail.com> Signed-off-by: David Carlos <ddavidcarlos1392@gmail.com> Signed-off-by: Gabriela Navarro <navarro1703@gmail.com>
-
Signed-off-by: Arthur Del Esposte <arthurmde@gmail.com> Signed-off-by: David Carlos <ddavidcarlos1392@gmail.com> Signed-off-by: Gabriela Navarro <navarro1703@gmail.com>
-
See merge request !563
-
Whenever you have 2 or more tags with the same name but different cases, ActsAsTaggableOn returns an empty list of objects tagged with either of the tags. To solve this problem, we must not have tags with different cases stored. Performance was my primal concern on this migration since we have instances that have over 130k tags registered. So I decided to convert every tag to lower case. This is the fastest way I could conceive this migration and still it might take a lot of time. Here is basic resume of what it basically does: x: number of new downcased tags created. y: number of oddcased tags. z: number of tags 1. Find all tags do not have a downcased form already created - [1 fast select query]. 2. Create a downcased version of the above queries - [x slow update queries but n is usually low because a minority of tags have odd case and all different cases of a single word generate only 1 query]. 3. Update taggings relations based on new ids - [1 slow update and 2 join queries]. 4. Updates the taggings_count of every tag - [1 slow update with z fast selects] 5. Delete all unused tags tags - [1 slow delete query]. Signed-off-by: Larissa Reis <larissa@colivre.coop.br>
-
raw-html-article: escape body before rendering on edit See merge request !557
-
resolves issue #79
10 Jun, 2015
1 commit
09 Jun, 2015
1 commit
08 Jun, 2015
3 commits
05 Jun, 2015
2 commits
-
Store the person that closes a task See merge request !590
03 Jun, 2015
2 commits
02 Jun, 2015
14 commits
-
New permission 'view_tasks' that allow only tasks visualization See merge request !588
-
Currently translated at 97.7% (2042 of 2089 strings) Translate untraslated strings to pt
-
delayed_job: port exception notifications to rails 3 See merge request !580
-
Currently translated at 97.1% (2030 of 2089 strings) Fix pt translations
-
Currently translated at 96.8% (2023 of 2089 strings)
-
Move vote infra from plugin to core Move vote infra from plugin to core to avoid dependencies between plugins and allow features that uses the vote_fu plugin to be added in noosfero core. See merge request !589
01 Jun, 2015
8 commits
-
Remove the 8 wrapper divs from the main content It is now replaced with a single div with class 'main-content'. This *might* break some old themes, but we need to start getting rid of these absurds at some point. See merge request !587
-
It is now replaced with a single div with class 'main-content'. This *might* break some old themes, but we need to start getting rid of these absurds at some point.