Version at: 07/04/2014, 07:08 vs. version at: 05/05/2014, 12:42
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
1010git update-index --assume-unchanged on some files:
1111
1212 git update-index --assume-unchanged app/app_controller.php
1313 git update-index --assume-unchanged app/config/core.php
1414 git update-index --assume-unchanged app/config/database.php
1515 git update-index --assume-unchanged app/controllers/components/mailer.php
1616
1717
1818* why: to avoid commiting files with passwords and stuff.
1919
2020### 5th April 2014 19:00 France time
2121
2222* who: LinkMauve
2323* what:
2424
2525 chmod +x setup_sinoparserd.sh
2626
2727 sudo ./setup_sinoparserd.sh
2828
2929* why: to restore chinese-related functionality to the website.
3030
3131### 29th March 2014 22:00 Eastern U.S. time
3232
3333 * who: alanf, guided by Trang
3434 * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
3535
3636### 25th March 2014 22:00 Eastern U.S. time
3737
3838 * who: alanf
3939 * why: add audio
4040 * what:
4141 * sync up to most recent commit
4242
4343 * i18n-ized "edited" word
4444
4545 * German UI rework (extensive)
4646
4747 * added audio:
4848
4949 * several dozen sentences by CK
5050
5151 * three sentences by LR
5252
5353### 23rd March 2014 17:30 France time
5454
5555 * who: alanf, guided by Trang
5656 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
5757 * what: https://gist.github.com/trang/baccdee9bea32808f871
5858
5959### 23rd February 2014 15AM China time
6060
6161 * who: sysko
6262 * why: wiki: fixed redirect problem after login and added reset password feature
6363 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
6464
6565
6666### 11nd February 2014 01AM China time
6767
6868 * who: sysko
6969 * why: restored transliteration for most languages
7070 * what: linked nihongoparserd with tatoeba php code mostly
7171 * how:
7272
7373I'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`
7474
7575also 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)
7676
7777also commented temporaly all call to `sinoparserd` as it's not yet restored
7878
7979
8080### 10nd February 2014 11PM China time
8181
8282 * who: sysko
8383 * why: installed nihongoparserd (service to generate japanese reading)
8484 * what: compiled source and installed service
8585 * how:
8686
8787installed:
8888
8989 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
9090
9191
9292executed
9393
9494 git clone https://github.com/allan-simon/nihongoparserd.igt
9595 cd nihongoparserd
9696 mkdir build ; cd build ; cmake .. ; make
9797 sudo cp nihongoparserd /usr/local/bin
9898 cd ..
9999 sudo cp conf/nihongoparserd /etc/init.d/
100100 sudo chmod +x /etc/init.d/nihongoparserd
101101 sudo cp conf/default /etc/default/nihongoparserd
102102 sudo useradd -r nihongoparserd
103103
104104start the service
105105
106106 /etc/init.d/nihongoparserd
107107
108108
109109
110110### 9nd February 2014 10AM China time
111111
112112
113113 * who: sysko
114114 * why: reinstall suggestd (service powering tag autocompletion)
115115 * what: compiled source and installed service
116116 * how:
117117
118118
119119installed
120120
121121 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
122122
123123
124124compiled suggestd0.9
125125
126126 aclocal
127127 autoconf
128128 automake --add-missing
129129
130130 ./configure
131131 make
132132 make install
133133
134134
135135after created init script in
136136
137137 /etc/init.d/suggestd
138138
139139and configuration file in
140140
141141
142142 /etc/suggestd.xml
143143
144144and default file in
145145
146146 /etc/default/suggestd
147147
148148then create a suggestd user
149149
150150 useradd -r suggestd
151151
152152then finally starting it
153153
154154
155155 /etc/init.d/suggestd start
156156
157157
158158###2nd February 2014 5AM China time
159159
160160 * who: sysko
161161 * why: resolve login problems
162162 * what: used memcache instead of sqlite for storing session
163163 * how:
164164
165165installed:
166166
167167 apt-get install memcached php5-memcache
168168
169169modified: `/etc/php5/apache2/php.ini`
170170
171171```
172172[Session]
173173session.save_handler = memcache
174174session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
175175```
176176
177177
178178
diff view generated by jsdifflib

Version at: 07/04/2014, 07:08

#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 on some files:

    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.

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

* who: LinkMauve
* what:

  chmod +x setup_sinoparserd.sh

  sudo ./setup_sinoparserd.sh

* why: to restore chinese-related functionality to the website.

### 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: 05/05/2014, 12:42

#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 on some files:

    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.

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

* who: LinkMauve
* what:

  chmod +x setup_sinoparserd.sh

  sudo ./setup_sinoparserd.sh

* why: to restore chinese-related functionality to the website.

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