Menu

Code Commit Log


Commit Date  
[r68] by brettz9

Added identity tests (for speed and accuracy) in cases where I knew it would be as safe as an equality test

2007-08-02 03:02:58 Tree
[r67] by brettz9

Whoops, sorry... fixes to my additions/debugging

2007-08-01 07:47:26 Tree
[r66] by brettz9

Fixed small bug in cookie setting (had also made an earlier change here to avoid custom templates showing up forever)

2007-08-01 07:33:27 Tree
[r65] by brettz9

Added localizations here to work with css_optimiser.php, including adding space for Chinese, French, and German ones whose translations I did not know.

Also added a couple of Chinese translations for untranslated items (wife's help)

2007-08-01 07:26:18 Tree
[r64] by brettz9

added styles here from cssparse.css; and added code-specific style to add preformatting via styles; this style is imported by scripts, so it should only contain output related CSS

2007-08-01 07:24:29 Tree
[r63] by brettz9

Shuffled off output specific contents into a new file, cssparsed.css and referenced here with an @import

Also created inline fieldset style for code output

2007-08-01 07:22:34 Tree
[r62] by brettz9

I added formatted_page() function to print out a valid XHTML document of the CSS output (also added write files to class.csstidy.php to optionally write whole files of these too).

In order to allow templates to use   without appearing in plain format, I replace them in plain format.

2007-08-01 07:18:55 Tree
[r61] by brettz9

1) $num = ($_REQUEST['template']) ? intval($_REQUEST['template']) : 1;

changed to the following to avoid a notice:

$num = (isset($_REQUEST['template'])) ? intval($_REQUEST['template']) : 1;

2) <html xmlns="http://www.w3.org/1999/xhtml"" xml:lang="en" lang="en">

to

<html xmlns="http://www.w3.org/1999/xhtml"" xml:lang="<?php echo $l; ?>" lang="<?php echo $l; ?>">

3) Added JS feature testing for add to clipboard and give an alert message if not supported

4) Localized the few remaining items: copy to clipboard, back to top, for bugs, etc...contact me..., and added a few more

5) Added a textbox for formatted output (to be able to copy and paste for those of us with browsers not supporting the 'copy to clipboard' function), and in the process separated the cssparse.css also into a new file, cssparsed.css, in order to make another textbox for the CSS used to style the CSS).

6) Removed the <pre> tags to do this with CSS.

7) Added checkbox to output CSS code as whole HTML doc

2007-08-01 07:14:25 Tree
[r60] by brettz9

Allowed set_cfg to be set with one value: an associative array of properties and values

2007-08-01 07:11:28 Tree
[r59] by floele

Should be ready for the last 1.3 release now

2007-07-10 08:21:55 Tree
Older >
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.