Recent comments

TwitPic Uploader for Mac OS X   2 weeks 5 days ago

I submitted the new release on our site, publication is planned for the day july 20…
Regards from Napoli!
Wink

http://www.imaccanici.org/article.php/TwitPic_Uploader

Fade transit dynamically updated DOM content using jQuery   3 weeks 5 days ago

i have been looking for something such as this

YouTube Auto Replay Safari Extension   4 weeks 14 hours ago

Is an update with HTML5 available soon?

Drupal Association Badges for Members   4 weeks 4 days ago

Great post! This was a great helpful site. Thanks for sharing!

Smiley Packs (phpBB pak packages) for Drupal   4 weeks 6 days ago

Simple & Nice module. Thanks a lot Thumb Up

Smiley Packs (phpBB pak packages) for Drupal   4 weeks 6 days ago

Further to my last post - I tried the same thing on another server. I had copied the adium files into the smileys directory under files. When I went to import, it was listed as
sites/thecosmicorderingsite.com/files/smileys/Facies. When I clicked install ...

I get this error Cannot find smiley package sites. Nerd

Help appreciated!

Hash Check failed for your download? Torrents can fix it!   5 weeks 4 days ago

I have been downloading a torrent for almost 1 week now, and i got this error, i am going to try yr tip.
Thanx for this great tip.

Hash Check failed for your download? Torrents can fix it!   5 weeks 5 days ago

One thing i didnt understand is that how the checksum is verified later and the download resumes exactly from the same place where as initially the download ceases and no option works(even the force re check)

YouTube Auto Replay Safari Extension   7 weeks 1 day ago

Hey, that was quick to notice! Hah. I'm impatient to update the extension with HTML5 support. You know, Apple vs. Adobe Flash. lol

YouTube Auto Replay Safari Extension   7 weeks 1 day ago

Sorry guys, the addon breaks with Youtubes new HTML 5 layout(its still evolving and they change it a lot!). Will try to fix it up by this weekend.

Thanks for the post!

YouTube Auto Replay Safari Extension   7 weeks 2 days ago

Yeah checked. I'll look into it.

YouTube Auto Replay Safari Extension   7 weeks 2 days ago

It's not working if using the html5 player of youtube.

Nothing – A Safari 5 Extension   7 weeks 2 days ago

Works as advertised.

Nothing – A Safari 5 Extension   7 weeks 2 days ago

Useful.

Nothing – A Safari 5 Extension   7 weeks 2 days ago
Wow

This is a great extension. Any cool hidden features ? Ping ?

I must install this soon...

Nothing – A Safari 5 Extension   7 weeks 2 days ago

Ha - ha . Not funny (:

Nothing – A Safari 5 Extension   7 weeks 3 days ago

Do you really mean "nothing"? Thinking

Clean URLs for nodes paginated using Paging module   9 weeks 1 day ago

Thanks for a nice article. I must say that ur contribution of Paging module is very valuable as it fills a big void in Drupal in terms of its innate inability to provide page breaks. For some websites it is must as it breaks big articles into more readable parts. However, in its present form, the paging module is not SEO friendly, as you urself admitted, due to that URL thing. This so called sweet URL rather makes it worse as it adds nameless meaningless words like Node and number which make no sense from SEO point of view. I wish you would rather have utilized ur efforts to somehow add URL alias aspects in paging module itself instead of this sweet URL. We are really eagerly looking forward to getting a really good tool from you. Thanks

Hash Check failed for your download? Torrents can fix it!   10 weeks 5 days ago

This is a really smart idea. Saved me from having to reload 30GB, too. Thanks!

Clean URLs for nodes paginated using Paging module   11 weeks 4 days ago
hi

ssa bai ji good 2 c a nice site from a sikh

Clean URLs for nodes paginated using Paging module   13 weeks 5 days ago

hi,
which function is need to call to apply paging. this is code work for custom modules
best refards,
Kamran Sohail

TwitPic Uploader for Mac OS X   15 weeks 3 days ago

sir ji do hav any information about linux tweetpic uploader ...
although i have xp n i can upload der .. but jus want to knw about the linux OS...................? Thinking

Clean URLs for nodes paginated using Paging module   15 weeks 5 days ago

Hey, thanks a lot for this code, it works like a charm on one site I administer.

One important detail that you should mention is that your module works on top of the paging module. You should even modify the .info file for having that module as a requirement.

Why don't you add this to drupal.org? It will be easier to find and track improvements over there.

Cheers!

Smiley Packs (phpBB pak packages) for Drupal   15 weeks 5 days ago

Is there a way to integrate smilyes with Chat Room Module??

Smiley Packs (phpBB pak packages) for Drupal   19 weeks 3 days ago

First i want to use Notepad++ script to do this conversation, but Notepad++ dont's support replace macros.
Then i got this xslt solution. This way is more efficient if you need to do this many times.

This solution is very simple:
step 1 - save this xslt to a local file, i.e. plist2pak.xsl;
step 2 - add one line to the second linte of your .plist file

<?xml-stylesheet type="text/xsl" href="plist2pak.xsl" ?>

yes, just after this line below:
<?xml version="1.0" encoding="UTF-8"?>

step 3 - change your .plist file's extension to .xml. for example: change "Emoticons.plist" to "Emoticons.plist.xml"
step 4 - use any web browser to open "Emoticons.plist.xml", then you get the result.

contents of plist2pak.xsl:
--------------------------

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html" />
  <xsl:output indent="yes" />
  <xsl:param name="filename">filename</xsl:param>
  <xsl:template match="plist">
    <html>
      <head>
        <title>
          <xsl:value-of select="$filename" />
        </title>
      </head>
      <body>
        <xsl:apply-templates mode="root" />
      </body>
    </html>
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="dict" mode="root">
    <xsl:apply-templates mode="list" />
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="dict" mode="list">
    <xsl:apply-templates mode="dict" />
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="dict" mode="dict">
    <xsl:value-of select="string" />
	<xsl:text disable-output-escaping="yes">=+:</xsl:text>
	<xsl:apply-templates select="array" mode="array" />
    <br />
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="dict" mode="array">
    <xsl:apply-templates mode="dict" />
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="key" mode="root">
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="key" mode="list">
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="key" mode="dict">
    <xsl:value-of select="." />
	<xsl:text disable-output-escaping="yes">=+:</xsl:text>
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="key" mode="array">
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="array" mode="root">
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="array" mode="dict">
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="string" mode="array">
    <xsl:value-of select="." />
    <xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>
  </xsl:template>
  <!-- -->
  <!-- -->
  <xsl:template match="integer" mode="list">
  </xsl:template>
</xsl:stylesheet>