"));

Eric @ EricBess WebHome Eric @ EricBess WebHome

胜不骄,败不馁,胸有激雷而面如平湖 -- Niet arrogant, niet verworpen Holderness, borst en gezicht een schok, zoals de mijne Pinghu

Chinese (Simplified) flagItalian flagKorean flagPortuguese flagEnglish flagGerman flagFrench flagSpanish flagJapanese flagArabic flagRussian flagGreek flagDutch flagBulgarian flagCzech flagCroat flagDanish flagFinnish flagHindi flagPolish flagRumanian flagSwedish flagNorwegian flag
By N2H

WP-CODEBOX Plugin (代码高亮插件) WP-CODEBOX Plugin (code gemarkeerde plug-in)

Author: Eric.Wang Auteur: Eric.Wang
Plugin URL: http://wordpress.org/extend/plugins/wp-codebox/ Plugin URL: http://wordpress.org/extend/plugins/wp-codebox/
Tags: syntax highlighting, syntax, highlight, code, formatting Tags: syntax highlighting, syntaxis, markeert, code, opmaak
Requires at least: 2.0 Vereist ten minste: 2,0
Tested up to: 2.5.1 Getest tot: 2.5.1
Stable tag: 1.2.3 Stabiel tag: 1.2.3
Download Downloaden

Donate for this plugin development, Thanks! Giften voor deze plugin ontwikkeling, Thanks!

== Description == == Beschrijving ==

WP-CODEBOX代码高亮插件,支持多种语言、代码下载、复制到剪贴板、代码框收放及后台默认属性设置。 WP-CODEBOX code gemarkeerde plug-in, ondersteuning van meerdere talen, code gedownload, gekopieerd naar het klembord, code vak Shoufang en achtergrond standaard attribuut ingesteld. 本插件还在持续开发中,欢迎使用及报告bugs. De verdere ontwikkeling van de plug-in is nog steeds welkom op het gebruik en de bugs.
Wp-CodeBox provides clean syntax highlighting and advanced feature for embedding source code within pages or posts. It support a wide range of popular languages highlighting with line numbers, code download, Copy to clipboard, collapse codebox, automatic keywords link to API manual and maintains formatting while copying snippets of code from the browser. WP-CodeBox biedt schone syntax highlighting en geavanceerde functie voor de inbedding in de source code in pagina's of-posten. Het ondersteunen van een breed scala van populaire talen markeren met nummers, code downloaden, kopiëren naar klembord, instorting codebox, automatische link naar de zoekwoorden API handleiding en onderhoudt opmaak, terwijl het kopiëren van fragmenten van de code in de browser.

It's provide simple background configuration for highlighter style/formatting customization. Het is voorzien in eenvoudige achtergrond configuratie voor markeerstift stijl / opmaak aanpassen.
Since the plugin is developing, in the future it will support more options.(CSS option,Keyword display style,Auto Caps/Nocaps,Case Sensitivity etc. ) Omdat de plugin is het ontwikkelen, in de toekomst zal het meer opties. (CSS optie voor zoekwoorden elkaar stijl, Auto Caps / Nocaps, zaak Gevoeligheid enz.)

== Basic Usage == == == Basic Usage

Wrap code blocks with `<pre lang="LANGUAGE" line="1" file="download.txt" colla=" ">` and `</pre>` Wikkel code blokken met "<pre lang="LANGUAGE" line="1" file="download.txt" colla=" ">` en `</ pre>"

Possible Parameters: Mogelijke Parameters:

`LANGUAGE` is a [ GeSHi ] supported language syntax; "LANGUAGE" is een [GeSHi] ondersteunde taal syntax;
`file` will create a code downloading attribute.; "dossier" zal leiden tot een code te downloaden attribuut.;
`line="n"` will hide the single codebox; "lijn =" n "" zal verberg de interne codebox;
`colla=" /-"` will expand/collapse the codebox. "samenwer =" /-"` zal uitvouwen / samenvouwen de codebox.
`line,file,colla` is optional. "lijn, bestand, samen" is optioneel.

== Installation == == Installatie ==

