Version at: 05/05/2014, 12:42 vs. version at: 05/05/2014, 12:45
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
4
5### 5th May 2014 22:30 Eastern U.S. time
6
7* who: alanf
8* what:
9
10** added Gujarati
11** reindexed sentences
412
513### 6th April 2014 19:00 France time
614
715* who: Trang
816* what:
917
1018git update-index --assume-unchanged on some files:
1119
1220 git update-index --assume-unchanged app/app_controller.php
1321 git update-index --assume-unchanged app/config/core.php
1422 git update-index --assume-unchanged app/config/database.php
1523 git update-index --assume-unchanged app/controllers/components/mailer.php
1624
1725
18* why: to avoid commiting files with passwords and stuff.
26* why: to avoid committing files with passwords and stuff.
1927
2028### 5th April 2014 19:00 France time
2129
2230* who: LinkMauve
2331* what:
2432
2533 chmod +x setup_sinoparserd.sh
2634
2735 sudo ./setup_sinoparserd.sh
2836
29* why: to restore chinese-related functionality to the website.
37* why: to restore Chinese-related functionality to the website.
3038
3139### 29th March 2014 22:00 Eastern U.S. time
3240
3341 * who: alanf, guided by Trang
3442 * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
3543
3644### 25th March 2014 22:00 Eastern U.S. time
3745
3846 * who: alanf
3947 * why: add audio
4048 * what:
4149 * sync up to most recent commit
4250
4351 * i18n-ized "edited" word
4452
4553 * German UI rework (extensive)
4654
4755 * added audio:
4856
4957 * several dozen sentences by CK
5058
5159 * three sentences by LR
5260
5361### 23rd March 2014 17:30 France time
5462
5563 * who: alanf, guided by Trang
5664 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
5765 * what: https://gist.github.com/trang/baccdee9bea32808f871
5866
5967### 23rd February 2014 15AM China time
6068
6169 * who: sysko
6270 * why: wiki: fixed redirect problem after login and added reset password feature
6371 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
6472
6573
6674### 11nd February 2014 01AM China time
6775
6876 * who: sysko
6977 * why: restored transliteration for most languages
7078 * what: linked nihongoparserd with tatoeba php code mostly
7179 * how:
7280
7381I'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`
7482
7583also 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)
7684
7785also commented temporaly all call to `sinoparserd` as it's not yet restored
7886
7987
8088### 10nd February 2014 11PM China time
8189
8290 * who: sysko
8391 * why: installed nihongoparserd (service to generate japanese reading)
8492 * what: compiled source and installed service
8593 * how:
8694
8795installed:
8896
8997 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
9098
9199
92100executed
93101
94102 git clone https://github.com/allan-simon/nihongoparserd.igt
95103 cd nihongoparserd
96104 mkdir build ; cd build ; cmake .. ; make
97105 sudo cp nihongoparserd /usr/local/bin
98106 cd ..
99107 sudo cp conf/nihongoparserd /etc/init.d/
100108 sudo chmod +x /etc/init.d/nihongoparserd
101109 sudo cp conf/default /etc/default/nihongoparserd
102110 sudo useradd -r nihongoparserd
103111
104112start the service
105113
106114 /etc/init.d/nihongoparserd
107115
108116
109117
110118### 9nd February 2014 10AM China time
111119
112120
113121 * who: sysko
114122 * why: reinstall suggestd (service powering tag autocompletion)
115123 * what: compiled source and installed service
116124 * how:
117125
118126
119127installed
120128
121129 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
122130
123131
124132compiled suggestd0.9
125133
126134 aclocal
127135 autoconf
128136 automake --add-missing
129137
130138 ./configure
131139 make
132140 make install
133141
134142
135143after created init script in
136144
137145 /etc/init.d/suggestd
138146
139147and configuration file in
140148
141149
142150 /etc/suggestd.xml
143151
144152and default file in
145153
146154 /etc/default/suggestd
147155
148156then create a suggestd user
149157
150158 useradd -r suggestd
151159
152160then finally starting it
153161
154162
155163 /etc/init.d/suggestd start
156164
157165
158166###2nd February 2014 5AM China time
159167
160168 * who: sysko
161169 * why: resolve login problems
162170 * what: used memcache instead of sqlite for storing session
163171 * how:
164172
165173installed:
166174
167175 apt-get install memcached php5-memcache
168176
169177modified: `/etc/php5/apache2/php.ini`
170178
171179```
172180[Session]
173181session.save_handler = memcache
174182session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
175183```
176184
177185
178186
diff view generated by jsdifflib

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


version at: 05/05/2014, 12:45

#Admin logs 

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

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


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.