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

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


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.