Version at: 30/03/2014, 14:09 vs. version at: 06/04/2014, 17:32
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
4
5### 6th April 2014 19:00 France time
6
7* who: Trang
8* what:
9
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
14* why: to avoid commiting files with passwords and stuff.
415
516### 29th March 2014 22:00 Eastern U.S. time
617
718 * who: alanf, guided by Trang
819 * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
920
1021### 25th March 2014 22:00 Eastern U.S. time
1122
1223 * who: alanf
1324 * why: add audio
1425 * what:
1526 * sync up to most recent commit
1627
1728 * i18n-ized "edited" word
1829
1930 * German UI rework (extensive)
2031
2132 * added audio:
2233
2334 * several dozen sentences by CK
2435
2536 * three sentences by LR
2637
2738### 23rd March 2014 17:30 France time
2839
2940 * who: alanf, guided by Trang
3041 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
3142 * what: https://gist.github.com/trang/baccdee9bea32808f871
3243
3344### 23rd February 2014 15AM China time
3445
3546 * who: sysko
3647 * why: wiki: fixed redirect problem after login and added reset password feature
3748 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
3849
3950
4051### 11nd February 2014 01AM China time
4152
4253 * who: sysko
4354 * why: restored transliteration for most languages
4455 * what: linked nihongoparserd with tatoeba php code mostly
4556 * how:
4657
4758I'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`
4859
4960also 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)
5061
5162also commented temporaly all call to `sinoparserd` as it's not yet restored
5263
5364
5465### 10nd February 2014 11PM China time
5566
5667 * who: sysko
5768 * why: installed nihongoparserd (service to generate japanese reading)
5869 * what: compiled source and installed service
5970 * how:
6071
6172installed:
6273
6374 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
6475
6576
6677executed
6778
6879 git clone https://github.com/allan-simon/nihongoparserd.igt
6980 cd nihongoparserd
7081 mkdir build ; cd build ; cmake .. ; make
7182 sudo cp nihongoparserd /usr/local/bin
7283 cd ..
7384 sudo cp conf/nihongoparserd /etc/init.d/
7485 sudo chmod +x /etc/init.d/nihongoparserd
7586 sudo cp conf/default /etc/default/nihongoparserd
7687 sudo useradd -r nihongoparserd
7788
7889start the service
7990
8091 /etc/init.d/nihongoparserd
8192
8293
8394
8495### 9nd February 2014 10AM China time
8596
8697
8798 * who: sysko
8899 * why: reinstall suggestd (service powering tag autocompletion)
89100 * what: compiled source and installed service
90101 * how:
91102
92103
93104installed
94105
95106 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
96107
97108
98109compiled suggestd0.9
99110
100111 aclocal
101112 autoconf
102113 automake --add-missing
103114
104115 ./configure
105116 make
106117 make install
107118
108119
109120after created init script in
110121
111122 /etc/init.d/suggestd
112123
113124and configuration file in
114125
115126
116127 /etc/suggestd.xml
117128
118129and default file in
119130
120131 /etc/default/suggestd
121132
122133then create a suggestd user
123134
124135 useradd -r suggestd
125136
126137then finally starting it
127138
128139
129140 /etc/init.d/suggestd start
130141
131142
132143###2nd February 2014 5AM China time
133144
134145 * who: sysko
135146 * why: resolve login problems
136147 * what: used memcache instead of sqlite for storing session
137148 * how:
138149
139150installed:
140151
141152 apt-get install memcached php5-memcache
142153
143154modified: `/etc/php5/apache2/php.ini`
144155
145156```
146157[Session]
147158session.save_handler = memcache
148159session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
149160```
150161
151162
152163
diff view generated by jsdifflib

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


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


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.