PHP Resumable Download Server
I wanted to add a download section to my site, but at the same time keep statistics of the files downloaded. So made a little PHP script to act as a download server.
This little script became a little larger when I added support for partial file downloads. I noticed that many comments in the PHP manual and other sources described the method wrong. For instance, many of them announced to accept multiple byte ranges while that was not the fact. And they also tended to not handle the requested byte range according to the HTTP 1.1 specifications.
Now, I'm never pretending this is a complete implementation or free for issues. But it should work very well and I've tried to make it behave to the specifications.
Features
- Serves files from a file repository.
- Makes sure no files outside the repository is served.
- Lists files if a directory is requested.
- Supports partial file request allowing users to pause or accelerate downloads.
- Logging function to keep statistic over the file downloads. (Needs configuring to work.)
Known Issues
- Files larger than 2GB might give unexpected results on platforms that use 32-bit integers. This is because it might affect the calculation of filesizes.
BitBucket
21 June 2011: I have uploaded the project at BitBucket. It is the recommended way to obtain the project. Now you can send back your patches and improvements.
Download
Installation instructions is in the readme.txt file.
Download latest version from the BitBucket repository.
Colour Swatch Manager Documentation
Version: 1.0.3
Last Updated: 23 September 2007
Related Files
Table of Contents
Schemes
Any changes made to a scheme are automatically saved. If you delete or edit a colour there’s no way to undo it. An Undo function might be added in a later version.
Scheme Menu
Click on “Scheme: ” to open the Scheme Menu. Here you are presented with the tools related to the scheme itself.
Creating new scheme
Choose “New Scheme” from the Scheme Menu. You will then be presented with a window asking for title and filename.
Type the name of your new Scheme and then enter the filename with full path to where you want to store the Scheme. Click the “Browse” button to browse your system and pick the location you want.
This file dialog does not automatically append the *.xcsm file extension to the files. You must remember to add this yourself. This will hopefully be corrected in later version.
Opening scheme
Choose “Open Scheme” from the Scheme Menu and locate the file you want to open.
Alternatively you can drag and drop colour scheme files onto the gadget. When you drag a colour scheme onto an already open colour scheme you can choose to append the file you dragged to the one already open.
Currently there’s no way to associate colour scheme with Colour Scheme Manager due to limitation of DesktopX. Hopefully a future version will support this feature.
Swatches
Creating new swatch
Click on “New Swatch...” at the bottom of the swatch list. It will only appear when there’s a colour scheme open.
Name the swatch and pick the colour.
At the moment you have to use Windows’ colour picker. It has its limitations that it only lets you enter RGB and HSL values. A future version will feature a custom colour picker with CMYK, Hex and long support.
The HSL value ranges used in Windows’ colour picker is not the same as the ones used in Colour Manager. Colour Manager matches what Photoshop uses.
Swatch Menu
Right click on a colour entry to bring up the Swatch Menu. This brings up your options for the specific swatch.
Expand swatch
You can expand the swatch to display all the colour codes by left clicking the swatch list-item.
Organizing swatches
You can drag and drop the swatches in the list to organize them to your liking.
Warning: Dragging the swatch outside the gadget area will delete them with no undo function available.
Deleting swatches
Apart from using the Swatch Menu to delete a swatch you can also drag a swatch outside the gadget area. When you then release the mouse the swatch will be deleted. The drag symbol will say “Delete” to indicate that the swatch will be deleted if you release the mouse.
Copying colour values
You can copy the colour values from the various colour spaces by using the Swatch Menu. If you click the colour sample of a swatch you copy the colour values of the default colour space.
Colour Spaces
RGB
The native colour space of computer monitors.
HSL
The Hue is given a value of 0–360 degrees with the Saturation and Lightness ranges from 0–100%. This is similar to how Photoshop let you pick HSL values.
CMYK
CMYK colours needs colour profiles of the source and the target medium to be calculated accurately. Colour Scheme Manager only performs a very generic conversion and should only be regarded as guidance.
Hex
Hexadecimal values in the same format used in HTML and CSS.
Long
Some computer languages take colour codes in one integer number.
Configuration
Default Colour Space
Here you set the default colour space to be used. This colour space is the one displayed next to the colour when a swatch is collapsed. It’s also the colour space copied when you click the colour sample.
Verbose Copy
By default Colour Scheme Manager will only copy the colour values. I.e.: “FF8000” or “255, 128, 0”. If you tick this option it will prefix the text copied with colour space indication; “#FF8000” or “RGB: 255, 128, 0”.
Lowercase Hex
Tick this option if you want lower case letters in your hexadecimal values.
Show Hotkey
You can assign a hotkey that will bring the gadget to the front of your windows.
MSN scripting in DesktopX with events
While I was looking through the Yahoo! Widget manual I came across an interesting piece of code snippet demonstrating how to connect to COM objects. The code snippet showed how to connect to MSN and access methods and events.
I tried the script in DesktopX with some adaptation and managed to get access to the methods. However, there was no way of handling the events from COM objects in DesktopX.
While I was doing this I was rambling about it on #stardock. And fortunately for me, Julien was there. He had the idea of using a Script Component.
The script component was able to connect to the MSN COM object and receive the events. Now I could connect to the script component and make it act as a proxy to the MSN object and receive the events.
I build a little DesktopX package that demonstrate how to interact with the MSN automation object.
Connect to MSN object
To begin a MSN project you need to add the file MSN.wsc as a custom file to one of your objects. Then you can refer to it via the script as such:
var MSN;
MSN = GetObject('script:' + Object.Directory + 'MSN.wsc');
Dim MSN
Set MSN = GetObject("script:" & Object.Directory & "MSN.wsc")
The DesktopX package example I made demonstrate how to get a list the contacts in your contact list in VBScript and JScript.
Events
In order to receive events from the MSN objects you need to register the functions you can't to be executed whenever an event is triggered.
var MSN;
MSN = GetObject('script:' + Object.Directory + 'MSN.wsc');
MSN.OnContactStatusChange = hello_world;
function hello_world(contact, status)
{
// contact is the contact that changed status
// status is the new status code of the contact
Script.MsgBox(contact.FriendlyName);
}
Dim MSN
Set MSN = GetObject("script:" & Object.Directory & "MSN.wsc")
Set MSN.OnContactStatusChange = GetRef("hello_world")
Function hello_world(contact, status)
' contact is the contact that changed status
' status is the new status code of the contact
Script.MsgBox(contact.FriendlyName)
End Function
This is a list of the events you can use:
OnAppShutdown
OnContactAddedToGroup
OnContactBlockChange
OnContactFriendlyNameChange
OnContactListAdd
OnContactListRemove
OnContactPagerChange
OnContactPhoneChange
OnContactRemovedFromGroup
OnContactStatusChange
OnGroupAdded
OnGroupNameChanged
OnGroupRemoved
OnIMWindowContactAdded
OnIMWindowContactRemoved
OnIMWindowCreated
OnIMWindowDestroyed
OnMyPropertyChange
OnMyStatusChange
OnSignin
OnSignout
OnUnreadEmailChange
Methods
At the moment, the only way to get access to the events and methods is by
using the getMSNObject
function. This means you'll have two
objects related to MSN. I plan to make a new release which merges the two
into one object. Check this page for updates.
var MSN, MSNobj;
MSN = GetObject('script:' + Object.Directory + 'MSN.wsc'); // Events
Set MSNobj = MSN.getMSNObject(); // Access to methods via MSNobj
Dim MSN, MSNobj
Set MSN = GetObject("script:" & Object.Directory & "MSN.wsc") ' Events
Set MSNobj = MSN.getMSNObject() ' Access to methods via MSNobj
Bring on the gadgets!
I hope that this will allow people to start making gadgets interacting with MSN. It could be simple contact lists residing on the desktop. Or even on the Vista Sidebar now that DesktopX 3.5 allows you to export to Sidebar gadgets. You could incorporate MSN into an address book. Or make a gadget where each user floats in your desktop like icons, displaying their status.
IE ate my linebreaks!
I was working on a syntax highlighter to use on my code
elements on my website. The script is quite simple; it finds all <code>
elements that is contained inside a <pre>
element and uses the class
attribute of the <code>
element to determine what code language it is. I used innerHTML
to extract the content of the <code>
element. (Yes, I know, innerHTML
shouldn't be used with XHTML as it will break if it's served as XML, but that's a whole other topic, and to my defence I've been contemplating switching back to HTML.)
Everything was fine when I tested it in Firefox, but... (You have heard this so many time...) ...in IE, some of my linebreaks was missing. When I sent the string I got from innerHTML
I noticed that some, not all, of the linebreaks was missing. I even ran a loop on the string and printed all the character codes, but there was nothing. IE had simply eaten the linebreaks and partially normalized the text even though it was inside a <pre>
element.
The hero of the day was the almighty DOM which even IE didn't dare stealing from. When I accessed the text node inside the <code>
element I got all the linebreaks. So instead of .innerHTML
I used .childNodes[0].nodeValue
. It should be noted that this isn't an ideal substitute, as it will not return all the text if it's split up into several text nodes, caused by elements of other DOM nodes. But it's not hard writing a little function to extract all the text nodes and compile them into one string. The important bit is that IE doesn't normalize the string returned and returns all the whitespace as it should.
.split()
misbehaviour
Another part of the code I ran into trouble with was when I was splitting each line into an array of strings, which I then used to parse through each item in the array and compile a numbered list so I would get line numbers next to each line of the codeblock.
I had used .split(/\n\r|\r\n|\r|\n/g);
to return an array of each line of code, which again worked fine in Firefox and Opera, but not in IE. If there was an empty line IE would simply eat it. So a codeblock of 5 lines, whereas 1 was an empty line, IE would return and array of four.
The solution was to normalize all linebreaks into \n
and then split the text. For one reason or another, IE then returned all the lines, even the empty ones.
// === THIS DOES NOT WORK AS EXPECTED IN IE === //
// Split each line into an array;
this.lines = this.codeText.split(/\n\r|\r\n|\r\n/g);
// === THIS WORKS IN IE === //
// Convert all linebreaks to \n
this.codeText = this.codeText.replace(/\n\r|\r\n|\r/g, '\n');
// Split each line into an array;
this.lines = this.codeText.split('\n');
So finally I had a syntax highlighter that works in Firefox 2, IE7 and Opera 9. I've yet to test it in other browers as I'm still working on it. The script is located here. It's still a bit rough and needs some work and commenting.
Hopefully this will be useful to someone. I didn't find much information myself when I had a look on Google.
DesktopX - Bugs, issues and feature requests
I've compiled a list of bugs and issues I've come across with DesktopX. Additionally I've added a list of features I'd like to see. I'll be updating this list as I discover new bugs or issues, or they get fixed.
Apparently there will be a wiki section up at the Wincustomize Wiki soon. I'll contribute to the list once it comes online.
Last updated: 16 September 2007
Index
Bugs
NULL character inObject_OnDropFiles
- Missing events in javascript
Object Lister ColumnsMsgBox
arguments- Code insight misplaces on second monitor
- Can not set forms' button caption
Issues
- Cloning related objects with Widget property
- Linebreaks in Edit Controls
- Javascript Syntax Highlighting
- Old File Dialog
- It's
Script.MsgBox
, notDesktopX.MsgBox
System.SimpleRead
returns junk on error- Undocumented
Script
namespace - Opacity doesn't affect child objects
- Can not set filedialog filter in forms.
Feature Requests
- HTTP Headers
- Quick Code Insert
- Function List
- Treeview Object List
- Get Text Size
- GIF support
- Default Scripting Language
- Colour Picker Dialog
- Debug Console
- HSL Colour Control
- Disable Objects
- Quickfind Objects
Bugs
NULL character inObject_OnDropFiles
- Fixed in 3.49e[b].014.
The Object_OnDropFiles function will return a string with a NULL character at the end of the list of strings. If you try to output this string to a DX text object any text after the NULL character will not be rendered.
Example, if you drop some files (for instance foo.file and bar.file) onto an object with the following script:
This will return: start + foo.file|bar.file as oppose to the expected start + foo.file|bar.file end. Until a fix for this is made it's recommended that in your code you check for the NULL character at the end of the string is trim it if it should be present.function Object_OnDropFiles(files) { DesktopX.Object('lblStatus').Text = files.charCodeAt(files.length-1) + ' start ' + files + ' end'; }
- Missing events in javascript
-
When you use Javascript the
Object_OnSetFocus()
andObject_OnKillFocus()
events does not trigger. It works fine when using VBScript. Object Lister Columns- Fixed in 3.49e[b].014. In DesktopX 3.5 beta the columns in the Object Lister doesn't save the order of the columns.
MsgBox
argumentsMsgBox
is suppose to be able to take up to four arguments, letting you define the icon, buttons and title. However, if you use more than one argument the function throws an error.// This works - Simple message box text Script.MsgBox('message'); // This throws an error - Messagebox with stop icon and title text Script.MsgBox('message', 16 'title');
- Code insight misplaces on second monitor
- When the script editor is used on a monitor other than the primary, the code insigh drop down list appears on the edge on the primary monitor.
- Can not set forms' button caption
-
DesktopX throws an error when you try to set the caption of forms' Ok and Cancel button using
Form.OkButton
andForm.CancelButton
.var frm = DesktopX.CreateForm; frm.Caption = 'Choose a Colour'; frm.OkButton = 'foo'; // <-- this throws an error frm.CancelButton = 'bar'; // <-- as do this
Issues
- Cloning related objects with Widget property
- When an object, which has a widget name defined, is cloned; and you choose to clone its child and group objects, all the objects with the same widget name is cloned. Though the same widget group might be considered being related its something that can cause problems if you have imported a widget into your existing project as the widget name is then generally applied to all the newly imported objects. Maybe it's a feature and the widget group is regarded as being related, but I'd prefer if it didn't.
- Linebreaks in Edit Controls
- To add linebreaks in the DX edit control when using Javascript you have to use nr. Any other combination of the line break characters does not result in anything. The standard DX text object however accepts nr, rn, n and n as linebreaks.
- Javascript Syntax Highlighting
-
The syntax highlighting in the script editor when using Javascript does not highlight many important keywords rendering the code harder to read.
The syntax highlighting doesn't seem to account for regular expressions. For instance the following code example will mess up the highlighting:
var regex = /<link rel="pingback" href="([^"]+)" ?/?>/g;
- Old File Dialog
- When selecting custom files to be added to an object you're presented with an old style file dialog which doesn't cope well with files that's not following the 8-3 naming scheme.
- It's
Script.MsgBox
, notDesktopX.MsgBox
-
The DX manual states that you use
DesktopX.MsgBox
to call the prompt dialog, but that's incorrect. It'sScript.MsgBox
. System.SimpleRead
returns junk on error-
If
System.SimpleRead
is told to read a non existing file it will not return an error, but instead random characters of junk. Be adviced to check manually for the existance of files for error recovery. - Undocumented
Script
namespace -
When you use the DesktopX script editor and type Script. the code insight pops up a menu displaying the following commands;
InputBox
,InputBoxEx
,MsgBox
,MsgBoxEx
,MsgDbg
. None of these commands are explained anywhere in the documentation. - Opacity doesn't affect child objects
- Setting the opacity doesn't affect child objects, they retain they full opacity. I had expected it to apply the same opacity to all child objects at's set to be tru children. If an object only has the parent attribute set, but child attribute to false, I wouldn't expect it to inherit the opacity.
- Can not set filedialog filter in forms.
- There's not way to spesify the file dialog's filter when using forms or widget preferences.
Feature Requests
- HTTP Headers
-
Being able to set headers for the
System.SendRequest
function. In order to for instance set the user-agent header as certain sites will return 403 unless you provide an acceptible user-agent string. Something many sites use to fight spambots. - Quick Code Insert
-
A dropdownbox in the script editor that contains a list of availible functions for the
Object
,DesktopX
,Widget
andSystem
namespace. The user can then choose a function from the list and the editor will then insert necessary framework for that function. This list being saved in a textfile would be nice so it could be customized. - Function List
- A dropdownbox in the script editor that contains a list of all the functions in the script. This would make navigation easier when scripts begin to grow in length.
- Treeview Object List
- Have a treeview in the Object List so that you can contract/expand the tree of objects. Useful when the list of objects grow. Then it's nice to be able to hide the children of objects you are not working on.
- Get Text Size
-
Be able to retrieve the width and height of a string based on the font settings of the current object. For instance:
Object.TextWidth("fooBar")
. Example usage: be able to create a pure DX textbox object that uses variable width font. - GIF support
- Being able to load GIF files. (being able to load animated GIFs would be a plus)
- Default Scripting Language
- As people might prefer Javascript as oppose to VBScript it'd be nice to set the default language for when you create new scripts.
- Colour Picker Dialog
- In addition to the file dialog it'd be nice to have access to the colour picker dialog.
- Debug Console
-
A debug console where you could print debug data into would be of great help. I.e.:
Console.Print(foo, bar);
Allows the developer to use MsgBoxes and custom text objects as debug output. - HSL Colour Control
- Being able to set all respective HSL values would be nice. Currently Hue and Lightness is supported, but not Saturation.
- Disable Objects
- Being able to disable object preventing events to do not trigger.
- Quickfind Objects
- It'd be nice if there was a textbox where you could enter parts of an object name and it'd filter out the objects listed to only those that match. It'd make it alot easier to manage many objects.
Archived Posts:
Subscribe to this Blog:
Labels:
- accessibility
- animation
- api
- background-image
- barcelona
- career
- changelog
- christmas
- code
- colour
- com
- css
- deardiary
- del
- desktopx
- distance
- documentation
- dom
- england
- events
- film
- fun
- gadget
- games
- gestures
- halloween
- html
- ie
- innerhtml
- ins
- javacript
- keyboard
- life
- list-style-image
- lists
- london
- modelmaking
- moving
- msn
- paintball
- performance
- php
- pingback
- pixar
- position
- printer
- product
- ruby
- scanner
- scheme
- scripting
- semantic
- server
- sidebar
- sketchup
- skype
- snow
- software
- speed
- split()
- test
- travel
- underground
- userinterface
- vertex
- vista
- voip
- w3c
- webdesign
- website
- whitespace