Version at: 05/05/2014, 12:46 vs. version at: 05/05/2014, 14:28
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
44
55### 4th May 2014 22:30 Eastern U.S. time
66
77* who: alanf
88* what:
99
10 * installed unzip
11 * added English audio sentences (recorded by CK)
1012 * added Gujarati
1113 * reindexed sentences
1214
1315### 6th April 2014 19:00 France time
1416
1517* who: Trang
1618* what:
1719
1820git update-index --assume-unchanged on some files:
1921
2022 git update-index --assume-unchanged app/app_controller.php
2123 git update-index --assume-unchanged app/config/core.php
2224 git update-index --assume-unchanged app/config/database.php
2325 git update-index --assume-unchanged app/controllers/components/mailer.php
2426
2527
2628* why: to avoid committing files with passwords and stuff.
2729
2830### 5th April 2014 19:00 France time
2931
3032* who: LinkMauve
3133* what:
3234
3335 chmod +x setup_sinoparserd.sh
3436
3537 sudo ./setup_sinoparserd.sh
3638
3739* why: to restore Chinese-related functionality to the website.
3840
3941### 29th March 2014 22:00 Eastern U.S. time
4042
4143 * who: alanf, guided by Trang
4244 * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
4345
4446### 25th March 2014 22:00 Eastern U.S. time
4547
4648 * who: alanf
4749 * why: add audio
4850 * what:
4951 * sync up to most recent commit
5052
5153 * i18n-ized "edited" word
5254
5355 * German UI rework (extensive)
5456
5557 * added audio:
5658
5759 * several dozen sentences by CK
5860
5961 * three sentences by LR
6062
6163### 23rd March 2014 17:30 France time
6264
6365 * who: alanf, guided by Trang
6466 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
6567 * what: https://gist.github.com/trang/baccdee9bea32808f871
6668
6769### 23rd February 2014 15AM China time
6870
6971 * who: sysko
7072 * why: wiki: fixed redirect problem after login and added reset password feature
7173 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
7274
7375
7476### 11nd February 2014 01AM China time
7577
7678 * who: sysko
7779 * why: restored transliteration for most languages
7880 * what: linked nihongoparserd with tatoeba php code mostly
7981 * how:
8082
8183I'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`
8284
8385also 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)
8486
8587also commented temporaly all call to `sinoparserd` as it's not yet restored
8688
8789
8890### 10nd February 2014 11PM China time
8991
9092 * who: sysko
9193 * why: installed nihongoparserd (service to generate japanese reading)
9294 * what: compiled source and installed service
9395 * how:
9496
9597installed:
9698
9799 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
98100
99101
100102executed
101103
102104 git clone https://github.com/allan-simon/nihongoparserd.igt
103105 cd nihongoparserd
104106 mkdir build ; cd build ; cmake .. ; make
105107 sudo cp nihongoparserd /usr/local/bin
106108 cd ..
107109 sudo cp conf/nihongoparserd /etc/init.d/
108110 sudo chmod +x /etc/init.d/nihongoparserd
109111 sudo cp conf/default /etc/default/nihongoparserd
110112 sudo useradd -r nihongoparserd
111113
112114start the service
113115
114116 /etc/init.d/nihongoparserd
115117
116118
117119
118120### 9nd February 2014 10AM China time
119121
120122
121123 * who: sysko
122124 * why: reinstall suggestd (service powering tag autocompletion)
123125 * what: compiled source and installed service
124126 * how:
125127
126128
127129installed
128130
129131 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
130132
131133
132134compiled suggestd0.9
133135
134136 aclocal
135137 autoconf
136138 automake --add-missing
137139
138140 ./configure
139141 make
140142 make install
141143
142144
143145after created init script in
144146
145147 /etc/init.d/suggestd
146148
147149and configuration file in
148150
149151
150152 /etc/suggestd.xml
151153
152154and default file in
153155
154156 /etc/default/suggestd
155157
156158then create a suggestd user
157159
158160 useradd -r suggestd
159161
160162then finally starting it
161163
162164
163165 /etc/init.d/suggestd start
164166
165167
166168###2nd February 2014 5AM China time
167169
168170 * who: sysko
169171 * why: resolve login problems
170172 * what: used memcache instead of sqlite for storing session
171173 * how:
172174
173175installed:
174176
175177 apt-get install memcached php5-memcache
176178
177179modified: `/etc/php5/apache2/php.ini`
178180
179181```
180182[Session]
181183session.save_handler = memcache
182184session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
183185```
184186
185187
186188
diff view generated by jsdifflib

Version at: 05/05/2014, 12:46

#Admin logs 

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

### 4th May 2014 22:30 Eastern U.S. time
 
* who: alanf
* what: 

    * added Gujarati
    * reindexed sentences

### 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 committing 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, 14:28

#Admin logs 

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

### 4th May 2014 22:30 Eastern U.S. time
 
* who: alanf
* what: 

    * installed unzip
    * added English audio sentences (recorded by CK)
    * added Gujarati
    * reindexed sentences

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