Version at: 30/03/2014, 14:09 vs. version at: 06/04/2014, 17:32 | ||
---|---|---|
1 | 1 | #Admin logs |
2 | 2 | |
3 | 3 | Please 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 | |
11 | git update-index --assume-unchanged app/config/core.php | |
12 | git update-index --assume-unchanged app/config/database.php | |
13 | git update-index --assume-unchanged app/controllers/components/mailer.php | |
14 | * why: to avoid commiting files with passwords and stuff. | |
4 | 15 | |
5 | 16 | ### 29th March 2014 22:00 Eastern U.S. time |
6 | 17 | |
7 | 18 | * who: alanf, guided by Trang |
8 | 19 | * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html) |
9 | 20 | |
10 | 21 | ### 25th March 2014 22:00 Eastern U.S. time |
11 | 22 | |
12 | 23 | * who: alanf |
13 | 24 | * why: add audio |
14 | 25 | * what: |
15 | 26 | * sync up to most recent commit |
16 | 27 | |
17 | 28 | * i18n-ized "edited" word |
18 | 29 | |
19 | 30 | * German UI rework (extensive) |
20 | 31 | |
21 | 32 | * added audio: |
22 | 33 | |
23 | 34 | * several dozen sentences by CK |
24 | 35 | |
25 | 36 | * three sentences by LR |
26 | 37 | |
27 | 38 | ### 23rd March 2014 17:30 France time |
28 | 39 | |
29 | 40 | * who: alanf, guided by Trang |
30 | 41 | * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) |
31 | 42 | * what: https://gist.github.com/trang/baccdee9bea32808f871 |
32 | 43 | |
33 | 44 | ### 23rd February 2014 15AM China time |
34 | 45 | |
35 | 46 | * who: sysko |
36 | 47 | * why: wiki: fixed redirect problem after login and added reset password feature |
37 | 48 | * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 |
38 | 49 | |
39 | 50 | |
40 | 51 | ### 11nd February 2014 01AM China time |
41 | 52 | |
42 | 53 | * who: sysko |
43 | 54 | * why: restored transliteration for most languages |
44 | 55 | * what: linked nihongoparserd with tatoeba php code mostly |
45 | 56 | * how: |
46 | 57 | |
47 | 58 | 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` |
48 | 59 | |
49 | 60 | 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) |
50 | 61 | |
51 | 62 | also commented temporaly all call to `sinoparserd` as it's not yet restored |
52 | 63 | |
53 | 64 | |
54 | 65 | ### 10nd February 2014 11PM China time |
55 | 66 | |
56 | 67 | * who: sysko |
57 | 68 | * why: installed nihongoparserd (service to generate japanese reading) |
58 | 69 | * what: compiled source and installed service |
59 | 70 | * how: |
60 | 71 | |
61 | 72 | installed: |
62 | 73 | |
63 | 74 | apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 |
64 | 75 | |
65 | 76 | |
66 | 77 | executed |
67 | 78 | |
68 | 79 | git clone https://github.com/allan-simon/nihongoparserd.igt |
69 | 80 | cd nihongoparserd |
70 | 81 | mkdir build ; cd build ; cmake .. ; make |
71 | 82 | sudo cp nihongoparserd /usr/local/bin |
72 | 83 | cd .. |
73 | 84 | sudo cp conf/nihongoparserd /etc/init.d/ |
74 | 85 | sudo chmod +x /etc/init.d/nihongoparserd |
75 | 86 | sudo cp conf/default /etc/default/nihongoparserd |
76 | 87 | sudo useradd -r nihongoparserd |
77 | 88 | |
78 | 89 | start the service |
79 | 90 | |
80 | 91 | /etc/init.d/nihongoparserd |
81 | 92 | |
82 | 93 | |
83 | 94 | |
84 | 95 | ### 9nd February 2014 10AM China time |
85 | 96 | |
86 | 97 | |
87 | 98 | * who: sysko |
88 | 99 | * why: reinstall suggestd (service powering tag autocompletion) |
89 | 100 | * what: compiled source and installed service |
90 | 101 | * how: |
91 | 102 | |
92 | 103 | |
93 | 104 | installed |
94 | 105 | |
95 | 106 | apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev |
96 | 107 | |
97 | 108 | |
98 | 109 | compiled suggestd0.9 |
99 | 110 | |
100 | 111 | aclocal |
101 | 112 | autoconf |
102 | 113 | automake --add-missing |
103 | 114 | |
104 | 115 | ./configure |
105 | 116 | make |
106 | 117 | make install |
107 | 118 | |
108 | 119 | |
109 | 120 | after created init script in |
110 | 121 | |
111 | 122 | /etc/init.d/suggestd |
112 | 123 | |
113 | 124 | and configuration file in |
114 | 125 | |
115 | 126 | |
116 | 127 | /etc/suggestd.xml |
117 | 128 | |
118 | 129 | and default file in |
119 | 130 | |
120 | 131 | /etc/default/suggestd |
121 | 132 | |
122 | 133 | then create a suggestd user |
123 | 134 | |
124 | 135 | useradd -r suggestd |
125 | 136 | |
126 | 137 | then finally starting it |
127 | 138 | |
128 | 139 | |
129 | 140 | /etc/init.d/suggestd start |
130 | 141 | |
131 | 142 | |
132 | 143 | ###2nd February 2014 5AM China time |
133 | 144 | |
134 | 145 | * who: sysko |
135 | 146 | * why: resolve login problems |
136 | 147 | * what: used memcache instead of sqlite for storing session |
137 | 148 | * how: |
138 | 149 | |
139 | 150 | installed: |
140 | 151 | |
141 | 152 | apt-get install memcached php5-memcache |
142 | 153 | |
143 | 154 | modified: `/etc/php5/apache2/php.ini` |
144 | 155 | |
145 | 156 | ``` |
146 | 157 | [Session] |
147 | 158 | session.save_handler = memcache |
148 | 159 | session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" |
149 | 160 | ``` |
150 | 161 | |
151 | 162 | |
152 | 163 | |
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" ```