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