📌 오늘의 국제 원자력 동향 2026년 3월 21일(토)
- X-energy가 미국 IPO 서류를 제출하며 AI 전력 수요와 정책 지원을 배경으로 한 차세대 원전 투자 기대가 자본시장 조달 국면으로 이동함
- X-energy와 Talen이 PJM 시장에서 XE-100 다기 배치를 검토하며 데이터센터와 제조업 수요를 겨냥한 미국 SMR 사업화 경로를 구체화함
- IAEA가 자포리자·하르키우·체르노빌의 외부전원 취약성을 재차 경고하며 우크라이나 핵시설의 전시 전력안정성이 핵심 안전 변수로 부상함
- SCK-CEN이 Framatome과 BR2 연구로용 저농축 우라늄 연료 공급 계약을 체결하며 HEU 대체 전환을 가속화함
- 후쿠시마 제1원전 3호기 압력용기 하부의 구멍과 연료잔해 추정 물질이 처음 확인되며 잔해 제거 전략 수립이 진전됨
Mediawiki setup (SoftInstall): 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
편집 요약 없음 |
편집 요약 없음 |
||
| 1번째 줄: | 1번째 줄: | ||
== Platform == | |||
o Amazon EC2 | |||
o Ubuntu | |||
o LAMP | |||
== Mediawiki configuration == | == Mediawiki configuration == | ||
Most configuration is by editing LocalSettings.php. After editing you need to run following script to reflect the changes. | Most configuration is by editing LocalSettings.php. After editing you need to run following script to reflect the changes. | ||
maintenance/update.php | maintenance/update.php | ||
=== External link in new screen === | === External link in new screen === | ||
$wgExternalLinkTarget = '_blank'; | $wgExternalLinkTarget = '_blank'; | ||
| 47번째 줄: | 45번째 줄: | ||
<code>SoftInstall</code> group이 <code>/Rabcg/groups.php</code>에 기록되어 있다. | <code>SoftInstall</code> group이 <code>/Rabcg/groups.php</code>에 기록되어 있다. | ||
=== EmbedVideo === | === EmbedVideo === | ||
이 기능은 Youtube 등 비데오를 엠베딩하기 위한 것이다. | 이 기능은 Youtube 등 비데오를 엠베딩하기 위한 것이다. | ||
| 61번째 줄: | 52번째 줄: | ||
<embedvideo service="youtube">https://www.youtube.com/watch?v=pSsYTj9kCHE</embedvideo> | <embedvideo service="youtube">https://www.youtube.com/watch?v=pSsYTj9kCHE</embedvideo> | ||
=== | == Restart apache2 == | ||
$ sudo service apache2 restart | |||
$ | |||
[[Category:SoftInstall]] | [[Category:SoftInstall]] | ||
2018년 2월 22일 (목) 12:20 판
Platform
o Amazon EC2 o Ubuntu o LAMP
Mediawiki configuration
Most configuration is by editing LocalSettings.php. After editing you need to run following script to reflect the changes.
maintenance/update.php
External link in new screen
$wgExternalLinkTarget = '_blank';
Cite
Extension:Cite is activated.
At LocalSettings.php
require_once "$IP/extensions/Cite/Cite.php";
PDF upload
To allow PDF upload, install PdfHandler
require_once "$IP/extensions/PdfHandler/PdfHandler.php";
Math extension
Latex like expression can be used.
<math>f(x)=\int_0^x{\frac{\lambda}{x}dx}<\math>
require_once "$IP/extensions/Math/Math.php";
Newest Page
This extension displays newly create pages which can be used at "Main" page. [1]
require_once "$IP/extensions/NewestPages/NewestPages.php";
No title at Page
require_once "$IP/extensions/NoTitle/NoTitle.php"; $wgRestrictDisplayTitle = false;
Restrict access by Category
writer를 제외한 일반 이용자들이 문서를 공개할 때까지는 보지 못하게 하기 위한 기능이다.
특정 분류에 속한 문서를 못보도록 하기 위해서는 작성문서 마지막줄에
[[Category:writer]]를 적어 놓으면 된다.
이 기능을 활성화하려면 LocalSettings.php 에 다음 줄을 추가한다.
require_once "$IP/extensions/Rabcg/Rabcg.php"; require_once "$IP/extensions/Rabcg/groups.php";
SoftInstall group이 /Rabcg/groups.php에 기록되어 있다.
EmbedVideo
이 기능은 Youtube 등 비데오를 엠베딩하기 위한 것이다. [2]
사용례)
<embedvideo service="youtube">https://www.youtube.com/watch?v=pSsYTj9kCHE</embedvideo>
Restart apache2
$ sudo service apache2 restart