[DQSD-Users] Version 3.1.3 (WAS: 3.1 win 98 horrible mess)

2002-09-09 Thread David Bau

Tim, Jaqui, Linda, Henry, MLL, and others -

Thanks very much for test driving the 3.1.1, 3.1.2, and 3.1.3 bugfix
releases.

Version 3.1.3, posted on http://dqsd.net/, should address the various
scripting errors that we were seeing in version 3.1.0.

David
- Original Message -
From: Tim
To: David Bau
Sent: Monday, September 09, 2002 2:35 PM
Subject: Re: [DQSD-Users] 3.1 win 98 horrible mess


Version 3.1.3 worked! Thank you so much Dave.

Tim
- Original Message -
From: David Bau
To: Tim
Sent: Monday, September 09, 2002 9:22 AM
Subject: Re: [DQSD-Users] 3.1 win 98 horrible mess


Yes; I had a couple other testers validate 3.1.1 and 3.1.2 over the weekend.
We've actually released 3.1.3 now that incorporates all their feedback. The
changes are progressively more minor.

David
- Original Message -
From: Tim
To: David Bau
Sent: Monday, September 09, 2002 11:13 AM
Subject: Re: [DQSD-Users] 3.1 win 98 horrible mess


Hi Dave,

Thanks for your willingness to help me with this.

First, do you want me to go to sourceforge for the download, or to
http://notesbydave.com/toolbar/ ? If the latter, it seems you now have
v.3.1.2 -- should I download that, rather than v.3.1.1?

[clip]


---
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1refcode1=vs3390
___
Dqsd-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dqsd-users
http://sourceforge.net/mailarchive/forum.php?forum_id=8601



[DQSD-Users] smLNK support (basic)

2002-09-09 Thread Jonathon Marshall

I have written 2 functions for DQSD to support smlnk, at this point they are extremely 
basic.
Im hoping at some point to be able to write the shortened, or the long url it refers 
to, directly
to the search bar. Where it can be easily copied, or viewed. Any other recommendations?

If you would like to include these in future builds of DQSD I will gladly keep them up 
to date with
all functions realated to smLNK. 


Here are the 2 scripts:

// function for creating an smLNK link
search function=smlnk
  namesmLNK/name
  description
smLNK is a link-shortening redirector where the URLs are as short as possible.br/
div class=helpboxDescLabelsExample:/div
table class=helpboxDescTable
  trtdsmlnk http://reallylongurltoannoyyou.com/td/tr
/table
  /description
  categoryFunctions/category
  linkhttp://smlnk.com//link
  form name=url
action=http://smlnk.com/index.php;
method=post
input type=text name=url000/
  /form
  script![CDATA[
function smlnk(q)
{
  if( nullArgs(smlnk, q) )
return false;
  else
  {
document.url.url000.value = q;
submitForm(url);
  }
}
  ]]/script
/search



--


// function for checking smLNK keys

search function=smlnkey
  namesmLNK KEY/name
  description
smLNK is a link-shortening redirector where the URLs are as short as possible.br/
div class=helpboxDescLabelsExample:/div
table class=helpboxDescTable
  trtdsmlnkey ABCE1234/td/tr
/table
  /description
  categoryFunctions/category
  linkhttp://smlnk.com//link
  form name=key
action=http://smlnk.com/index.php;
method=post
input type=text maxlength=8 name=hash000/
  /form
  script![CDATA[
function smlnkey(q)
{
  if( nullArgs(smlnkey, q) )
return false;
  else
  {
document.key.hash000.value = q;
submitForm(key);
  }
}
  ]]/script
/search


-

-- 
++
| Jonathon Marshall[EMAIL PROTECTED] +
| [EMAIL PROTECTED]smLNK: http://smlnk.com/?info |
+ 9DB8 5D34 55F8 FF4C 096F  00E8 E517 3B52 F687 6AC7 |
  ^-PGP Key Fingerprint ++

Arthur C. Clarke-
Any sufficiently advanced technology is indistinguishable from magic.


---
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1refcode1=vs3390
___
Dqsd-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dqsd-users
http://sourceforge.net/mailarchive/forum.php?forum_id=8601