<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ko">
	<id>https://wiki.chnagil.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin</id>
	<title>잉여 위키 - 사용자 기여 [ko]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.chnagil.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin"/>
	<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%ED%8A%B9%EC%88%98:%EA%B8%B0%EC%97%AC/Admin"/>
	<updated>2026-08-02T04:33:47Z</updated>
	<subtitle>사용자 기여</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Common.js&amp;diff=94</id>
		<title>미디어위키:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Common.js&amp;diff=94"/>
		<updated>2026-07-14T14:36:46Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */&lt;br /&gt;
/* SyntaxHighlight 코드 블록에 복사 버튼 추가 */&lt;br /&gt;
mw.hook(&#039;wikipage.content&#039;).add(function ($content) {&lt;br /&gt;
    $content.find(&#039;div.mw-highlight&#039;).each(function () {&lt;br /&gt;
        var box = this;&lt;br /&gt;
        var pre = box.querySelector(&#039;pre&#039;);&lt;br /&gt;
&lt;br /&gt;
        if (!pre || box.querySelector(&#039;.code-copy-btn&#039;)) {&lt;br /&gt;
            return;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        var button = document.createElement(&#039;button&#039;);&lt;br /&gt;
        button.type = &#039;button&#039;;&lt;br /&gt;
        button.className = &#039;code-copy-btn&#039;;&lt;br /&gt;
        button.textContent = &#039;복사&#039;;&lt;br /&gt;
        button.setAttribute(&#039;aria-label&#039;, &#039;코드 복사&#039;);&lt;br /&gt;
&lt;br /&gt;
        button.addEventListener(&#039;click&#039;, function () {&lt;br /&gt;
            navigator.clipboard.writeText(pre.innerText).then(function () {&lt;br /&gt;
                button.textContent = &#039;복사됨!&#039;;&lt;br /&gt;
                button.classList.add(&#039;copied&#039;);&lt;br /&gt;
&lt;br /&gt;
                window.setTimeout(function () {&lt;br /&gt;
                    button.textContent = &#039;복사&#039;;&lt;br /&gt;
                    button.classList.remove(&#039;copied&#039;);&lt;br /&gt;
                }, 2000);&lt;br /&gt;
            }).catch(function () {&lt;br /&gt;
                button.textContent = &#039;복사 실패&#039;;&lt;br /&gt;
&lt;br /&gt;
                window.setTimeout(function () {&lt;br /&gt;
                    button.textContent = &#039;복사&#039;;&lt;br /&gt;
                }, 2000);&lt;br /&gt;
            });&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        box.classList.add(&#039;has-copy-button&#039;);&lt;br /&gt;
        box.appendChild(button);&lt;br /&gt;
    });&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Common.css&amp;diff=93</id>
		<title>미디어위키:Common.css</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Common.css&amp;diff=93"/>
		<updated>2026-07-14T14:36:30Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* 이 CSS 설정은 모든 스킨에 적용됩니다 */&lt;br /&gt;
/* SyntaxHighlight 복사 버튼 */&lt;br /&gt;
div.mw-highlight.has-copy-button {&lt;br /&gt;
    position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.mw-highlight .code-copy-btn {&lt;br /&gt;
    position: absolute;&lt;br /&gt;
    top: 8px;&lt;br /&gt;
    right: 8px;&lt;br /&gt;
    z-index: 2;&lt;br /&gt;
    padding: 4px 10px;&lt;br /&gt;
    border: 1px solid #a2a9b1;&lt;br /&gt;
    border-radius: 4px;&lt;br /&gt;
    background: #f8f9fa;&lt;br /&gt;
    color: #202122;&lt;br /&gt;
    font-size: 13px;&lt;br /&gt;
    line-height: 1.5;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.mw-highlight .code-copy-btn:hover {&lt;br /&gt;
    background: #eaecf0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.mw-highlight .code-copy-btn.copied {&lt;br /&gt;
    border-color: #14866d;&lt;br /&gt;
    background: #d5fdf4;&lt;br /&gt;
    color: #096450;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* 복사 버튼과 코드가 겹치지 않도록 여백 확보 */&lt;br /&gt;
div.mw-highlight.has-copy-button pre {&lt;br /&gt;
    padding-right: 75px;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Common.js&amp;diff=92</id>
		<title>미디어위키:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Common.js&amp;diff=92"/>
		<updated>2026-07-14T14:33:22Z</updated>

		<summary type="html">&lt;p&gt;Admin: 새 문서: /* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */ document.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, function () {     document.querySelectorAll(&amp;quot;div.mw-highlight&amp;quot;).forEach(function (box) {         var pre = box.querySelector(&amp;quot;pre&amp;quot;);         if (!pre) return;          // 복사 버튼 중복 방지         if (box.querySelector(&amp;quot;.code-copy-btn&amp;quot;)) return;          var button = document.createElement(&amp;quot;button&amp;quot;);         button.textContent = &amp;quot;...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */&lt;br /&gt;
document.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, function () {&lt;br /&gt;
    document.querySelectorAll(&amp;quot;div.mw-highlight&amp;quot;).forEach(function (box) {&lt;br /&gt;
        var pre = box.querySelector(&amp;quot;pre&amp;quot;);&lt;br /&gt;
        if (!pre) return;&lt;br /&gt;
&lt;br /&gt;
        // 복사 버튼 중복 방지&lt;br /&gt;
        if (box.querySelector(&amp;quot;.code-copy-btn&amp;quot;)) return;&lt;br /&gt;
&lt;br /&gt;
        var button = document.createElement(&amp;quot;button&amp;quot;);&lt;br /&gt;
        button.textContent = &amp;quot;복사&amp;quot;;&lt;br /&gt;
        button.className = &amp;quot;code-copy-btn&amp;quot;;&lt;br /&gt;
        button.addEventListener(&amp;quot;click&amp;quot;, function () {&lt;br /&gt;
            navigator.clipboard.writeText(pre.innerText).then(function () {&lt;br /&gt;
                button.textContent = &amp;quot;복사됨!&amp;quot;;&lt;br /&gt;
                setTimeout(() =&amp;gt; button.textContent = &amp;quot;복사&amp;quot;, 2000);&lt;br /&gt;
            });&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        // 박스 위치 보장&lt;br /&gt;
        box.style.position = &amp;quot;relative&amp;quot;;&lt;br /&gt;
        box.appendChild(button);&lt;br /&gt;
    });&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Common.css&amp;diff=91</id>
		<title>미디어위키:Common.css</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Common.css&amp;diff=91"/>
		<updated>2026-07-14T14:31:21Z</updated>

		<summary type="html">&lt;p&gt;Admin: 새 문서: /* 이 CSS 설정은 모든 스킨에 적용됩니다 */ div.mw-highlight pre {     background-color: #1e1e1e;     color: #c5c5c5;     font-family: Consolas, monospace;     padding: 1em;     border-radius: 5px;     border: 1px solid #444;     overflow-x: auto;     position: relative; }  /* 복사 버튼 */ .code-copy-btn {     position: absolute;     top: 5px;     right: 10px;     background: #444;     color: #fff;     border: none;     padding: 4px 8px;     font-size: 0.8em;...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* 이 CSS 설정은 모든 스킨에 적용됩니다 */&lt;br /&gt;
div.mw-highlight pre {&lt;br /&gt;
    background-color: #1e1e1e;&lt;br /&gt;
    color: #c5c5c5;&lt;br /&gt;
    font-family: Consolas, monospace;&lt;br /&gt;
    padding: 1em;&lt;br /&gt;
    border-radius: 5px;&lt;br /&gt;
    border: 1px solid #444;&lt;br /&gt;
    overflow-x: auto;&lt;br /&gt;
    position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* 복사 버튼 */&lt;br /&gt;
.code-copy-btn {&lt;br /&gt;
    position: absolute;&lt;br /&gt;
    top: 5px;&lt;br /&gt;
    right: 10px;&lt;br /&gt;
    background: #444;&lt;br /&gt;
    color: #fff;&lt;br /&gt;
    border: none;&lt;br /&gt;
    padding: 4px 8px;&lt;br /&gt;
    font-size: 0.8em;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
    border-radius: 4px;&lt;br /&gt;
    z-index: 10;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=/MediaWiki:Common.js&amp;diff=90</id>
		<title>/MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=/MediaWiki:Common.js&amp;diff=90"/>
		<updated>2026-07-14T14:30:08Z</updated>

		<summary type="html">&lt;p&gt;Admin: Admin님이 /MediaWiki:Common.js 문서를 미디어위키:Common.js 문서로 이동했습니다&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#넘겨주기 [[미디어위키:Common.js]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Group-wiki-editor-member&amp;diff=88</id>
		<title>미디어위키:Group-wiki-editor-member</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Group-wiki-editor-member&amp;diff=88"/>
		<updated>2026-07-14T14:25:39Z</updated>

		<summary type="html">&lt;p&gt;Admin: &amp;quot;미디어위키:Group-wiki-editor-member&amp;quot; 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;문서 편집자&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Group-wiki-editor-member&amp;diff=87</id>
		<title>미디어위키:Group-wiki-editor-member</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Group-wiki-editor-member&amp;diff=87"/>
		<updated>2026-07-14T14:25:30Z</updated>

		<summary type="html">&lt;p&gt;Admin: 새 문서: 문서 편집자&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;문서 편집자&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Group-wiki-editor&amp;diff=86</id>
		<title>미디어위키:Group-wiki-editor</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Group-wiki-editor&amp;diff=86"/>
		<updated>2026-07-14T14:24:45Z</updated>

		<summary type="html">&lt;p&gt;Admin: &amp;quot;미디어위키:Group-wiki-editor&amp;quot; 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;문서 편집자&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Group-wiki-editor&amp;diff=85</id>
		<title>미디어위키:Group-wiki-editor</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%EB%AF%B8%EB%94%94%EC%96%B4%EC%9C%84%ED%82%A4:Group-wiki-editor&amp;diff=85"/>
		<updated>2026-07-14T14:24:22Z</updated>

		<summary type="html">&lt;p&gt;Admin: 새 문서: 문서 편집자&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;문서 편집자&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.chnagil.net/index.php?title=%EB%8C%80%EB%AC%B8&amp;diff=10</id>
		<title>대문</title>
		<link rel="alternate" type="text/html" href="https://wiki.chnagil.net/index.php?title=%EB%8C%80%EB%AC%B8&amp;diff=10"/>
		<updated>2023-07-17T13:06:08Z</updated>

		<summary type="html">&lt;p&gt;Admin: &amp;quot;대문&amp;quot; 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;이곳은 일부 지인에게 공유하기 위하여 생성된 위키 입니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
잉잉잉???!!!&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>