1. Upload WP-CodeBox.zip to your Wordpress plugins directory, usually `wp-content/plugins/` and unzip the file.  It will create a `wp-content/plugins/WP-CodeBox/` directory. 1. Uploaden WP-CodeBox.zip aan uw Wordpress plugins directory, meestal wp-content/plugins "/" en unzip het bestand. Het zal een wp-content/plugins/WP-CodeBox "/" directory.
2. Activate the plugin through the 'Plugins' menu in WordPress. 2. Activeer de plugin door middel van de 'Plugins' menu in WordPress.
3. Go to Option->Wp-CodeBox set default setting. 3. Ga naar de optie-> WP-CodeBox set standaardinstelling.
4. Create a post/page that contains a code snippet following the [ proper usage syntax ] 4. Maak een post / pagina bevat een code zou na de [juiste gebruik syntax]

== Frequently Asked Questions == == == Veel gestelde vragen

When activate the plugin, popup the error: "Fatal error: Cannot redeclare class GeSHi in ##/wp-content/plugins/wp-codebox/geshi/geshi.php on line 158"? Bij het activeren van de plugin, pop-up van de fout: "Fatale fout: Kan niet redeclare class GeSHi in # # / wp-content/plugins/wp-codebox/geshi/geshi.php on line 158"?
Answer:disactivate other Gashi based syntax highlighter plugin first. Antwoord: disactivate andere Gashi op basis syntax markeerstift plugin eerste.

== Screenshots == == == Screenshots

1. PHP, no line numbers. 1. PHP, geen nummers.

 < div id = "foo" > <?php function foo ( ) { echo "Hello World! \\ n" ; } for ( \ $i = 0 ; \ $i < 10 $i    ) { foo ( ) ; } ?> </ div > <div Id = "foo"> <? PHP functie foo () (echo "Hello World! \ \ N";) for ($ i = 0; \ $ i <10 $ i    ) (foo (); )?> </ Div> 

2. Java, with line numbers, collapse codebox. 2. Java, met nummers, instorting codebox.

3. Ruby, with line numbers starting at 18,downloading feature. 3. Ruby, met nummers vanaf 18, het downloaden van de functie.

[ - ] ? Download ruby.txt [-]? Download ruby.txt
 18 19 20 21 22 18 19 20 21 22 
 class Example def example ( arg1 ) return "Hello: "   arg1. to_s end end Voorbeeld klasse def voorbeeld (arg1) return "Hello:"   arg1. to_s einde einde 

4. Administration interface in WordPress 2. 4. Administration interface in WordPress 2.
screenshot-1.gif

== Usage == == Gebruik ==

**Example 1: PHP, no line numbers** ** Voorbeeld 1: PHP, geen nummers **
<pre lang="php"> <pre lang="php">
<div id="foo"> <div id="foo">
<?php <? PHP
function foo() { functie foo () (
echo "Hello World!\\n"; echo "Hello World! \ \ n";
} )
for (\$i = 0; \$i < 10 $i ) { for ($ i = 0; \ $ i <10 $ i ) (
foo(); foo ();
} )
?> ">
</div> </ Div>
</pre> </ Pre>
**Example 2: Java, with line numbers, collapse codebox** ** Voorbeeld 2: Java, met nummers, instorting codebox **
<pre lang="java" line="1" colla="-"> <pre lang="java" line="1" colla="-">
public class Hello { openbare class Hello (
public static void main(String[] args) { openbare statische void main (String [] args) (
System.out.println("Hello World!"); System.out.println ( "Hello World!");
} )
} )
</pre> </ Pre>
**Example 3: Ruby, with line numbers starting at 18, code downloading(ruby.txt)** ** Voorbeeld 3: Ruby, met nummers vanaf 18,-code te downloaden (ruby.txt) **
<pre lang="ruby" line="18" file="ruby.txt"> <pre lang="ruby" line="18" file="ruby.txt">
class Example Voorbeeld klasse
def example(arg1) def voorbeeld (arg1)
return "Hello: " arg1.to_s return "Hello:" arg1.to_s
end eindigen
end eindigen
</pre> </ Pre>

== Supported Languages == == == Ondersteunde talen

The following languages are supported in the `lang` attribute: De volgende talen worden ondersteund in het "lang"-attribuut:

