Version at: 23/03/2014, 16:47 vs. version at: 23/03/2014, 23:35
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
44
55### 23rd March 2014 17:30 France time
66
77 * who: alanf, guided by Trang
8 * why: release code on github
8 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
99 * what: https://gist.github.com/trang/baccdee9bea32808f871
1010
1111### 23rd February 2014 15AM China time
1212
1313 * who: sysko
1414 * why: wiki: fixed redirect problem after login and added reset password feature
1515 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
1616
1717
1818### 11nd February 2014 01AM China time
1919
2020 * who: sysko
2121 * why: restored transliteration for most languages
2222 * what: linked nihongoparserd with tatoeba php code mostly
2323 * how:
2424
2525I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration`
2626
2727also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment)
2828
2929also commented temporaly all call to `sinoparserd` as it's not yet restored
3030
3131
3232### 10nd February 2014 11PM China time
3333
3434 * who: sysko
3535 * why: installed nihongoparserd (service to generate japanese reading)
3636 * what: compiled source and installed service
3737 * how:
3838
3939installed:
4040
4141 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
4242
4343
4444executed
4545
4646 git clone https://github.com/allan-simon/nihongoparserd.igt
4747 cd nihongoparserd
4848 mkdir build ; cd build ; cmake .. ; make
4949 sudo cp nihongoparserd /usr/local/bin
5050 cd ..
5151 sudo cp conf/nihongoparserd /etc/init.d/
5252 sudo chmod +x /etc/init.d/nihongoparserd
5353 sudo cp conf/default /etc/default/nihongoparserd
5454 sudo useradd -r nihongoparserd
5555
5656start the service
5757
5858 /etc/init.d/nihongoparserd
5959
6060
6161
6262### 9nd February 2014 10AM China time
6363
6464
6565 * who: sysko
6666 * why: reinstall suggestd (service powering tag autocompletion)
6767 * what: compiled source and installed service
6868 * how:
6969
7070
7171installed
7272
7373 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
7474
7575
7676compiled suggestd0.9
7777
7878 aclocal
7979 autoconf
8080 automake --add-missing
8181
8282 ./configure
8383 make
8484 make install
8585
8686
8787after created init script in
8888
8989 /etc/init.d/suggestd
9090
9191and configuration file in
9292
9393
9494 /etc/suggestd.xml
9595
9696and default file in
9797
9898 /etc/default/suggestd
9999
100100then create a suggestd user
101101
102102 useradd -r suggestd
103103
104104then finally starting it
105105
106106
107107 /etc/init.d/suggestd start
108108
109109
110110###2nd February 2014 5AM China time
111111
112112 * who: sysko
113113 * why: resolve login problems
114114 * what: used memcache instead of sqlite for storing session
115115 * how:
116116
117117installed:
118118
119119 apt-get install memcached php5-memcache
120120
121121modified: `/etc/php5/apache2/php.ini`
122122
123123```
124124[Session]
125125session.save_handler = memcache
126126session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
127127```
128128
129129
130130
diff view generated by jsdifflib

Version at: 23/03/2014, 16:47

#Admin logs 

Please post a description here every time you do a modification on tatoeba.org. 

### 23rd March 2014 17:30 France time

   * who: alanf, guided by Trang
   * why: release code on github
   * what: https://gist.github.com/trang/baccdee9bea32808f871

### 23rd February 2014 15AM China time

  * who: sysko
  * why:  wiki: fixed redirect problem after login and added reset password feature 
  * what:  updated tatowiki on wiki.tatoeba.org to 0.23.0 


### 11nd February 2014 01AM China time

  * who: sysko
  * why:  restored transliteration for most languages
  * what:  linked nihongoparserd with tatoeba php code mostly
  * how:

I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` 

also I've commented the line `return false;` in `getRomanization`  file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) 

also commented temporaly all call to `sinoparserd` as it's not yet restored 


### 10nd February 2014 11PM China time

  * who: sysko
  * why: installed nihongoparserd (service to generate japanese reading)
  * what:  compiled source and installed service
  * how:

installed:

     apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8


executed 

     git clone https://github.com/allan-simon/nihongoparserd.igt
     cd nihongoparserd
     mkdir build ; cd build ; cmake .. ; make 
     sudo cp nihongoparserd /usr/local/bin
     cd ..
     sudo cp conf/nihongoparserd /etc/init.d/
     sudo chmod +x /etc/init.d/nihongoparserd
     sudo cp conf/default /etc/default/nihongoparserd
     sudo useradd -r nihongoparserd

start the service 

     /etc/init.d/nihongoparserd 



### 9nd February 2014 10AM China time


  * who: sysko
  * why: reinstall suggestd (service powering tag autocompletion)
  * what:  compiled source and installed service
  * how:


installed 

    apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev


compiled suggestd0.9

    aclocal
    autoconf
    automake --add-missing

    ./configure
    make
    make install


after created init script in 

    /etc/init.d/suggestd

and configuration file in 

   
    /etc/suggestd.xml

and default file in 

    /etc/default/suggestd

then create a suggestd user

    useradd -r suggestd

then finally starting it 


    /etc/init.d/suggestd start 


###2nd February 2014 5AM China time

  * who: sysko
  * why: resolve login problems 
  * what:  used memcache instead of sqlite for storing session
  * how:

installed: 

       apt-get install memcached php5-memcache 

modified: `/etc/php5/apache2/php.ini`

```
[Session]
session.save_handler = memcache
session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
```


version at: 23/03/2014, 23:35

#Admin logs 

Please post a description here every time you do a modification on tatoeba.org. 

### 23rd March 2014 17:30 France time

   * who: alanf, guided by Trang
   * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
   * what: https://gist.github.com/trang/baccdee9bea32808f871

### 23rd February 2014 15AM China time

  * who: sysko
  * why:  wiki: fixed redirect problem after login and added reset password feature 
  * what:  updated tatowiki on wiki.tatoeba.org to 0.23.0 


### 11nd February 2014 01AM China time

  * who: sysko
  * why:  restored transliteration for most languages
  * what:  linked nihongoparserd with tatoeba php code mostly
  * how:

I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` 

also I've commented the line `return false;` in `getRomanization`  file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) 

also commented temporaly all call to `sinoparserd` as it's not yet restored 


### 10nd February 2014 11PM China time

  * who: sysko
  * why: installed nihongoparserd (service to generate japanese reading)
  * what:  compiled source and installed service
  * how:

installed:

     apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8


executed 

     git clone https://github.com/allan-simon/nihongoparserd.igt
     cd nihongoparserd
     mkdir build ; cd build ; cmake .. ; make 
     sudo cp nihongoparserd /usr/local/bin
     cd ..
     sudo cp conf/nihongoparserd /etc/init.d/
     sudo chmod +x /etc/init.d/nihongoparserd
     sudo cp conf/default /etc/default/nihongoparserd
     sudo useradd -r nihongoparserd

start the service 

     /etc/init.d/nihongoparserd 



### 9nd February 2014 10AM China time


  * who: sysko
  * why: reinstall suggestd (service powering tag autocompletion)
  * what:  compiled source and installed service
  * how:


installed 

    apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev


compiled suggestd0.9

    aclocal
    autoconf
    automake --add-missing

    ./configure
    make
    make install


after created init script in 

    /etc/init.d/suggestd

and configuration file in 

   
    /etc/suggestd.xml

and default file in 

    /etc/default/suggestd

then create a suggestd user

    useradd -r suggestd

then finally starting it 


    /etc/init.d/suggestd start 


###2nd February 2014 5AM China time

  * who: sysko
  * why: resolve login problems 
  * what:  used memcache instead of sqlite for storing session
  * how:

installed: 

       apt-get install memcached php5-memcache 

modified: `/etc/php5/apache2/php.ini`

```
[Session]
session.save_handler = memcache
session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
```


Note

The lines in green are the lines that have been added in the new version. The lines in red are those that have been removed.