Version at: 06/04/2014, 17:32 vs. version at: 06/04/2014, 17:33
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
44
55### 6th April 2014 19:00 France time
66
77* who: Trang
88* what:
99
10 git update-index --assume-unchanged app/app_controller.php
11git update-index --assume-unchanged app/config/core.php
12git update-index --assume-unchanged app/config/database.php
13git update-index --assume-unchanged app/controllers/components/mailer.php
10> git update-index --assume-unchanged app/app_controller.php
11> git update-index --assume-unchanged app/config/core.php
12> git update-index --assume-unchanged app/config/database.php
13> git update-index --assume-unchanged app/controllers/components/mailer.php
14
1415* why: to avoid commiting files with passwords and stuff.
1516
1617### 29th March 2014 22:00 Eastern U.S. time
1718
1819 * who: alanf, guided by Trang
1920 * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
2021
2122### 25th March 2014 22:00 Eastern U.S. time
2223
2324 * who: alanf
2425 * why: add audio
2526 * what:
2627 * sync up to most recent commit
2728
2829 * i18n-ized "edited" word
2930
3031 * German UI rework (extensive)
3132
3233 * added audio:
3334
3435 * several dozen sentences by CK
3536
3637 * three sentences by LR
3738
3839### 23rd March 2014 17:30 France time
3940
4041 * who: alanf, guided by Trang
4142 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
4243 * what: https://gist.github.com/trang/baccdee9bea32808f871
4344
4445### 23rd February 2014 15AM China time
4546
4647 * who: sysko
4748 * why: wiki: fixed redirect problem after login and added reset password feature
4849 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
4950
5051
5152### 11nd February 2014 01AM China time
5253
5354 * who: sysko
5455 * why: restored transliteration for most languages
5556 * what: linked nihongoparserd with tatoeba php code mostly
5657 * how:
5758
5859I'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`
5960
6061also 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)
6162
6263also commented temporaly all call to `sinoparserd` as it's not yet restored
6364
6465
6566### 10nd February 2014 11PM China time
6667
6768 * who: sysko
6869 * why: installed nihongoparserd (service to generate japanese reading)
6970 * what: compiled source and installed service
7071 * how:
7172
7273installed:
7374
7475 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
7576
7677
7778executed
7879
7980 git clone https://github.com/allan-simon/nihongoparserd.igt
8081 cd nihongoparserd
8182 mkdir build ; cd build ; cmake .. ; make
8283 sudo cp nihongoparserd /usr/local/bin
8384 cd ..
8485 sudo cp conf/nihongoparserd /etc/init.d/
8586 sudo chmod +x /etc/init.d/nihongoparserd
8687 sudo cp conf/default /etc/default/nihongoparserd
8788 sudo useradd -r nihongoparserd
8889
8990start the service
9091
9192 /etc/init.d/nihongoparserd
9293
9394
9495
9596### 9nd February 2014 10AM China time
9697
9798
9899 * who: sysko
99100 * why: reinstall suggestd (service powering tag autocompletion)
100101 * what: compiled source and installed service
101102 * how:
102103
103104
104105installed
105106
106107 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
107108
108109
109110compiled suggestd0.9
110111
111112 aclocal
112113 autoconf
113114 automake --add-missing
114115
115116 ./configure
116117 make
117118 make install
118119
119120
120121after created init script in
121122
122123 /etc/init.d/suggestd
123124
124125and configuration file in
125126
126127
127128 /etc/suggestd.xml
128129
129130and default file in
130131
131132 /etc/default/suggestd
132133
133134then create a suggestd user
134135
135136 useradd -r suggestd
136137
137138then finally starting it
138139
139140
140141 /etc/init.d/suggestd start
141142
142143
143144###2nd February 2014 5AM China time
144145
145146 * who: sysko
146147 * why: resolve login problems
147148 * what: used memcache instead of sqlite for storing session
148149 * how:
149150
150151installed:
151152
152153 apt-get install memcached php5-memcache
153154
154155modified: `/etc/php5/apache2/php.ini`
155156
156157```
157158[Session]
158159session.save_handler = memcache
159160session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
160161```
161162
162163
163164
diff view generated by jsdifflib

Version at: 06/04/2014, 17:32

#Admin logs 

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

### 6th April 2014 19:00 France time

* who: Trang
* what:

 git update-index --assume-unchanged app/app_controller.php
git update-index --assume-unchanged app/config/core.php
git update-index --assume-unchanged app/config/database.php
git update-index --assume-unchanged app/controllers/components/mailer.php
* why: to avoid commiting files with passwords and stuff.

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


version at: 06/04/2014, 17:33

#Admin logs 

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

### 6th April 2014 19:00 France time

* who: Trang
* what:

> git update-index --assume-unchanged app/app_controller.php
> git update-index --assume-unchanged app/config/core.php
> git update-index --assume-unchanged app/config/database.php
> git update-index --assume-unchanged app/controllers/components/mailer.php

* why: to avoid commiting files with passwords and stuff.

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