Actionscript , ADA , Apache Log , AppleScript , ASM , ASP , AutoIT , Backus-Naur form , Bash , BlitzBasic , C , C for Macs , C# , C , CAD DCL , CadLisp , CFDG , CFDG , ColdFusion , CSS , Delphi , DIV , DOS , Eiffel , Fortran , Fortran , FreeBasic , GML , Groovy , HTML , Inno , IO , Java , Java 5 , Javascript , LaTeX , Lisp , Lua , Microprocessor ASM , mIRC , MySQL , NSIS , Objective C , OCaml , OpenOffice BASIC , Oracle 8 SQL , Pascal , Perl , PHP , PL/SQL , Python , Q(uick)BASIC , robots.txt , Ruby , SAS , Scheme , SDLBasic , Smalltalk , Smarty , SQL , T-SQL , TCL , thinBasic , Uno IDL , VB.NET , Visual BASIC , Visual Fox Pro , Winbatch , X , XML , Z80 ASM ActionScript, ADA, Apache Log, AppleScript, ASM, ASP, AutoIt, Backus-Naur vorm, Bash, BlitzBasic, C, C voor Macs, C #, C , CAD DCL CadLisp, CFDG, CFDG, ColdFusion, CSS, Delphi, DIV , DOS, Eiffel, Fortran, Fortran, FreeBASIC, GML, Groovy, HTML, Inno, IO, Java, Java 5, Javascript, LaTeX, Lisp, LUA, Microprocessorgestuurd ASM, mIRC, MySQL, NSIS, Objective C, OCaml, OpenOffice BASIC , Oracle 8 SQL, Pascal, Perl, PHP, PL / SQL, Python, Q (uick) BASIC, robots.txt, Ruby, SAS, Scheme, SDLBasic, Smalltalk, Smarty, SQL, T-SQL, TCL, thinBasic, Uno IDL, VB.NET, Visual Basic, Visual Fox Pro, Winbatch, X , XML, Z80 ASM

==Release Notes== == Release Notes ==

**1.0** : First internal release; Uses GeSHi v1.0.7.20; ** 1,0 **: Eerste interne release; Gebruikt GeSHi v1.0.7.20;
**1.0.1** : Add View Code AJAX feature; 1.0.1 ** **: Toevoegen View Code AJAX functie;
**1.1** : Add simple background configuration for highlighter style/formatting customization; ** 1,1 **: Toevoegen eenvoudige achtergrond configuratie voor markeerstift stijl / opmaak aanpassen;
**1.2** : css tuning and option i18n compatible; ** 1,2 **: css-tuning "en optie i18n compatible;
**1.2.1** : Uses GeSHi v1.0.7.21; 1.2.1 ** **: Gebruikt GeSHi v1.0.7.21;
**1.2.2** : WP 2.5 compatible; 1.2.2 ** **: WP 2,5 compatible;
**1.2.2.1** : Correct small bugs;Improve the css layout to stick the code header; Contributor:YiXia. ** ** 1.2.2.1: Correct kleine bugs; Verbetering van de css opmaak te houden van de code kop; Medewerker: YiXia.
**1.2.3** : Uses GeSHi v1.0.7.22, add the keywords link to API manual option. 1.2.3 ** **: Gebruikt GeSHi v1.0.7.22, voegt u de zoekwoorden link naar API handleiding optie.

== Donate == == == Doneer

== Future Feature== == Toekomst == Feature

It will provide backgroud option for highlighter style customization(CSS option,keyword display style,Auto Caps/Nocaps,Case Sensitivity etc.) in the future version. Het zal achtergrond optie voor markeerstift stijl customization (CSS optie, zoekwoord elkaar stijl, Auto Caps / Nocaps, zaak Gevoeligheid enz.) In de toekomstige versie.

1 Star2 Stars3 Stars4 Stars5 Stars ( 8 votes, average: 5 out of 5) (8 stemmen, gemiddeld: 5 uit 5)
Loading ... Loading ... Laden ...
-欢迎为本文评级 -- Welkom op dit papier rating

相关日志 Betrokken Log

本文读者也关心以下内容: In dit document, lezers ook zorgen over het volgende:

  • N/A N / A

03月3rd, 2008 03月3 rd, 2008 作者: eric | WordPress | Trackback ? | 46 评论 | Auteur: eric | WordPress | Trackback | 46 Reacties | Email This Post Print This Post | 3,855 views | 3855 standpunten

Add a Comment Voeg een Commentaar

Leave a reply Laat een reactie

