Version at: 23/03/2014, 23:35 vs. version at: 26/03/2014, 02:10
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
4
5### 25th March 2014 22:00 Eastern U.S. time
6
7 * who: alanf
8 * why: add audio
9 * what:
10
11 * sync up to most recent commit
12
13 * i18n-ized "edited" word
14
15 * German UI rework
16
17 * added audio:
18
19 * several dozen sentences by CK
20
21 * three sentences by LR
422
523### 23rd March 2014 17:30 France time
624
725 * who: alanf, guided by Trang
826 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
927 * what: https://gist.github.com/trang/baccdee9bea32808f871
1028
1129### 23rd February 2014 15AM China time
1230
1331 * who: sysko
1432 * why: wiki: fixed redirect problem after login and added reset password feature
1533 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
1634
1735
1836### 11nd February 2014 01AM China time
1937
2038 * who: sysko
2139 * why: restored transliteration for most languages
2240 * what: linked nihongoparserd with tatoeba php code mostly
2341 * how:
2442
2543I'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`
2644
2745also 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)
2846
2947also commented temporaly all call to `sinoparserd` as it's not yet restored
3048
3149
3250### 10nd February 2014 11PM China time
3351
3452 * who: sysko
3553 * why: installed nihongoparserd (service to generate japanese reading)
3654 * what: compiled source and installed service
3755 * how:
3856
3957installed:
4058
4159 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
4260
4361
4462executed
4563
4664 git clone https://github.com/allan-simon/nihongoparserd.igt
4765 cd nihongoparserd
4866 mkdir build ; cd build ; cmake .. ; make
4967 sudo cp nihongoparserd /usr/local/bin
5068 cd ..
5169 sudo cp conf/nihongoparserd /etc/init.d/
5270 sudo chmod +x /etc/init.d/nihongoparserd
5371 sudo cp conf/default /etc/default/nihongoparserd
5472 sudo useradd -r nihongoparserd
5573
5674start the service
5775
5876 /etc/init.d/nihongoparserd
5977
6078
6179
6280### 9nd February 2014 10AM China time
6381
6482
6583 * who: sysko
6684 * why: reinstall suggestd (service powering tag autocompletion)
6785 * what: compiled source and installed service
6886 * how:
6987
7088
7189installed
7290
7391 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
7492
7593
7694compiled suggestd0.9
7795
7896 aclocal
7997 autoconf
8098 automake --add-missing
8199
82100 ./configure
83101 make
84102 make install
85103
86104
87105after created init script in
88106
89107 /etc/init.d/suggestd
90108
91109and configuration file in
92110
93111
94112 /etc/suggestd.xml
95113
96114and default file in
97115
98116 /etc/default/suggestd
99117
100118then create a suggestd user
101119
102120 useradd -r suggestd
103121
104122then finally starting it
105123
106124
107125 /etc/init.d/suggestd start
108126
109127
110128###2nd February 2014 5AM China time
111129
112130 * who: sysko
113131 * why: resolve login problems
114132 * what: used memcache instead of sqlite for storing session
115133 * how:
116134
117135installed:
118136
119137 apt-get install memcached php5-memcache
120138
121139modified: `/etc/php5/apache2/php.ini`
122140
123141```
124142[Session]
125143session.save_handler = memcache
126144session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
127145```
128146
129147
130148
diff view generated by jsdifflib

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"
```


version at: 26/03/2014, 02:10

#Admin logs 

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

### 25th March 2014 22:00 Eastern U.S. time

   * who: alanf
   * why: add audio
   * what: 

        * sync up to most recent commit

            * i18n-ized "edited" word

            * German UI rework

        * added audio:

            * several dozen sentences by CK

            * three sentences by LR

### 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.