Changeset 120

Show
Ignore:
Timestamp:
04/24/06 14:01:00 (2 years ago)
Author:
eadiaz
Message:

Instructions about promoted flag

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r100 r120  
     12006-04-24 17:36  eadiaz 
     2 
     3        * trunk/create.sql: Now uses a promoted flag, this make queries 
     4          more faster. 
     5 
     62006-04-24 17:10  eadiaz 
     7 
     8        * trunk/public_html/memes_by_tag.php: References to akarru.gui 
     9          deleted 
     10 
     112006-04-24 17:07  eadiaz 
     12 
     13        * trunk/smarty/configs/site.conf, 
     14          trunk/smarty/templates/about.tpl, 
     15          trunk/smarty/templates/master_page.tpl, 
     16          trunk/smarty/templates/meme_layout.tpl, 
     17          trunk/smarty/templates/memes_grid.tpl, 
     18          trunk/smarty/templates/post_1.tpl, 
     19          trunk/smarty/templates/post_2.tpl, 
     20          trunk/smarty/templates/post_3.tpl, 
     21          trunk/smarty/templates/profile.tpl, 
     22          trunk/smarty/templates/profile_edit.tpl, 
     23          trunk/smarty/templates/promote.tpl: Many changes for a more 
     24          faster display of pages. 
     25          Better organization of debates. 
     26 
     272006-04-24 16:59  eadiaz 
     28 
     29        * trunk/public_html/tag_meme.php: BUG FIX: tags where lost. 
     30 
     312006-04-24 16:58  eadiaz 
     32 
     33        * trunk/public_html/show_cat.php: add default feeds for categories 
     34          when a feed url is not present on database. 
     35 
     362006-04-24 16:57  eadiaz 
     37 
     38        * trunk/public_html/search.php: hard coded title removed. 
     39 
     402006-04-24 16:56  eadiaz 
     41 
     42        * trunk/public_html/profile_edit.php: At last, profile edit 
     43          doesn't uses akarru.gui. 
     44          Now this page is full smarty compatible. 
     45 
     462006-04-24 16:55  eadiaz 
     47 
     48        * trunk/public_html/memes_queue.php: 
     49 
     502006-04-24 16:54  eadiaz 
     51 
     52        * trunk/public_html/index.php: BUG FIX: paging wasn't working 
     53          properly 
     54 
     552006-04-24 16:52  eadiaz 
     56 
     57        * trunk/public_html/edit_meme.php: BUG FIX, now check user before 
     58          allow modifications. 
     59          Also admin user can edit any meme. 
     60 
     612006-04-24 16:50  eadiaz 
     62 
     63        * trunk/public_html/comment.php: When debates allowed we weren't 
     64          showing the promotors of the meme, now this info is added. 
     65          Debates now influence in the promotion algorithm. 
     66 
     672006-04-24 16:49  eadiaz 
     68 
     69        * trunk/public_html/akarru.lib/users.php: Gravatar md5 hash is 
     70          stored directly in database now. 
     71          More easy to read implementations of fucntions. 
     72          Influence and popularity are disabled in this release, they are 
     73          causing an slow display of the profile page. 
     74          Fixed bug on AES encryption, when passwords are stored, a global 
     75          key is required now. 
     76 
     772006-04-24 16:46  eadiaz 
     78 
     79        * trunk/public_html/akarru.lib/memes.php: Gravatar md5 hash is 
     80          stored directly in database now. 
     81          A more efficient query was implemented. 
     82          When an user click this does not change the promotion_date, this 
     83          was causing distortion on promote mechanism 
     84          Promote algorithm enhanced, we had distortion when a meme had 
     85          more votes. 
     86          Also the debate count as promotion votes now. 
     87 
     882006-04-24 16:44  eadiaz 
     89 
     90        * trunk/public_html/akarru.lib/html_manager.php: Gravatar md5 hash 
     91          is stored directly in database now. 
     92 
     932006-04-24 16:43  eadiaz 
     94 
     95        * trunk/public_html/akarru.lib/database.php: Better 
     96          implementations of query functions. 
     97 
     982006-04-24 16:40  eadiaz 
     99 
     100        * trunk/public_html/akarru.lib/common.php: Add default feeds for 
     101          categories. 
     102 
     1032006-04-24 16:39  eadiaz 
     104 
     105        * trunk/public_html/ajax_vote.php: Restore the anonymous votes. 
     106        * trunk/public_html/styles/memes.css: Minor fixes on CSS files. 
     107          Better look for IE 6.0 
     108 
     1092006-04-07 20:31  eadiaz 
     110 
     111        * trunk/ChangeLog: Release 0.4.4.100 
     112 
    11132006-04-07 20:29  eadiaz 
    2114 
  • trunk/IMPORTANT

    r119 r120  
    22 
    33RELEASE 0.4.4.120 
     4 
     5NEW PROMOTED FLAGE 
     6 
     7The posts table now uses a new field 'promoted' to indicate that a meme is promoted out from the new memes queue. 
     8 
     9For compatibility you must execute the following query: 
     10 
     11update posts set promoted =  1 where votes >= 7; 
     12 
     13 
     14where 7 is the standard promote threshold. You can change this value according your own implementation. 
     15 
     16PROBLEMS WITH AES 
    417 
    518The last release didn't handle the AES security in proper way. 
  • trunk/IMPORTANTE

    r119 r120  
    33RELEASE 0.4.4.120 
    44 
     5EL CAMPO PROMOTED 
     6 
     7Ahora la tabla posts, tiene un campo nuevo: 'promoted', que se pone en 1 cuando un meme debe ser promovido desde la cola de mensajes nuevos. 
     8para asegurar la compatibilidad, usted debe ejecutar esta sentencia de modo que no se pierdan los memes ya promovidos: 
     9 
     10update posts set promoted  =  1 where votes >= 7; 
     11 
     12donde el valor 7 es el usado en blogmemes, pero puede variar en su implementacion particular. 
     13 
     14ERROR EN AES 
    515La version 0.4.4.100 no manejaba adecuadamente los cambios relacionados con la seguriad AES. Ese problema ha sido corregido. Sugerimos que use sus respaldo para la nueva generacion de claves. 
    616