Version at: 26/03/2014, 02:11 vs. version at: 30/03/2014, 14:09
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
44
5### 29th March 2014 22:00 Eastern U.S. time
6
7 * who: alanf, guided by Trang
8 * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
9
510### 25th March 2014 22:00 Eastern U.S. time
611
712 * who: alanf
813 * why: add audio
914 * what:
1015 * sync up to most recent commit
1116
1217 * i18n-ized "edited" word
1318
1419 * German UI rework (extensive)
1520
1621 * added audio:
1722
1823 * several dozen sentences by CK
1924
2025 * three sentences by LR
2126
2227### 23rd March 2014 17:30 France time
2328
2429 * who: alanf, guided by Trang
2530 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
2631 * what: https://gist.github.com/trang/baccdee9bea32808f871
2732
2833### 23rd February 2014 15AM China time
2934
3035 * who: sysko
3136 * why: wiki: fixed redirect problem after login and added reset password feature
3237 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
3338
3439
3540### 11nd February 2014 01AM China time
3641
3742 * who: sysko
3843 * why: restored transliteration for most languages
3944 * what: linked nihongoparserd with tatoeba php code mostly
4045 * how:
4146
4247I'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`
4348
4449also 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)
4550
4651also commented temporaly all call to `sinoparserd` as it's not yet restored
4752
4853
4954### 10nd February 2014 11PM China time
5055
5156 * who: sysko
5257 * why: installed nihongoparserd (service to generate japanese reading)
5358 * what: compiled source and installed service
5459 * how:
5560
5661installed:
5762
5863 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
5964
6065
6166executed
6267
6368 git clone https://github.com/allan-simon/nihongoparserd.igt
6469 cd nihongoparserd
6570 mkdir build ; cd build ; cmake .. ; make
6671 sudo cp nihongoparserd /usr/local/bin
6772 cd ..
6873 sudo cp conf/nihongoparserd /etc/init.d/
6974 sudo chmod +x /etc/init.d/nihongoparserd
7075 sudo cp conf/default /etc/default/nihongoparserd
7176 sudo useradd -r nihongoparserd
7277
7378start the service
7479
7580 /etc/init.d/nihongoparserd
7681
7782
7883
7984### 9nd February 2014 10AM China time
8085
8186
8287 * who: sysko
8388 * why: reinstall suggestd (service powering tag autocompletion)
8489 * what: compiled source and installed service
8590 * how:
8691
8792
8893installed
8994
9095 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
9196
9297
9398compiled suggestd0.9
9499
95100 aclocal
96101 autoconf
97102 automake --add-missing
98103
99104 ./configure
100105 make
101106 make install
102107
103108
104109after created init script in
105110
106111 /etc/init.d/suggestd
107112
108113and configuration file in
109114
110115
111116 /etc/suggestd.xml
112117
113118and default file in
114119
115120 /etc/default/suggestd
116121
117122then create a suggestd user
118123
119124 useradd -r suggestd
120125
121126then finally starting it
122127
123128
124129 /etc/init.d/suggestd start
125130
126131
127132###2nd February 2014 5AM China time
128133
129134 * who: sysko
130135 * why: resolve login problems
131136 * what: used memcache instead of sqlite for storing session
132137 * how:
133138
134139installed:
135140
136141 apt-get install memcached php5-memcache
137142
138143modified: `/etc/php5/apache2/php.ini`
139144
140145```
141146[Session]
142147session.save_handler = memcache
143148session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
144149```
145150
146151
147152
diff view generated by jsdifflib

Version at: 26/03/2014, 02:11

#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 (extensive)

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


version at: 30/03/2014, 14:09

#Admin logs 

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

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

   * who: alanf, guided by Trang
   * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
    
### 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 (extensive)

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