#f7f7f7 6개의 스레드 ✕ 해제
이온디
이온디 1개월 전
2025. 06. 17 초고 작성 개발자들을 위한 나라는 없다 누구나 개발자가 될 수 있는 시대, 진짜 개발자의 가치를 찾아서 PDF 다운로드 온라인으로 읽기 새벽 3시, 모니터 앞에서 에너지드링크를 마시며 버그와 씨름하던 그 시절이 있었다. ChatGPT가 내가 3일간 짠 코드를 5분 만에 뚝딱 만들어내는 걸 보고 나서, 문득 이런 생각이 들었다. "개발자들을 위한 나라… 2025. 06. 17 초고 작성 개발자들을 위한 나라는 없다 누구나 개발자가 될 수 있는 시대, 진짜 개발자의 가치를 찾아서 PDF 다운로드 온라인으로 읽기 새벽 3시, 모니터 앞에서 에너지드링크를 마시며 버그와 씨름하던 그 시절이 있었다. ChatGPT가 내가 3일간 짠 코드를 5분 만에 뚝딱 만들어내는 걸 보고 나서, 문득 이런 생각이 들었다. "개발자들을 위한 나라는 정말 없는 건 아닐까?" 하지만 몇 달 후, 완전히 다른 결론에 도달했다. 이 책은 그 과정의 기록이다. AI 시대에 개발자의 가치가 사라지는 게 아니라, 모든 사람이 개발자가 되는 시대가 오고 있다는 이야기. 목차 프롤로그 개발자라는 직업의 종말과 시작 1장 10년 차 개발자가 ChatGPT에게 밀린 날 2장 AI가 5분 만에 해치운 나의 3일짜리 작업 3장 "코딩 몰라도 앱 만든다"는 거짓말과 진실 4장 카페 사장이 만든 POS 시스템 5장 AI 개발 도구 완전 정복 가이드 6장 코딩을 몰라도 되는 것 vs 반드시 알아야 하는 것 7장 일반인 개발자의 현실적 한계와 극복법 8장 전문 개발자의 생존 전략 9장 모든 직업이 개발자를 포함하는 시대 10장 사이드프로젝트의 종말, 개인프로젝트의 시작 에필로그 개발자로 살아남는다는 것의 새로운 의미 작성 시점 안내 이 책은 2025년 6월의 AI 기술 환경을 기준으로 작성되었습니다. AI의 발전 속도는 상상을 초월하기 때문에, 일부 내용은 현재 시점과 다를 수 있습니다. 당시의 기록으로 읽어주세요. 브라우저가 PDF 뷰어를 지원하지 않습니다. PDF를 다운로드하세요.
이온디
이온디 5년 전
이 글을 쓰고 나서 느낀 교훈 : 오래된 위젯은 버리자! 서버 오류 Error #0 "Call to a member function attributes() on bool" in modules/widget/widget.controller.php on line 278 https://eond.com/home_old 위 페이지에 접근하려니 위와 같은 오류가 발생합니다. 아마도 위젯 문제이지 않을까 하네요. modules/widget/widget.controller.php 278라인 foreach … 이 글을 쓰고 나서 느낀 교훈 : 오래된 위젯은 버리자! 서버 오류 Error #0 "Call to a member function attributes() on bool" in modules/widget/widget.controller.php on line 278 https://eond.com/home_old 위 페이지에 접근하려니 위와 같은 오류가 발생합니다. 아마도 위젯 문제이지 않을까 하네요. modules/widget/widget.controller.php 278라인 foreach ($xml->img ? $xml->img->attributes() : $xml->attributes() as $key => $val) { $vars->{$key} = strval($val); }foreach 문 안에 php 삼항연산자로 된 코드입니다. 삼항연산자는 조건문 ? 이면 실행 : 아니면 실행 이렇게 이해할 수 있습니다. $xml->img 일 경우 $xml->img->attributes() 함수를 실행하고 아닌 경우에는 $xml->attributes()를 실행한다는 뜻인데, 어찌됐던 두 조건 모두 attributes() 함수를 실행하고 있네요. 자, 그럼 attributes()함수란 녀석은 어디에 있는 걸까요? -_-; 먼저 해당 파일을 열어보면 맨 위에 class widgetController 이라고 widgetController 라는 클래스를 담고 있습니다. http://xpressengine.github.io/xe-manual-api/html/classes.html XE 깃헙에 매뉴얼에서 class 페이지입니다. widgetController라고 검색 후 찾아갑니다. 그 다음 transWidget을 찾아봅니다. http://xpressengine.github.io/xe-manual-api/html/classwidgetController.html#ab83211452280836e73df5f7b6acdea82 해당 파일을 열어보면 지금의 라이믹스와는 다르다는 걸 알 수 있네요. http://xpressengine.github.io/xe-manual-api/html/widget_8controller_8php_source.html XE에서는 attributes() 라는 코드가 없었는데, 라이믹스에서는 발견되네요. 흠.. 라이믹스 전체 코드에서 attributes() 라고 검색해봅니다. 찾아봐도 없...습니다.. 그럼 이건 php 자체 함수..가 아닐까 하는 생각이 들더군요. https://www.php.net/manual/en/simplexmlelement.attributes.php http://docs.php.net/manual/kr/simplexmlelement.attributes.php https://php.watch/versions/8.0/attributes https://www.w3schools.com/php/func_simplexml_attributes.asp http://tcpschool.com/php/php_basic_datatype https://www.daniweb.com/programming/web-development/threads/326430/simple-xml-fatal-error-call-to-a-member-function-attributes-on-a-non-object https://www.daniweb.com/programming/web-development/threads/326430/simple-xml-fatal-error-call-to-a-member-function-attributes-on-a-non-object" style="height: 240px;">https://www.daniweb.com/programming/web-development/threads/326430/simple-xml-fatal-error-call-to-a-member-function-attributes-on-a-non-object 구글에 'Call to a member function attributes() on bool' 라고 검색해보았습니다. XE나 라이믹스 관련해서는 답이 안나오지만 일반적으로 많이 뜨는거 같네요.. 답이 안 나오니 그럼 다시 home_old로 돌아가서, 이 페이지에 뭐가 있는지 알아봅시다. phpmyadmin에서 home_old로 검색해봅니다. xe_modules 등에서 보이네요. 그럼 정확하게 이게 뭔지 알아야 하니깐, 관리자 > 사이트맵 > 해당 메뉴 편집 > 상세설정 페이지를 열어봅니다. https://eond.com/index.php?module=admin&act=dispPageAdminInfo&module_srl=907&isLayoutDrop=1주소에서 module_srl=907이라는 것을 확인할 수 있습니다. 그럼 xe_modules 테이블에서 module_srl이 907인 페이지를 열어봅니다. content 컬럼을 보면 아래와 같습니다. <STYLE> a:link { text-decoration: none; color: #424242;} a:visited { text-decoration: none; color: #424242;} a:active { text-decoration: none; color: #424242;} a:hover { text-decoration: underline; color: #0066CC;} </STYLE> <DIV id=contentLeft style="DISPLAY: none">왼쪽입니다.</DIV> <DIV id=contentMain><!--[Start] Google Adsense :: 추천 피카사 --> <DIV style="BORDER-RIGHT: #e6e6e6 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #e6e6e6 1px solid; PADDING-LEFT: 5px; BACKGROUND: #f7f7f7; PADDING-BOTTOM: 5px; BORDER-LEFT: #e6e6e6 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #e6e6e6 1px solid"> <SCRIPT type=text/javascript><!-- google_ad_client = "pub-7200623708996327"; google_ad_output = "textlink"; google_ad_format = "ref_text"; google_cpa_choice = "CAAQ6OSkyAIaCJxVa1sfS2X7KJT5uYsBMAA"; //--> </SCRIPT> <SCRIPT src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type=text/javascript></SCRIPT> </DIV><!--[End] Google Adsense :: 추천 피카사 --><IMG height=119 src="files/attach/images/907/907/main_cover_title_img3.png" width=122 align=left border=0 editor_component="image_link"><IMG height=113 src="files/attach/images/907/907/main_cover_title_txt.png" width=337 align=left border=0 editor_component="image_link"><BR><BR><BR><BR>&nbsp;&nbsp;&nbsp; &nbsp;<IMG height=30 alt="자기관리 블로그" src="files/attach/images/907/907/shortcut_blog.png" width=59 align=right border=0 editor_component="image_link" open_window="Y" link_url="http://blog.eond.com"> <!-- 구글 애드센스(EondMainContentCenterTop/) 시작 --> <DIV class=clearB style="TEXT-ALIGN: center"><!--[Start] Google Adsense :: 추천 파이어폭스 --> <DIV style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px"> <SCRIPT type=text/javascript><!-- google_ad_client = "pub-7200623708996327"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as_rimg"; google_cpa_choice = "CAEQz-D7zwEaCLzjbW_klYeNKNe893M"; //--> </SCRIPT> <SCRIPT src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type=text/javascript></SCRIPT> </DIV><!--[End] Google Adsense :: 추천 파이어폭스 --></DIV><!-- 갤러리 및 자유게시판 시작 --> <DIV id=lst_gallery><!-- 갤러리 시작 --> <DIV id=lst_gallery_title> <DIV class=goGallery><IMG height=9 src="files/attach/images/907/907/ico_more_02%5B1%5D.gif" width=32 align=right border=0 editor_component="image_link" link_url="http://eond.com/eond/gallery_main"></DIV></DIV> <DIV id=lst_gallery_content><IMG class=zbxe_widget_output title="" style="CLEAR: both" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" width="100%" module_srl="1" body="" widget="newest_images" widget_sequence="119897" skin="black_underline" colorset="default" widget_cache="0" mid_list="gallery,myphoto,people" title_length="8" thumbnail_width="110" cols_list_count="3" rows_list_count="2" display_author="N" display_regdate="N" display_readed_count="N" display_voted_count="N" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="" widget_width="100" widget_width_type="%" widget_position="" thumbnail_height="null" thumbnail_type="crop"> <!--[Start]Google Adsense :: 가로 링크5 --> <DIV style="HEIGHT: 20px" align=center> <SCRIPT type=text/javascript><!-- google_ad_client = "pub-7200623708996327"; google_ad_width = 468; google_ad_height = 15; google_ad_format = "468x15_0ads_al_s"; //2007-09-18: Eond, EondMainContentCenterTop google_ad_channel = "9211275113"; google_color_border = "858585"; google_color_bg = "858585"; google_color_link = "4C4C4C"; google_color_text = "AAAAAA"; google_color_url = "999999"; //--> </SCRIPT> <SCRIPT src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type=text/javascript> </SCRIPT> </DIV><!--[End]Google Adsense :: 가로 링크5 --></DIV><!-- 갤러리 끝--><!-- 전체최근포스트 및 회원출력부분 시작--> <DIV id=member_output><!-- 자유게시판 시작 --> <DIV id=lst_article><IMG class=zbxe_widget_output title="최근 포스트" style="FLOAT: left; WIDTH: 100%" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="newest_document" widget_sequence="119899" skin="eond_blu_webzine" colorset="normal" widget_cache="0" mid_list="ani,banner,bbs,book,cf,coding,mov,music,poem,tip,zbxe" widget_margin_top="" widget_margin_left="" widget_margin_right="5" widget_margin_bottom="" widget_fix_width="Y" widget_width="100" widget_width_type="%" widget_position="left" subject_cut_size="" list_count="12" order_type="desc" order_target="list_order" duration_new="null"> </DIV><!-- 자유게시판 끝 --><!-- 현재로그인회원 시작 --> <DIV id=login_member><IMG class=zbxe_widget_output title="" style="FLOAT: right; WIDTH: 100%" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="login_member" widget_sequence="119902" skin="default" colorset="normal" widget_cache="5" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="100" widget_width_type="%" widget_position="right" list_count="5" expire_time="10"> </DIV><!-- 현재로그인회원 끝 --><!-- 최근가입한회원 시작 --> <DIV id=join_member><IMG class=zbxe_widget_output title="최근 가입한 회원" style="FLOAT: right; WIDTH: 100%" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="member_group" widget_sequence="119913" skin="default" colorset="normal" widget_cache="0" widget_margin_top="" widget_margin_left="0" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="100" widget_width_type="%" widget_position="right" list_count="5" target_group="준회원"> </DIV><!-- 최근가입한회원 끝 --></DIV><!-- 회원출력 끝 --></DIV><!-- 갤러리 및 자유게시판 끝 --><!-- 태그 클라우드 시작 --><!--[Start] Google Adsense :: 468*60 Bn--> <DIV align=center> <SCRIPT type=text/javascript><!-- google_ad_client = "pub-7200623708996327"; //EondMainBnCenterTop,468x60 (071114) google_ad_slot = "9464842419"; google_ad_width = 468; google_ad_height = 60; //--> </SCRIPT> <SCRIPT src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type=text/javascript></SCRIPT> </DIV><!--[End] Google Adsense :: 468*60 Bn--> <DIV class=rct_title><IMG style="BORDER-BOTTOM: rgb(0,0,0) 5px solid" height=25 src="http://eond.com/eond/files/attach/images/907/907/tagcolud.png" width=70 editor_component="image_link"></DIV> <DIV id=tagcloud_content><IMG class=zbxe_widget_output title="" style="CLEAR: both" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" width="100%" module_srl="1" body="" widget="tag_list" widget_sequence="119906" skin="cozy_simple" colorset="cyworld" widget_cache="0" mid_list="2u,adsense,ani,attach,banner,bbs,blog,book,build,cf,cgi,chat,coding,favimg,feedback,flow,font,friends,gallery,gallery_main,google,google_content,handwriting,hangeul,hanja,harmonica,home,html,link,login_ktf_autumn,me,member,mom,monologue,mov,music,music_xml,mwz,mybox,myphoto,naie,nalog,nick,nie,notice,pds,people,photogallery,phpinfo,poem,qna,realphoto,rp_gallery,rp_gallery_old,rp_link,rp_member,scrap,scw,scw2,service,sig,siteinfo,source,style,test,theme,tip,todaycomment,todo,webstudy,zb4,zbxe,zcount,zeroboard,zerocounter,zero_one" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="" widget_width="100" widget_width_type="%" widget_position="" list_count="26"></DIV><!-- 태그 클라우드 끝--><!-- 전체최근댓글 시작--> <DIV class=rct_title><IMG height=24 src="./files/attach/images/907/907/trc.png" width=156 border=0 editor_component="image_link"></DIV> <DIV id=trc_content><IMG class=zbxe_widget_output title="" style="FLOAT: left" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="newest_comment" widget_sequence="119909" skin="c2comment" colorset="normal" widget_cache="0" mid_list="ani,attach,banner,bbs,blog,book,build,cgi,chat,coding,favimg,flow,font,gallery,gallery_main,handwriting,hangeul,hanja,harmonica,home,link,me,member,mom,monologue,mov,music,mybox,myphoto,nalog,nick,notice,people,photogallery,phpinfo,poem,realphoto,rp_gallery,rp_gallery_old,rp_link,rp_member,scrap,scw,service,sig,siteinfo,source,style,test,theme,tip,todaycomment,todo,webstudy,zbxe,zeroboard,zerocounter,zero_one" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="100%" widget_width_type="%" widget_position="" list_count="15"></DIV><!-- 전체 최근댓글 끝--><BR><!-- 게시판 전체 시작 --> <DIV id=menu_lst> <UL class=menu_lst_category>Home <LI>공지사항 <LI>작업현황 <LI>자유게시판 <LI>전광판 <LI>MyTalk <LI>링크 <LI>사이트테마 <LI>phpinfo <LI>트래픽관리 <LI>계정사용현황 <LI>n@log <LI>제로카운터 <LI>회원목록 <LI>n@imageExplorer2 <LI>ImageScanner <LI>웹디렉토리 <LI>구글애드센스</LI></UL> <UL class=menu_lst_category>Gallery <LI>사진전시방 <LI>사람들사진 <LI>개인사진방 <LI>마이스타일 <LI>개인취향 <LI>포토갤러리 <LI>엄마그림 <LI>와촌터널 소방훈련</LI></UL> <UL class=menu_lst_category>WebStudy <LI>코딩활용 <LI>디자인소스 <LI>팁일반 <LI>글꼴소개 <LI>제로보드관련 <LI>cgi프로그램 <LI>제로원프로젝트</LI></UL> <UL class=menu_lst_category>Service <LI>음악 <LI>시 <LI>동영상 <LI>우리말산책 <LI>배너수집 <LI>하모니카 <LI>손글씨 <LI>한자익히기 <LI>오늘의한마디</LI></UL> <UL class=menu_lst_category>MyBox <LI>ToDoList <LI>모놀로그 <LI>About ME <LI>To.You <LI>Scrap <LI>대화기록 <LI>대화명 <LI>Signature</LI></UL></DIV><!-- 게시판 전체목록 끝--></DIV><!-- 전체메뉴 하단 시작 --> <DIV id=menu_lst_foot><!-- 구글 애드센스 시작 --><!-- 구글 애드센스 끝 --></DIV><!-- 전체메뉴 하단 끝--><!-- 컨텐트 메인 끝--><!--컨텐트 우측 시작--> <DIV id=contentRight><!-- 리얼포토 배너 --> <DIV id=leftContentBanner><A href="http://cafe.daum.net/realphoto" target=_blank><IMG height=71 src="files/attach/images/8751/49057/realphoto.jpg" width=200></A></DIV><!-- 구글 애드센스(이온디메인컨텐트라이트탑) 시작 --> <SCRIPT type=text/javascript><!-- google_ad_client = "pub-7200623708996327"; google_ad_width = 200; google_ad_height = 200; google_ad_format = "200x200_as"; google_ad_type = "text_image"; //2007-10-17: Eond, EondMainContentRightTop google_ad_channel = "2111854510+6739728667"; google_color_border = "f8f8f8"; google_color_bg = "f8f8f8"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "008000"; google_ui_features = "rc:6"; //--> </SCRIPT> <SCRIPT src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type=text/javascript> </SCRIPT> <!-- 구글 애드센스(이온디메인컨텐트라이트탑) 끝 --><!-- 네이버 검색순위 --> <DIV ids="naver_rank"><IMG class=zbxe_widget_output title=네이버검색순위 style="FLOAT: left; WIDTH: 200px" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="rank_nexearch" widget_sequence="118725" skin="sz_xe" colorset="Box_001" widget_cache="0" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="200" widget_width_type="px" widget_position="" query="nexearch"></DIV><!-- 스타일 최근이미지 --><IMG class=zbxe_widget_output title=Style style="FLOAT: left; WIDTH: 200px" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="907" body="" widget="newest_images" widget_sequence="108278" skin="black_underline" colorset="default" widget_cache="0" mid_list="style" title_length="10" thumbnail_width="80" cols_list_count="2" rows_list_count="1" display_author="N" display_regdate="N" display_readed_count="N" display_voted_count="N" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="200" widget_width_type="px" widget_position=""><!-- 배너시작 --> <DIV id=banner> <UL> <LI><IMG src="http://eond.com/attachment/bns/my/eond_bn_90by30_2.gif" border=NaN editor_component="image_link" link_url="#"> <LI><IMG src="http://eond.com/attachment/bns/clip/miniwini.gif" border=NaN editor_component="image_link" open_window="Y" link_url="http://miniwini.com"> <LI><IMG src="http://eond.com/attachment/bns/clip/ngine_banner_03.gif" border=NaN editor_component="image_link" open_window="Y" link_url="http://2day.pe.kr"> <LI><IMG src="http://eond.com/attachment/bns/clip/monolife.gif" border=NaN editor_component="image_link" open_window="Y" link_url="http://mono302.com"> <LI><IMG src="http://eond.com/attachment/bns/clip/zizin.gif" border=NaN editor_component="image_link" open_window="Y" link_url="http://zizin.byus.net"> <LI><IMG src="http://eond.com/attachment/bns/clip/in2design.gif" border=NaN editor_component="image_link" open_window="Y" link_url="http://83rpm.com"></LI></UL></DIV><!-- 배너 끝 --><!--이미지카운터시작--><IMG class=zbxe_widget_output style="FLOAT: left; WIDTH: 200px" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="907" body="" widget="image_counter" widget_sequence="110300" widget_cache="5" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="200" widget_width_type="px" widget_position="" point_color="#ed3027" unique_text_color="#666666" unique_line_color="#BBBBBB" grid_color="#9d9d9d" check_bg_color="#F9F9F9" bg_color="#FFFFFF" day_range="14" graph_height="125px" graph_width="200px"><!--이미지카운터끝--> <!--구글 링크 시작--> <DIV id=ad_google_adsense_link> <SCRIPT type=text/javascript><!-- google_ad_client = "pub-7200623708996327"; google_ad_width = 200; google_ad_height = 90; google_ad_format = "200x90_0ads_al"; //2007-09-10: eond google_ad_channel = "9211275113"; google_color_border = "2e2e2e"; google_color_bg = "f8f8f8"; google_color_link = "666666"; google_color_text = "808080"; google_color_url = "424242"; //--> </SCRIPT> <SCRIPT src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type=text/javascript> </SCRIPT> </DIV><!-- 구글 링크 끝 --><!-- 외부링크 시작 --> <DIV id=eond_manage_tool_link> <UL>이온디 관리도구 링크 <LI><A href="http://eond.com/naie" target=_blank>n@imageExplorer2</A> <LI><A href="http://eond.com/dir" target=_blank>WebDirectory</A> <LI><A href="http://immf.eond.com/index2.php" target=_blank>ImageScanner</A> <LI><A href="https://www.google.com/adsense/login/ko/?destination=%2Fadsense%2Fhome" target=_blank>GoogleAdsense</A> <!-- <li><a href="http://eond.com/cgi/phpmyadmin" target="_blank">phpMyAdmin</a></li> --></LI></UL></DIV><!--@end--><!-- 외부링크 끝 --><!-- 네이버 날씨 시작 --> <DIV style="CLEAR: both"></DIV><!-- 네이버 날씨 끝 --></DIV><!--컨텐트우측끝--> XE의 위젯은 <img class=zbxe_widget_output 코드로 시작하니, 해당 코드를 살펴보면, 9개 정도 확인 가능하네요. 1) newest_images 위젯 <IMG class=zbxe_widget_output title="" style="CLEAR: both" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" width="100%" module_srl="1" body="" widget="newest_images" widget_sequence="119897" skin="black_underline" colorset="default" widget_cache="0" mid_list="gallery,myphoto,people" title_length="8" thumbnail_width="110" cols_list_count="3" rows_list_count="2" display_author="N" display_regdate="N" display_readed_count="N" display_voted_count="N" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="" widget_width="100" widget_width_type="%" widget_position="" thumbnail_height="null" thumbnail_type="crop">2) newest_document 위젯 <IMG class=zbxe_widget_output title="최근 포스트" style="FLOAT: left; WIDTH: 100%" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="newest_document" widget_sequence="119899" skin="eond_blu_webzine" colorset="normal" widget_cache="0" mid_list="ani,banner,bbs,book,cf,coding,mov,music,poem,tip,zbxe" widget_margin_top="" widget_margin_left="" widget_margin_right="5" widget_margin_bottom="" widget_fix_width="Y" widget_width="100" widget_width_type="%" widget_position="left" subject_cut_size="" list_count="12" order_type="desc" order_target="list_order" duration_new="null">3) login_member 위젯 <IMG class=zbxe_widget_output title="" style="FLOAT: right; WIDTH: 100%" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="login_member" widget_sequence="119902" skin="default" colorset="normal" widget_cache="5" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="100" widget_width_type="%" widget_position="right" list_count="5" expire_time="10">4) member_group 위젯 <IMG class=zbxe_widget_output title="최근 가입한 회원" style="FLOAT: right; WIDTH: 100%" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="member_group" widget_sequence="119913" skin="default" colorset="normal" widget_cache="0" widget_margin_top="" widget_margin_left="0" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="100" widget_width_type="%" widget_position="right" list_count="5" target_group="준회원">5) tag_list 위젯 <IMG class=zbxe_widget_output title="" style="CLEAR: both" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" width="100%" module_srl="1" body="" widget="tag_list" widget_sequence="119906" skin="cozy_simple" colorset="cyworld" widget_cache="0" mid_list="2u,adsense,ani,attach,banner,bbs,blog,book,build,cf,cgi,chat,coding,favimg,feedback,flow,font,friends,gallery,gallery_main,google,google_content,handwriting,hangeul,hanja,harmonica,home,html,link,login_ktf_autumn,me,member,mom,monologue,mov,music,music_xml,mwz,mybox,myphoto,naie,nalog,nick,nie,notice,pds,people,photogallery,phpinfo,poem,qna,realphoto,rp_gallery,rp_gallery_old,rp_link,rp_member,scrap,scw,scw2,service,sig,siteinfo,source,style,test,theme,tip,todaycomment,todo,webstudy,zb4,zbxe,zcount,zeroboard,zerocounter,zero_one" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="" widget_width="100" widget_width_type="%" widget_position="" list_count="26">6) newest_comment 위젯 <IMG class=zbxe_widget_output title="" style="FLOAT: left" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="newest_comment" widget_sequence="119909" skin="c2comment" colorset="normal" widget_cache="0" mid_list="ani,attach,banner,bbs,blog,book,build,cgi,chat,coding,favimg,flow,font,gallery,gallery_main,handwriting,hangeul,hanja,harmonica,home,link,me,member,mom,monologue,mov,music,mybox,myphoto,nalog,nick,notice,people,photogallery,phpinfo,poem,realphoto,rp_gallery,rp_gallery_old,rp_link,rp_member,scrap,scw,service,sig,siteinfo,source,style,test,theme,tip,todaycomment,todo,webstudy,zbxe,zeroboard,zerocounter,zero_one" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="100%" widget_width_type="%" widget_position="" list_count="15">7) rank_nexearch 위젯 <IMG class=zbxe_widget_output title=네이버검색순위 style="FLOAT: left; WIDTH: 200px" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="1" body="" widget="rank_nexearch" widget_sequence="118725" skin="sz_xe" colorset="Box_001" widget_cache="0" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="200" widget_width_type="px" widget_position="" query="nexearch"></DIV><!-- 스타일 최근이미지 --><IMG class=zbxe_widget_output title=Style style="FLOAT: left; WIDTH: 200px" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="907" body="" widget="newest_images" widget_sequence="108278" skin="black_underline" colorset="default" widget_cache="0" mid_list="style" title_length="10" thumbnail_width="80" cols_list_count="2" rows_list_count="1" display_author="N" display_regdate="N" display_readed_count="N" display_voted_count="N" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="200" widget_width_type="px" widget_position="">8) newest_images 위젯 <IMG class=zbxe_widget_output title=Style style="FLOAT: left; WIDTH: 200px" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="907" body="" widget="newest_images" widget_sequence="108278" skin="black_underline" colorset="default" widget_cache="0" mid_list="style" title_length="10" thumbnail_width="80" cols_list_count="2" rows_list_count="1" display_author="N" display_regdate="N" display_readed_count="N" display_voted_count="N" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="200" widget_width_type="px" widget_position="">9) image_counter 위젯 <IMG class=zbxe_widget_output style="FLOAT: left; WIDTH: 200px" height=100 src="http://eond.com/eond/common/tpl/images/widget_bg.jpg" module_srl="907" body="" widget="image_counter" widget_sequence="110300" widget_cache="5" widget_margin_top="" widget_margin_left="" widget_margin_right="" widget_margin_bottom="" widget_fix_width="Y" widget_width="200" widget_width_type="px" widget_position="" point_color="#ed3027" unique_text_color="#666666" unique_line_color="#BBBBBB" grid_color="#9d9d9d" check_bg_color="#F9F9F9" bg_color="#FFFFFF" day_range="14" graph_height="125px" graph_width="200px">처음으로 돌아가서, Call to a member function attributes() on bool 이라는 오류니깐 아마도 회원 관련한 위젯이 아닐까 싶네요. -_-; 자 이제, 현타가 왔습니다. 내가 왜 이걸 하고 있나. 해당 페이지는 쓰고 있지도 않은데... 패스...하겠습니다. ㅠㅠ 밤새 이러고 있었다니.. phpmyadmin > xe_module > module_srl = 907 에서 content를 위 위젯 중 하나를 넣어봅니다. 그리고 xe 관리자에서 캐시 재생성을 눌러주고 home_old 페이지를 열어봅니다. newest_images 위젯을 넣어봤는데 해당 오류가 그대로 뜨네요. 그럼 widgets/newest_images 위젯 코드를 확인해봐야합니다. 그런데 해당 위젯 자체가 존재하지 않았습니다. 그럼 두번째 newest_document 위젯을 열어봅니다. 스킨은 eond_blu_webzine인데 이번엔 스킨 폴더가 존재하지 않았습니다. -_-;; default로 수정하고 캐시 재생성 후 페이지를 열어봐도 해당 페이지 오류는 그대로였습니다. 세번째 위젯을 넣고 확인해봅니다. 동일합니다. (확인해보니 해당 위젯 폴더 자체가 없었군요.;;) 자, 이쯤되면 그냥 기본 위젯을 하나 아무렇게나 생성해봅니다. <img class="zbxe_widget_output" widget="content" skin="default" colorset="white" widget_cache="0m" content_type="document" list_type="normal" tab_type="none" markup_type="table" page_count="1" option_view="title,regdate,nickname" show_browser_title="Y" show_comment_count="Y" show_trackback_count="Y" show_category="Y" show_icon="Y" show_secret="N" order_target="regdate" order_type="desc" thumbnail_type="crop" />xe관리자 > 위젯 > 컨텐츠 위젯 생성 자 여기서도 안되면 접겠습니다. -_-;; 잘 뜨네요.. 예전 위젯 자체에 무슨 문제가 있나보네요. 여기서 느낀 점. 예전 코드는 버려야한다... 네번째 위젯 코드도 넣고 테스트해봤습니다. 동일합니다.;; 그냥 <img class=zbxe_widget_out을 [img class_zbxe_widget_out 으로 고쳐놓고 여기까지 삽질 끝! 삼항연산자 설명글 https://recoveryman.tistory.com/228
이온디
이온디 9년 전
레이아웃을 만들다보면 XE의 템플릿 문법이 적용이 안되는 경우가 있습니다. cond는 되는데 loop문은 안된다던가, 이럴 때 테스트하는 방법입니다. 1. 레이아웃에 작성된 코드를 다 지우고 간단한 블럭 태그로 테스트를 해본다. <block cond="$logged_info">로그인됨</block> 2. 모두 지우고 안되는 부분만 작성해본다. 이렇게 확인해본바 저의 경우는 다음 코드 때문에 안되더군요. 안되던 코드 삽입해봅니다. <style>.uchat_wrap4744… 레이아웃을 만들다보면 XE의 템플릿 문법이 적용이 안되는 경우가 있습니다. cond는 되는데 loop문은 안된다던가, 이럴 때 테스트하는 방법입니다. 1. 레이아웃에 작성된 코드를 다 지우고 간단한 블럭 태그로 테스트를 해본다. <block cond="$logged_info">로그인됨</block> 2. 모두 지우고 안되는 부분만 작성해본다. 이렇게 확인해본바 저의 경우는 다음 코드 때문에 안되더군요. 안되던 코드 삽입해봅니다. <style>.uchat_wrap47445045_super {width:100px;height:550px;margin:0 !important;padding:0 !important;background:#ccc;overflow:hidden;}#uchat_wrap47445045, #uchat_wrap47445045 *, #uchat_wrap47445045 table, #uchat_wrap47445045 tr, #uchat_wrap47445045 td, #uchat_wrap47445045 input, #uchat_wrap47445045 label {width:auto;margin:0;padding:0;font-family:"Apple SD Gothic Neo","malgun gothic","nanumgothic"; font-size:12px; -ms-user-select:none; -moz-user-select:none; -webkit-user-select:none;font-size:12px;line-height:1.4;border:0;text-align:left;font-weight:normal;min-height:0;min-width:0;color:gray;}#uchat_wrap47445045 {width:98px;height:548px;position:relative; margin:1px;}#uchat_wrap47445045 .uchat_middle {background:#e1e1e1;height:499px;width:98px;overflow:hidden;}#uchat_wrap47445045 .uchat_middle:after{content:""; display:block; clear:both; height:0; visibility:hidden;}#uchat_wrap47445045 .uchat_middle .conversation_contents {word-wrap: break-word;background:white;overflow-y:scroll;-webkit-overflow-scrolling: touch;overflow-x:hidden;}#uchat_wrap47445045 .uchat_middle .conversation_contents .loading {padding:2px 0;font-size:12px;word-wrap:break-word;}#uchat_wrap47445045 .uchat_middle .conversation_contents .cs_contents {font-size:12px;}#uchat_wrap47445045 .uchat_middle .conversation_contents .conversation_nick {font-weight:bold;cursor:pointer;font-size:12px;line-height:1;}#uchat_wrap47445045 .uchat_middle .conversation_contents .user_conversation {padding:2px;font-size:12px;}#uchat_wrap47445045 .uchat_middle .conversation_contents .user_conversation span {}#uchat_wrap47445045 .uchat_middle .conversation_contents .user_conversation>span>img {max-width:100px; max-height:20px;}#uchat_wrap47445045 .uchat_middle .conversation_contents .user_conversation>img {max-width:25px; max-height:25px;vertical-align: middle;}#uchat_wrap47445045 .uchat_middle .conversation_contents .user_conversation span, #uchat_wrap47445045 .uchat_middle .conversation_contents .user_conversation img {}#uchat_wrap47445045 .uchat_middle .conversation_contents .notification {padding:2px 0;color:green;text-align:center;font-size:12px;}#uchat_wrap47445045 .uchat_middle .conversation_contents .system {padding:2px 0;color:red;margin:2px;text-align:left;font-size:12px;}#uchat_wrap47445045 .uchat_middle .conversation_contents .error {padding:2px 0;text-align:center;font-size:12px;}#uchat_wrap47445045 .uchat_middle .topbar {height: 38px;line-height:38px;overflow:hidden;padding:0 4px 0 14px;color:#535353;font-size:12px;font-weight:bold;border-bottom:1px solid #E4E8EC;background-color:#FFFFFF;}#uchat_wrap47445045 .uchat_middle .topbar .count {float:left;font-size:12pt;line-height:32px;overflow:hidden;height:32px}#uchat_wrap47445045 .uchat_middle .topbar a.setting_icon {float:right;width:18px;height:18px;background:url(../minitalk/skin/default/images/setting_icon.gif) no-repeat 0 0;cursor:pointer;margin:10px 13px 0 0;}#uchat_wrap47445045 .uchat_middle .topbar a:hover {border:0;text-decoration:none;}#uchat_wrap47445045 .uchat_middle .member_list {overflow-x:hidden; overflow-y:scroll;-webkit-overflow-scrolling: touch;background:white;}#uchat_wrap47445045 .uchat_middle .member_list .user {padding:2px;font-size:12px;white-space:nowrap;overflow:hidden;cursor:pointer;background:white;vertical-align: middle;}#uchat_wrap47445045 .uchat_middle .member_list .user>span>img {max-width:100px; max-height:20px;display:inline}#uchat_wrap47445045 .uchat_middle .member_list .user>img {max-width:25px; max-height:25px;display:inline}#uchat_wrap47445045 .uchat_middle .member_list .user span {height:12px;}#uchat_wrap47445045 .uchat_middle .member_list .user span, #uchat_wrap47445045 .uchat_middle .member_list .user img {vertical-align: middle;font-size:12px;}#uchat_wrap47445045 .uchat_middle .member_list .my_members, #uchat_wrap47445045 .uchat_middle .member_list .admin_members, #uchat_wrap47445045 .uchat_middle .member_list .is_members, #uchat_wrap47445045 .uchat_middle .member_list .no_members {font-size:0;line-height:0;}#uchat_wrap47445045 .user_menu_background {position:absolute;left:0px;top:0;width:98px;height:548px;background:#e1e1e1;z-index:1000;display:none;}#uchat_wrap47445045 .user_menu {padding:5px 3px;background:#fff;display:none;position:absolute;border:2px solid #a0dbc7;z-index:1100;}#uchat_wrap47445045 .user_menu .menu_list {padding:3px 0;font-size:12px;cursor:pointer;}#uchat_wrap47445045 .user_menu .menu_list .admin_login {width:112px;height:20px;}#uchat_wrap47445045 .user_menu .user_nick {background:#f5f5f5;font-size:12px;}#uchat_wrap47445045 .input { height:24px;width:98px;overflow:hidden;text-align:center;background:white;}#uchat_wrap47445045 .input .conversation {width:69px;height:20px;font-size:12px;ime-mode:active;}#uchat_wrap47445045 .none {float:left;font-size:0;line-height:0;width:0;height:0;overflow:hidden}#uchat_wrap47445045 .uchat_menu {background:url("http://cache.uchat.co.kr/uchat/img/menu_background.gif");width:98px;height:25px;overflow:hidden}#uchat_wrap47445045 .uchat_menu .uchat_s_logo {float:left;width:27px;height:25px;background:url("http://cache.uchat.co.kr/uchat/img/uchat_small.gif") 50% 50% no-repeat;}#uchat_wrap47445045 .uchat_menu .uchat_bold {float:left;width:16px;height:25px;background:url("http://cache.uchat.co.kr/uchat/img/text-bold-icon.gif") 0 50% no-repeat;cursor:pointer;}#uchat_wrap47445045 .uchat_menu .uchat_i {float:left;width:16px;height:25px;background:url("http://cache.uchat.co.kr/uchat/img/text-italic-icon.gif") 0 50% no-repeat;cursor:pointer;}#uchat_wrap47445045 .uchat_menu .uchat_underline {float:left;width:16px;height:25px;background:url("http://cache.uchat.co.kr/uchat/img/text-underline-icon.gif") 0 50% no-repeat;cursor:pointer;}#uchat_wrap47445045 .uchat_menu .uchat_text_color {float:left;width:16px;height:25px;background:black url("http://cache.uchat.co.kr/uchat/img/uchat_text_color.gif");cursor:pointer;}#uchat_wrap47445045 .uchat_menu .uchat_event_icon {float:right;width:20px;height:25px;background-repeat: no-repeat;background-position: center center; background-color: transparent;cursor:pointer}#uchat_wrap47445045 .uchat_menu .uchat_scroll {float:right;width:16px;height:25px;background:url("http://cache.uchat.co.kr/uchat/img/uchat_scroll.gif");cursor:pointer;}#uchat_wrap47445045 .uchat_color_wrap {width:112px;border:1px solid #ccc;position:absolute;background:#f2f2f2;display:none;}#uchat_wrap47445045 .uchat_color_wrap .uchat_color_title {text-align:center;width:112px;padding:7px 0;border-bottom:1px solid #ccc;font-size:12px;}#uchat_wrap47445045 .uchat_color_wrap .uchat_color_box {width:112px;border-top:1px solid #fff;}#uchat_wrap47445045 .uchat_color_wrap .uchat_color_box:after {display:block;clear:both;content:""}#uchat_wrap47445045 .uchat_color_wrap .uchat_color {float:left;cursor:pointer;width:14px;height:14px;font-size:0;line-height:0;}#uchat_wrap47445045 .uchat_setting_wrap {width:150px;overflow:hidden;border:2px solid #a0dbc7;position:absolute;display:none;background:#fff;z-index:1100;}#uchat_wrap47445045 .uchat_setting_wrap .top {border-bottom:1px solid #cecece;text-align:center;padding:5px 0;font-size:14px;}#uchat_wrap47445045 .uchat_setting_wrap .top span {height:12px;}#uchat_wrap47445045 .uchat_setting_wrap .content {border-top:1px solid #f7f7f7;padding:5px;}#uchat_wrap47445045 .uchat_setting_wrap .floor{margin-bottom:7px;}#uchat_wrap47445045 .uchat_setting_wrap .floor input.no_sound{width:12px;height:12px;border:0;}#uchat_wrap47445045 .uchat_nick { width: 100%;}#uchat_wrap47445045 .alert_btn_wrap {text-align:right;margin:0 5px 10px 0;}#uchat_wrap47445045 .alert_ok_btn { }#uchat_wrap47445045 .alert_cancel_btn { }#uchat_wrap47445045 .clear {clear:both; height:0; overflow:hidden;}#uchat_wrap47445045 .popup {background:#fff;display:none;position:absolute;border:2px solid #a0dbc7;z-index:1100; margin: 0px auto;}#uchat_wrap47445045 .popup_background {position:absolute;left:0px;top:0;width:98px;height:548px;background:#e1e1e1;z-index:1000;display:none; filter: alpha(opacity=40);-khtml-opacity: 0.4;-moz-opacity: 0.4;opacity: 0.4; }#uchat_wrap47445045 .input_border {border-top:1px solid #9a9a9a !important;border-left:1px solid #9a9a9a !important;border-right:1px solid #d8d8d8 !important;border-bottom:1px solid #d8d8d8 !important;}#uchat_wrap47445045 .btn_pack, #uchat_wrap47445045 .btn_pack *{display:inline-block;overflow:visible;position:relative;margin:0;padding:0;border:0;background:url(http://cache.uchat.co.kr/uchat/img/btn_pack.gif) no-repeat;font-size:12px;font-family:Tahoma, Sans-serif;color:#333;text-decoration:none !important;vertical-align:top;white-space:nowrap}#uchat_wrap47445045 .btn_pack{margin-right:4px}#uchat_wrap47445045 .btn_pack *{left:4px;cursor:pointer;_cursor:hand}#uchat_wrap47445045 .btn_pack.medium,#uchat_wrap47445045 .btn_pack.medium *{height:24px;line-height:24px}#uchat_wrap47445045 .btn_pack.medium{background-position:left 0}#uchat_wrap47445045 .btn_pack.medium *{padding:0 10px 0 6px;background-position:right top;font-size:12px}#uchat_wrap47445045 .btn_pack *:hover, #uchat_wrap47445045 .btn_pack *:active, #uchat_wrap47445045 .btn_pack *:focus{color:#690}#uchat_wrap47445045 .btn_pack.strong *{font-weight:bold !important}#uchat_wrap47445045 .btn_pack.small, #uchat_wrap47445045 .btn_pack.small *{height:19px;line-height:19px}#uchat_wrap47445045 .btn_pack.small{background-position:left -106px}#uchat_wrap47445045 .btn_pack.small *{padding:0 6px 0 2px;background-position:right -106px;font-size:11px}#uchat_wrap47445045 input {background:#fff;vertical-align:middle;height:20px;}#uchat_wrap47445045 .ad_spot {overflow:hidden; position: absolute; top: 24px; width: 100%; max-width: 300px; z-index: 1;}#uchat_wrap47445045 .Bnr_icon {overflow:hidden; border-top:2px solid #d7d7d7;}#uchat_wrap47445045 .tb_button {padding:1px;cursor:pointer;border-right: 1px solid #8b8b8b;border-left: 1px solid #FFF;border-bottom: 1px solid #fff;}#uchat_wrap47445045 .tb_button.hover {borer:2px outset #def; background-color: #f8f8f8 !important;}#uchat_wrap47445045 .ws_toolbar {z-index:100000}#uchat_wrap47445045 .ws_toolbar .ws_tb_btn {cursor:pointer;border:1px solid #555;padding:3px}#uchat_wrap47445045 .tb_highlight{background-color:yellow}#uchat_wrap47445045 .tb_hide {visibility:hidden}#uchat_wrap47445045 .ws_toolbar img {padding:2px;margin:0px}</style> <style>#uchat_goodlin {width:98px;height:548px;position:relative;display:none;overflow:hidden;}#uchat_goodlin .uchat_middle .conversation_contents {width:100%;height:474px;}#uchat_goodlin .uchat_middle .member_list {width:100%;height:-1px;margin-bottom:1px;}</style> 이렇게 코드가 다닥다닥 붙어서 제대로 해석이 안되는 경우가 있는 것 같습니다.
이온디
이온디 12년 전
http://www.joyzen.co.kr/prodPC/pop_viewdetail.html?Pnum=178157&img=Z178157 상품상세정보 아이락스 KR-6170 X-Slim 펜터그래프/USB방식/106키 [삼성전자] MTR-K6723 (AA-SK5PCPB) 블랙 키보드 (PS2) [실리콘키스킨포함/무지박스] http://www.joyzen.co.kr/prodPC/pop_viewdetail.html?Pnum=178157&img=Z178157 상품상세정보 아이락스 KR-6170 X-Slim 펜터그래프/USB방식/106키 [삼성전자] MTR-K6723 (AA-SK5PCPB) 블랙 키보드 (PS2) [실리콘키스킨포함/무지박스]
이온디
이온디 18년 전
del.ici.ous / mar.gar.in 등과 같은 사이트에 현재 페이지를 추가하는 스크립트 전에 소개한 적이 있습니다. 이번에는 Diigo 에 추가하는 스크립트를 알아보겠습니다. Diigo "Add to Diigo" http://www.diigo.com/tools/add_to_diigo "Add to Diigo"는 블로그 페이지에 삽입함으로써 그 페이지를 Diigo에 넣을 수 있는 기능을 말합니다. Diigolet Version과 Traditional Version으로 제공하네요. … del.ici.ous / mar.gar.in 등과 같은 사이트에 현재 페이지를 추가하는 스크립트 전에 소개한 적이 있습니다. 이번에는 Diigo 에 추가하는 스크립트를 알아보겠습니다. Diigo "Add to Diigo" http://www.diigo.com/tools/add_to_diigo "Add to Diigo"는 블로그 페이지에 삽입함으로써 그 페이지를 Diigo에 넣을 수 있는 기능을 말합니다. Diigolet Version과 Traditional Version으로 제공하네요. Diigolet Version (Recommended) <a href="#" onclick="var s=document.createElement('script');s.type='text/javascript';s.src='./files/attach/images/2775/477/218/3a9bbe444cc2c9f86f0bdc3bd6081c7d.gif';document.body.appendChild(s);"><img style="border:none" alt="diigo it" src="./files/attach/images/2775/477/218/07b66230f08dc630b3f902adb651f89b.gif" /></a> Traditional Version <script type="text/javascript"> <!-- var adURL = encodeURIComponent(self.location); var adTitle = encodeURIComponent("page title"); var adComments = encodeURIComponent("optional comments"); --> </script> <a target="_blank" href="http://www.diigo.com/post?url=&title=&comments=" onclick="window.open('http://www.diigo.com/post?url='+adURL+'&title='+adTitle+'&comments='+adComments, 'diigo'); return false;" title="Add to diigo"><img style="border:none" src="./files/attach/images/2775/477/218/07b66230f08dc630b3f902adb651f89b.gif" alt="Add to diigo" /></a>
이온디 18년 전
del.ici.ous / mar.gar.in 등과 같은 사이트에 현재 페이지를 추가하는 스크립트 전에 소개한 적이 있습니다. 이번에는 Diigo 에 추가하는 스크립트를 알아보겠습니다. Diigo "Add to Diigo" http://www.diigo.com/tools/add_to_diigo "Add to Diigo"는 블로그 페이지에 삽입함으로써 그 페이지를 Diigo에 넣을 수 있는 기능을 말합니다. Diigolet Version과 Traditional Version으로 제공하네요. … del.ici.ous / mar.gar.in 등과 같은 사이트에 현재 페이지를 추가하는 스크립트 전에 소개한 적이 있습니다. 이번에는 Diigo 에 추가하는 스크립트를 알아보겠습니다. Diigo "Add to Diigo" http://www.diigo.com/tools/add_to_diigo "Add to Diigo"는 블로그 페이지에 삽입함으로써 그 페이지를 Diigo에 넣을 수 있는 기능을 말합니다. Diigolet Version과 Traditional Version으로 제공하네요. Diigolet Version (Recommended) <a href="#" onclick="var s=document.createElement('script');s.type='text/javascript';s.src='./files/attach/images/2775/068/156/f4bab4693a0476c7113c664d894847ae.gif';document.body.appendChild(s);"><img style="border:none" alt="diigo it" src="./files/attach/images/2775/068/156/37a77d8fd5853b19f52a6daaa96c3225.gif" /></a> Traditional Version <script type="text/javascript"> <!-- var adURL = encodeURIComponent(self.location); var adTitle = encodeURIComponent("page title"); var adComments = encodeURIComponent("optional comments"); --> </script> <a target="_blank" href="http://www.diigo.com/post?url=&title=&comments=" onclick="window.open('http://www.diigo.com/post?url='+adURL+'&title='+adTitle+'&comments='+adComments, 'diigo'); return false;" title="Add to diigo"><img style="border:none" src="./files/attach/images/2775/068/156/37a77d8fd5853b19f52a6daaa96c3225.gif" alt="Add to diigo" /></a>