Version at: 26/03/2014, 02:10 vs. version at: 26/03/2014, 02:11
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
44
55### 25th March 2014 22:00 Eastern U.S. time
66
77 * who: alanf
88 * why: add audio
99 * what:
10
1110 * sync up to most recent commit
1211
1312 * i18n-ized "edited" word
1413
15 * German UI rework
14 * German UI rework (extensive)
1615
1716 * added audio:
1817
1918 * several dozen sentences by CK
2019
2120 * three sentences by LR
2221
2322### 23rd March 2014 17:30 France time
2423
2524 * who: alanf, guided by Trang
2625 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
2726 * what: https://gist.github.com/trang/baccdee9bea32808f871
2827
2928### 23rd February 2014 15AM China time
3029
3130 * who: sysko
3231 * why: wiki: fixed redirect problem after login and added reset password feature
3332 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
3433
3534
3635### 11nd February 2014 01AM China time
3736
3837 * who: sysko
3938 * why: restored transliteration for most languages
4039 * what: linked nihongoparserd with tatoeba php code mostly
4140 * how:
4241
4342I'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`
4443
4544also 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)
4645
4746also commented temporaly all call to `sinoparserd` as it's not yet restored
4847
4948
5049### 10nd February 2014 11PM China time
5150
5251 * who: sysko
5352 * why: installed nihongoparserd (service to generate japanese reading)
5453 * what: compiled source and installed service
5554 * how:
5655
5756installed:
5857
5958 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
6059
6160
6261executed
6362
6463 git clone https://github.com/allan-simon/nihongoparserd.igt
6564 cd nihongoparserd
6665 mkdir build ; cd build ; cmake .. ; make
6766 sudo cp nihongoparserd /usr/local/bin
6867 cd ..
6968 sudo cp conf/nihongoparserd /etc/init.d/
7069 sudo chmod +x /etc/init.d/nihongoparserd
7170 sudo cp conf/default /etc/default/nihongoparserd
7271 sudo useradd -r nihongoparserd
7372
7473start the service
7574
7675 /etc/init.d/nihongoparserd
7776
7877
7978
8079### 9nd February 2014 10AM China time
8180
8281
8382 * who: sysko
8483 * why: reinstall suggestd (service powering tag autocompletion)
8584 * what: compiled source and installed service
8685 * how:
8786
8887
8988installed
9089
9190 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
9291
9392
9493compiled suggestd0.9
9594
9695 aclocal
9796 autoconf
9897 automake --add-missing
9998
10099 ./configure
101100 make
102101 make install
103102
104103
105104after created init script in
106105
107106 /etc/init.d/suggestd
108107
109108and configuration file in
110109
111110
112111 /etc/suggestd.xml
113112
114113and default file in
115114
116115 /etc/default/suggestd
117116
118117then create a suggestd user
119118
120119 useradd -r suggestd
121120
122121then finally starting it
123122
124123
125124 /etc/init.d/suggestd start
126125
127126
128127###2nd February 2014 5AM China time
129128
130129 * who: sysko
131130 * why: resolve login problems
132131 * what: used memcache instead of sqlite for storing session
133132 * how:
134133
135134installed:
136135
137136 apt-get install memcached php5-memcache
138137
139138modified: `/etc/php5/apache2/php.ini`
140139
141140```
142141[Session]
143142session.save_handler = memcache
144143session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
145144```
146145
147146
148147
diff view generated by jsdifflib

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


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


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.