Web Translate
Label
Blog Archive
-
▼
2010
(27)
-
▼
Januari
(27)
- iFrame 2 iFrame
- Simple iFrame 3 respon
- Dropdown In Blogger
- Meta tag for blog
- SEO Optimization Title Page Blog
- Sitemap Manually creating
- SEO Submit Search Engine
- SEO Meta Code
- Best Link
- Share on Facebook' Code
- Secret Of Seo
- Best Of Ping services
- Easy Tips Trik Facebook
- ADMIN PAGE IN FACEBOOK
- Dynamic Persistent Menu step
- CSS-based menu
- Create Block for Specifik Page on Drupal
- Best Link
- Block Code Manual
- Table Sample Code
- CSS Poster and Drupal Template Customization
- TEMPLATE GENERATOR
- Drupal Dropdown menu
- drupal quick tab module
- Drupal Popup Menu
- Sticky Tooltip script
- Textarea and autoresize iFrame
-
▼
Januari
(27)
Step Web Design
Friend Connect
About Me
- Sharing Can Make Your Live Easier
Textarea and autoresize iFrame
Topic : iFrame in Auto Height Resize |
Short Note : this code talking about Auto Height Resize using iframe, whether the benefits of this way? depending on how you, because all the triks to be done as long as people do not steal other pages to crime. |
Highlight select all click me and paste under <head> | Highlight select all click me and paste under <body> | |
Short Description Howto Read Code | ||||
|
Sticky Tooltip script
After test in Drupal
output
Script sample
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="stickytooltip.js">
</script>
<link rel="stylesheet" type="text/css" href="stickytooltip.css" />
<p>Some page contents here...</p>
<p><a href="http://en.wikipedia.org/wiki/Thailand" data-tooltip="sticky1">Thailand</a></p>
<p><a href="http://en.wikipedia.org/wiki/British_columbia" data-tooltip="sticky2">British Columbia</a></p>
<p><img src="http://img403.imageshack.us/img403/3403/redleaves.jpg" data-tooltip="sticky3" /></p>
<p>Some page contents here...</p>
<!--HTML for the tooltips-->
<div id="mystickytooltip" class="stickytooltip">
<div style="padding:5px">
<div id="sticky1" class="atip" style="width:200px">
<img src="http://img121.imageshack.us/img121/746/thailand.jpg" /><br />
Thailand boasts some of the most popular and luxurious resorts in Asia.
</div>
<div id="sticky2" class="atip" style="width:262px">
<img src="http://img686.imageshack.us/img686/7383/vancouver.jpg" /><br />BC is the westernmost of Canada's provinces and is famed for its natural beauty.<b><a href="http://en.wikipedia.org/wiki/Vancouver">Vancouver</a></b> is BC's largest city.
</div>
<div id="sticky3" class="atip">
<img src="http://img339.imageshack.us/img339/2488/redleaveslarge.jpg" />
</div>
</div>
<div class="stickystatus"></div>
</div>
Defining your tooltips
All tooltips on the page should be defined inside a single DIV, with each DIV itself wrapped around a DIV with a unique ID attribute. The basic structure is:
<div id="mystickytooltip" class="stickytooltip">
<div style="padding:5px">
<div id="sticky1">
Sticky Tooptip 1 content here...
</div>
<div id="sticky2">
Sticky Tooptip 2 content here...
</div>
<div id="sticky3">
Sticky Tooptip 3 content here...
</div>
</div>
<div class="stickystatus"></div>
</div>
In this case I've defined 3 tooltips. Notice how all 3 are contained inside the DIV with CSS class "stickytooltip
", which you should retain (the CSS class that is). Each individual tooltip DIV plus the outermost container should carry a unique but arbitrary ID attribute.
With your tooltip defined, you associate a particular tooltip with an element on the page by inserting the attribute "data-tooltip=tooltipid
" into the element, for example:
<a href="http://easy-step-webdesign-solution.blogspot.com/" data-tooltip="sticky1">Dynamic Drive</a>
You set data-tooltip
to the ID of the tooltip you want this element to show, in this case, sticky1
. You can insert this attribute not just inside links, but any element on the page you wish a tooltip to appear when the mouse rolls over it.
Modifying global settings
There are also some variables inside stickytooltip.js that affect your sticky tooltips in general that you may want to customize. Firstly, near the top of the file:
tooltipoffsets: [20, -30], //additional x and y offset from mouse cursor for tooltips
fadeinspeed: 200, //duration of fade effect in milliseconds
rightclickstick: true, //sticky tooltip when user right clicks over the triggering element (apart from pressing "s" key) ?
stickybordercolors: ["black", "darkred"], //border color of tooltip depending on sticky state
stickynotice1: ["Press \"s\"", "or right click", "to sticky this box"], //customize tooltip status message
stickynotice2: "Click outside this box to hide it", //customize tooltip status message
These variables control things such as the offset of the tooltips from the mouse cursor, and whether each tooltip should be "stickied" when the right mouse button is clicked over the anchor element etc. More importantly, however, is the last line inside stickytooltip.js:
infotooltip.init("*[data-tooltip]", "mystickytooltip")
The 2nd parameter should be set to the ID of the DIV holding all your tooltips, which by default is "mystickytooltip
". The 1st parameter is reserved for advanced users only, and accepts a jQuery selector limiting the elements the page that are parsed for potentially carrying a tooltip.
Thank's toyou
Drupal Popup Menu
Sample in drupal
output :
sample script
<p>
<link href="http://localhost/iframetest/popupmenu.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="http://localhost/iframetest/jquery.min.js"></script> <script type="text/javascript" src="http://localhost/iframetest/popupmenu.js">
/***********************************************
* Flex Level Popup Menu- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.3lucky.com/ for this script and 100s more
***********************************************/
</script></p>
<p style="text-align: left;"><a data-popupmenu="popmenu1" href="http://www.3lucky.com">Dynamic Drive</a></p>
<p style="text-align: left;"><a data-popupmenu="popmenu2" href="http://www.3lucky.com">Webmaster Resources</a></p>
<!--HTML for popup Menu 1-->
<ul class="jqpopupmenu" id="popmenu1">
<li><a href="#">Item 1a</a></li>
<li><a href="#">Item 2a</a></li>
<li><a href="#">Item Folder 3a</a>
<ul>
<li><a href="#">Sub Item 3.1a</a></li>
<li><a href="#">Sub Item 3.2a</a></li>
<li><a href="#">Sub Item 3.3a</a></li>
<li><a href="#">Sub Item 3.4a</a></li>
</ul>
</li>
<li><a href="#">Item 4a</a></li>
<li><a href="#">Item Folder 5a</a>
<ul>
<li><a href="#">Sub Item 5.1a</a></li>
<li><a href="#">Item Folder 5.2a</a>
<ul>
<li><a href="#">Sub Item 5.2.1a</a></li>
<li><a href="#">Sub Item 5.2.2a</a></li>
<li><a href="#">Sub Item 5.2.3a</a></li>
<li><a href="#">Sub Item 5.2.4a</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Item 6a</a></li>
</ul>
<!--HTML for popup Menu 2-->
<ul class="jqpopupmenu" id="popmenu2">
<li><a href="http://www.3lucky.com/">Dynamic Drive</a></li>
<li><a href="http://easy-step-webdesign-solution.blogspot.com/">CSS Drive</a></li>
Reference</a></li>
</ul>
Information :
Defining and adding a popup menu to a link is simple enough. Firstly, define the popup menus, which should each just be a regular UL
list, nested if you desire multiple levels. For example:
<ul id="popmenu1" class="jqpopupmenu">
<li><a href="#">Item 1a</a></li>
<li><a href="#">Item 2a</a></li>
<li><a href="#">Item Folder 3a</a>
<ul>
<li><a href="#">Sub Item 3.1a</a></li>
<li><a href="#">Sub Item 3.2a</a></li>
<li><a href="#">Sub Item 3.3a</a></li>
<li><a href="#">Sub Item 3.4a</a></li>
</ul>
</li>
<li><a href="#">Item 4a</a></li>
<li><a href="#">Item Folder 5a</a>
<ul>
<li><a href="#">Sub Item 5.1a</a></li>
<li><a href="#">Item Folder 5.2a</a>
<ul>
<li><a href="#">Sub Item 5.2.1a</a></li>
<li><a href="#">Sub Item 5.2.2a</a></li>
<li><a href="#">Sub Item 5.2.3a</a></li>
<li><a href="#">Sub Item 5.2.4a</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Item 6a</a></li>
</ul>
Notice how the UL menu carries a unique ID and CSS class of "jqpopupmenu
". This is required. The ID attribute can be arbitrary but unique in value.
With the popup menu defined, to associate it with a link on the page, just insert the attribute "data-popupmenu
" inside it pointing to the ID of the desired popup menu:
<a href="http://www.3lucky.com" data-popupmenu="popmenu1">Dynamic Drive</a>
And that's it. Moving the mouse over the link "Dynamic Drive" above will now activate the popup menu with ID "popmenu1
".
There are also a few variables inside popupmenu.js that you may wish to edit, which affect things such as the arrow image's full path, animation speed, plus delay before menu appears/ disappears onMouseover:
arrowpath: 'arrow.gif', //full URL or path to arrow image
popupmenuoffsets: [0, 0], //additional x and y offset from mouse cursor for popup menus
animspeed: 200, //reveal animation speed (in milliseconds)
showhidedelay: [150, 150], //delay before menu appears and disappears when mouse rolls over it, in milliseconds
Adding Flex Level Pop Up Menu to Image Maps
You can also associate a pop up menu with hotspots within an image map, so moving the mouse over these hot spots display a pop up menu. Simply define your Image Map as usual, then insert the attribute "data-popupmenu" into the desired AREA elements just as you would inside a regular link. For example:
<map name="piechart">
<area href="http://www.3lucky.com.com" shape="rect" coords="91, 88, 186, 156" data-popupmenu="popmenu1">
<area href="http://easy-step-webdesign-solution.blogspot.com/" shape="rect" coords="137, 42, 223, 68" data-popupmenu="popmenu2">
</map>
<img border="0" src="piechart.jpg" width="237" height="172" usemap="#piechart"></td>
thank's to to you
drupal quick tab module
Installation & Use:
-------------------------------------------------------------------------------
1. Enable module in module list located at administer > build > modules.
2. Go to admin/settings/quicktabs to select a style for your tabs
3. Go to admin/build/quicktabs and click on the "New QT block" local task tab.
4. Add a title for your block and start entering information for your tabs
5. Use the Add another tab button to add more tabs.
6. Use the drag handles on the left to re-arrange tabs.
7. Once you have defined all the tabs, click 'Next'.
8. You will be taken to the admin/build/block screen where you should see yor new tabbed block listed.
9. Configure & enable it as required.
Drupal Dropdown menu
Simple step how to create doropdown menu
1. Must have block menu
2 create menu http://localhost/cms/drupal614/admin/build/menu and click "add menu"
3. create content and sample link menu name : Master Plan Design see as below :
4. goto block menu :Http://localhost/cms/drupal614/admin/build/block see my pict and save block
3. goto http://localhost/cms/drupal614/admin/build/menu and see my sample and save
result
TEMPLATE GENERATOR
TEMPLATE GENERATOR
| More
Label: INFO
Jika anda tidak puas dengan blog dan website yang sudah dibuat sendiri desain templatenya atau kode-kode template-template bebas buatan orang lain yang beredar di luar sana dan ingin membuat sendiri desain anda dengan mudah tanpa terlalu ahli di bidang kode web, maka template generator ini adalah yang anda perlukan, karena mudah digunakan dengan struktur dasar yang mudah dipahami. Berikut review 10+ Template Generator terbaik tersebut.
1. CSSEZ http://cssez.com
CSSEZ ini adalah generator template online untuk blog wordpress dan movable type. Jika anda ingin menggunakan layanan ini, anda perlu registrasi gratis disini. Beberapa fiturnya yang bagus adalah memilih antara satu sampai empat kolom template, mengatur lebar kolom, padding, margin, border, font dan style link. Anda juga dapat mengupload gambar atau membuat sendiri dengan image maker.
2. Dotemplate
Dotemplate ini menyediakan 12 template XHTML dan CSS compliant dasar gratis yang bisa anda pilih sendiri. Anda bisa memilih salah satu dan kemudian mengkustomisasinya dengan mengubah warna, font, teks, posisi teks dan lain sebagainya pada background, container, footer, menu dan boks. Selain itu anda juga bisa menambahkan efek seperti drop shadow, gradien dan round corner. Layanan ini sangat menarik karena tidak memerlukan pengetahuan html yang terlalu banyak untuk mempergunakannya, selain itu ada pilihan untuk mengupload gambar anda sendiri.
3. Drupal Theme Generator
Generator ini adalah generator theme berbasis MS Excel untuk situs atau blog drupal yang menggunakan template PHP dan Xtemplate. Layanan ini gratis dan memiliki fitur yang kaya seperti generator theme random color, preview theme langsung, html color assistant, dan integrasi CSS, javascript, PHP dan kode html pada theme dari file eksternal dan lain sebagainya. Selain itu ada 9 theme yang bisa anda dapatkan ketika mendownload generator ini.
4. Eris’ Template Generator
http://www.erisfree.com/d2/apart.php
Generator ini menyediakan 11 skin untuk blog anda dengan tiga pilihan kolom untuk setiap skinnya. Saat ini layanan ini mendukung diaryland, diary-x, movabletype, blogger, wordpress, b2 dan free html site template lainnya. Anda bisa menambahkan tagline, meta tag dan termasuk link ke index, arsip, email, notes, profile, buddylist dan juga 5 entri untuk diaryland, 10 entri untuk movable type, kalender untuk b2, blogroll untuk wordpress, XHTML compliant dan content copyright, webring, chat screen name dan button.
5. Firdamatic
http://www.wannabegirl.org/firdamatic
Generator template online untuk blogger dan movable type ini memiliki pilihan dua dan tiga kolom, anda bisa memasukkan sendiri informasi pada boks relevan pada form online yang tersedian dan klik generate template, selain itu anda juga bisa menambahkan judul situs, url gambar dan memilih huruf dan warnanya.
6. HTML PHP CSS Website Template Generator
Online generator ini mampu membuat template situs PHP, bersamaan dengan file CSS dan HTML. Anda juga bisa mengkustomisasi style sheet, header, sidebar, dan footer dengan menambahkan sendiri font, warna, margin dan alignment pada form online template generator. ANda juga bisa membuat sendiri scriptnya yang bisa anda kopi dan simpan untuk keperluan anda nanti.
7. PsycHo
Generator online template open source ini dapat diaplikasikan pada platform blogger, persian blog, dan blogFa. Anda bisa mengatur sendiri judul halaman, warna background body template, judul background, deskripsi, teks, spacing dan memilih hingga 4 pilihan kolom. Anda juga bisa preview template anda dan menyimpan kodenya. Layanan ini mudah digunakan tanpa pengetahuan html yang terlalu banyak.
8. Templatr
Templatr ini menyediakan lebih dari 20 layout dan pilihan formatting untuk berbagai elemen halaman termasuk halaman utama, header, footer, titles, margin, padding, border dan banyak lagi untuk keperluan wordpress blog. Selain itu, layanan ini juga menyediakan upload dimana anda bisa mengupload grafis/gambar . Setelah itu anda bisa mendownload template jika anda telah selesai dan mengaplikasikannya pada blog anda.
9. Weebly
Generator template yang rapi ini memiliki 15 desain pre-built yang bisa dikustomisasi dengan menambahkan elemen seperti iklan, feed icon, map, contact form, teks dan layout gambar, kolom google dan youtube video dan lain sebagainya. Jika anda sudah selesai anda bisa mempublikasikan situs/blog tersebut pada platform anda.
10. WordPress Theme Generator
http://www.yvoschaap.com/wpthemegen/
Layanan generator online dapat membantu anda untuk membuat sendiri theme wordpress anda dengan mudah tanpa pengetahuan html dan css language. Layanan ini menyediakan pilihan untuk memilih sendiri nama blog, ukuran body, lokasi sidebar dan ukurannya, menambahkan kolom ketiga, layout menu, warna dan skema teks, anda juga bisa menambahkan tag cloud, arsip dan kotak pencarian. Selain itu anda bisa mengupload logo situs anda online dan membuat link-nya dari template. Jika anda telah selesai anda bisa melihat hasil kreasi anda dan mendownloadnya dalam file zip.
CSS Poster and Drupal Template Customization
CSS Poster is a free online tool from chami.com. Just upload a CSS file, and CSS Poster will make a chart based on your CSS file.
Here is a cropped example using Drupal's Bluemarine template's CSS file:
A potential use for CSS Poster that immediately comes to mind is using it as a reference when customizing Drupal themes, or any kind of CSS file that was created by someone else.
Table Sample Code
<table width="80%" cellspacing="0" cellpadding="0" border="0" align="left">
<tbody>
<tr>
<td>
<h3>Title goes here</h3>
<p>
<table width="150" cellspacing="0" cellpadding="0" border="1" style="float: right;">
<tbody>
<tr>
<td align="center" colspan="3"><strong>Table title</strong></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
Type the text hee</p>
</td>
</tr>
</tbody>
</table>
result
Block Code Manual
<p>Change to Your Language</p>
<script src="http://www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/translatemypage.xml&up_source_language=en&w=160&h=60&title=&border=&output=js"></script>
Contact
<p><a onClick="OpenNewWindow(); return
false" href="http://www.3lucky.com/contact">Mail Contact</a> <a onClick="OpenNewWindow(); return
false" href="http://twitter.com/threelucky">Twitter</a> <a onClick="OpenNewWindow(); return
false" href="http://www.facebook.com/putut.priyanto">Facebook</a> </p><p><a onClick="OpenNewWindow(); return
false" href="http://www.3lucky.com/irc">IRC Chat</a> <a onClick="OpenNewWindow(); return
false" href="http://www.3lucky.com/pjirc">Chat Room</a></p>
marquee
<marquee height="20" direction="down" behavior="alternate"><marquee width="100%" bgcolor="yellow" scrolldelay="300" behavior="alternate" loop="100"> Mozilla Recommended or allow java script</marquee>
<p> </p>
</marquee>
Geovisitor counter
<script type="text/javascript" src="http://geoloc12.geovisite.com/private/geocounter.js?compte=799147248782"></script> <noscript>
<a href="http://www.geovisite.com/en/directory/sciences_agriculture.php" target="_blank"><img src="http://geoloc12.geovisite.com/private/geocounter.php?compte=799147248782" border="0" alt="agriculture"></a><br>
Please do not change this code for a perfect fonctionality of your counter
<a href="http://www.geovisite.com/en/directory/sciences_agriculture.php">agriculture</a>
</noscript>
shoutmix
<div><!-- Begin ShoutMix - http://www.shoutmix.com --> <iframe width="160" height="400" frameborder="0" scrolling="auto" title="shareidea" src="http://www4.shoutmix.com/?shareidea">
<a href="http://www4.shoutmix.com/?shareidea">View shoutbox</a>
</iframe> <!-- End ShoutMix --></div>
Page Rank
<p><a href="http://www.mypagerank.net"><img border="0" alt="" src="http://www.mypagerank.net/services/seostats/seostats.php?s=de510918fce361970998b0985e285a&bg=FFFFFF&textcolor=000000&bordercolor=999999&indicatorcolor=5EAA5E&ugo=1&uho=1&umo=1&amo=1&upr=1&tuv=1&tpv=1&yuv=1&ypv=1&ttuv=1&ttpv=1&uonline=1&f=332278" title="SEO Stats 3lucky.com" /></a> <br />
<a href="http://www.mypagerank.net/seomonitor-44660.html" target="_blank"><img border="0" alt="" src="http://www.mypagerank.net/services/seomonitor/seomonitor.php?aut=44660" title="SEO Monitor 3lucky.com" /></a></p>
Real Time Web Analytics
<p><a href="http://getclicky.com/140896" title="Real Time Web Analytics"><img border="0" src="http://static.getclicky.com/media/links/badge.gif" alt="Real Time Web Analytics" /></a> <script src="http://static.getclicky.com/js" type="text/javascript"></script> <script type="text/javascript">clicky.init(140896);</script> <noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/140896ns.gif" /></p></noscript></p>
http://id.messenger.yahoo.com/pingbox
yahoo pingbox.. delete word hapus
<p><hapus object width="230" height="420" id="pingbox769j38nuss800" type="application/x-shockwave-flash" data="http://wgweb.msg.yahoo.com/badge/Pingbox.swf">
<param name="movie" value="http://wgweb.msg.yahoo.com/badge/Pingbox.swf" />
<param name="allowScriptAccess" value="always" />
<param name="flashvars" value="wid=zGLIGYC6UWaT63Mn13wZAcbzga73PQ--" /><hapus/object></p>
friend connect
<!-- about Set up the Members gadget Include the Google Friend Connect javascript library. --> <script type="text/javascript" src="http://www.google.com/friendconnect/script/friendconnect.js"></script> <!-- Define the div tag where the gadget will be inserted. -->
<div style="border: 1px solid rgb(204, 204, 204); width: 276px;" id="div-6169384188995683083"> </div>
<!-- Render the gadget into a div. --> <script type="text/javascript">
var skin = {};
skin['FONT_FAMILY'] = 'georgia,serif';
skin['BORDER_COLOR'] = '#cccccc';
skin['ENDCAP_BG_COLOR'] = '#e0ecff';
skin['ENDCAP_TEXT_COLOR'] = '#333333';
skin['ENDCAP_LINK_COLOR'] = '#0000cc';
skin['ALTERNATE_BG_COLOR'] = '#ffffff';
skin['CONTENT_BG_COLOR'] = '#ffffff';
skin['CONTENT_LINK_COLOR'] = '#0000cc';
skin['CONTENT_TEXT_COLOR'] = '#333333';
skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc';
skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666';
skin['CONTENT_HEADLINE_COLOR'] = '#333333';
skin['NUMBER_ROWS'] = '4';
google.friendconnect.container.setParentUrl('/' /* location of rpc_relay.html and canvas.html */);
google.friendconnect.container.renderMembersGadget(
{ id: 'div-6169384188995683083',
site: '12655291970310091377' },
skin);
</script>
bravenet
<script language="JavaScript" src="http://www.bravenet.com/cserv.php?pid=4&tid=5&afilid=494044403">
</script>
adsense indonesia
<script src="http://adsensecamp.com/show/?id=m6xSVNe1O3s%3D&cid=xoxibs15%2BiU%3D&chan=1ktj4jHsV0A%3D&type=9&title=3D81EE&text=000000&background=FFFFFF&border=000000&url=2BA94F" type="text/javascript">
</script>
statistik
<script type="text/javascript" src="http://feedjit.com/serve/?bc=FFFFFF&tc=333333&brd1=999999&lnk=346BA4&hc=C13A10&ww=160"></script><noscript></noscript>
<p><a title="web stats tracker" target="_blank" href="http://www.histats.com"><script type="text/javascript" language="javascript">
var s_sid = 891955;var st_dominio = 4;
var cimg = 406;var cwi =165;var che =100;
</script></a> <script type="text/javascript" language="javascript" src="http://s10.histats.com/js9.js"></script> <noscript><a href="http://www.histats.com" target="_blank">
<img src="http://s4.histats.com/stats/0.gif?891955&1" alt="web stats tracker" border="0"></a>
</noscript></p>
Best Link
Drupal manual :
http://tips.webdesign10.com/drupal/how-make-a-custom-front-page-drupal-316.html
http://agileware.net/content/use-menu-settings-add-menu-items
About how to configuration
http://nadeausoftware.com/articles/2009/06/drupal_and_apache_web_site_security_checklist_part_2
lict donwload module
http://kathyravan.blogspot.com/2009/02/alphabetical-list-of-drupal-modules-by.html
HTML - Hypertext Markup Language
Zur Navigation springen. Zum Inhalt springen.
www.buschka.at
Linksammlung
HTML - Hypertext Markup Language
Edition W3C - Übersetzungen von W3C Empfehlungen
HTML Seminar (Deutsch) (HTML, CSS)
E-Learningcenter.com - Free Online HTML Course
Buromat (DE) - HTML und CSS Tipps
Forms (AT) - Formulare in HTML
Form Mailer (Formulardaten per E-Mail versenden)
Word 2 Clean HTML - Word Dokumente sauber in HTML umwandeln
Word HTML Cleaner - Word Dokumente sauber in HTML umwandeln
Blindtexte - New Media Designer (DE)
IAB - Internet Advertising Bureau (NET) - Advertising Standards
IAB - Collection Of Banners In Official Sizes
Multimedia Integration - SWF, FLV und Streaming Video
What is the Different between SWF and FLV?
Super (c) SWF FLV Converter (Freeware)
XHTML Problem embed - A List Apart Satay Method
XHTML Problem embed - A List Apart Satay Method - Improved!
XHTML object - embed Problem - LANtastic Method
Strict XHTML Test object - embed
xmoov-php - HTTP pseudo-streaming script
CSS - Cascading Style Sheets
CSS - Spezifikationen, Grundlagen, Tutorials
CSS Seminar (Deutsch) (HTML, CSS)
CSS 4 You (DE) (inkl. Layout ohne Tabellen)
The Styleworks (DE) (inkl. HTML - CSS Entsprechungen)
Buromat (DE) - HTML und CSS Tipps
CSS Workshop (inkl. Workarounds)
Webmaster Resource - CSS Tutorial
Webkrauts - Webstandards für ein besseres Web
Davesite - Interactive CSS Tutorail for Beginners
CSS Walk-In-Workshop (University of Washington)
MaxDesign - Select Tutorial (Type, (Pseudo-)Klassen, ID, Kaskade, Vererbung)
MaxDesign - Listamatic - veritcal / horizontal Lists Tutorial
MaxDesign - Listamatic2 - nested Lists Tutorial
MaxDesign - List Tutorial mit Images und Rollover
Dietmar Rabich JavaScript (inkl. CSS)
Traum Projekte - CSS (inkl. Fehler bei Tabellen)
CSS - Advanced Selectors
Maxdesign - Selectors Tutorial
Your HTML Source - Advanced CSS Selectors
Webdesign About - Advanced CSS Selectors
Quirksmode - Browser und Advanced CSS Selectors
CSS und Browser
IE7 JavaScript library to make MSIE behave like a standards-compliant browser
Browser Shots - CSS und HTML in verschiedenen Browsern testen
CSS Box Model - Acid Test (Browservergleich)
Webhits (Web-Barometer) - Browserstatistiken
CSS - Liste der von Browser unterstützten Anweisungen
CSS - Farben und Farbverläufe
Color Schemer Online - zusammenpassende Farben
Colors On The Web - Color Wizard - zusammenpassende Farben
Dynamic Drive - Color Gradient - Farbverläufe
Fraunhofer Institut - Wirkung von Farbkombinationen
Adobe Kuler - Create Color Schemes (Free Registration)
Gute Beispiele für Skalierung und floatende Elemente
Tinderhouse.com (Beispiel für WAI konforme Seite)
Österreichisches Jüdisches Museum
Kammerer barrierefreie Weblösungen
CSS - Designvorlagen
Open Source Webdesign - Gratis CSS Designvorlagen (Templates)
Intensivstation.ch - Gratis CSS Designvorlagen
Layoutgala (it) - Gratis CSS Designvorlagen
Glish - CSS Layout Techniques (inkl. fertige Layoutgerüste)
CSS-Discuss Wiki (inkl. fertige Layoutgerüste)
MaxDesign (inkl. CSS Menüs und Listen)
CSS Tools
CSS Frameworks
YAML - Yet Another Multicolumn Layout
YAML-Builder (interaktiv YAML Layouts gestalten)
Barrierefreies Webdesign
Informationen
Wikipedia - Barrierefreies Internet
Gleichstellung AT (Gesetzeslage Österreich)
Web ohne Barrierren nach Paragraph 11 (Deutschland)
IWP - Barrierefreiheit im Internet
Organisationen und Unternehmen
Bundes-Blindenerziehungsinstitut Wien
Accessible Media - Zugang für alle
WAI (Web Accessibility Initiative) Austria
BIZEPS - Behindertenberatungszentrum
Biene - Preise für barrierefreies Webdesign
Kammerer Barrierefreie Webdesignlösungen
WebAIM - Web Accessibility in Mind
Standards
W3C WAI (Web Accessibility Initiative)
Beispiele und Tools
Einfach für Alle - Barrierefreies Webdesign
BIK - barrierefrei informieren und kommunizieren
Jim Thatcher - Accessibility Consulting(inkl. Skip Navigation)
Cynthia Says Accessibility Check
Accessify.com - Accessibility Tools & Wizards (Barrierefreier Table und Form Builder etc.)
Rohschnitt - Kontrasttest nach W3C
WAT-C - Web Accessibility Tools (Accessibility Toolbar for Windows IE)
Juicy Studio - Colour Contrast Analyser - Firefox Extension
Tinderhouse.com (Beispiel für WAI konforme Seite)
Tutorial - bessere Formulare (Listings)
PAPOO - Barrierefreies CMS (Deutsch)
MODx CMS - Barrierefreies CMS (Englisch)
Drupal
Drupal Grundlagen
Drupal Cases - Websites die Drupal verwenden
Drupal2U (COM) - Gratis Drupal Themes
Siteground (COM) - Gratis Drupal Themes
Drupal (org) - The Drupal Cookbook For Beginners
Das Drupal-Kochbuch (für Neu-Drupaler)
Drupal-Basic - Einsteiger Handbuch
Drupal User Group Hannover - inkl. Einsteigerpaket Drupal
My Drupal (COM) - Tips, How To
Lullabot - Consulting and Training for Drupal
Lullabot - Installing Drupal 6
Drupal Modules (Community für Drupal Module)
PureGin - Drupal Community (org)
PureGin Drupal Handbooks as PDF
GotDrupal - Basics: Understanding Drupal's Block System
Drupal HowTo (Systemausfall.org)
Drupal Videoschulungen
Learn by the Drop - Drupal Videos
Drupal - Training Videos for Beginners
Drupal Video Casts (Videos and Slides)
The Art Lab - Drupal School (Videos)
Drupal Therapy (COM) - Drupal Screencasts
Drupal Dude - Site for Drupal Enthusiasts (Videos)
Group24 - Drupal Profi Tipps und Screencasts (Englisch)
Goolge Video Search - Drupal Videos
Brian Stevenson - Drupal Screencasts
Vergleich Drupal und andere CMS
IBM - Gründe für den Einsatz von Drupal und Vergleich mit anderen CMS
Drupal vs Joomla - Performance
Drupal vs Joomla - Hosting Costs
Drupal vs Joomla & Co - Code Base Comparison
Drupal und Typo3 - Häufigkeit der Verwendung
Drupal und Joomla - Häufigkeit der Verwendung
Typo3 und Joomla - Häufigkeit der Verwendung
Drupal Webserver Configuartions Compared
Drupal Literatur
Drupal 6 Site Builder Solutions
Drupal 6 for Edudation and E-Learning
Drupal 6 Search Engine Optimization
Drupal 6 JavaScript and jQuery
Pro Drupal Development - Source Codes
Pro Drupal Development - Errata
Learning Drupal 6 Module Development
Learning Drupal 6 Module Development - Errata
Solr 1.4 Enterprise Search Server
Drupal Input Formate
Lullabot - Drupal Input Formats and Filters
Drupal Modul Better Formats - Input Formats
Drupal Module User Default Filter
Drupal Navigation und Menüs
Drupal Module Dynamic Persistent Menu
GotDrupal - Drupal Menu Navigation Enhanced
Drupal Module Frequently Asked Questions
Drupal RSS Feeds
Drupal Modul Feed Element Maper
Drupal CCK
Drupal Modul CCK (Content Construction Kit)
Drupal Handbook - Content Construction Kit (CCK)
Lullabot - Creating Custom CCK Fields
TiniPixel.Com - Programmatic CCK content type creation
PoplarWare.Com - Creating a Compound Field Module for CCK in Drupal 6.x
Drupal Modul Node Terms in a Block
Drupal Modul Automatic Nodetitles (hide Title Field)
Drupal Views - Grundlagen
GotDrupal - How To: Using Drupal Views module
Drupal Handbook - Views Arguments
GotDrupal - How To: Using View's Arguments
GotDrupal - How To: Using View's Relationships
GotDrupal - How To: Use Beauty Tips Module to Enhance Your Drupal Views
Drupal Modul Views Custom Field
Drupal Modul Views modify query
Views And Views Slideshow - Screencast
Draggable Views - Documentation
Drupal Module Draggable Views Navigator
Creating A Page View From A Taxonomy
Views And Relationships (Five Star Rating)
Views Workshop (Der Hasi) (Deutsch)
Lullabot - Drupal data imports with Migrate and Table Wizard
Drupal Modul Views Custom Field
Drupal Modul Views UI: Edit Basic Settings
Drupal Modul Views Filter Pack
Drupal Modul Views Formatted Field
Drupal Modul Better Exposed Filters
Drupal Modul Views Natural Sort
Drupal Modul Query-Based Views (Q-Views)
Drupal Views und verwandte Module - Empfehlungen
Drupal Modul Query-Based Views (Q-Views)
Drupal Views Theming
Group 42 - Theming Views 2 – The Basics
Drupal Views API und Developer Tipps
Drupal Contrib API - views.module
Starting Views 2 Documentation
Logrus.com - Views 2 API Manual
Logrus.com - Views 2 Template Files
AgileApproach.com - Drupal: Expose a Custom Field to Views2
Drupal Contrib API - hook_views_data (Expose Custom Field)
Drupal Contrib API - hook_views_api (Register View API information)
Views 2 API hook_views_data with more than one table
CiviCRM Example hook_views_data with more than one table
Views 2 Unofficial Tutorials (Developers)
Views 2 Tips and Tricks (Developers)
Embedding Views in PHP snippets with Views 2
Using Views 2 and Drupal 6 to Create a Related Pages Block
Drupal Taxonomy
Drupal Modul Install Profile API
Drupal Modul Taxonomy CSV Import
Drupal Modul Taxonomy Super Select
Drupal Zugriffsteuerung (Permissions)
Drupal Modul ACL (Access Control List)
Drupal Modul Image Gallery Access
Drupal Modul Filter Permissions
Drupal Modul Override Node Options
Drupal Modul Modr8 (managing content in moderation)
Drupal Modul Better Permissions
Drupal Modul Restrict Password Change
Drupal Modul Permission Select
Drupal Modul Node permissions grid
Drupal Modul Site Configuration Permissions
Drupal Modul Profile Permissions
Drupal Modul Masquerade (Switch Users)
GotDrupal - How To: Manage Drupal Permissions More Easily
Drupal User und User Profile (Zusatzinformationen)
Drupal Handbook - Profile: extending user account information
Drupal Modul Advanced Profile Kit
Drupal Modul Profile Permissions
Drupal - Events und Kalender
Drupal Modul Signup Restrict by Role
Drupal Modul RSVP (Répondez s'il vous plaît)
GotDrupal - How To: Create a Drupal Calendar
Drupal Messaging Framework
Drupal Modul Prowl Push Notifications
Prowl (Growl client for the iPhone OS)
Wikipedia - Growl Benachrichtigungssystem für Mac OS X
PHP Class for Prowls iPhone Notification Service
Drupal Modul Messaging Send To
Drupal Modul Team Notifications
Drupal Kontaktformulare
Drupal Modul Contact Form On Node
Drupal Modul Webform Private Upload
Drupal und Google Maps
IPligence - Tools and resources for ip location of addresses
Drupal Images und Galleries
Drupal Modul Gallery Assist Image Cache
Drupal Modul Gallery Assist Lightboxes
Photo galleries with CCK and Views Attach
Imagecache + Imagefield - Screencast
GotDrupal - How To: Using Drupal's ImageCache module
Drupal Modul ImageCache Actions
Drupal Modul Imagecache JavaScript Crop
Imagecache javascript crop - Video Tutorial
ImageCache and ImageCrop - Video Tutorial
SWFUpload - JavaScript & Flash Upload Library
Drupal Modul ImageCache Profiles
FileField + jQuery Media - Screencast
Transliteration i18n-ascii.txt
How to reorder your Flagged content
Draggable Views - Documentation
Lullabot - Image and Image Exact Sizes vs. Imagefield and ImageCache
Lullabot - FileField and ImageField 3.0 for Drupal 6
Maintainable Image Gallery in 21 Minutes - Video
Lullabot - Photo galleries with Views Attach
Tools für Images und Galleries
PrettyPhoto - jQuery LightBox Clone
PrettyPhoto lightbox in Drupal
Drupal - Wiki selbst erstellen
Modules for building Drupal wikis
Drupal Multimedia
GotDrupal - How To: Embedding media using SWF Tools module
Flowplayer - Video Player for the Web
Drupal Modul jQ (register jQuery plugins in a central repository)
Drupal Modul Embedded Media Field
Drupal Modul Blue Droplet Video
Drupal Multilingual - Sprachen (i18n)
Drupal Translation (COM) - Mehrsprachige Drupal-Seiten betreiben (Tutorials - D)
Drupal Multilingual - Module und Tools
Modul Translation Template Extractor
Modul Consistent Language Interface
Drupal Modul In-Place Translation
Drupal Modul Translation MenuSync
Modul Drupal-Pot (Translation Templates for Drupal Core)
Translating Menus and primary / secondary links
How to use i18n for menu link (D6)
GNU Gettext Manual - Format of PO-Files
Drupal Programs to use for Translation
Lullabot.com - Screencast Installing Drupal Translation
Blogs, Trackback, Pingback allgemein
Software Guide - Was sind Trackbacks
Web Archiv - Was sind Trackbacks
Trackback Technical Specification
Linkbacks - Trackback, Pingback, Refback
Jones - Great Big Giant List Of Ping Servers
Dev001.net - Receiving pingbacks using the PHP XML-RPC module
Dev001.net - Sending a pingback using the PHP CURL module
A Splash Of Insanity - PHP Pingback
Pingor - Small Pingback Client in PHP
Drupal Blogs, Trackback, Pingback
Drupal Module Blog - A Blog For Every User
Making user blogs more accessible
Drupal Module BlogAPI - Post From Blog Tools
Mastering Drupal - Pingback Module Screencast
Jones - How To Ping Your Drupal Site
Jones - Drupal Multiping Module Is A Winner
Drupal Suche - Module und API
Drupal Handbook - Search: an internal site search system
Drupal Modul Core Searches (Core Search deaktivieren + Patch)
Drupal Modul Suppress Search (Core Search deaktivieren, kein Patch notwendig)
Drupal Modul Ranged Search for Faceted Search
Drupal - SPARQL for Developers
Getting Started with Exhibit using Drupal and Views
GotDrupal - How To: Add focused Drupal search to your site
Drupal Suche - Calais
Drupal Modul RDF (Resource Description Framework)
OpenCalais - How Does Calais Work
SemanticProxy.com (OpenCalais)
Lullabot - Introduction to Calais
Using Intelligent Web Services for Semantic Drupal Sites
Easy RDF and SPARQL for LAMP systems
Drupal Suche - Apache Solr
SUN - JavaServer Pages Technology
Drupal Modul Apache Solr Statistics
Drupal Modul Apache Solr autocomplete
Drupal Modul Apache Solr Statistics
Drupal Modul Apache Solr RDF Support
Drupal Tutorial - Apache Solr Search Integration
Smile.mit.edu - Beispiel Faceted Search
How To: Drupal Search using Acquia's Solr Service
Drupal Semantic Web & Faceted Search
About Semantic Search - Web 3.0 for Drupal
Drupal, the semantic web and search
RDFa, Drupal and a Practical Semantic Web
RDFa in Drupal - examples and use cases
rdfa.info - RDFa in Drupal - Examples and Use Cases
Youtube - RDFa in Drupal - Examples and Use Cases
Dries Buytaert - RDFa and Drupal
Dries Buytaert - Drupal, the semantic web and search
Drupal Multi Site Installation
Übersicht Multisite Installation
Anleitung für Multi-Sites und Subdomains
Installing virtual Hosts for Drupal Sites and Subsites
Setup of /sites Directory for Multi-Site
Multi-Site without Subdomain - only Subdirectories
Access all multisites with www. only (.htaccess)
Multisite und Rewrite (ohne .htaccess - in settings.php)
A more secure Drupal [multisite] Install (inkl. Symlinks)
Modul robots.txt für verschiedene rotbots.txt Dateien bei Multi-Site-Installation
Drupal Module Admintools - Managing Multiple Drupal Installations
Modul robots.txt für verschiedene rotbots.txt Dateien bei Multi-Site-Installation
GotDrupal - How To: Multisites vs. Multiple Sites
GotDrupal - Overview: Drupal CVS/SVN Setup
Drupal Modul Simpletest
Simpletest - Unit Testing for PHP
Modul SimpleTest - Setup and Configuration
Getting Started with Simpletest
Drupal Simpletest API Functions
Doxygen - Simpletest D6 Documentation
Lullabot - A Drupal Module Developer's Guide to SimpleTest
Drupal und Sicherheit
A more secure Drupal [multisite] Install (inkl. Symlinks)
Drupal Modul ReCaptcha - Dokumentation
Drupal Modul Phpass (Secure Password Hashes)
Drupal Modul http:BL (requires Protect Honey Pot Account)
Grendel Scan (Open-Source Web Aapplication Security Testing Tool
GotDrupal - Module Review: Mollom
Drupal und SEO (Search Engine Optimization)
GotDrupal - How To: Drupal SEO using Nodewords for Meta tags
Drupal SEO Grundlagen (DevBee)
Basic Drupal SEO: On-site Optimization
How Duplicate Content Hurts Drupal Sites
SEO Screencast Teil 5 (XML Sitemap)
Google Webmasters Tools - Sitemap Generator
A List Apart - Perfect 404 Page
Tipps zur robots.txt (Webdesign10)
Improved robots.txt for Drupal (Webdesign10)
Tipps von Drupal.org zu robots.txt
robots.txt Pattern matching (Wildcards)
Pebosi (NET) - Übersicht SEO Module für Drupal
Module: Token (API) Voraussetzung u.a. für PathAuto
PathAuto Patterns that can be Dangerous
GotDrupal - Module Review: Pathauto
Transliteration i18n-ascii.txt
Seitentitel in Drupal optimieren (Page Title)
Module: Service Links (Social Bookmarks)
Drupal - Performance
Drupal Performance Tuning and Optimization for large web sites
Boost 6.x: Static page caching for your website
Drupal Module - Neuigkeiten
DrupalModules.com - New Drupal Modules
Drupal Modul Context
Drupal Modul Features
Drupal Modul Deploy(ment)
Drupal Groups - Packaging & Deployment
Drupal Modul Services
Drupal Modul Rules
GotDrupal - How To: Drupal Workflows & Automation (Rules)
Rules - Rule Based Action Execution (Drupal 6)
More.Zites.net - Rules - New Opportunity for Site Builders
Drupal User Group Hannover - Drupal Camp Modul Rules
Videos des Drupal Camp - Themen: Rules und Simpletest
Drupal Module Workflow, Actions, Triggers
Drupal Modul Modr8 (managing content in moderation)
Using the new Actions and Triggers functions in Drupal 6
Cocoate.com - Aktionen und Trigger
Drupal Handbook - Trigger: Assign actions to system events
Scribbledesigns - HowTo: Configuring Triggers and Actions in Drupal 6
Scotthadfield - Creating Custom Triggers in Drupal
Zzolo.org - A Quick Code Example of How to Create a Trigger
Drupal Module - Empfehlungen
Drupal Modul Administration Menu
Drupal Modul PURL (Persistent URL)
Drupal Modul Override Node Options
Drupal diverse Module
Drupal Modul License (associate license terms with nodes)
Drupal Modul Automatic Nodetitles (hide Title Field)
Drupal E-Commerce - Ubercart
Ubercart.org - What is Ubercart
Ubercart - Why use Drupal for E-Commerce?
Ubercart - Contributions (Module)
Drupal Modul Ubercart Products Recommender
Drupal Modul Fivestar Recommender
Drupal Modul Ubercart CSV/Excel Export
Drupal Module Ubercart Product Quote
Drupal Module Ubercart Image Product
Ubercart Forum - Product Import
Drupal Modul Currency Exchange
Ubercart European VAT (Value Added Tax - USt) Compatibility
Ubercart VAT/GST (Goods and Services Tax - MWSt): Overview
Drupal E-Learning
Drupal und Google Analytics
Brian Stevenson - Drupal Google Analytics - Installing & Configuring
Brian Stevenson - Drupal Google Analytics - Configuring User Segmentation
Brian Stevenson - Drupal Google Analytics - Advanced Tracking
Brian Stevenson - Drupal Google Analytics - Advanced JavaScript Tweaks
Drupal und Google AdSense
Drupal E-Commerce - Kaufmännische Grundlagen
Yahoo Finance - Currency Converter
Börse Live (AT) - Währungen - Devisenkursblatt
Bankhaus Schelhammer und Schattera - Live Crossrates
European Central Bank - EUR to USD Exchange Rates
Forex Trading - Live Crossrates
Wikipedia - Kategorie Umsatzsteuer
Wikipedia - Innergemeinschaftliche Lieferung
Wikipedia - Innergemeinschaftlicher Erwerb
Wikipedia - Herkunftslandprinzip
Wikipedia - Bestimmungslandprinzip
Wikipedia - Lieferschwelle (Versandhandelsregelung)
Internet 4 Jurists - Mediengesetz
Internet 4 Jurists - Impressumpflicht
Internet 4 Jurists - E-Commerce Übersicht
Internet 4 Jurists - E-Commerce-Gesetz
Internet 4 Jurists - Konsumentenschutz
Internet 4 Jurists - Fernabsatzgesetz
Drupal und LDAP
Drupal LDAP: Integration with enterprise authentication systems
Drupal LDAP HowTo (Systemausfall.org)
Drupal PHP IDEs und XDebug
Eclipse PHP IDE (inkl. XDebug)
Developing for Drupal - Configuring Eclipse
Developing for Drupal - Xdebug debugger
Installing XDebug from Source (Video)
CDebug and Target Management for Eclipse (Video)
How To Setup a Free PHP Debugger using Eclipse PDT + XDebug
Debugging Drupal with XDebug and Eclipse
Using PDT + xDebug (for debugging Drupal projects)
Debugging Drupal or any PHP Application with XDebug and Eclipse PDT
Developers-Guide.net - Eclipse mit PDT + XAMPP mit Xdebug
Drupal Theming Grundlagen
Drupal Default Baseline Variables
Drupal Core Templates - PFD Cheat Sheet
Drupal PHPTemplate Theme Engine (inkl. Available Variables)
Drupal - Overriding Themable Output
Overriding Theme Templates in Drupal 6
Setting up variables for use in a template (preprocess functions)
Drupal - template.php - Overriding Other Theme Functions
Drupal API - Default Theme Implementations
Mastering Drupal (Online Videos)
Making settings available to the administration page
Drupal Module Node Page Template
Drupal Modul PNG Fix (PNG Transparencx IE6)
jquery.pngFix.js PNG-Transparency for Windows IE 5.5 & 6
GotDrupal - How To: Drupal Theme Makeover
GotDrupal - How To: Unique Pages by Content Type (inkl. eigene Suggestions)
Drupal Theming Starter Kits
Adaptive Themes - Genesis Tutorials
Adaptive Themes - Drupal Starter Theme Comparison
Drupal Modul Sub Theme Generator
Drupal Theme ATCK (Advanced Theme Construction Kit)
Artisteer.com - Web design automation product
Drupal Theming Code Snippets
Customising the user profile layout
Handling single-line profile fields
Drupal Panels & Co
Creating a new front page with Views and Panels 3
Creating a custom layout in your theme for Panels 3
GotDrupal - How To: Drupal Panels
Blip.tv - Drupal: Panels 2 Screencast
Oregonstate.edu - Video Tutorial - Create a page using panels
Composite Layout - Documentation
Drupal - CVS (Concurrent Versions System) und SVN (Subversion)
List of core branches and tags
Checking out Core from the Main Repository
Checking out from the Contributions Repository
Using CVS to Maintain a Drupal Site
Drupal CVS Reference Guide for Module Maintainers
GotDrupal - Overview: Drupal CVS/SVN Setup
GotDrupal - Developer Know How: SVN Vendor Branching
GotDrupal - Quick Tip: SVN Filtering
cvsdrupal Script - Checkout and Maintain a Local CVS Repository
Version Control with Subversion (SnvBook.Red-Bean)
How to install and config Drupal 6 via CVS and SVN
Drupal - Patches
Drupal - Applying a patch manually
Applying Patches to Drupal Core (Video)
Drupal - Drush (Command Line Shell and Unix Scripting Interface for Drupal)
Drush Screencast 1 - Installing And Getting Started
Drush Screencast 2 - Using the drush dl and info commands
How to use Drush Locally with MAMP
Modul Browsing History Recommender
Modul Ubercart Products Recommender
Drupal Tipps und Tricks
MySQL BigDump - Import Huge SQL Dumps
Drupal - Import MySLQ Dump with BigDump
Drupal Troubleshooting
Blank pages and missing content
The White Screen Of Death (completely blank page)
Blank Modules Page - Memory Limit
Drupal Developer Tools
Hidden Drupal development functions (dpr, dvr, dpm, dvm)
Firefox Addon - Drupal for Firebug
Firefox Addon - Drupal for Firebug
GotDrupal - How To: Drupal debugging with Devel
BackPackit - Debugging Drupal (Devel, Firebug)
Doxygen Source Code Documentation Generator
Drupal Module Development (API)
GotDrupal - Video Series: Building Drupal Modules - Getting Started
Creating modules - a tutorial: Drupal 6.x
Writing .info files (Drupal 6.x)
Writing .install files (Drupal 6.x)
Drupal API - Themable Functions
Drupal hook_schema und Modulupdates
Drupal Modul Deadwood (Convert Modules 5.x to 6.x)
Boombatower.com (Convert Modules)
Drupal Form API
Drupal Forms API - Quickreference
Drupal Forms Generation API - Overview
Drupal Unit Testing
Firefox Addon Selenium IDE (Testing)
Drupal Code Snippets
Drupal Beginner's Guide To Using Snippets
Expression Engine (pMachine)
Expression Engine - Deutsche Userseite
Expression Engine - Tutorials
Expression Engine Tutorial (by Leo and Meg)
Expression Engine Tutorial Help (5pieces.com)
YAML für Expression Engine
YAML (Yet Another Multicolumn Layout) für Expression Engine
Joomla
Joomla Extension für Dreamweaver
Joomla Developer Network - Development Wiki (Anleitungen Extensions etc.)
Joomla API Reference (Framework Reverence)
Joseph L. LeBlanc - Joomla Tutorials
Remository - Mambo-Joomla Components
Joomla Resource (Download Components, Templates and more)
Joomla Equipment (Professional Equipment for Joomla)
Joomla At Work (Components and Services)
YAML für Joomla
JYAML - YAML Joomla Template Framework
TYPO3
Typo3 (net) (Deutsches Portal)
Suchmaschinenoptimierung
WebMasterCoffee (COM) - Analyse von Homepages (Techniken, Editor, Fehler, Keywords)
TouchGraph (COM) - Verlinkung von Homepages feststellen
Google Webmaster Zentrale (DE)
Google Webmaster Zentrale - Blog (DE)
WebmasterWorld.com - SEM (Search Engine Marketing) Topics
Ranking Check - Keywords und Suchbegriffe analysieren
Lower Your Bid Price - Top 100 Keywords
Metager - Keywordsuche mit Assoziationen
LinkVendor.de - Professionelle SEO Tools (gratis)
Google Support - Erstellen und Einreichen von Sitemaps
Google Support - Sitemap Protokoll
Sitemapdoc.com - Sitemap automatisch erstellen lassen (HTML, XML, Google Sitemap)
LinkVendor.de - Linkpopularität
LinkVendor.de - Domainpopularität
WebArchive.org - alte Versionen von Homepages finden
SPIXX Suchmaschinen Preisindex für Klicks auf Werbeschaltungen
Robotstxt.org - The Web Robots Page
Sistrix Suchmaschineoptimierung und Consulting
Abakus Internet Marketing / Forum
Herold - Tipps zur Webseitenoptimierung / Keywordrecherche
KSO - Das Suchmaschinentutorial
Semantic Web
Grundlagen
DigitalBazaar.com - Semantic Web Intro
W3C - XML (Extensible Markup Language)
Initiativen
PURLs (Persistent Uniform Resource Locators)
Tools
SearchMonkey: Developer Overview
SearchMonkey: Site Owner Overview
Explore Semantic Web Data with VisiNav
Microformate
Microformate (microformats.org)
microformats.org - Elemental Microformat
microformats.org - Compound Microformat
Microformats.org - hCard Specification
microformats.org - hCard Creator
microformats.org - hCalendar Creator
geekhood.net - hCard Validator
microformats.org - cReview Creator
microformats.org - Product microformat explorations
imc.org - PDI (Personal Data Interchange)
gmpg.org - Global Multimedia Protocols Group
Firefox Addon Operator (Leverage Microformats)
Firefox Addon Tails Export (Showing and Exporting Microformats)
Dublin Core
DublinCore.org - Metadata Element Set
Expressing Dublin Core metadata using the Resource Description Framework (RDF)
Expressing Qualified Dublin Core in RDF / XML
FOAF - Friend Of A Friend
RDF - Resource Description Framework
Wikipedia - RDF (Resource Description Framework)
RDF:about - Quick Intro to RDF
Talis.com - An Introduction to RDF
DigitalBazaar.com - RDF Basics
W3Schools.com - W3C RDF and OWL Activities
W3C - RDF Primer — Turtle version
W3C - RDF/XML Syntax Specification
RDFa - Resource Description Framework in Attributes
Wikipedia - CURIE (Compact URI)
W3C - Representing vCard Objects in RDF/XML
Firefox Addon Fuzzbot (detect embedded semantic Information)
Firefox Addon - Fuzz (Semantic Web Processor)
Youtube Fuzzbot RDFa Video Vocabulary Demo
Embedding RDFa in HTML 4 Documents
SPARQL - Query Language for RDF
W3C - SPARQL Query Language for RDF
W3C - SPARQL Query - Operators
W3C - SPARQL Query Results XML Format
dbpedia.com - SNORQL (Frontend für SPARQL Anfragen)
OWL - Web Ontology Language
Wikipedia - Web Ontology Language (OWL)
W3C - OWL Guide - Example wine.rdf
SIOC - Semantically-Interlinked Online Communities
Wikipedia: SIOC (Semantically-Interlinked Online Communities)
Faceted Search
Frameworks
Paget - Linked Data Publishing Framework
ARC - Easy RDF and SPARQL for LAMP systems
Literatur
Semantic Web - Matthias Geisler
Geo URL - Geokodierung, Georeferenzierung
MeineErsteHomepage.com - GeoURL Anleitung
IPligence - Tools and resources for ip location of addresses
GIMP
Tutorials
Tools, Filter, Plugins
Dafont.com (Schriftarten - Free for personal Use)
PHP
PHP Manual Funktionsreferenz nach Funktionsgruppen
PHP Manual Funktionsreferenz alphabetisch
PHP Manual php.ini Einstellungen
PHP Manual Extension Kategorisierung
PHP Manual Vordefinierte Variable
PHP Manual Vordefinierte Core-Konstanten
PHP Manual Magische Konstanten
Einrichten einer Testumgebung (Apache, PHP, MySQL)
Killer PHP - Videoschulungen für Einsteiger (englisch)
Schattenbaum.Net (PHP Kurs Selbstudium)
PHP FAQs der Newsgroup de.comp.lang.php.com
PHP Häufig benötigte Codeschnipsel de.comp.lang.php.com
PHP Häufig benötigte Standardskripte de.comp.lang.php.com
QuakeNet PHP Tutorial (ASN Graz)
PHP 5 Data Object (PDO) Abstraction Layer and Oracle
DevShed.Com (ASP, PHP usw.) (inkl. Foren)
Zend.com - Tutorials PHP, MySQL, XML etc.
PHP Builder - Articles and Code Library
PHP Libraries - The Horde Project
PHP Libraries - The Horde Project FTP Site (inkl. Pear Library)
Programmieren mit PHP: Lerdorf, Tatroe (Beispiele Buch)
PEAR Library
PEAR Library - Manual (Englisch)
PEAR Pakete Installation (Go-Pear)
PHP - XML-RPC
Spezielle PHP Funktionen
PHP und Sicherheit
Owasp.org - Open Web Application Security Project
PHPSec.org- PHP Security Consortium
ModSecurity.org - open source web application firewall (WAF) Apache module
I Love Jack Daniels - Writing Secure PHP
PHP Hardened Project - Suhosin
Top 7 PHP Security Blunders (Kunstfehler)
PHP IDEs
Eclipse - PDT - PHP Development Tools
PHPBar (DE) - Eclipse Grundlagen
Admin Wissen - Eclipse Workshop
CH Becker (DE) - Eclipse How To
PHP versus .NET
PHP vs .NET - Top 6 Reasons to Use .NET
Reguläre Ausdrücke (Regular Expressions)
Regular Expression Cheat Sheet
Programmierung - Reguläre Ausdrücke
PHP Manual: Reguläre Ausdrücke Funktionen (Perl-kompatibel)
SELFHTML: CGI/Perl / Perl-Sprachelemente / Reguläre Ausdrücke
Learning To Use Regular Expressions
Steve Ramsay's Guide to Regular Expressions
Regular Expressions - Tutorial
Reguläre Ausdücke - Uni Hamburg
Regular Expression Cheat Sheets
Regular Expression Cheat Sheet - I Love Jack Daniel's
Perl Regular Expression Quick Reference
Regular Expression Cheat Sheet (.NET)
RSS
Dr. Web - Content Syndication mit RSS
Dr. Web - RSS: XML Datei selbst gebaut
Feed Validator for Atom and RSS
Apache
Apache Installation (Windows, Linux) (inkl. httpd.conf)
Apache Dokumentation (Deutschland)
ModSecurity.org - open source web application firewall (WAF) Apache module
Wikipedia - Punycode (Umlaute für VHosts)
Apache und mod_rewrite
http://httpd.apache.org/docs/mod/mod_rewrite.html
Comprehensive Guide to .htaccess
http://www.sitepoint.com/article/guide-url-rewriting
http://www.devshed.com/c/a/Apache/Search-Engine-Friendly-URLs-with-mod-rewrite/
http://www.yourhtmlsource.com/sitemanagement/urlrewriting.html
http://robert-ionescu.de/giga-faq/faq/internet/homepage/mod-rewrite.html
Apache und SSL
Ask Apache (COM) - https/SSL Tricks
Ask Apache (COM) - SSL in htaccess Examples
Apache Solr
SUN - JavaServer Pages Technology
Apache Projects
Apache Forrest - Open Source Publishing Framework
LDAP - Lightweight Directory Access Protocol
LDAP Grundlagen
LDAP Browser
Verzeichnisdienst (DE) - LDAP Produkte
JXplorer LDAP Browser (Herstellerseite)
SourceForge - JXplorer LDAP Browser
Apache und LDAP
Apache 2.2 gegen LDAP authentifizieren
Mit Apache 2.2 an einem Windows ADC authentifizieren
PHP und LDAP
PHP Manual - Lightweight Directory Access Protocol
Heise - Zugriff auf LDAP-Daten mit PHP
PHP Loginscript für (LDAP) Activedirectory Benutzer
SQL
SQL Tutorial (Schulserver Hessen)
SQL Zoo (inkl. "Eigenheiten" der verschiedenen Datenbanken)
SQL interaktiv lernen - Abfragetool
MySQL
MySQL Systemvariable und Konfiguration
MySQL Dokumentation (Englisch)
MySQL - Programmierung (DevShed)
Datenbank, MySQL und PHP (ASN Graz)
PHP und MySQL: Kevin Yank (Beispiele Buch)
MySQL Dumper (DE) - Datenbanken per Cronjob automatisch sichern
MySQL Dumper (DE) - Video Tutorials
MySQL BigDump - Import Huge SQL Dumps
PostgreSQL
Enterprise DB (com) - PostgreSQL Linux Download
Enterprise DB (com) - PostgreSQL Installation Guide
Youtubte - PostgreSQL installation
Show Me Do (com) - Postgresql Videos, Tutorials and Screencasts
XML
XML - Extensible Markup Language
JSON - JavaScript Object Notation
JavaScript und DOM
JavaScript - Eventhandler, Eventlistener etc.
JavaScript Event Compatibility Tables
JavaScript Einführung von Pastor Pixel
Free Online Web Tools and Free Code Generators
DHTML Now - Die Quelle für JavaScript und DHTML
Scripts.org - Datenbank mit JavaScript-Bespielen
Dietmar Rabich JavaScript (inkl. CSS)
Bellnet - Links zu JavaScript Seiten
AJAX und AJAX Frameworks
AJAX
A List Apart - Getting Started With AJAX
BorkWeb - Ajax: Templating and the Separation of Layout and Logic
AJAX Getting Started (Deutsch)
xAjax Library - Applications with PHP
AJAX schnell + kompakt - Christian Wenz - entwickler.press Buch-Update
AJAX Literatur
AJAX - Grundlagen, Frameworks und Praxislösungen
AJAX und PHP - Interaktive Webanwendungen für Web 2.0
AJAX Frameworks
Particle Tree - Quick Guide To Prototype
Overview of the Prototype Javascript Library
Sitepoint - Painless JavaScript Using Prototype
Prototype JS Documentation (inkl. Beispielanwendungen)
Prototype in Scriptaculous Wiki
Behaviour - Better smarter JavaScript
Sarissa - Cross Browser XML Framework
Sarissa - Download (Sourceforge.net)
DOJO- Open Source DHTML toolkit written in JavaScript (incl. Widget Rich Text Editor)
Turbo AJAX (DbAdmin, Widgets, Studio etc.)
MOOTOOLS - A modular object-oriented JS Framework
MOO.FX - JS Effects Library for Prototype or MOOTOOLS
Lightbox - Script to overlay images on the current page
Zimbra - Kabuki Ajax Toolkit (AjaxTK) Download
Tiny Ajax - php5 library to add AJAX-functionality
AJAX Agent - framework for building Ajax or Rich Internet Applications
Rico - JavaScript for Rich Internet Applications
Google Earth API
Google Maps API Version 2 Documentation
Mapki - Knowledge Base (Code Snippets)
Mapki - Get Longitude & Altitude
Virtual Earth Poly Map - Code Examples
Schockwellenreiter - Google Maps Tutorial
Uni Erlangen - Anleitung zum Erstellen von Google Karten
Ubuntu
Ubuntu - Linux for human beings
About Linux - Video Tutorials Ubuntu (Deutsch)
Open SUSE
Linupedia (ORG) - Open Suse Support Wiki
RPM Find Net - RPM Pakete finden
RPM Seek Com - RPM Pakete finden
RPM PBone Net - RPM Pakete finden
PackMan Repositories - Wie installiere ich Softwarepakete
PackMan Repositories - Mirrors
Open Suse Additional YAST Packages
LiveCD - Rescue System mit gParted
Linux - Allgemein
Linux Anwender Handbuch (Deutschland)
GNU/Linux Handbuch (Deutschland)
Open School Server (Deutschland)
Linux Uni Tübingen (Deutschland)
Linux Dokumentationen (Deutschland)
Linuxliste - Entsprechungen von Windows-Software gegenüber Linux
Root Forum - Technische Fragen zu dedizierten Servern
Linux, Windows (Server) - Datenaustausch
Lullabot - Command Line Basics: Moving around
Lullabot - Command Line Basics: Copy, Move, Delete
Linux - Literatur (online)
Literaturübersicht (OpenSuse.Org)
Linux - dustributionsunabhängiges Handbuch
Linux - Wegweiser zur Installation & Konfiguration
Linux - Wegweiser für Netzwerker
Sicherheit im Internet, 2. Auflage
Mit Open Source-Tools Spam & Viren bekämpfen
Linux-Firewalls - Ein praktischer Einstieg, 2. Auflage
Linux Distributionen
Gentoo Linux (Linux selbst zusammensetzen)
The Official Damn Small Linux Book
Open Office
Open Office (Org)
Open Office - Dokumentation und Handbücher
Open Office Wiki
Open Office Writer
Writer Schnelles Inhaltsverzeichnis
E-Learning
Videoschulungen - Screencasts
Common Craft (COM) - Expert Knowledge in Plain English
Screencast Tools
JingProject - Capturing Software (Free)
CamStudio - Open Source Streaming Video Software
Screencast-O-Matic (Free Online Java Tool)
TechSmith - Camtasia, SnagIt (Commercial)
E-Learning Plattformen
Lernplattform des Bildungsnetzwerkes Burgenland
Linkmatrix.de - Open Education Lernprogramme
Moodle
SCORM - Sharable Content Object Reference Model
Reload - Reusable eLearning Object Authoring and Delivery
eXe - eLearning XHTML Editor (SCORM Packages)
Web 2.0
Grundlagen Web 2.0
ZDNet Video - What is Web 2.0?
ZDNet Video - What is a Mashup?
ZDNet Video - Enterprise Mashups
Videos und Multimedia
Fotos
View Fotocommunity (Stern) (DE)
Social Networks
Flock (COM) - Browser für Social Network Kontakte
Drop (IO) - File Sharing (100 MB Webspace)
Social Boookmarks
Coolix (COM) - Social Bookmark Tool
Tools und Anwendungen
Mash Maker (COM) - Inhalte von Websites verbinden (Intel)
Trigg It (COM) - Werbungen auf eigener Website verwalten
Sprout (COM) - Flash Websiten erstellen
Highlighter (COM) - Dokumente im Team bearbeiten
Trip It (COM) - Reisen im Internet planen
Tungle (COM) - Outlook Add-On Termine koordinieren
Springnote (COM) - Kalender und Notizen
Tungle (COM) - Outlook Add-On Termine koordinieren
Google Docs (COM) - Office Anwendungen online
Mind Meister (Online Mind Map Tool)
Weblogs
Blog Anbieter
Blogservice 1on.de (kostenlos)
Wikis
Web 2.0 im Unterricht
BonToura (DE) - Webseiten Fragengenerator mit Antwortmöglichkeiten
Webdesign Tools
KommDesign - Design-, Ergonomie und Navigationsempfehlungen
Color Match (zusammenpassende Farben)
3D Ressource (Nahtlos Kacheln Photoshop)
EDV-Literatur - Verlage
EDV-Unterricht
ITYCO - Copyrightfreie EDV-Lehrmittel
Lehrer Online - Unterrichtsmaterialien, Tutorials, Tools etc.
Office Online Schule (Deutschland)
Herbers Excel Server (Deutschland)
IBM Mentor Place - Projektbetreuung
Projektarbeiten - Richtig zitieren
IT Wissen (Grundlagen HW, Netzwerke etc.)
Projektmanagement
Projektplanung Grundlagen
Projektmanagement Handbuch - Online
Projektplanung Software
Open Workbench - Open Source Project Scheduling for Windows
OpenProj - Free Open Source Alternative to MS Project for Windows
Gantt Project - A free Gantt chart based project scheduling and management tool
Gantt Charts
Open Office Projektmanagement mit Gantt Charts (Calc)
Microsoft Excel - Gantt Template (inkl. Video)
Software Projektmanagement
Applied Software Project Management
Applied Software Project Managemen - Software Project Plan
Applied Software Project Managemen - Project Schedule
Mindmap Software
Mind Meister (Online Mind Map Tool)
Netzwerktechnik
Netzwerk Total - Das Netzwerkportal
Elektronik Kompendium Deutschland
IT Wissen (Grundlagen HW, Netzwerke etc.)
Tutorials
Lehrer Online - Unterrichtsmaterialien, Tutorials, Tools etc.
Traum Projekt (Tutorials Dreamweaver, Photoshop, Fireworks, PHP etc.)
E-Learningcenter.com - Free Online Courses (HTML)
Education Online (MS-Office, Dreamweaver, Photoshop, Flash...)
School for (D)HTML, CSS, Scripting, ASP, Flash,...
Flash Übungen und Anleitungen Step by Step: E-Teaching Austria
Bernd Zimmermanns Internet- und WWW-Kurs
Webdesign Tutorials (Dreamweaver, Fireworks, Photoshop, CSS etc.)
Firefox
Computer Lexika
Online Computer-Zeitschriften
Google Übersicht Online Computer-Zeitschriften
Wörterbücher
Wörterbüch Info (inkl. Sprachausgabe!)
Beolingus TU Chemnitz Deutsch - Englisch
Provider
Diverses
Sound Snap (com) - Gratis Sounds
Viren Hoaxes (Falschmeldungen) - TU Berlin
Link Scanner (Websites auf Viren & Co prüfen)
SysInternals (COM) - Microsoft Troubleshooting
Prozesse in Windows NT/2000/XP
Spick mich - Lehrerbeurteilungen
Layout based on YAML