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