:mrgreen::|:twisted::arrow:8O:):?8):evil::D:idea::oops::P:roll:;):cry::o:lol::x:(:!::?:

  1. You will post the following soon. U zult na de volgende snel.
    Go ahead and start typing. Ga uw gang en beginnen met typen.
Hide Post Comments Verberg commentaar
  1. 沙渺 posted the following on 2008-06-05 at 2:56 pm. Sha Miao geplaatst op 2008-06-05 de volgende op 2:56 pm.

    &gt ; 的意思是说pre标签中出现><号必须使用&gt ;和&lt ;。 >; Betekent dat het etiket van een pre> <, moet gebruik> en <;. 本来在pre标签中使用&gt ;和&lt ;是能正确显示的,但加上GESHI之后就不能正确解析。 Oorspronkelijk gebruikt in de pre-label> en <; kan worden weergegeven, maar niet in staat zullen zijn toe te voegen GESHI na goed lossen. 这个问题是GESHI的问题,不是插件的问题。 GESHI deze kwestie is de vraag, geen plug-in problemen. 但的确希望作者能尽量修正。 Maar wel hopen dat de auteur kan worden zo veel mogelijk. 在pre标签中直接使用><可以解决这个问题,并且在ie67和ff中都正确。 In de directe gebruik van pre tabblad> <kunnen dit probleem oplossen, en in ie67 en ff zijn in het recht. 但造成的后果是不能通过xhtml1.0验证。 Maar de gevolgen niet kunnen worden xhtml1.0 is gecontroleerd. 我想这虽然可行,但不是件好事。 Ik denk dat, hoewel dit haalbaar is, maar niet een goede zaak.

    Reply Antwoorden
    1. bochgoch posted the following on 2008-06-11 at 12:12 am. bochgoch geplaatst op 2008-06-11 de volgende op 12:12 uur.

      Excellent plugin - I need to override some CSS to tidy things up, but excellent - thanks! Uitstekend plugin - ik nodig om het aantal CSS te nette dingen, maar uitstekend - thanks!

      Reply Antwoorden
  2. Ender Xie posted the following on 2008-05-16 at 10:04 pm. Ender Xie geplaatst op 2008-05-16 de volgende op 10:04 uur.

    I finnaly get it worked in my WP blog.We are supposed to edit the code in "Code" view, not in "Visual", then everything works fine.Nice work, pal. Ik finnaly krijgen zij werkte in mijn WP blog.We geacht worden voor het bewerken van de code in "Code" bekeken, niet in "Visual", dan werkt alles fine.Nice werk, makker.

    Reply Antwoorden
  3. yixia posted the following on 2008-05-16 at 11:19 am. yixia geplaatst op 2008-05-16 de volgende op 11:19 uur.

    $hHead .= "<!--[if IE]>\n<style type\"text/css\">\n"; $hHead .= ".wp_codebox { overflow-x: auto; overflow-y: hidden; padding-bottom: expression(this.scrollWidth > this.offsetWidth ? \"15px\" : 0); width: 100%; }\n"; $hHead .= "</style>\n<![endif]-->"; $ HHead .= "<!--[ als IE]> \ n <style type\"text/css\"> \ n "; $ hHead .=". Wp_codebox (overflow-x: auto; overflow-y: verborgen ; Padding-bottom: expressie (this.scrollWidth> this.offsetWidth? \ "15px \", 0); breedte: 100%;) \ n "; $ hHead .=" </ style> \ n <! [Endif] -->";
    把这个加到 Voeg daarbij
    function codebox_header() codebox_header functie ()
    并删掉css中的/*ie hack*/部分来通过css校验 En geschrapt in het css / * ie hack * / css door een aantal te controleren

    Reply Antwoorden
  4. yixia posted the following on 2008-05-16 at 9:56 am. yixia geplaatst op 2008-05-16 de volgende op 9:56 am.

    再来,如果在后台settings-writing中开启了WordPress should correct invalidly nested XHTML automatically Dan, als op de achtergrond in open instellingen-het schrijven van de WordPress moet correct invalidly geneste XHTML automatisch
    那么像<?php 就会变成< ?php多了一个空格,<!-会变成< !-能不能自动把这个filter跳过去 Dan, als <? Php zal het <? Php een meer ruimten, <! - Zal geworden <! - Kan niet automatisch springen verleden dit filter : »:

    Reply Antwoorden
  5. yixia posted the following on 2008-05-13 at 10:40 pm. yixia geplaatst op 2008-05-13 de volgende op 10:40 uur.

    重新修改了一点点代码,为了精简输出的html,去掉不需要的id地址还是在http://www.e-xia.com/2008/05/wp-codebox-122-bug-fix/不过不理解的就是为什么要放cookie呢? Re-edit een beetje code, met het oog op het stroomlijnen van de uitvoer van html is niet nodig om de id-adres of http://www.e-xia.com/2008/05/wp-codebox-122-bug-fix/ maar niet Begrijpen is waarom de cookie om het " 是不是以后想保持开关的状态? Is het niet na de overgang op handhaving van de status " 做的时候碰到一点点小问题,真是哭笑不得,平时都是onclick="javascript:function()",然后在function里就可以直接用this来获得调用这个function的object,我首页的achive list前面的[ ]也是这么做的,基本上是一样的javascript,一样的html,但是在wpcd_toggle_collapse里调用this就是不对,最后只能把this当一个参数传进来了,相当郁闷,你知道是为什么吗? Heb een beetje tijd om problemen stuit, is dumbfounding, meestal zijn onclick = "javascript: function ()", dan is de functie kunnen direct in deze oproep deze functie om het object, mijn startpagina voor het bereiken lijst [ ] Is dit te doen, is in wezen hetzelfde als de javascript, dezelfde html, maar in wpcd_toggle_collapse dit de verkeerde oproep in het einde alleen wanneer een parameter bij deze komt, het heel triest, weet je waarom? " 上次压缩包里面的js好像放错folder了,这次的也改正了,有兴趣的话就再下一次吧。 Het laatste kabinet binnen de js lijkt misplaatst map, dit juist is, dan is de rente over het de volgende keer opnieuw. 还有你说的"n"不能copy没试出来,反正用你给的3个例子,都能成功copy,可能是我理解有误,也有可能是js放错的关系。 U zei ook dat de "n" kan geen kopie heeft niet geprobeerd hoe dan ook u gebruik te maken van de drie voorbeelden, met succes kunnen kopiëren, ik begrijp er kunnen vergissen, kunnen ook misplaatst js betrekkingen.

    Reply Antwoorden
  6. yixia posted the following on 2008-05-09 at 11:54 pm. yixia geplaatst op 2008-05-09 de volgende op 11:54 uur.

    不知道为什么这个插件在我的blog上就是不起作用,在active插件时不报错,更改设置也不报错,在html源文件里能看到引用了codebox的js和css Weet niet waarom deze plug-in op mijn blog werkt niet, wanneer deze niet in actieve plug-in fout, fout of de instellingen wijzigen in de HTML-bron, geciteerd codebox zien dat de js en css
    我在html编辑状态下添加的<pre...,在可见即可得模式下也试过,都失败了,我还禁用了所有插件,同样不起作用。 Ik zoek de html staat toegevoegd <pre ..., in een modus die ook geprobeerd en mislukt, ik ook uitschakelen alle plug-ins, hetzelfde werkt niet. 我直接copy了这里的示例代码,也没用怎样才能确切知道这个插件是不是起作用了呢,在html源文件会有什么变化? Ik direct een kopie van het monster code hier, maar ook nutteloos om precies te weten hoe dit is niet de rol van de plug-in is, in de HTML-bron Wat gebeurt er "

    Reply Antwoorden
    1. yixia posted the following on 2008-05-10 at 12:23 am. yixia geplaatst op 2008-05-10 de volgende op 12:23 uur.

      原因找到,是因为下载的版本不正确引起的 Om de redenen voor dat komt omdat de gedownloade versie veroorzaakt door onjuist
      http://downloads.wordpress.org/plugin/wp-codebox.zip http://downloads.wordpress.org/plugin/wp-codebox.zip
      这里下载的,没敢用迅雷,右键直接下载的另外,报告bug一个:在main.php里的get_settings('home')请改成get_settings('siteurl'),因为我的index.php不在安装目录,如果用home的话引用js和css会报错。 Download het hier, Mogan met Thunder, het recht om te downloaden Daarnaast is er een bug report: main.php in de get_settings ( 'home') te veranderen get_settings ( 'siteurl "), want ik heb niet geïnstalleerd index.php Directory, als we gebruik maken van de geciteerde woorden js thuis en css zal fout.
      另一个bug是<和>都显示&lt;和&gt;这个不知道是不是和别的插件冲突,明天继续测试。 Een ander probleem is <en> hebben aangetoond dat <en> weet niet of dit is geen plug-ins en andere conflicten, morgen om door te gaan testen.
      谢谢提供那么好的插件 Dank u wel zo goed om plug-in

      Reply Antwoorden
      1. yixia posted the following on 2008-05-11 at 7:30 pm. yixia geplaatst op 2008-05-11 de volgende op 7:30 pm.

        把我前面写得留言都删掉吧,谢谢,自己都觉得太罗嗦了 Ik schrijf de berichten worden verwijderd uit de voorzijde van het, dank u, ook bevinden zich de Luosuo : Oops: 不过今天又继续抓虫,因为真的很喜欢这个插件。 Maar vandaag de dag blijft het inzien van insecten, omdat het leuk deze plug-in.
        主要是copy to clipboard这个方法,因为只能在ie而且是在expand的时候才能用,所以在php代码里面加了如果不是ie隐藏这个链接,在javascript里面加了如果显示[-]的时候隐藏这个链接还有,现在的view和download都把代码第一行最前面的空格去掉了,不是很舒服,所以把trim都去掉了,download的正则表达式加了<pre....>.*\n(来去掉最前面的一个空行。 Vooral kopiëren naar klembord deze aanpak, omdat alleen in ie en wordt gebruikt voor het uitbreiden van de tijd, dus in php-code binnen de toename, zo niet verbergen dat wil zeggen de band, de javascript binnen en als de show [-] verbergen deze tijd Links hebben nu over het bekijken en downloaden van de eerste regel van code verwijderd van de top van het vak, is het niet zeer comfortabel, zodat alle trim verwijderd, het downloaden van de reguliere expressies worden toegevoegd <pre ....> .* \ N (verwijderen van de voorkant van een lege regel.
        发在http://www.e-xia.com/?p=58,如果有兴趣的话可以看一下。 In de http://www.e-xia.com/?p=58, indien de belanghebbende kan naar kijken.
        另外我找到了http://www.jeffothy.com/weblog/clipboard-copy/这个写了如何在firefox下实现copy to clipboard,不过因为当中要引用了一个swf,不知道怎么把这个的地址放到js里,能想到的只能是参数传递,不太舒服,所以也就没有用了。 Bovendien, ik heb een http://www.jeffothy.com/weblog/clipboard-copy/ schreef in firefox bij het behalen van klembord te kopiëren, maar omdat van hen gebruik te maken van een swf, niet weet hoe om dit adres js, kan alleen maar denken aan het passeren van de parameters, is niet comfortabel, dus zal er geen besteed.

        Reply Antwoorden
        1. eric posted the following on 2008-05-12 at 9:23 pm. eric de volgende gepost op 2008-05-12 op 9:23 pm.

          感想您对WPCD的支持, 你所做的修改正是WPCD所欠缺的。 WPCD uw gedachten op de steun van de wijzigingen die aan u is WPCD gebrek. 我正在逐个把你做的修改做测试并加到发布版,在changlog日志中加上了贡献人信息。 Ik was het een voor een in uw wijzigingen doen toevoegen test-en release, in changlog logs heeft bijgedragen aan mensen met informatie.
          同时也向你报告你的修改文件的一个bug. line="n" 时copy to clipboard无作用。 Tegelijkertijd heeft u verslag uit te brengen wijzigingen in het document van een bug. Line = "n", wanneer het kopiëren naar klembord geen rol.
          &lt,&gt问题是wordpress editor hooks 在捣鬼,应该是可以解决的。 <> Is wordpress editor haken in Daogui, zou moeten kunnen oplossen.

          Reply Antwoorden
          1. yixia posted the following on 2008-05-13 at 5:09 pm. yixia geplaatst op 2008-05-13 de volgende op 5:09 pm.

            没想到你真的会看哦,很感动的说,其实我从来都不用copy to clipboard也就没有好好测试,我用firefox的,对ie的测试做得不好:redface: Heeft u niet verwachten dat je echt Kano, erg ontroerd door, dat in feite heb ik nooit hoeven niet te kopiëren naar klembord is er geen goede test, ik gebruik firefox, dat wil zeggen over de test niet goed gedaan: redface:

            Reply Antwoorden
  7. Michael posted the following on 2008-05-08 at 12:47 am. Michael gepost de volgende op 2008-05-08 op 12:47 uur.

    Very nice plugin, thank you. Zeer mooi plugin, bedankt.
    This is another vote to keep the [Copy to Clipboard][ ] visible at all times (with either word wrap or cleverer use of CSS) Dit is weer een stemming te houden van de [Kopiëren naar klembord] [ ] zichtbaar te allen tijde (met of woord wrap of slimmer gebruik van CSS)
    Thanks, I'm finding it very useful. Bedankt, ik vind het heel nuttig zijn.

    Reply Antwoorden
  8. KimHoon posted the following on 2008-04-19 at 5:37 pm. KimHoon geplaatst op 2008-04-19 de volgende op 5:37 pm.

    Wonderful plugin ! but 1 more thing. Prachtig plugin! Maar 1 ding.
    How can I make word-wrap(no auto scrollbar) ? Hoe kan ik ervoor zorgen dat woord-wrap (geen auto scrollbar)?

    Reply Antwoorden
  9. Frank Wang posted the following on 2008-04-17 at 6:39 pm. Frank Wang van de volgende gepost op 2008-04-17 op 6:39 pm.

    can't work with wordpress 2.5 kan niet werken met wordpress 2,5
    不能在2.5版下使用哦.. Versie 2,5 kan niet worden gebruikt, oh ..
    希望早日更新 Hope te werken

    Reply Antwoorden
    1. eric posted the following on 2008-05-07 at 9:37 pm. eric de volgende gepost op 2008-05-07 op 9:37 pm.

      Try it again! Probeer het eens!

      Reply Antwoorden
  10. Becca posted the following on 2008-03-28 at 2:07 am. Becca de volgende gepost op 2008-03-28 op 2:07 am.

    When I wrap (without the spaces) around basic html, it breaks and doesn't work. Toen ik wrap (zonder spaties) rond elementaire html, pauzes en werkt niet.

    Reply Antwoorden
    1. Jeff posted the following on 2008-04-04 at 8:12 pm. Jeff geplaatst op 2008-04-04 de volgende op 8:12 pm.

      You need to move the 'copy to clipboard' to the left sign. I use this for SQL scripts. When they are too long (and most are), you can't see the 'copy to clipboard' unless you go to the bottom of the script and then use the scrollbar to scroll to the right. Most users don't even realize it's there as a result. U moet verplaatsen 'kopiëren naar klembord' om de linker-teken. Ik gebruik deze voor SQL-scripts. Als ze te lang zijn (en de meeste zijn), kun je niet zien "kopiëren naar klembord ', tenzij je naar de onderkant van het script en gebruik vervolgens de schuifbalk om naar de rechterkant. meeste gebruikers niet eens beseffen dat het er als gevolg.

      Great plugin otherwise. Groot-plugin anders.

      Reply Antwoorden
      1. Jeff posted the following on 2008-04-04 at 8:13 pm. Jeff geplaatst op 2008-04-04 de volgende op 8:13 pm.

        Oopss.. I meant left "side" obviously. Thx! Oopss .. ik bedoelde links "kant" natuurlijk. Thx!

        Reply Antwoorden
  11. Chris posted the following on 2008-03-25 at 11:20 pm. Chris de volgende gepost op 2008-03-25 op 11:20 uur.

    Nice plugin but it breaks the Lightbox-2 plugin (http://wordpress.org/extend/plugins/lightbox-2/). If your WP-CODEBOX plugin is enabled at the same time as Lightbox-2, Lightbox-2 doesn't work (it just shows the images in the browser window, ie the Ajax calls fail). Nice plugin maar het breekt de lichtbox-2 plugin (http://wordpress.org/extend/plugins/lightbox-2/). Als je WP-CODEBOX plugin is ingeschakeld op hetzelfde tijdstip als Lichtbox-2, Lichtbak-2 heeft geen 't werk (hij toont de beelden in het browservenster, dat wil zeggen de Ajax gesprekken mislukken).

    FYI ... FYI ...

    Reply Antwoorden
  12. codefrenzy posted the following on 2008-03-23 at 2:43 pm. codefrenzy geplaatst op 2008-03-23 de volgende op 2:43 pm.

    Hi there, Hallo,

    Thanks for an awesome plugin. Bedankt voor een te gekke plugin.

    I've got it working by writing my posts in 'code' view in wordpress. However, when I edit the article, it goes back to the 'visual' view on wordpress. When I switch back to the 'code' view, the following happens: Ik heb het werken met het schrijven van mijn berichten in 'code' oog in wordpress. Echter, toen ik het artikel, het gaat terug naar de 'visueel' visie op wordpress. Toen ik weer in de 'code' van mening dat de volgende gebeurt:

    For php: Voor PHP:
    1. becomes ?> 1. Meer leren?>
    3. ' becomes \' and each time I edit the article, another \ (slash) is added 3. 'Wordt \' en elke keer als ik het artikel, een ander \ (slash) wordt toegevoegd

    Do you have any idea why this might be happening or am I doing something wrong? Heeft u enig idee waarom dit zou kunnen gebeuren of doe ik iets verkeerd?

    Cheers and thanks for the plugin! Cheers en bedankt voor de plugin!

    Reply Antwoorden
    1. codefrenzy posted the following on 2008-03-23 at 2:46 pm. codefrenzy geplaatst op 2008-03-23 de volgende op 2:46 pm.

      Oops! Looks like my comment didn't come through properly. I'll try again. Oeps! Ziet eruit als mijn opmerking kwam niet goed door. Ik probeer het opnieuw.

      1. <?php disappears 1. <? Php verdwijnt
      2. ?> becomes ?& gt; (without the space between & and gt; - I just can't post that in this comment) 2.?> Meer leren? & Gt; (zonder de ruimte tussen & en gt; - Ik kan niet achteraf dat het in dit commentaar)
      3. ‘ becomes \’ and each time I edit the article, another \ (slash) is added 3. 'Wordt \' en elke keer als ik het artikel, een ander \ (slash) wordt toegevoegd

      Thanks again Nogmaals bedankt :)

      Reply Antwoorden
  13. EcApS posted the following on 2008-03-12 at 2:54 am. EcApS geplaatst op 2008-03-12 de volgende op 2:54 am.

    Does no work with ">" Is er geen werk met ">"
    exemple: voorbeeld:

    echo aes >> /etc/modules echo aes>> / etc / modules
    echo dm_mod >> /etc/modules echo dm_mod>> / etc / modules
    echo dm_crypt >> /etc/modules echo dm_crypt>> / etc / modules

    shown: afgebeeld:

    echo aes &gt;&gt; /etc/modules echo aes>> / etc / modules
    echo dm_mod &gt;&gt; /etc/modules echo dm_mod>> / etc / modules
    echo dm_crypt &gt;&gt; /etc/modules echo dm_crypt>> / etc / modules

    Reply Antwoorden
    1. eric posted the following on 2008-03-12 at 9:47 am. eric de volgende gepost op 2008-03-12 op 9:47 am.
       1 2 3 1 2 3 
       echo aes >> / etc / modules echo dm_mod >> / etc / modules // no problem ! echo aes>> / etc / modules echo dm_mod>> / etc / modules / / geen probleem! 
      Reply Antwoorden
      1. Vladimir posted the following on 2008-06-02 at 2:56 am. Vladimir geplaatst op 2008-06-02 de volgende op 2:56 am.

        If Prototype or LightBox or ProtoBox or whatever does not work with WP CodeBox, you will have to do the following: Als Prototype of lichtbak of ProtoBox of wat dan ook niet werkt met WP CodeBox, moet u het volgende doen:
        Open /wp-content/plugins/wp-codebox/js/codebox.js and find these lines: Open / wp-content/plugins/wp-codebox/js/codebox.js en vinden deze lijnen:
        function $(id) { functie $ (id) (
        return document.getElementById(id); return document.getElementById (id);
        } )

        Then replace it with Dan is het vervangen door
        if ('undefined' == typeof $) { if ( "undefined" == $ type) (
        function $(id) functie $ (ID)
        { (
        return document.getElementById(id); return document.getElementById (id);
        } )
        } )

        Since Prototype's $ function is extented with respect to CodeBox's one, the code should work fine. Sinds Prototype van $ functie is uitgebreid met betrekking tot een CodeBox's, de code zou moeten werken prima.
        Hope this helps. Hopen dat dit helpt.

        Reply Antwoorden
        1. MoebiuZ posted the following on 2008-07-07 at 3:40 am. MoebiuZ geplaatst op 2008-07-07 de volgende op 3:40 am.

          That is not working on IE7 Dat werkt niet op IE7

          Reply Antwoorden
          1. eric posted the following on 2008-07-07 at 8:53 am. eric de volgende gepost op 2008-07-07 op 8:53 am.

            I'am Ie 7, no problem! I'am Ie 7, geen probleem!

            Reply Antwoorden
            1. MoebiuZ posted the following on 2008-07-08 at 3:29 am. MoebiuZ geplaatst op 2008-07-08 de volgende op 3:29 am.

              I mean, the workaround vladimir posted (and you integrated on wp-codebox). I'm using wp-codebox with lightbox-2 and codebox breaks the lightbox-2 script. On FF works fine.Anyway, I like too much your plugin, it' the best I have seen on syntax highlighting. Ik bedoel, de oplossing vladimir geplaatst (en u geïntegreerd op wp-codebox). Ik gebruik wp-codebox met lichtbak-2 en codebox breekt de lichtbak-2-script. Op FF werken fine.Anyway, Ik hou te veel van uw plugin , Het 'de beste die ik ooit heb gezien op syntax highlighting.

              Reply Antwoorden
        2. Vladimir posted the following on 2008-06-02 at 3:10 am.