tiny_mce_helper 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +7 -0
- data/README.rdoc +5 -4
- data/Rakefile +1 -1
- data/lib/tiny_mce_helper.rb +16 -17
- data/test/files/sourceforge.html +1362 -884
- data/test/files/tinymce_3_2_2.zip +0 -0
- data/test/files/tinymce_3_2_2_3.zip +0 -0
- data/test/unit/tiny_mce_helper_test.rb +9 -9
- metadata +5 -5
- data/test/files/tinymce_3_0_6_2.zip +0 -0
- data/test/files/tinymce_3_0_8.zip +0 -0
data/CHANGELOG.rdoc
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
== master
|
2
2
|
|
3
|
+
== 0.3.0 / 2009-04-14
|
4
|
+
|
5
|
+
* No longer require that the Sourceforge project page be downloaded when determining the location of a custom version
|
6
|
+
* Require at least TinyMCE 3.2.2 be installed
|
7
|
+
* Update to new TinyMCE file structure
|
8
|
+
* Update to new Sourceforge downloads location
|
9
|
+
|
3
10
|
== 0.2.0 / 2008-12-14
|
4
11
|
|
5
12
|
* Remove the PluginAWeek namespace
|
data/README.rdoc
CHANGED
@@ -45,7 +45,7 @@ For example, to install the latest version:
|
|
45
45
|
|
46
46
|
To install a custom version:
|
47
47
|
|
48
|
-
$ rake tiny_mce:install VERSION=2.
|
48
|
+
$ rake tiny_mce:install VERSION=3.2.2
|
49
49
|
(in /my/project)
|
50
50
|
Downloading TinyMCE source...
|
51
51
|
Extracting...
|
@@ -56,7 +56,7 @@ rake task will prompt you as to whether or not it should be overwritten:
|
|
56
56
|
|
57
57
|
$ rake tiny_mce:install
|
58
58
|
(in /my/project)
|
59
|
-
TinyMCE already be installed in /my/project/config/../public/javascripts/
|
59
|
+
TinyMCE already be installed in /my/project/config/../public/javascripts/tiny_mce. Overwrite? (y/n): y
|
60
60
|
Downloading TinyMCE source...
|
61
61
|
Extracting...
|
62
62
|
Done!
|
@@ -75,7 +75,7 @@ installation and WILL NOT prompt you if the folder already exists. For example,
|
|
75
75
|
|
76
76
|
Like tiny_mce:install, you can also specify a custom version:
|
77
77
|
|
78
|
-
$ rake tiny_mce:update VERSION=2.
|
78
|
+
$ rake tiny_mce:update VERSION=3.2.2
|
79
79
|
(in /my/project)
|
80
80
|
Downloading TinyMCE source...
|
81
81
|
Extracting...
|
@@ -91,7 +91,7 @@ all of the current possible options that can be specified.
|
|
91
91
|
|
92
92
|
For example, to create a new configuration file:
|
93
93
|
|
94
|
-
$ rake tiny_mce:update VERSION=2.
|
94
|
+
$ rake tiny_mce:update VERSION=3.2.2
|
95
95
|
(in /my/project)
|
96
96
|
Downloading configuration options from TinyMCE Wiki...
|
97
97
|
Done!
|
@@ -171,6 +171,7 @@ the LIVE environment variable to true. For example,
|
|
171
171
|
== Dependencies
|
172
172
|
|
173
173
|
* Rails 2.0 or later
|
174
|
+
* TinyMCE 3.2.2 or later
|
174
175
|
* hpricot[http://code.whytheluckystiff.net/hpricot]
|
175
176
|
* rubyzip[http://rubyzip.sourceforge.net]
|
176
177
|
|
data/Rakefile
CHANGED
@@ -5,7 +5,7 @@ require 'rake/contrib/sshpublisher'
|
|
5
5
|
|
6
6
|
spec = Gem::Specification.new do |s|
|
7
7
|
s.name = 'tiny_mce_helper'
|
8
|
-
s.version = '0.
|
8
|
+
s.version = '0.3.0'
|
9
9
|
s.platform = Gem::Platform::RUBY
|
10
10
|
s.summary = 'Adds helper methods for creating the TinyMCE initialization script.'
|
11
11
|
|
data/lib/tiny_mce_helper.rb
CHANGED
@@ -22,9 +22,12 @@ module TinyMCEHelper
|
|
22
22
|
# javascripts folder.
|
23
23
|
#
|
24
24
|
# Configuration options:
|
25
|
-
# *
|
26
|
-
#
|
27
|
-
# *
|
25
|
+
# * <tt>:version</tt> - The version of TinyMCE to install. Default is the
|
26
|
+
# latest version.
|
27
|
+
# * <tt>:target</tt> - The path to install TinyMCE to, relative to the
|
28
|
+
# project root. Default is "public/javascripts/tiny_mce"
|
29
|
+
# * <tt>:force</tt> - Whether to install TinyMCE, regardless of whether it
|
30
|
+
# already exists on the filesystem.
|
28
31
|
#
|
29
32
|
# == Versions
|
30
33
|
#
|
@@ -34,7 +37,7 @@ module TinyMCEHelper
|
|
34
37
|
#
|
35
38
|
# For example,
|
36
39
|
# TinyMCEHelper.install # Installs the latest version
|
37
|
-
# TinyMCEHelper.install(:version => '2.
|
40
|
+
# TinyMCEHelper.install(:version => '3.2.2') # Installs version 3.2.2
|
38
41
|
#
|
39
42
|
# An exception will be raised if the specified version cannot be found.
|
40
43
|
#
|
@@ -71,25 +74,21 @@ module TinyMCEHelper
|
|
71
74
|
return if option == 'n'
|
72
75
|
end
|
73
76
|
|
74
|
-
# Get the url of the TinyMCE version
|
75
|
-
require 'hpricot'
|
76
77
|
require 'open-uri'
|
77
78
|
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
else
|
79
|
+
# Get the latest TinyMCE version
|
80
|
+
unless version
|
81
|
+
require 'hpricot'
|
82
|
+
|
83
|
+
puts 'Finding latest version of TinyMCE to download...' if verbose
|
84
|
+
doc = Hpricot(open('http://sourceforge.net/project/showfiles.php?group_id=103281&package_id=111430'))
|
85
85
|
file_element = (doc/'tr[@id^="pkg0_1rel0_"] a').detect {|file| file.innerHTML.to_s =~ /tinymce_([\d_]+).zip$/}
|
86
86
|
raise ArgumentError, 'Could not find latest TinyMCE version' if !file_element
|
87
87
|
|
88
|
-
version = $1.gsub('_', '.')
|
88
|
+
version = $1. gsub('_', '.')
|
89
89
|
end
|
90
90
|
|
91
|
-
|
92
|
-
file_url = file_element['href']
|
91
|
+
file_url = "http://prdownloads.sourceforge.net/tinymce/tinymce_#{version.gsub('.', '_')}.zip?download"
|
93
92
|
|
94
93
|
# Download the file
|
95
94
|
puts "Downloading TinyMCE-#{version} source from #{file_url}..." if verbose
|
@@ -104,7 +103,7 @@ module TinyMCEHelper
|
|
104
103
|
|
105
104
|
Zip::ZipFile.open(file_path) do |zipfile|
|
106
105
|
zipfile.entries.each do |entry|
|
107
|
-
if match = /
|
106
|
+
if match = /jscripts\/tiny_mce\/(.*)/.match(entry.name)
|
108
107
|
FileUtils.mkdir_p("#{target_path}/#{File.dirname(match[1])}")
|
109
108
|
entry.extract("#{target_path}/#{match[1]}") { true }
|
110
109
|
end
|
data/test/files/sourceforge.html
CHANGED
@@ -1,86 +1,201 @@
|
|
1
|
+
|
1
2
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
3
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
-
<!-- Server:
|
4
|
+
<!-- Server: sfs-web-5 -->
|
4
5
|
<!--
|
5
6
|
~ SourceForge.net: Create, Participate, Evaluate
|
6
|
-
~ Copyright (c) 1999-
|
7
|
+
~ Copyright (c) 1999-2009 SourceForge, Inc. All rights reserved.
|
7
8
|
-->
|
8
|
-
|
9
|
-
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
9
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
10
10
|
<head>
|
11
|
-
|
12
|
-
<meta name="description" content="
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
11
|
+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
12
|
+
<meta name="description" content="Get TinyMCE at SourceForge.net. Fast, secure and free downloads from the largest Open Source applications and software directory. TinyMCE is a platform independent webbased Javascript HTML WYSIWYG editor control, developed in JavaScript/ECMAScript, higly customizable. Works in Mozilla, Firefox, Opera, Netscape, IE, Safari and Chrome." />
|
13
|
+
<meta name="keywords" content="Open Source, Development, Community, Source Code, Downloads, Software, TinyMCE, Dynamic Content, Site Management, Text Processing, Word Processors, " />
|
14
|
+
<link rel="alternate" type="application/rss+xml" title="SourceForge.net Project News" href="/export/rss2_sfnews.php?group_id=1&rss_fulltext=1" />
|
15
|
+
<link rel="alternate" type="application/rss+xml" title="SourceForge.net News" href="/export/rss2_projnews.php?group_id=141424&rss_fulltext=1" />
|
16
|
+
<title>SourceForge.net: TinyMCE: Files</title>
|
17
|
+
<link rel="stylesheet" type="text/css" href="http://static.sourceforge.net/css/phoneix/style.php?secure=0&20080417-1657" media="all" />
|
18
|
+
<link rel="stylesheet" type="text/css" href="http://static.sourceforge.net/css/phoneix/ads.php?secure=0&20080417-1657" media="all" />
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
<link rel="stylesheet" type="text/css" href="http://static.sourceforge.net/css/phoneix/project.php?secure=0&20080417-1657" media="all" />
|
23
|
+
<link rel="stylesheet" type="text/css" href="http://static.sourceforge.net/css/phoneix/table.php?secure=0&20080417-1657" media="all" />
|
24
|
+
<link rel="stylesheet" type="text/css" href="http://static.sourceforge.net/css/phoneix/droppy.php?secure=0&20080417-1657" media="all" />
|
25
|
+
|
26
|
+
<link rel="stylesheet" type="text/css" href="http://static.sourceforge.net/css/phoneix/print.css?secure=0&20080417-1657" media="print" />
|
27
|
+
<!-- <script>
|
28
|
+
function utmx_section(){}function utmx(){}
|
29
|
+
(function(){var k='0926615710',d=document,l=d.location,c=d.cookie;function f(n){
|
30
|
+
if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.indexOf(';',i);return c.substring(i+n.
|
31
|
+
length+1,j<0?c.length:j)}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;
|
32
|
+
d.write('<sc'+'ript src="'+
|
33
|
+
'http'+(l.protocol=='https:'?'s://ssl':'://www')+'.google-analytics.com'
|
34
|
+
+'/siteopt.js?v=1&utmxkey='+k+'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='
|
35
|
+
+new Date().valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+
|
36
|
+
'" type="text/javascript" charset="utf-8"></sc'+'ript>')})();
|
37
|
+
</script>
|
38
|
+
<script>
|
39
|
+
var originalUrl = document.location.href;
|
40
|
+
var urlParamsTokenPos = originalUrl.indexOf('?');
|
41
|
+
var hashTokenPos = originalUrl.indexOf('#');
|
42
|
+
var hashString = '';
|
43
|
+
|
44
|
+
if(hashTokenPos > -1){
|
45
|
+
baseUrl = originalUrl.substring(0, hashTokenPos);
|
46
|
+
hashString = originalUrl.substring(hashTokenPos)
|
47
|
+
} else {
|
48
|
+
baseUrl = originalUrl;
|
49
|
+
}
|
50
|
+
|
51
|
+
test_url = baseUrl;
|
52
|
+
if(test_url.match("/$") == null && test_url.match(".php$") == null){
|
53
|
+
test_url += "/";
|
54
|
+
}
|
55
|
+
if(urlParamsTokenPos > -1){
|
56
|
+
test_url += "&";
|
57
|
+
} else {
|
58
|
+
test_url += "?";
|
59
|
+
}
|
60
|
+
test_url += "abmode=1";
|
61
|
+
test_url += hashString;
|
62
|
+
|
63
|
+
</script>
|
64
|
+
<script>utmx_section("Redirect Control")</script>
|
65
|
+
<script>
|
66
|
+
//document.location = test_url;
|
67
|
+
</script>
|
68
|
+
</noscript> -->
|
69
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/jquery/jquery-1.2.6.min.js"></script>
|
70
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/jquery/jquery.cookie.js"></script>
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
<script type='text/javascript'>
|
75
|
+
$(function() {
|
76
|
+
$('#fad19 p, .project_summary .downloadbar, .vertical_widget, .horizontal_widget').wrap('<div class="sc"><div class="l1"><div class="l2"><div class="l3"><div class="l4"></div></div></div></div></div>');
|
77
|
+
});
|
78
|
+
</script>
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/jquery/jquery.droppy-1.0.js"></script>
|
84
|
+
|
85
|
+
<script type='text/javascript'>
|
86
|
+
$(function() {
|
87
|
+
$('.nav').droppy();
|
88
|
+
});
|
89
|
+
</script>
|
90
|
+
|
91
|
+
|
92
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/jquery/jquery.tabs.pack.js"></script>
|
93
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/jquery/jquery.tabs.ext.pack.js"></script>
|
18
94
|
|
19
95
|
<script type="text/javascript">
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
link.setAttribute('href', 'http://static.sourceforge.net/css/sfxjs.php?secure=0&20080417-0957');
|
25
|
-
document.getElementsByTagName('head')[0].appendChild(link);
|
96
|
+
//<![CDATA[
|
97
|
+
jQuery(document).ready(function(){
|
98
|
+
$('.vertical_widget_content ul.tab, #container2 ul.tab').tabs({ selected: 0 });
|
99
|
+
});
|
26
100
|
|
27
|
-
|
28
|
-
HelpWin = window.open( 'http://sourceforge.net' + helpurl,'HelpWindow','scrollbars=yes,resizable=yes,toolbar=no,height=400,width=400');
|
29
|
-
}
|
30
|
-
//]]>
|
101
|
+
//]]>
|
31
102
|
</script>
|
32
|
-
|
33
|
-
|
103
|
+
|
104
|
+
<link rel="stylesheet" type="text/css" href="http://static.sourceforge.net/include/jquery/jquery.tabs.css?secure=0&20080417-1657" media="all" />
|
105
|
+
|
106
|
+
<script type="text/javascript">
|
107
|
+
//<![CDATA[
|
34
108
|
var sf_proj_home = 'http://sourceforge.net/projects/tinymce';
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
109
|
+
|
110
|
+
var jsonly = document.createElement('link');
|
111
|
+
jsonly.setAttribute('rel', 'stylesheet');
|
112
|
+
jsonly.setAttribute('type', 'text/css');
|
113
|
+
jsonly.setAttribute('href', 'http://static.sourceforge.net/css/phoneix/jsonly.css?secure=0&20080417-1657');
|
114
|
+
document.getElementsByTagName('head')[0].appendChild(jsonly);
|
115
|
+
//]]>
|
116
|
+
</script>
|
117
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/js/preferences.js"></script>
|
118
|
+
<script type="text/javascript">
|
39
119
|
//<![CDATA[
|
40
|
-
|
120
|
+
|
121
|
+
jQuery(document).ready(function(){
|
122
|
+
$('#switch').html('<a href="" class="eroo">More</a>');
|
123
|
+
$('#switch .eroo').toggle(
|
124
|
+
function(){$('.advanced').not(".disabled").fadeIn(); $(this).html('Less'); $.cookie('sf_menu_expanded',1,{path:'/'}); return false;},
|
125
|
+
function(){$('.advanced').not(".disabled").fadeOut(); $(this).html('More'); $.cookie('sf_menu_expanded',0,{path:'/'}); return false;}
|
126
|
+
);
|
127
|
+
|
128
|
+
if ($.cookie('sf_menu_expanded') == 1) {
|
129
|
+
$('#switch .eroo').click();
|
130
|
+
}
|
131
|
+
});
|
132
|
+
|
133
|
+
|
134
|
+
jQuery(document).ready(function(){
|
135
|
+
var arrowImageExt = 'png';
|
136
|
+
if($.browser.msie && $.browser.version == '6.0'){
|
137
|
+
arrowImageExt = 'gif';
|
138
|
+
}
|
139
|
+
$('#ft').prepend('<span class="tog"><img src="http://c.fsdn.com/sf/images/phoneix/dwn.'+arrowImageExt+'" /></span>');
|
140
|
+
$('#ft .tog').toggle(
|
141
|
+
function(){$('#ft .yui-g.hide').slideDown(); $(this).find('img').attr('src','http://c.fsdn.com/sf/images/phoneix/up.'+arrowImageExt); $('#fadbtm').css('margin-top','-32em'); $('#fad1btm').css('margin-top','-25.5em'); return false},
|
142
|
+
function(){$('#ft .yui-g.hide').slideUp(); $(this).find('img').attr('src','http://c.fsdn.com/sf/images/phoneix/dwn.'+arrowImageExt); $('#fadbtm').css('margin-top','-25em'); $('#fad1btm').css('margin-top','-15.5em'); return false}
|
143
|
+
);
|
144
|
+
});
|
145
|
+
|
41
146
|
//]]>
|
42
147
|
</script>
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
148
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/jquery/jquery.cluetip.js"></script>
|
149
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/jquery/jquery.dimensions-1.2.0.js"></script>
|
150
|
+
<link rel="stylesheet" href="http://static.sourceforge.net/css/phoneix/jquery.cluetip.php?secure=0" media="screen"/>
|
151
|
+
|
152
|
+
<script type="text/javascript">
|
153
|
+
var ie6SelectsShowing = true;
|
154
|
+
function toggleIE6Selects(){
|
155
|
+
if($.browser.msie && $.browser.version == '6.0'){
|
156
|
+
if(ie6SelectsShowing){
|
157
|
+
$('select').hide();
|
158
|
+
ie6SelectsShowing = false;
|
159
|
+
} else {
|
160
|
+
$('select').show();
|
161
|
+
ie6SelectsShowing = true;
|
162
|
+
}
|
163
|
+
}
|
164
|
+
}
|
165
|
+
jQuery(document).ready(function(){
|
166
|
+
jQuery('.pop').cluetip({sticky: true, titleAttribute: 'title', local:true, cursor: 'pointer', dropShadow: true, activation: 'click' });
|
167
|
+
jQuery('.jt').cluetip({cluetipClass: 'jtip', positionBy: false, arrows: false, dropShadow: true, local:true, mouseOutClose: true});
|
168
|
+
jQuery('.jt_sticky').cluetip({cluetipClass: 'jtip', positionBy: false, arrows: false, dropShadow: true, local:true, closePosition: 'title', sticky:true});
|
169
|
+
jQuery('.ph_sticky').click(toggleIE6Selects).cluetip({cluetipClass: 'default', arrows: false, cursor: 'pointer', dropShadow: true, local:true, closePosition: 'title', sticky:true, activation: 'click', onShow: function(){$('#cluetip-close a').click(toggleIE6Selects);}});
|
170
|
+
jQuery('.ajax_sticky').cluetip({cluetipClass: 'default', width: '400', cursor: 'pointer', positionBy: 'mouse', arrows: false, dropShadow: true, closePosition: 'title', sticky:true, ajaxSettings: {success: function(msg){alert( "Data Saved: " + msg );}}});
|
171
|
+
|
172
|
+
});
|
173
|
+
</script>
|
174
|
+
|
175
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/jquery/jquery.columnmanager.pack.js"></script>
|
63
176
|
<!-- BEGIN: AdSolution-Tag 4.2: Global-Code [PLACE IN HTML-HEAD-AREA!] -->
|
64
177
|
<!-- DoubleClick Random Number -->
|
65
178
|
<script language="JavaScript" type="text/javascript">
|
66
|
-
dfp_ord=Math.random()*10000000000000000;
|
67
|
-
dfp_tile = 1;
|
179
|
+
var dfp_ord=Math.random()*10000000000000000;
|
180
|
+
var dfp_tile = 1;
|
181
|
+
var dfp_ptile = 1;
|
68
182
|
</script>
|
69
183
|
<!-- End DoubleClick Random Number -->
|
70
|
-
|
71
184
|
<script type="text/javascript">
|
72
|
-
|
73
|
-
|
74
|
-
|
185
|
+
var google_page_url = 'http://sourceforge.net/projects/tinymce/';
|
186
|
+
var sourceforge_project_name = 'tinymce';
|
187
|
+
var sourceforge_project_description = 'TinyMCE is a platform independent webbased Javascript HTML WYSIWYG editor control, developed in JavaScript/ECMAScript, higly customizable. Works in Mozilla, Firefox, Opera, Netscape, IE, Safari and Chrome.';
|
75
188
|
</script>
|
76
189
|
<!-- END: AdSolution-Tag 4.2: Global-Code -->
|
77
|
-
<!--
|
78
|
-
|
190
|
+
<!-- End OSDN NavBar gid: 103281 keywords: tinymce,by_industrysector,os_groups,mswin_nt,mswin_2000,mswin_xp,modern_oses,informationtechnology,macosx,textprocessing,JavaScript,sitemanagement,other,independent,linux,dynamic,www,internet,wordprocessors,editors: -->
|
79
191
|
<script type="text/javascript">
|
80
|
-
var
|
81
|
-
var
|
82
|
-
var
|
192
|
+
var immersion_adcode = "";
|
193
|
+
var adid = "";
|
194
|
+
var sponsored = "";
|
83
195
|
</script>
|
196
|
+
|
197
|
+
<!-- after META tags -->
|
198
|
+
|
84
199
|
<script type="text/javascript">
|
85
200
|
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
86
201
|
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
@@ -89,227 +204,199 @@ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.
|
|
89
204
|
var pageTracker = _gat._getTracker("UA-32013-6");
|
90
205
|
pageTracker._initData();
|
91
206
|
</script>
|
207
|
+
<!--[if IE]>
|
208
|
+
<link rel="stylesheet" type="text/css" media="screen" href="http://static.sourceforge.net/css/phoneix/iestyles.php?secure=0&20080417-1657" />
|
209
|
+
<![endif]-->
|
210
|
+
<!--[if lte IE 6]>
|
211
|
+
<link rel="stylesheet" type="text/css" media="screen" href="http://static.sourceforge.net/css/phoneix/ie6styles.php?secure=0&20080417-1657" />
|
212
|
+
<![endif]-->
|
213
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/js/download.js"></script>
|
214
|
+
<link href="http://static.sourceforge.net/css/phoneix/facebox.css" media="screen" rel="stylesheet" type="text/css"/>
|
215
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/jquery/facebox.js"></script>
|
216
|
+
<script type="text/javascript" src="http://static.sourceforge.net/include/js/modal.js"></script>
|
92
217
|
|
93
|
-
|
94
|
-
|
218
|
+
<script type="text/javascript" src="http://static.sourceforge.net/sfx.js"></script>
|
95
219
|
|
96
220
|
</head>
|
97
221
|
<body>
|
98
|
-
|
222
|
+
|
223
|
+
<div id="doc3" class="yui-t6 filespackage">
|
224
|
+
|
99
225
|
<div id="hd">
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
226
|
+
<div class="yui-gf">
|
227
|
+
<div class="yui-u first">
|
228
|
+
<h1>
|
229
|
+
<a href="/" title="">SourceForge.net</a>
|
230
|
+
</h1>
|
231
|
+
<ul class="jump">
|
232
|
+
<li><a href="#content">Jump to main content</a></li>
|
233
|
+
<li><a href="#projectnav">Jump to project navigation</a></li>
|
234
|
+
<li><a href="/project/showfiles.php?group_id=103281#downloads">Jump to downloads for TinyMCE</a></li>
|
235
|
+
</ul>
|
236
|
+
</div>
|
237
|
+
<div class="yui-u">
|
238
|
+
<a href="https://sourceforge.net/account/login.php" title="Log in and gain access to additional features including the Marketplace">Log in</a><a href="/account/registration/" title="Get a SourceForge.net account">Create account</a> <a href="/community/">Community</a><a href="http://p.sf.net/sourceforge/getsupport" title="Get help and support on SourceForge.net">Help</a>
|
239
|
+
|
240
|
+
<form action="/search/" method="get" name="searchform">
|
241
|
+
<input type="hidden" name="type_of_search" value="soft" />
|
242
|
+
<input type="text" value="" name="words" tabindex="1" />
|
243
|
+
<input type="submit" value="Search" tabindex="0" />
|
244
|
+
</form>
|
245
|
+
</div>
|
111
246
|
</div>
|
112
247
|
</div>
|
113
|
-
<
|
114
|
-
|
115
|
-
<li class="selected"><a href="/softwaremap/">Browse Software</a></li>
|
116
|
-
<li class="new"><a href="/services/buy/index.php">Marketplace<sup><b>NEW</b></sup></a></li>
|
117
|
-
<li><a href="/community/">Community</a></li>
|
118
|
-
<li><a href="/register-project/">Create Project</a></li>
|
119
|
-
<li><a href="http://jobs.sourceforge.net">Jobs</a></li>
|
120
|
-
</ul>
|
121
|
-
<div id="kahuna">
|
122
|
-
<form action="/search/" method="get" name="searchform">
|
123
|
-
<input type="hidden" name="type_of_search" value="soft" />
|
124
|
-
<fieldset>
|
125
|
-
<legend>Search</legend>
|
126
|
-
<label>Search SourceForge.net Projects </label>
|
127
|
-
<select name="type_of_search">
|
128
|
-
<option value="soft" selected="selected">Software</option>
|
129
|
-
<option value="projectsWithServices">Marketplace</option>
|
130
|
-
</select>
|
131
|
-
<input type="text" value="" id="searchbox" name="words" tabindex="1" /><input type="submit" value="Search" id="searchsubmit" tabindex="0" /> <a href="/search/" class="advanced">Advanced</a>
|
132
|
-
</fieldset>
|
133
|
-
</form>
|
134
|
-
</div>
|
135
|
-
<div id="frame" class="filespackage">
|
136
|
-
<!-- begin content -->
|
137
|
-
|
138
|
-
<div id="innerframe" class="project">
|
139
|
-
|
140
|
-
<div id="fad1p"> </div>
|
248
|
+
<div id="bd">
|
249
|
+
<!-- begin content -->
|
141
250
|
|
142
|
-
<ul id="breadcrumb">
|
143
|
-
<li class="begin"><a href="/">SF.net</a></li>
|
144
|
-
<li><a href="/softwaremap/">Projects</a></li>
|
145
|
-
<li><a href="/projects/tinymce/">TinyMCE</a></li>
|
146
|
-
<li class="selected"><a href="/project/showfiles.php?group_id=103281&package_id=111430">Files</a></li>
|
147
|
-
</ul>
|
148
251
|
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
<li><a href="
|
166
|
-
<li><a href="/
|
167
|
-
<li><a href="/
|
168
|
-
<li><a href="/
|
252
|
+
<a name="projectnav"></a>
|
253
|
+
<div class="yui-gf title">
|
254
|
+
<div class="yui-u first">
|
255
|
+
<h1>
|
256
|
+
<a href="/projects/tinymce/">TinyMCE</a>
|
257
|
+
</h1>
|
258
|
+
</div>
|
259
|
+
<div class="yui-u">
|
260
|
+
<ul class="nav">
|
261
|
+
<li id="menu_project"><a href="/projects/tinymce/" >Summary</a><ul>
|
262
|
+
<li id="menu_project_website"><a href="http://tinymce.sourceforge.net">Web Site</a></li>
|
263
|
+
<li id="menu_project_screenshots"><a href="/project/screenshots.php?group_id=103281">Screenshots</a></li>
|
264
|
+
<li id="menu_project_news"><a href="/news/?group_id=103281">News</a></li>
|
265
|
+
<li id="menu_stats"><a href="/project/stats/?group_id=103281&ugn=tinymce">Statistics</a></li>
|
266
|
+
</ul>
|
267
|
+
</li>
|
268
|
+
<li id="menu_hostedapps" class="disabled" style="display: none;"><a href="/hostedapp/?group_id=103281" >Hosted Apps</a></li>
|
269
|
+
<li id="menu_tracker"><a href="/tracker/?group_id=103281" >Tracker</a><ul>
|
270
|
+
<li id="menu_tracker_635682"><a href="/tracker/?group_id=103281&atid=635682">Bugs</a></li>
|
271
|
+
<li id="menu_tracker_635685"><a href="/tracker/?group_id=103281&atid=635685">Feature Requests</a></li>
|
272
|
+
<li id="menu_tracker_635684"><a href="/tracker/?group_id=103281&atid=635684">Patches</a></li>
|
273
|
+
<li id="menu_tracker_738747"><a href="/tracker/?group_id=103281&atid=738747">Plugins</a></li>
|
274
|
+
<li id="menu_tracker_stats" class="tools"><a href="/project/stats/detail.php?group_id=103281&ugn=tinymce&type=tracker">Statistics</a></li>
|
275
|
+
<li id="menu_tracker_reports" class="disabled" style="display: none;"><a href="/tracker/reporting/?group_id=103281">Reporting</a></li>
|
276
|
+
<li id="menu_tracker_search"><a href="/search/?group_id=103281&type_of_search=artifact">Search</a></li>
|
277
|
+
</ul>
|
278
|
+
</li>
|
279
|
+
<li id="menu_mail" class="advanced disabled" style="display: none;"><a href="/mail/?group_id=103281" >Mailing Lists</a><ul>
|
280
|
+
<li id="menu_mail_search" class="tools"><a href="/search/?group_id=103281&type_of_search=mlists">Search</a></li>
|
281
|
+
</ul>
|
282
|
+
</li>
|
283
|
+
<li id="menu_forums" class="disabled" style="display: none;"><a href="/forum/?group_id=103281" >Forums</a><ul>
|
284
|
+
<li id="menu_forums_stats" class="tools"><a href="/project/stats/detail.php?group_id=103281&ugn=tinymce&type=forum">Statistics</a></li>
|
285
|
+
<li id="menu_forums_search"><a href="/search/?group_id=103281&type_of_search=forums">Search</a></li>
|
169
286
|
</ul>
|
170
287
|
</li>
|
171
|
-
<li><a href="/
|
172
|
-
<li><a href="/
|
173
|
-
<li><a href="/
|
174
|
-
<li><a href="/
|
175
|
-
<li><a href="/
|
176
|
-
<li><a href="/
|
177
|
-
<li class="
|
178
|
-
<li><a href="/
|
288
|
+
<li id="menu_code" class="advanced"><a href="/scm/?type=svn&group_id=103281" >Code</a><ul>
|
289
|
+
<li id="menu_git_about" class="disabled" style="display: none;"><a href="/scm/?type=git&group_id=103281">Git</a></li>
|
290
|
+
<li id="menu_git_browse" class="disabled" style="display: none;"><a href="http://tinymce.git.sourceforge.net/">Git Browse</a></li>
|
291
|
+
<li id="menu_git_stats" class="disabled" style="display: none;"><a href="/project/stats/detail.php?group_id=103281&ugn=tinymce&type=git">Git Statistics</a></li>
|
292
|
+
<li id="menu_hg_about" class="disabled" style="display: none;"><a href="/scm/?type=hg&group_id=103281">Mercurial</a></li>
|
293
|
+
<li id="menu_hg_browse" class="disabled" style="display: none;"><a href="http://tinymce.hg.sourceforge.net/hgweb/tinymce/">Mercurial Browse</a></li>
|
294
|
+
<li id="menu_hg_stats" class="disabled" style="display: none;"><a href="/project/stats/detail.php?group_id=103281&ugn=tinymce&type=hg">Mercurial Statistics</a></li>
|
295
|
+
<li id="menu_bzr_about" class="disabled" style="display: none;"><a href="/scm/?type=bzr&group_id=103281">Bazaar</a></li>
|
296
|
+
<li id="menu_bzr_browse" class="disabled" style="display: none;"><a href="http://tinymce.bzr.sourceforge.net/bzr/tinymce/">Bazaar Browse</a></li>
|
297
|
+
<li id="menu_bzr_stats" class="disabled" style="display: none;"><a href="/project/stats/detail.php?group_id=103281&ugn=tinymce&type=bzr">Bazaar Statistics</a></li>
|
298
|
+
<li id="menu_cvs_about" class="disabled" style="display: none;"><a href="/scm/?type=cvs&group_id=103281">CVS</a></li>
|
299
|
+
<li id="menu_cvs_browse" class="disabled" style="display: none;"><a href="http://tinymce.cvs.sourceforge.net/tinymce/">CVS Browse</a></li>
|
300
|
+
<li id="menu_cvs_stats" class="disabled" style="display: none;"><a href="/project/stats/detail.php?group_id=103281&ugn=tinymce&type=cvs">CVS Statistics</a></li>
|
301
|
+
<li id="menu_svn_about"><a href="/scm/?type=svn&group_id=103281">SVN</a></li>
|
302
|
+
<li id="menu_svn_browse"><a href="http://tinymce.svn.sourceforge.net/viewvc/tinymce/">SVN Browse</a></li>
|
303
|
+
<li id="menu_svn_stats"><a href="/project/stats/detail.php?group_id=103281&ugn=tinymce&type=svn">SVN Statistics</a></li>
|
179
304
|
</ul>
|
180
305
|
</li>
|
181
|
-
<li><a href="/
|
182
|
-
<li><a href="/
|
183
|
-
<li><a href="http://tinymce.svn.sourceforge.net/viewvc/tinymce/">SVN Browse</a></li>
|
184
|
-
<li><a href="/project/stats/detail.php?group_id=103281&ugn=tinymce&type=svn">SVN Statistics</a></li>
|
306
|
+
<li id="menu_project_services" class="advanced"><a href="/services/project_services.php?project_id=103281" >Services</a><ul>
|
307
|
+
<li id="menu_project_services_get"><a href="/services/project_services.php?project_id=103281">Get Services</a></li>
|
185
308
|
</ul>
|
186
309
|
</li>
|
187
|
-
<li><a href="/
|
188
|
-
<li><a href="/
|
310
|
+
<li id="menu_files" class="selected"><a href="/project/showfiles.php?group_id=103281" >Download</a><ul>
|
311
|
+
<li id="menu_files_files"><a href="/project/showfiles.php?group_id=103281">Browse All Packages</a></li>
|
312
|
+
<li id="menu_download_stats" class="tools"><a href="/project/stats/detail.php?group_id=103281&ugn=tinymce&type=prdownload">Statistics</a></li>
|
313
|
+
<li id="menu_download_search"><a href="/search/?group_id=103281&type_of_search=files">Search</a></li>
|
189
314
|
</ul>
|
190
315
|
</li>
|
191
|
-
<li class="
|
192
|
-
<li><a href="/
|
193
|
-
<li
|
194
|
-
<li><a href="/search/?group_id=103281&type_of_search=
|
316
|
+
<li id="menu_docman" class="advanced disabled" style="display: none;"><a href="/docman/?group_id=103281" >Documentation</a><ul>
|
317
|
+
<li id="menu_docman_browse"><a href="/docman/?group_id=103281">Browse</a></li>
|
318
|
+
<li id="menu_docman_submit"><a href="/docman/new.php?group_id=103281">Submit</a></li>
|
319
|
+
<li id="menu_docman_search" class="tools"><a href="/search/?group_id=103281&type_of_search=docs">Search</a></li>
|
195
320
|
</ul>
|
196
321
|
</li>
|
322
|
+
<li id="menu_tasks" class="advanced disabled" style="display: none;"><a href="/pm/?group_id=103281" >Tasks</a><ul>
|
323
|
+
<li id="menu_pm_reporting" class="tools disabled" style="display: none;"><a href="/pm/reporting/?group_id=103281">Reporting</a></li>
|
324
|
+
</ul>
|
325
|
+
</li>
|
326
|
+
<li id="menu_wiki" class="advanced disabled" style="display: none;"><a href="http://tinymce.wiki.sourceforge.net/" >Wiki</a><ul>
|
327
|
+
<li id="menu_wiki_home"><a href="http://tinymce.wiki.sourceforge.net/">Wiki Home</a></li>
|
328
|
+
<li id="menu_wiki_create_page"><a href="http://tinymce.wiki.sourceforge.net/space/page">Create Page</a></li>
|
329
|
+
<li id="menu_wiki_list_pages"><a href="http://tinymce.wiki.sourceforge.net/space/pagelist">List Pages</a></li>
|
330
|
+
<li id="menu_wiki_recent_changes"><a href="http://tinymce.wiki.sourceforge.net/space/changes">Recent Changes</a></li>
|
331
|
+
<li id="menu_wiki_files"><a href="http://tinymce.wiki.sourceforge.net/space/filelist">List and Upload Files</a></li>
|
332
|
+
<li id="menu_wiki_templates"><a href="http://tinymce.wiki.sourceforge.net/space/createtemplate">Manage Templates</a></li>
|
333
|
+
<li id="menu_wiki_stats" class="tools"><a href="http://tinymce.wiki.sourceforge.net/space/stats">Statistics</a></li>
|
334
|
+
</ul>
|
335
|
+
</li>
|
336
|
+
<li id="menu_newadmin" class="admin disabled" style="display: none;"><a href="/project/admin/?group_id=103281" >Project Admin</a><ul>
|
337
|
+
<li id="menu_userperms" class="disabled" style="display: none;"><a href="/project/admin/project_membership.php?group_id=103281">Membership</a></li>
|
338
|
+
<li id="menu_features" class="disabled" style="display: none;"><a href="/project/admin/features.php?group_id=103281">Feature Settings</a></li>
|
339
|
+
<li id="menu_editgroupinfo" class="disabled" style="display: none;"><a href="/project/admin/public_info.php?group_id=103281">Project Settings</a></li>
|
340
|
+
<li id="menu_frs" class="disabled" style="display: none;"><a href="/project/admin/editpackages.php?group_id=103281">Downloads</a></li>
|
341
|
+
<li id="menu_stats" class="disabled" style="display: none;"><a href="/project/admin/stats.php?group_id=103281">Analytics</a></li>
|
342
|
+
</ul>
|
343
|
+
</li>
|
344
|
+
|
345
|
+
<li id="switch"></li>
|
346
|
+
</ul>
|
347
|
+
</div>
|
348
|
+
</div>
|
349
|
+
<div class="subset">
|
350
|
+
<ul>
|
351
|
+
<li id="menu_manage" class="begin disabled" style="display: none;"><a href="/project/admin/editpackages.php?group_id=103281" >Manage Packages / Releases</a></li>
|
352
|
+
<li id="menu_create" class="begin disabled" style="display: none;"><a href="/project/admin/platform_edit.php?group_id=103281" >Create / Edit Download Page</a></li>
|
353
|
+
<li id="menu_help" class="begin disabled" style="display: none;"><a href="http://p.sf.net/sourceforge/frs" >Help</a></li>
|
197
354
|
|
198
|
-
|
355
|
+
</ul>
|
356
|
+
|
199
357
|
</div>
|
200
|
-
|
201
|
-
</div>
|
202
|
-
<small class="options">
|
203
|
-
|
204
|
-
<a href="/project/project_donations.php?group_id=103281" class="donate" title="Donate to this project">Donate</a>
|
205
|
-
<a href="/project/stats/?group_id=103281&ugn=tinymce" class="sitestats" title="Project Stats - Activity: 99.98%">Stats</a>
|
206
|
-
<a href="/export/rss2_project.php?group_id=103281" class="rss">RSS</a>
|
207
|
-
</small>
|
208
|
-
<br />
|
209
|
-
</div>
|
358
|
+
<div style="clear: both;"></div>
|
210
359
|
|
211
|
-
<!-- begin right column -->
|
212
360
|
|
213
361
|
<a name="content"></a>
|
214
|
-
|
215
|
-
|
362
|
+
|
216
363
|
<!--
|
217
364
|
/frs/showfiles.html - Copyright 1999-2006 (c) Open Source Technology Group
|
218
|
-
@version $Id: showfiles.html
|
365
|
+
@version $Id: showfiles.html 28645 2009-03-26 20:32:54Z jwh $
|
219
366
|
-->
|
220
367
|
|
221
|
-
<!-- being right column -->
|
222
|
-
<!-- placeholder for ad position 2 -->
|
223
|
-
<div id="fad6p"> </div>
|
224
|
-
<!-- end right column -->
|
225
|
-
|
226
|
-
<!-- begin left column -->
|
227
|
-
<div style="margin: .8em 360px 1em 0"> <h3 class="titlebar">File Releases</h3>
|
228
|
-
<p>
|
229
|
-
<br />
|
230
|
-
<strong>You have selected to download
|
231
|
-
TinyMCE
|
232
|
-
</strong>
|
233
|
-
</p>
|
234
|
-
<p>
|
235
|
-
Below is a list of
|
236
|
-
releases and files contained in this package.
|
237
|
-
<br />Before downloading, you may want to read the release notes.
|
238
|
-
</p>
|
239
|
-
|
240
|
-
</div><a name="files"></a>
|
241
|
-
|
242
368
|
<script type="text/javascript">
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
}
|
253
|
-
}
|
254
|
-
function h(object) {
|
255
|
-
if (document.getElementById){
|
256
|
-
document.getElementById(object).style.display = 'none';
|
257
|
-
}
|
258
|
-
}
|
259
|
-
function hl(linav) {
|
260
|
-
if (document.getElementById){
|
261
|
-
mainnav=document.getElementById("nav").childNodes;
|
262
|
-
i=0; while(mainnav[i]){ mainnav[i].id=""; i++;}
|
263
|
-
linav.id="high";
|
264
|
-
}
|
265
|
-
}
|
266
|
-
function boo(id) {
|
267
|
-
var obj=document.getElementById(id);
|
268
|
-
if(obj.style.display!="none"){
|
269
|
-
obj.style.display="none";
|
270
|
-
}else{
|
271
|
-
obj.style.display="";
|
272
|
-
}
|
273
|
-
}
|
274
|
-
|
275
|
-
function report_expand(id, newC) {
|
276
|
-
var i=0;
|
277
|
-
var obj;
|
278
|
-
while (obj = document.getElementById(id+"_"+i)) {
|
279
|
-
if (newC) {
|
280
|
-
obj.className = newC;
|
281
|
-
} else if (obj.className == 'show') {
|
282
|
-
obj.className = 'hide';
|
283
|
-
} else if (obj.className == 'hide') {
|
284
|
-
obj.className = 'show';
|
285
|
-
} else if (obj.className == 'tdwn') {
|
286
|
-
obj.className = 'tup';
|
287
|
-
} else if (obj.className == 'tup') {
|
288
|
-
obj.className = 'tdwn';
|
289
|
-
}
|
290
|
-
i++;
|
291
|
-
}
|
292
|
-
|
293
|
-
}
|
294
|
-
|
369
|
+
jQuery(document).ready(function(){
|
370
|
+
jQuery('.frs').columnManager({listTargetID:'cluetip', onClass: 'add', offClass: 'delete', saveState: true, colsHidden: [5,7]});
|
371
|
+
jQuery('#cluetip ul').css('background','#fff').css('margin','0').css('padding','0 2em 2em').css('z-index','100');
|
372
|
+
jQuery('#cluetip-inner').css('border','none');
|
373
|
+
jQuery('#cluetip li').css('list-style','none').css('position','relative');
|
374
|
+
jQuery('a.sfx_qalogger_clickable').each( function() {
|
375
|
+
jQuery(this).attr("href", jQuery(this).attr("href") + "&a=" + Math.floor(Math.random()*100000000));
|
376
|
+
});
|
377
|
+
});
|
295
378
|
</script>
|
296
|
-
|
297
|
-
|
298
|
-
<
|
299
|
-
<
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
379
|
+
|
380
|
+
<div id="yui-main">
|
381
|
+
<div class="yui-b">
|
382
|
+
<h3 class="info">
|
383
|
+
You have selected
|
384
|
+
TinyMCE
|
385
|
+
<br /><small>Please choose the file that best matches your architecture or operating system from the list of
|
386
|
+
releases and files contained in this package.
|
387
|
+
</small>
|
388
|
+
</h3>
|
389
|
+
<div style="text-align: right; margin-bottom: .5em">
|
390
|
+
<a href="#options" class="ph_sticky options" rel="#options" title="Columns">Options</a>
|
391
|
+
<div id="options"></div>
|
392
|
+
</div>
|
393
|
+
<table border="0" class="frs" cellspacing="0" cellpadding="0" summary="File listings for the TinyMCE project">
|
307
394
|
<thead>
|
308
395
|
<tr>
|
309
396
|
<th>Package</th>
|
310
|
-
<th>Release
|
397
|
+
<th title="Date">Release</th>
|
311
398
|
<th>Filename</th>
|
312
|
-
<th>Size
|
399
|
+
<th title="Bytes">Size</th>
|
313
400
|
<th>Downloads</th>
|
314
401
|
<th>Architecture</th>
|
315
402
|
<th>Type</th>
|
@@ -318,10 +405,10 @@ pageTracker._initData();
|
|
318
405
|
<tfoot>
|
319
406
|
<tr>
|
320
407
|
<td>Totals:</td>
|
321
|
-
<td>
|
322
|
-
<td>
|
323
|
-
<td>
|
324
|
-
<td>
|
408
|
+
<td>48</td>
|
409
|
+
<td>142</td>
|
410
|
+
<td>120107443</td>
|
411
|
+
<td>1888692</td>
|
325
412
|
<td colspan="2"> </td>
|
326
413
|
</tr>
|
327
414
|
</tfoot>
|
@@ -338,25 +425,25 @@ pageTracker._initData();
|
|
338
425
|
<tbody class="show" id="pkg0_1">
|
339
426
|
<tr class="release current" id="pkg0_1rel0">
|
340
427
|
<td><small>Latest</small></td>
|
341
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=
|
428
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=671118" onclick="report_expand('pkg0_1rel0'); void(0); return false;" class="tup" id="pkg0_1rel0_0">3.2.2.3</a> <span class="notes"><a href="shownotes.php?release_id=671118&group_id=103281" title="View notes">Notes</a></span> <small>(2009-03-26 12:29) </small></td>
|
342
429
|
</tr>
|
343
430
|
<tr class="show" id="pkg0_1rel0_1">
|
344
431
|
<td colspan="2" > </td>
|
345
|
-
<td ><a
|
346
|
-
 
|
432
|
+
<td ><a id="showfiles_download_file_pkg0_1rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_2_3_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_2_3_dev.zip');">tinymce_3_2_2_3_dev.zip</a>
|
433
|
+
|
347
434
|
</td>
|
348
|
-
<td >
|
349
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=
|
435
|
+
<td >3968915</td>
|
436
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=671118&file_id=1603575">3594</a></td>
|
350
437
|
<td >Platform-Independent</td>
|
351
438
|
<td >.zip</td>
|
352
439
|
</tr>
|
353
440
|
<tr class="show" id="pkg0_1rel0_2">
|
354
441
|
<td colspan="2" class="even"> </td>
|
355
|
-
<td class="even"><a
|
356
|
-
 
|
442
|
+
<td class="even"><a id="showfiles_download_file_pkg0_1rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_2_3.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_2_3.zip');">tinymce_3_2_2_3.zip</a>
|
443
|
+
|
357
444
|
</td>
|
358
|
-
<td class="even">
|
359
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=
|
445
|
+
<td class="even">661281</td>
|
446
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=671118&file_id=1603576">23064</a></td>
|
360
447
|
<td class="even">Platform-Independent</td>
|
361
448
|
<td class="even">.zip</td>
|
362
449
|
</tr>
|
@@ -364,25 +451,25 @@ pageTracker._initData();
|
|
364
451
|
<tbody class="show" id="pkg0_2">
|
365
452
|
<tr class="release" id="pkg0_2rel0">
|
366
453
|
<td> </td>
|
367
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=
|
454
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=670980" onclick="report_expand('pkg0_2rel0'); void(0); return false;" class="tdwn" id="pkg0_2rel0_0">3.2.2.2</a> <span class="notes"><a href="shownotes.php?release_id=670980&group_id=103281" title="View notes">Notes</a></span> <small>(2009-03-25 20:59) </small></td>
|
368
455
|
</tr>
|
369
456
|
<tr class="hide" id="pkg0_2rel0_1">
|
370
457
|
<td colspan="2" > </td>
|
371
|
-
<td ><a
|
372
|
-
 
|
458
|
+
<td ><a id="showfiles_download_file_pkg0_2rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_2_2_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_2_2_dev.zip');">tinymce_3_2_2_2_dev.zip</a>
|
459
|
+
|
373
460
|
</td>
|
374
|
-
<td >
|
375
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=
|
461
|
+
<td >3968806</td>
|
462
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=670980&file_id=1603234">250</a></td>
|
376
463
|
<td >Platform-Independent</td>
|
377
464
|
<td >.zip</td>
|
378
465
|
</tr>
|
379
466
|
<tr class="hide" id="pkg0_2rel0_2">
|
380
467
|
<td colspan="2" class="even"> </td>
|
381
|
-
<td class="even"><a
|
382
|
-
 
|
468
|
+
<td class="even"><a id="showfiles_download_file_pkg0_2rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_2_2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_2_2.zip');">tinymce_3_2_2_2.zip</a>
|
469
|
+
|
383
470
|
</td>
|
384
|
-
<td class="even">
|
385
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=
|
471
|
+
<td class="even">661223</td>
|
472
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=670980&file_id=1603235">1271</a></td>
|
386
473
|
<td class="even">Platform-Independent</td>
|
387
474
|
<td class="even">.zip</td>
|
388
475
|
</tr>
|
@@ -390,1432 +477,1823 @@ pageTracker._initData();
|
|
390
477
|
<tbody class="show" id="pkg0_3">
|
391
478
|
<tr class="release" id="pkg0_3rel0">
|
392
479
|
<td> </td>
|
393
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=
|
480
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=669364" onclick="report_expand('pkg0_3rel0'); void(0); return false;" class="tdwn" id="pkg0_3rel0_0">3.2.2.1</a> <span class="notes"><a href="shownotes.php?release_id=669364&group_id=103281" title="View notes">Notes</a></span> <small>(2009-03-19 10:58) </small></td>
|
394
481
|
</tr>
|
395
482
|
<tr class="hide" id="pkg0_3rel0_1">
|
396
483
|
<td colspan="2" > </td>
|
397
|
-
<td ><a
|
398
|
-
 
|
484
|
+
<td ><a id="showfiles_download_file_pkg0_3rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_2_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_2_1_dev.zip');">tinymce_3_2_2_1_dev.zip</a>
|
485
|
+
|
486
|
+
</td>
|
487
|
+
<td >3968653</td>
|
488
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=669364&file_id=1598575">1814</a></td>
|
489
|
+
<td >None</td>
|
490
|
+
<td >None</td>
|
491
|
+
</tr>
|
492
|
+
<tr class="hide" id="pkg0_3rel0_2">
|
493
|
+
<td colspan="2" class="even"> </td>
|
494
|
+
<td class="even"><a id="showfiles_download_file_pkg0_3rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_2_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_2_1.zip');">tinymce_3_2_2_1.zip</a>
|
495
|
+
|
496
|
+
</td>
|
497
|
+
<td class="even">661145</td>
|
498
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=669364&file_id=1598576">11459</a></td>
|
499
|
+
<td class="even">None</td>
|
500
|
+
<td class="even">None</td>
|
501
|
+
</tr>
|
502
|
+
</tbody>
|
503
|
+
<tbody class="show" id="pkg0_4">
|
504
|
+
<tr class="release" id="pkg0_4rel0">
|
505
|
+
<td> </td>
|
506
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=665949" onclick="report_expand('pkg0_4rel0'); void(0); return false;" class="tdwn" id="pkg0_4rel0_0">3.2.2</a> <span class="notes"><a href="shownotes.php?release_id=665949&group_id=103281" title="View notes">Notes</a></span> <small>(2009-03-05 13:10) </small></td>
|
507
|
+
</tr>
|
508
|
+
<tr class="hide" id="pkg0_4rel0_1">
|
509
|
+
<td colspan="2" > </td>
|
510
|
+
<td ><a id="showfiles_download_file_pkg0_4rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_2_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_2_dev.zip');">tinymce_3_2_2_dev.zip</a>
|
511
|
+
|
512
|
+
</td>
|
513
|
+
<td >3964541</td>
|
514
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=665949&file_id=1589224">3996</a></td>
|
515
|
+
<td >Platform-Independent</td>
|
516
|
+
<td >.zip</td>
|
517
|
+
</tr>
|
518
|
+
<tr class="hide" id="pkg0_4rel0_2">
|
519
|
+
<td colspan="2" class="even"> </td>
|
520
|
+
<td class="even"><a id="showfiles_download_file_pkg0_4rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_2.zip');">tinymce_3_2_2.zip</a>
|
521
|
+
|
522
|
+
</td>
|
523
|
+
<td class="even">659343</td>
|
524
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=665949&file_id=1589225">25124</a></td>
|
525
|
+
<td class="even">Platform-Independent</td>
|
526
|
+
<td class="even">.zip</td>
|
527
|
+
</tr>
|
528
|
+
</tbody>
|
529
|
+
<tbody class="show" id="pkg0_5">
|
530
|
+
<tr class="release" id="pkg0_5rel0">
|
531
|
+
<td> </td>
|
532
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=643398" onclick="report_expand('pkg0_5rel0'); void(0); return false;" class="tdwn" id="pkg0_5rel0_0">3.2.1.1</a> <span class="notes"><a href="shownotes.php?release_id=643398&group_id=103281" title="View notes">Notes</a></span> <small>(2008-11-27 17:55) </small></td>
|
533
|
+
</tr>
|
534
|
+
<tr class="hide" id="pkg0_5rel0_1">
|
535
|
+
<td colspan="2" > </td>
|
536
|
+
<td ><a id="showfiles_download_file_pkg0_5rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_1_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_1_1_dev.zip');">tinymce_3_2_1_1_dev.zip</a>
|
537
|
+
|
538
|
+
</td>
|
539
|
+
<td >1046101</td>
|
540
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=643398&file_id=1528458">24826</a></td>
|
541
|
+
<td >Platform-Independent</td>
|
542
|
+
<td >.zip</td>
|
543
|
+
</tr>
|
544
|
+
<tr class="hide" id="pkg0_5rel0_2">
|
545
|
+
<td colspan="2" class="even"> </td>
|
546
|
+
<td class="even"><a id="showfiles_download_file_pkg0_5rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_1_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_1_1.zip');">tinymce_3_2_1_1.zip</a>
|
547
|
+
|
548
|
+
</td>
|
549
|
+
<td class="even">648013</td>
|
550
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=643398&file_id=1528459">155008</a></td>
|
551
|
+
<td class="even">Platform-Independent</td>
|
552
|
+
<td class="even">.zip</td>
|
553
|
+
</tr>
|
554
|
+
</tbody>
|
555
|
+
<tbody class="show" id="pkg0_6">
|
556
|
+
<tr class="release" id="pkg0_6rel0">
|
557
|
+
<td> </td>
|
558
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=638205" onclick="report_expand('pkg0_6rel0'); void(0); return false;" class="tdwn" id="pkg0_6rel0_0">3.2.1</a> <span class="notes"><a href="shownotes.php?release_id=638205&group_id=103281" title="View notes">Notes</a></span> <small>(2008-11-04 17:46) </small></td>
|
559
|
+
</tr>
|
560
|
+
<tr class="hide" id="pkg0_6rel0_1">
|
561
|
+
<td colspan="2" > </td>
|
562
|
+
<td ><a id="showfiles_download_file_pkg0_6rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_1_dev.zip');">tinymce_3_2_1_dev.zip</a>
|
563
|
+
|
564
|
+
</td>
|
565
|
+
<td >1045796</td>
|
566
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=638205&file_id=1514890">7201</a></td>
|
567
|
+
<td >None</td>
|
568
|
+
<td >None</td>
|
569
|
+
</tr>
|
570
|
+
<tr class="hide" id="pkg0_6rel0_2">
|
571
|
+
<td colspan="2" class="even"> </td>
|
572
|
+
<td class="even"><a id="showfiles_download_file_pkg0_6rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_1.zip');">tinymce_3_2_1.zip</a>
|
573
|
+
|
574
|
+
</td>
|
575
|
+
<td class="even">647573</td>
|
576
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=638205&file_id=1514891">44064</a></td>
|
577
|
+
<td class="even">None</td>
|
578
|
+
<td class="even">None</td>
|
579
|
+
</tr>
|
580
|
+
</tbody>
|
581
|
+
<tbody class="show" id="pkg0_7">
|
582
|
+
<tr class="release" id="pkg0_7rel0">
|
583
|
+
<td> </td>
|
584
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=630204" onclick="report_expand('pkg0_7rel0'); void(0); return false;" class="tdwn" id="pkg0_7rel0_0">3.2.0.2</a> <span class="notes"><a href="shownotes.php?release_id=630204&group_id=103281" title="View notes">Notes</a></span> <small>(2008-10-02 16:04) </small></td>
|
585
|
+
</tr>
|
586
|
+
<tr class="hide" id="pkg0_7rel0_1">
|
587
|
+
<td colspan="2" > </td>
|
588
|
+
<td ><a id="showfiles_download_file_pkg0_7rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_0_2_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_0_2_dev.zip');">tinymce_3_2_0_2_dev.zip</a>
|
589
|
+
|
590
|
+
</td>
|
591
|
+
<td >993151</td>
|
592
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=630204&file_id=1494149">13060</a></td>
|
593
|
+
<td >None</td>
|
594
|
+
<td >None</td>
|
595
|
+
</tr>
|
596
|
+
<tr class="hide" id="pkg0_7rel0_2">
|
597
|
+
<td colspan="2" class="even"> </td>
|
598
|
+
<td class="even"><a id="showfiles_download_file_pkg0_7rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_0_2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_0_2.zip');">tinymce_3_2_0_2.zip</a>
|
599
|
+
|
600
|
+
</td>
|
601
|
+
<td class="even">645718</td>
|
602
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=630204&file_id=1494150">60310</a></td>
|
603
|
+
<td class="even">None</td>
|
604
|
+
<td class="even">None</td>
|
605
|
+
</tr>
|
606
|
+
</tbody>
|
607
|
+
<tbody class="show" id="pkg0_8">
|
608
|
+
<tr class="release" id="pkg0_8rel0">
|
609
|
+
<td> </td>
|
610
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=626899" onclick="report_expand('pkg0_8rel0'); void(0); return false;" class="tdwn" id="pkg0_8rel0_0">3.2.0.1</a> <span class="notes"><a href="shownotes.php?release_id=626899&group_id=103281" title="View notes">Notes</a></span> <small>(2008-09-17 12:41) </small></td>
|
611
|
+
</tr>
|
612
|
+
<tr class="hide" id="pkg0_8rel0_1">
|
613
|
+
<td colspan="2" > </td>
|
614
|
+
<td ><a id="showfiles_download_file_pkg0_8rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_0_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_0_1_dev.zip');">tinymce_3_2_0_1_dev.zip</a>
|
615
|
+
|
616
|
+
</td>
|
617
|
+
<td >992483</td>
|
618
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=626899&file_id=1485530">4394</a></td>
|
619
|
+
<td >None</td>
|
620
|
+
<td >None</td>
|
621
|
+
</tr>
|
622
|
+
<tr class="hide" id="pkg0_8rel0_2">
|
623
|
+
<td colspan="2" class="even"> </td>
|
624
|
+
<td class="even"><a id="showfiles_download_file_pkg0_8rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_0_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_0_1.zip');">tinymce_3_2_0_1.zip</a>
|
625
|
+
|
626
|
+
</td>
|
627
|
+
<td class="even">645357</td>
|
628
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=626899&file_id=1485531">26938</a></td>
|
629
|
+
<td class="even">None</td>
|
630
|
+
<td class="even">None</td>
|
631
|
+
</tr>
|
632
|
+
</tbody>
|
633
|
+
<tbody class="show" id="pkg0_9">
|
634
|
+
<tr class="release" id="pkg0_9rel0">
|
635
|
+
<td> </td>
|
636
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=625610" onclick="report_expand('pkg0_9rel0'); void(0); return false;" class="tdwn" id="pkg0_9rel0_0">3.2</a> <span class="notes"><a href="shownotes.php?release_id=625610&group_id=103281" title="View notes">Notes</a></span> <small>(2008-09-11 13:21) </small></td>
|
637
|
+
</tr>
|
638
|
+
<tr class="hide" id="pkg0_9rel0_1">
|
639
|
+
<td colspan="2" > </td>
|
640
|
+
<td ><a id="showfiles_download_file_pkg0_9rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2_dev.zip');">tinymce_3_2_dev.zip</a>
|
641
|
+
|
642
|
+
</td>
|
643
|
+
<td >991046</td>
|
644
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=625610&file_id=1482515">1737</a></td>
|
645
|
+
<td >Platform-Independent</td>
|
646
|
+
<td >.zip</td>
|
647
|
+
</tr>
|
648
|
+
<tr class="hide" id="pkg0_9rel0_2">
|
649
|
+
<td colspan="2" class="even"> </td>
|
650
|
+
<td class="even"><a id="showfiles_download_file_pkg0_9rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_2.zip');">tinymce_3_2.zip</a>
|
651
|
+
|
652
|
+
</td>
|
653
|
+
<td class="even">644611</td>
|
654
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=625610&file_id=1482516">11058</a></td>
|
655
|
+
<td class="even">Platform-Independent</td>
|
656
|
+
<td class="even">.zip</td>
|
657
|
+
</tr>
|
658
|
+
</tbody>
|
659
|
+
<tbody class="show" id="pkg0_10">
|
660
|
+
<tr class="release" id="pkg0_10rel0">
|
661
|
+
<td> </td>
|
662
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=620482" onclick="report_expand('pkg0_10rel0'); void(0); return false;" class="tdwn" id="pkg0_10rel0_0">3.1.1</a> <span class="notes"><a href="shownotes.php?release_id=620482&group_id=103281" title="View notes">Notes</a></span> <small>(2008-08-18 12:25) </small></td>
|
663
|
+
</tr>
|
664
|
+
<tr class="hide" id="pkg0_10rel0_1">
|
665
|
+
<td colspan="2" > </td>
|
666
|
+
<td ><a id="showfiles_download_file_pkg0_10rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_1_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_1_1_dev.zip');">tinymce_3_1_1_dev.zip</a>
|
667
|
+
|
668
|
+
</td>
|
669
|
+
<td >980656</td>
|
670
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=620482&file_id=1468505">3164</a></td>
|
671
|
+
<td >Platform-Independent</td>
|
672
|
+
<td >.zip</td>
|
673
|
+
</tr>
|
674
|
+
<tr class="hide" id="pkg0_10rel0_2">
|
675
|
+
<td colspan="2" class="even"> </td>
|
676
|
+
<td class="even"><a id="showfiles_download_file_pkg0_10rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_1_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_1_1.zip');">tinymce_3_1_1.zip</a>
|
677
|
+
|
678
|
+
</td>
|
679
|
+
<td class="even">638107</td>
|
680
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=620482&file_id=1468506">36290</a></td>
|
681
|
+
<td class="even">Platform-Independent</td>
|
682
|
+
<td class="even">.zip</td>
|
683
|
+
</tr>
|
684
|
+
</tbody>
|
685
|
+
<tbody class="show" id="pkg0_11">
|
686
|
+
<tr class="release" id="pkg0_11rel0">
|
687
|
+
<td> </td>
|
688
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=607811" onclick="report_expand('pkg0_11rel0'); void(0); return false;" class="tdwn" id="pkg0_11rel0_0">3.1.0.1</a> <span class="notes"><a href="shownotes.php?release_id=607811&group_id=103281" title="View notes">Notes</a></span> <small>(2008-06-18 15:42) </small></td>
|
689
|
+
</tr>
|
690
|
+
<tr class="hide" id="pkg0_11rel0_1">
|
691
|
+
<td colspan="2" > </td>
|
692
|
+
<td ><a id="showfiles_download_file_pkg0_11rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_1_0_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_1_0_1_dev.zip');">tinymce_3_1_0_1_dev.zip</a>
|
693
|
+
|
694
|
+
</td>
|
695
|
+
<td >971466</td>
|
696
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=607811&file_id=1434039">6090</a></td>
|
697
|
+
<td >Platform-Independent</td>
|
698
|
+
<td >.zip</td>
|
699
|
+
</tr>
|
700
|
+
<tr class="hide" id="pkg0_11rel0_2">
|
701
|
+
<td colspan="2" class="even"> </td>
|
702
|
+
<td class="even"><a id="showfiles_download_file_pkg0_11rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_1_0_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_1_0_1.zip');">tinymce_3_1_0_1.zip</a>
|
703
|
+
|
704
|
+
</td>
|
705
|
+
<td class="even">637763</td>
|
706
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=607811&file_id=1434040">88737</a></td>
|
707
|
+
<td class="even">Platform-Independent</td>
|
708
|
+
<td class="even">.zip</td>
|
709
|
+
</tr>
|
710
|
+
</tbody>
|
711
|
+
<tbody class="show" id="pkg0_12">
|
712
|
+
<tr class="release" id="pkg0_12rel0">
|
713
|
+
<td> </td>
|
714
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=607554" onclick="report_expand('pkg0_12rel0'); void(0); return false;" class="tdwn" id="pkg0_12rel0_0">3.1.0</a> <span class="notes"><a href="shownotes.php?release_id=607554&group_id=103281" title="View notes">Notes</a></span> <small>(2008-06-17 11:38) </small></td>
|
715
|
+
</tr>
|
716
|
+
<tr class="hide" id="pkg0_12rel0_1">
|
717
|
+
<td colspan="2" > </td>
|
718
|
+
<td ><a id="showfiles_download_file_pkg0_12rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_1_0_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_1_0_dev.zip');">tinymce_3_1_0_dev.zip</a>
|
719
|
+
|
720
|
+
</td>
|
721
|
+
<td >971284</td>
|
722
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=607554&file_id=1433408">234</a></td>
|
723
|
+
<td >Platform-Independent</td>
|
724
|
+
<td >.zip</td>
|
725
|
+
</tr>
|
726
|
+
<tr class="hide" id="pkg0_12rel0_2">
|
727
|
+
<td colspan="2" class="even"> </td>
|
728
|
+
<td class="even"><a id="showfiles_download_file_pkg0_12rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_1_0.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_1_0.zip');">tinymce_3_1_0.zip</a>
|
729
|
+
|
730
|
+
</td>
|
731
|
+
<td class="even">637665</td>
|
732
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=607554&file_id=1433407">3015</a></td>
|
733
|
+
<td class="even">Platform-Independent</td>
|
734
|
+
<td class="even">.zip</td>
|
735
|
+
</tr>
|
736
|
+
</tbody>
|
737
|
+
<tbody class="show" id="pkg0_13">
|
738
|
+
<tr class="release" id="pkg0_13rel0">
|
739
|
+
<td> </td>
|
740
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=603833" onclick="report_expand('pkg0_13rel0'); void(0); return false;" class="tdwn" id="pkg0_13rel0_0">3.0.9</a> <span class="notes"><a href="shownotes.php?release_id=603833&group_id=103281" title="View notes">Notes</a></span> <small>(2008-06-02 13:25) </small></td>
|
741
|
+
</tr>
|
742
|
+
<tr class="hide" id="pkg0_13rel0_1">
|
743
|
+
<td colspan="2" > </td>
|
744
|
+
<td ><a id="showfiles_download_file_pkg0_13rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_9_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_9_dev.zip');">tinymce_3_0_9_dev.zip</a>
|
745
|
+
|
746
|
+
</td>
|
747
|
+
<td >968928</td>
|
748
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=603833&file_id=1424558">1462</a></td>
|
749
|
+
<td >Platform-Independent</td>
|
750
|
+
<td >.zip</td>
|
751
|
+
</tr>
|
752
|
+
<tr class="hide" id="pkg0_13rel0_2">
|
753
|
+
<td colspan="2" class="even"> </td>
|
754
|
+
<td class="even"><a id="showfiles_download_file_pkg0_13rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_9.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_9.zip');">tinymce_3_0_9.zip</a>
|
755
|
+
|
756
|
+
</td>
|
757
|
+
<td class="even">636297</td>
|
758
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=603833&file_id=1424559">20466</a></td>
|
759
|
+
<td class="even">Platform-Independent</td>
|
760
|
+
<td class="even">.zip</td>
|
761
|
+
</tr>
|
762
|
+
</tbody>
|
763
|
+
<tbody class="show" id="pkg0_14">
|
764
|
+
<tr class="release" id="pkg0_14rel0">
|
765
|
+
<td> </td>
|
766
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=596043" onclick="report_expand('pkg0_14rel0'); void(0); return false;" class="tdwn" id="pkg0_14rel0_0">3.0.8</a> <span class="notes"><a href="shownotes.php?release_id=596043&group_id=103281" title="View notes">Notes</a></span> <small>(2008-04-30 14:54) </small></td>
|
767
|
+
</tr>
|
768
|
+
<tr class="hide" id="pkg0_14rel0_1">
|
769
|
+
<td colspan="2" > </td>
|
770
|
+
<td ><a id="showfiles_download_file_pkg0_14rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_8_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_8_dev.zip');">tinymce_3_0_8_dev.zip</a>
|
771
|
+
|
772
|
+
</td>
|
773
|
+
<td >965295</td>
|
774
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=596043&file_id=1405049">3253</a></td>
|
775
|
+
<td >Platform-Independent</td>
|
776
|
+
<td >.zip</td>
|
777
|
+
</tr>
|
778
|
+
<tr class="hide" id="pkg0_14rel0_2">
|
779
|
+
<td colspan="2" class="even"> </td>
|
780
|
+
<td class="even"><a id="showfiles_download_file_pkg0_14rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_8.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_8.zip');">tinymce_3_0_8.zip</a>
|
781
|
+
|
782
|
+
</td>
|
783
|
+
<td class="even">634231</td>
|
784
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=596043&file_id=1405048">46575</a></td>
|
785
|
+
<td class="even">Platform-Independent</td>
|
786
|
+
<td class="even">.zip</td>
|
787
|
+
</tr>
|
788
|
+
</tbody>
|
789
|
+
<tbody class="show" id="pkg0_15">
|
790
|
+
<tr class="release" id="pkg0_15rel0">
|
791
|
+
<td> </td>
|
792
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=592107" onclick="report_expand('pkg0_15rel0'); void(0); return false;" class="tdwn" id="pkg0_15rel0_0">3.0.7</a> <span class="notes"><a href="shownotes.php?release_id=592107&group_id=103281" title="View notes">Notes</a></span> <small>(2008-04-14 14:45) </small></td>
|
793
|
+
</tr>
|
794
|
+
<tr class="hide" id="pkg0_15rel0_1">
|
795
|
+
<td colspan="2" > </td>
|
796
|
+
<td ><a id="showfiles_download_file_pkg0_15rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_7_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_7_dev.zip');">tinymce_3_0_7_dev.zip</a>
|
797
|
+
|
798
|
+
</td>
|
799
|
+
<td >959893</td>
|
800
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=592107&file_id=1394427">1748</a></td>
|
801
|
+
<td >Platform-Independent</td>
|
802
|
+
<td >.zip</td>
|
803
|
+
</tr>
|
804
|
+
<tr class="hide" id="pkg0_15rel0_2">
|
805
|
+
<td colspan="2" class="even"> </td>
|
806
|
+
<td class="even"><a id="showfiles_download_file_pkg0_15rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_7.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_7.zip');">tinymce_3_0_7.zip</a>
|
807
|
+
|
808
|
+
</td>
|
809
|
+
<td class="even">631828</td>
|
810
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=592107&file_id=1394426">25544</a></td>
|
811
|
+
<td class="even">Platform-Independent</td>
|
812
|
+
<td class="even">.zip</td>
|
813
|
+
</tr>
|
814
|
+
</tbody>
|
815
|
+
<tbody class="show" id="pkg0_16">
|
816
|
+
<tr class="release" id="pkg0_16rel0">
|
817
|
+
<td> </td>
|
818
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=590432" onclick="report_expand('pkg0_16rel0'); void(0); return false;" class="tdwn" id="pkg0_16rel0_0">3.0.6.2</a> <span class="notes"><a href="shownotes.php?release_id=590432&group_id=103281" title="View notes">Notes</a></span> <small>(2008-04-07 15:08) </small></td>
|
819
|
+
</tr>
|
820
|
+
<tr class="hide" id="pkg0_16rel0_1">
|
821
|
+
<td colspan="2" > </td>
|
822
|
+
<td ><a id="showfiles_download_file_pkg0_16rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_6_2_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_6_2_dev.zip');">tinymce_3_0_6_2_dev.zip</a>
|
823
|
+
|
399
824
|
</td>
|
400
825
|
<td >954177</td>
|
401
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=590432&file_id=1389854">
|
826
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=590432&file_id=1389854">921</a></td>
|
402
827
|
<td >Platform-Independent</td>
|
403
828
|
<td >.zip</td>
|
404
829
|
</tr>
|
405
|
-
<tr class="hide" id="
|
830
|
+
<tr class="hide" id="pkg0_16rel0_2">
|
406
831
|
<td colspan="2" class="even"> </td>
|
407
|
-
<td class="even"><a
|
408
|
-
 
|
832
|
+
<td class="even"><a id="showfiles_download_file_pkg0_16rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_6_2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_6_2.zip');">tinymce_3_0_6_2.zip</a>
|
833
|
+
|
409
834
|
</td>
|
410
835
|
<td class="even">628569</td>
|
411
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=590432&file_id=1389853">
|
836
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=590432&file_id=1389853">11512</a></td>
|
412
837
|
<td class="even">Platform-Independent</td>
|
413
838
|
<td class="even">.zip</td>
|
414
839
|
</tr>
|
415
840
|
</tbody>
|
416
|
-
<tbody class="show" id="
|
417
|
-
<tr class="release" id="
|
841
|
+
<tbody class="show" id="pkg0_17">
|
842
|
+
<tr class="release" id="pkg0_17rel0">
|
418
843
|
<td> </td>
|
419
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=589543" onclick="report_expand('
|
844
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=589543" onclick="report_expand('pkg0_17rel0'); void(0); return false;" class="tdwn" id="pkg0_17rel0_0">3.0.6.1</a> <span class="notes"><a href="shownotes.php?release_id=589543&group_id=103281" title="View notes">Notes</a></span> <small>(2008-04-04 11:45) </small></td>
|
420
845
|
</tr>
|
421
|
-
<tr class="hide" id="
|
846
|
+
<tr class="hide" id="pkg0_17rel0_1">
|
422
847
|
<td colspan="2" > </td>
|
423
|
-
<td ><a
|
424
|
-
 
|
848
|
+
<td ><a id="showfiles_download_file_pkg0_17rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_6_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_6_1_dev.zip');">tinymce_3_0_6_1_dev.zip</a>
|
849
|
+
|
425
850
|
</td>
|
426
851
|
<td >953381</td>
|
427
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=589543&file_id=1387663">
|
852
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=589543&file_id=1387663">352</a></td>
|
428
853
|
<td >Platform-Independent</td>
|
429
854
|
<td >.zip</td>
|
430
855
|
</tr>
|
431
|
-
<tr class="hide" id="
|
856
|
+
<tr class="hide" id="pkg0_17rel0_2">
|
432
857
|
<td colspan="2" class="even"> </td>
|
433
|
-
<td class="even"><a
|
434
|
-
 
|
858
|
+
<td class="even"><a id="showfiles_download_file_pkg0_17rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_6_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_6_1.zip');">tinymce_3_0_6_1.zip</a>
|
859
|
+
|
435
860
|
</td>
|
436
861
|
<td class="even">628040</td>
|
437
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=589543&file_id=1387662">
|
862
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=589543&file_id=1387662">5459</a></td>
|
438
863
|
<td class="even">Platform-Independent</td>
|
439
864
|
<td class="even">.zip</td>
|
440
865
|
</tr>
|
441
866
|
</tbody>
|
442
|
-
<tbody class="show" id="
|
443
|
-
<tr class="release" id="
|
867
|
+
<tbody class="show" id="pkg0_18">
|
868
|
+
<tr class="release" id="pkg0_18rel0">
|
444
869
|
<td> </td>
|
445
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=589316" onclick="report_expand('
|
870
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=589316" onclick="report_expand('pkg0_18rel0'); void(0); return false;" class="tdwn" id="pkg0_18rel0_0">3.0.6</a> <span class="notes"><a href="shownotes.php?release_id=589316&group_id=103281" title="View notes">Notes</a></span> <small>(2008-04-03 13:52) </small></td>
|
446
871
|
</tr>
|
447
|
-
<tr class="hide" id="
|
872
|
+
<tr class="hide" id="pkg0_18rel0_1">
|
448
873
|
<td colspan="2" > </td>
|
449
|
-
<td ><a
|
450
|
-
 
|
874
|
+
<td ><a id="showfiles_download_file_pkg0_18rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_6_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_6_dev.zip');">tinymce_3_0_6_dev.zip</a>
|
875
|
+
|
451
876
|
</td>
|
452
877
|
<td >952461</td>
|
453
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=589316&file_id=1387096">
|
878
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=589316&file_id=1387096">158</a></td>
|
454
879
|
<td >Platform-Independent</td>
|
455
880
|
<td >.zip</td>
|
456
881
|
</tr>
|
457
|
-
<tr class="hide" id="
|
882
|
+
<tr class="hide" id="pkg0_18rel0_2">
|
458
883
|
<td colspan="2" class="even"> </td>
|
459
|
-
<td class="even"><a
|
460
|
-
 
|
884
|
+
<td class="even"><a id="showfiles_download_file_pkg0_18rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_6.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_6.zip');">tinymce_3_0_6.zip</a>
|
885
|
+
|
461
886
|
</td>
|
462
887
|
<td class="even">627592</td>
|
463
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=589316&file_id=1387095">
|
888
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=589316&file_id=1387095">1844</a></td>
|
464
889
|
<td class="even">Platform-Independent</td>
|
465
890
|
<td class="even">.zip</td>
|
466
891
|
</tr>
|
467
892
|
</tbody>
|
468
|
-
<tbody class="show" id="
|
469
|
-
<tr class="release" id="
|
893
|
+
<tbody class="show" id="pkg0_19">
|
894
|
+
<tr class="release" id="pkg0_19rel0">
|
470
895
|
<td> </td>
|
471
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=583673" onclick="report_expand('
|
896
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=583673" onclick="report_expand('pkg0_19rel0'); void(0); return false;" class="tdwn" id="pkg0_19rel0_0">3.0.5</a> <span class="notes"><a href="shownotes.php?release_id=583673&group_id=103281" title="View notes">Notes</a></span> <small>(2008-03-12 12:53) </small></td>
|
472
897
|
</tr>
|
473
|
-
<tr class="hide" id="
|
898
|
+
<tr class="hide" id="pkg0_19rel0_1">
|
474
899
|
<td colspan="2" > </td>
|
475
|
-
<td ><a
|
476
|
-
 
|
900
|
+
<td ><a id="showfiles_download_file_pkg0_19rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_5_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_5_dev.zip');">tinymce_3_0_5_dev.zip</a>
|
901
|
+
|
477
902
|
</td>
|
478
903
|
<td >939340</td>
|
479
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=583673&file_id=1371981">
|
904
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=583673&file_id=1371981">2424</a></td>
|
480
905
|
<td >Platform-Independent</td>
|
481
906
|
<td >.zip</td>
|
482
907
|
</tr>
|
483
|
-
<tr class="hide" id="
|
908
|
+
<tr class="hide" id="pkg0_19rel0_2">
|
484
909
|
<td colspan="2" class="even"> </td>
|
485
|
-
<td class="even"><a
|
486
|
-
 
|
910
|
+
<td class="even"><a id="showfiles_download_file_pkg0_19rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_5.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_5.zip');">tinymce_3_0_5.zip</a>
|
911
|
+
|
487
912
|
</td>
|
488
913
|
<td class="even">622254</td>
|
489
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=583673&file_id=1371980">
|
914
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=583673&file_id=1371980">33954</a></td>
|
490
915
|
<td class="even">Platform-Independent</td>
|
491
916
|
<td class="even">.zip</td>
|
492
917
|
</tr>
|
493
918
|
</tbody>
|
494
|
-
<tbody class="show" id="
|
495
|
-
<tr class="release" id="
|
919
|
+
<tbody class="show" id="pkg0_20">
|
920
|
+
<tr class="release" id="pkg0_20rel0">
|
496
921
|
<td> </td>
|
497
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=582480" onclick="report_expand('
|
922
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=582480" onclick="report_expand('pkg0_20rel0'); void(0); return false;" class="tdwn" id="pkg0_20rel0_0">3.0.4</a> <span class="notes"><a href="shownotes.php?release_id=582480&group_id=103281" title="View notes">Notes</a></span> <small>(2008-03-07 14:08) </small></td>
|
498
923
|
</tr>
|
499
|
-
<tr class="hide" id="
|
924
|
+
<tr class="hide" id="pkg0_20rel0_1">
|
500
925
|
<td colspan="2" > </td>
|
501
|
-
<td ><a
|
502
|
-
 
|
926
|
+
<td ><a id="showfiles_download_file_pkg0_20rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_4_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_4_1_dev.zip');">tinymce_3_0_4_1_dev.zip</a>
|
927
|
+
|
503
928
|
</td>
|
504
929
|
<td >930881</td>
|
505
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=582480&file_id=1369255">
|
930
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=582480&file_id=1369255">535</a></td>
|
506
931
|
<td >Platform-Independent</td>
|
507
932
|
<td >.zip</td>
|
508
933
|
</tr>
|
509
|
-
<tr class="hide" id="
|
934
|
+
<tr class="hide" id="pkg0_20rel0_2">
|
510
935
|
<td colspan="2" class="even"> </td>
|
511
|
-
<td class="even"><a
|
512
|
-
 
|
936
|
+
<td class="even"><a id="showfiles_download_file_pkg0_20rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_4_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_4_1.zip');">tinymce_3_0_4_1.zip</a>
|
937
|
+
|
513
938
|
</td>
|
514
939
|
<td class="even">608623</td>
|
515
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=582480&file_id=1369254">
|
940
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=582480&file_id=1369254">6562</a></td>
|
516
941
|
<td class="even">Platform-Independent</td>
|
517
942
|
<td class="even">.zip</td>
|
518
943
|
</tr>
|
519
944
|
</tbody>
|
520
|
-
<tbody class="show" id="
|
521
|
-
<tr class="release" id="
|
945
|
+
<tbody class="show" id="pkg0_21">
|
946
|
+
<tr class="release" id="pkg0_21rel0">
|
522
947
|
<td> </td>
|
523
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=581391" onclick="report_expand('
|
948
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=581391" onclick="report_expand('pkg0_21rel0'); void(0); return false;" class="tdwn" id="pkg0_21rel0_0">3.0.3</a> <span class="notes"><a href="shownotes.php?release_id=581391&group_id=103281" title="View notes">Notes</a></span> <small>(2008-03-03 13:52) </small></td>
|
524
949
|
</tr>
|
525
|
-
<tr class="hide" id="
|
950
|
+
<tr class="hide" id="pkg0_21rel0_1">
|
526
951
|
<td colspan="2" > </td>
|
527
|
-
<td ><a
|
528
|
-
 
|
952
|
+
<td ><a id="showfiles_download_file_pkg0_21rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_3_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_3_dev.zip');">tinymce_3_0_3_dev.zip</a>
|
953
|
+
|
529
954
|
</td>
|
530
955
|
<td >928087</td>
|
531
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=581391&file_id=1365951">
|
956
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=581391&file_id=1365951">608</a></td>
|
532
957
|
<td >Platform-Independent</td>
|
533
958
|
<td >.zip</td>
|
534
959
|
</tr>
|
535
|
-
<tr class="hide" id="
|
960
|
+
<tr class="hide" id="pkg0_21rel0_2">
|
536
961
|
<td colspan="2" class="even"> </td>
|
537
|
-
<td class="even"><a
|
538
|
-
 
|
962
|
+
<td class="even"><a id="showfiles_download_file_pkg0_21rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_3.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_3.zip');">tinymce_3_0_3.zip</a>
|
963
|
+
|
539
964
|
</td>
|
540
965
|
<td class="even">613204</td>
|
541
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=581391&file_id=1365950">
|
966
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=581391&file_id=1365950">7801</a></td>
|
542
967
|
<td class="even">Platform-Independent</td>
|
543
968
|
<td class="even">.zip</td>
|
544
969
|
</tr>
|
545
970
|
</tbody>
|
546
|
-
<tbody class="show" id="
|
547
|
-
<tr class="release" id="
|
971
|
+
<tbody class="show" id="pkg0_22">
|
972
|
+
<tr class="release" id="pkg0_22rel0">
|
548
973
|
<td> </td>
|
549
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=579733" onclick="report_expand('
|
974
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=579733" onclick="report_expand('pkg0_22rel0'); void(0); return false;" class="tdwn" id="pkg0_22rel0_0">3.0.2</a> <span class="notes"><a href="shownotes.php?release_id=579733&group_id=103281" title="View notes">Notes</a></span> <small>(2008-02-26 17:28) </small></td>
|
550
975
|
</tr>
|
551
|
-
<tr class="hide" id="
|
976
|
+
<tr class="hide" id="pkg0_22rel0_1">
|
552
977
|
<td colspan="2" > </td>
|
553
|
-
<td ><a
|
554
|
-
 
|
978
|
+
<td ><a id="showfiles_download_file_pkg0_22rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_2_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_2_1_dev.zip');">tinymce_3_0_2_1_dev.zip</a>
|
979
|
+
|
555
980
|
</td>
|
556
981
|
<td >926118</td>
|
557
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=579733&file_id=1361516">
|
982
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=579733&file_id=1361516">798</a></td>
|
558
983
|
<td >Platform-Independent</td>
|
559
984
|
<td >.zip</td>
|
560
985
|
</tr>
|
561
|
-
<tr class="hide" id="
|
986
|
+
<tr class="hide" id="pkg0_22rel0_2">
|
562
987
|
<td colspan="2" class="even"> </td>
|
563
|
-
<td class="even"><a
|
564
|
-
 
|
988
|
+
<td class="even"><a id="showfiles_download_file_pkg0_22rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_2_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_2_1.zip');">tinymce_3_0_2_1.zip</a>
|
989
|
+
|
565
990
|
</td>
|
566
991
|
<td class="even">611938</td>
|
567
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=579733&file_id=1361515">
|
992
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=579733&file_id=1361515">9158</a></td>
|
568
993
|
<td class="even">Platform-Independent</td>
|
569
994
|
<td class="even">.zip</td>
|
570
995
|
</tr>
|
571
996
|
</tbody>
|
572
|
-
<tbody class="show" id="
|
573
|
-
<tr class="release" id="
|
997
|
+
<tbody class="show" id="pkg0_23">
|
998
|
+
<tr class="release" id="pkg0_23rel0">
|
574
999
|
<td> </td>
|
575
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=578369" onclick="report_expand('
|
1000
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=578369" onclick="report_expand('pkg0_23rel0'); void(0); return false;" class="tdwn" id="pkg0_23rel0_0">3.0.1</a> <span class="notes"><a href="shownotes.php?release_id=578369&group_id=103281" title="View notes">Notes</a></span> <small>(2008-02-21 13:36) </small></td>
|
576
1001
|
</tr>
|
577
|
-
<tr class="hide" id="
|
1002
|
+
<tr class="hide" id="pkg0_23rel0_1">
|
578
1003
|
<td colspan="2" > </td>
|
579
|
-
<td ><a
|
580
|
-
 
|
1004
|
+
<td ><a id="showfiles_download_file_pkg0_23rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_1_dev.zip');">tinymce_3_0_1_dev.zip</a>
|
1005
|
+
|
581
1006
|
</td>
|
582
1007
|
<td >912683</td>
|
583
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=578369&file_id=1357945">
|
1008
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=578369&file_id=1357945">648</a></td>
|
584
1009
|
<td >Platform-Independent</td>
|
585
1010
|
<td >.zip</td>
|
586
1011
|
</tr>
|
587
|
-
<tr class="hide" id="
|
1012
|
+
<tr class="hide" id="pkg0_23rel0_2">
|
588
1013
|
<td colspan="2" class="even"> </td>
|
589
|
-
<td class="even"><a
|
590
|
-
 
|
1014
|
+
<td class="even"><a id="showfiles_download_file_pkg0_23rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_1.zip');">tinymce_3_0_1.zip</a>
|
1015
|
+
|
591
1016
|
</td>
|
592
1017
|
<td class="even">601277</td>
|
593
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=578369&file_id=1357944">
|
1018
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=578369&file_id=1357944">7993</a></td>
|
594
1019
|
<td class="even">Platform-Independent</td>
|
595
1020
|
<td class="even">.zip</td>
|
596
1021
|
</tr>
|
597
1022
|
</tbody>
|
598
|
-
<tbody class="show" id="
|
599
|
-
<tr class="release" id="
|
1023
|
+
<tbody class="show" id="pkg0_24">
|
1024
|
+
<tr class="release" id="pkg0_24rel0">
|
600
1025
|
<td> </td>
|
601
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=572611" onclick="report_expand('
|
1026
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=572611" onclick="report_expand('pkg0_24rel0'); void(0); return false;" class="tdwn" id="pkg0_24rel0_0">3.0</a> <span class="notes"><a href="shownotes.php?release_id=572611&group_id=103281" title="View notes">Notes</a></span> <small>(2008-01-30 12:44) </small></td>
|
602
1027
|
</tr>
|
603
|
-
<tr class="hide" id="
|
1028
|
+
<tr class="hide" id="pkg0_24rel0_1">
|
604
1029
|
<td colspan="2" > </td>
|
605
|
-
<td ><a
|
606
|
-
 
|
1030
|
+
<td ><a id="showfiles_download_file_pkg0_24rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0_dev.zip');">tinymce_3_0_dev.zip</a>
|
1031
|
+
|
607
1032
|
</td>
|
608
1033
|
<td >896840</td>
|
609
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=572611&file_id=1343289">
|
1034
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=572611&file_id=1343289">2853</a></td>
|
610
1035
|
<td >Platform-Independent</td>
|
611
1036
|
<td >.zip</td>
|
612
1037
|
</tr>
|
613
|
-
<tr class="hide" id="
|
1038
|
+
<tr class="hide" id="pkg0_24rel0_2">
|
614
1039
|
<td colspan="2" class="even"> </td>
|
615
|
-
<td class="even"><a
|
616
|
-
 
|
1040
|
+
<td class="even"><a id="showfiles_download_file_pkg0_24rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0.zip');">tinymce_3_0.zip</a>
|
1041
|
+
|
617
1042
|
</td>
|
618
1043
|
<td class="even">585964</td>
|
619
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=572611&file_id=1343288">
|
1044
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=572611&file_id=1343288">40720</a></td>
|
620
1045
|
<td class="even">Platform-Independent</td>
|
621
1046
|
<td class="even">.zip</td>
|
622
1047
|
</tr>
|
623
1048
|
</tbody>
|
624
|
-
<tbody class="show" id="
|
625
|
-
<tr class="release" id="
|
1049
|
+
<tbody class="show" id="pkg0_25">
|
1050
|
+
<tr class="release" id="pkg0_25rel0">
|
626
1051
|
<td> </td>
|
627
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=569569" onclick="report_expand('
|
1052
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=569569" onclick="report_expand('pkg0_25rel0'); void(0); return false;" class="tdwn" id="pkg0_25rel0_0">3.0rc2</a> <span class="notes"><a href="shownotes.php?release_id=569569&group_id=103281" title="View notes">Notes</a></span> <small>(2008-01-18 13:20) </small></td>
|
628
1053
|
</tr>
|
629
|
-
<tr class="hide" id="
|
1054
|
+
<tr class="hide" id="pkg0_25rel0_1">
|
630
1055
|
<td colspan="2" > </td>
|
631
|
-
<td ><a
|
632
|
-
 
|
1056
|
+
<td ><a id="showfiles_download_file_pkg0_25rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0rc2_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0rc2_dev.zip');">tinymce_3_0rc2_dev.zip</a>
|
1057
|
+
|
633
1058
|
</td>
|
634
1059
|
<td >894268</td>
|
635
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=569569&file_id=1335039">
|
1060
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=569569&file_id=1335039">799</a></td>
|
636
1061
|
<td >Platform-Independent</td>
|
637
1062
|
<td >.zip</td>
|
638
1063
|
</tr>
|
639
|
-
<tr class="hide" id="
|
1064
|
+
<tr class="hide" id="pkg0_25rel0_2">
|
640
1065
|
<td colspan="2" class="even"> </td>
|
641
|
-
<td class="even"><a
|
642
|
-
 
|
1066
|
+
<td class="even"><a id="showfiles_download_file_pkg0_25rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0rc2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0rc2.zip');">tinymce_3_0rc2.zip</a>
|
1067
|
+
|
643
1068
|
</td>
|
644
1069
|
<td class="even">584307</td>
|
645
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=569569&file_id=1335038">
|
1070
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=569569&file_id=1335038">9077</a></td>
|
646
1071
|
<td class="even">Platform-Independent</td>
|
647
1072
|
<td class="even">.zip</td>
|
648
1073
|
</tr>
|
649
1074
|
</tbody>
|
650
|
-
<tbody class="show" id="
|
651
|
-
<tr class="release" id="
|
1075
|
+
<tbody class="show" id="pkg0_26">
|
1076
|
+
<tr class="release" id="pkg0_26rel0">
|
652
1077
|
<td> </td>
|
653
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=566911" onclick="report_expand('
|
1078
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=566911" onclick="report_expand('pkg0_26rel0'); void(0); return false;" class="tdwn" id="pkg0_26rel0_0">3.0rc1</a> <span class="notes"><a href="shownotes.php?release_id=566911&group_id=103281" title="View notes">Notes</a></span> <small>(2008-01-08 12:25) </small></td>
|
654
1079
|
</tr>
|
655
|
-
<tr class="hide" id="
|
1080
|
+
<tr class="hide" id="pkg0_26rel0_1">
|
656
1081
|
<td colspan="2" > </td>
|
657
|
-
<td ><a
|
658
|
-
 
|
1082
|
+
<td ><a id="showfiles_download_file_pkg0_26rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0rc1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0rc1_dev.zip');">tinymce_3_0rc1_dev.zip</a>
|
1083
|
+
|
659
1084
|
</td>
|
660
1085
|
<td >886585</td>
|
661
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=566911&file_id=1328314">
|
1086
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=566911&file_id=1328314">850</a></td>
|
662
1087
|
<td >Platform-Independent</td>
|
663
1088
|
<td >.zip</td>
|
664
1089
|
</tr>
|
665
|
-
<tr class="hide" id="
|
1090
|
+
<tr class="hide" id="pkg0_26rel0_2">
|
666
1091
|
<td colspan="2" class="even"> </td>
|
667
|
-
<td class="even"><a
|
668
|
-
 
|
1092
|
+
<td class="even"><a id="showfiles_download_file_pkg0_26rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0rc1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0rc1.zip');">tinymce_3_0rc1.zip</a>
|
1093
|
+
|
669
1094
|
</td>
|
670
1095
|
<td class="even">580391</td>
|
671
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=566911&file_id=1328313">
|
1096
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=566911&file_id=1328313">7183</a></td>
|
672
1097
|
<td class="even">Platform-Independent</td>
|
673
1098
|
<td class="even">.gz</td>
|
674
1099
|
</tr>
|
675
1100
|
</tbody>
|
676
|
-
<tbody class="show" id="
|
677
|
-
<tr class="release" id="
|
1101
|
+
<tbody class="show" id="pkg0_27">
|
1102
|
+
<tr class="release" id="pkg0_27rel0">
|
678
1103
|
<td> </td>
|
679
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=561612" onclick="report_expand('
|
1104
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=561612" onclick="report_expand('pkg0_27rel0'); void(0); return false;" class="tdwn" id="pkg0_27rel0_0">3.0b3</a> <span class="notes"><a href="shownotes.php?release_id=561612&group_id=103281" title="View notes">Notes</a></span> <small>(2007-12-14 12:04) </small></td>
|
680
1105
|
</tr>
|
681
|
-
<tr class="hide" id="
|
1106
|
+
<tr class="hide" id="pkg0_27rel0_1">
|
682
1107
|
<td colspan="2" > </td>
|
683
|
-
<td ><a
|
684
|
-
 
|
1108
|
+
<td ><a id="showfiles_download_file_pkg0_27rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0b3_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0b3_dev.zip');">tinymce_3_0b3_dev.zip</a>
|
1109
|
+
|
685
1110
|
</td>
|
686
1111
|
<td >878357</td>
|
687
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=561612&file_id=1313894">
|
1112
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=561612&file_id=1313894">1412</a></td>
|
688
1113
|
<td >Platform-Independent</td>
|
689
1114
|
<td >.zip</td>
|
690
1115
|
</tr>
|
691
|
-
<tr class="hide" id="
|
1116
|
+
<tr class="hide" id="pkg0_27rel0_2">
|
692
1117
|
<td colspan="2" class="even"> </td>
|
693
|
-
<td class="even"><a
|
694
|
-
 
|
1118
|
+
<td class="even"><a id="showfiles_download_file_pkg0_27rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0b3.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0b3.zip');">tinymce_3_0b3.zip</a>
|
1119
|
+
|
695
1120
|
</td>
|
696
1121
|
<td class="even">577041</td>
|
697
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=561612&file_id=1313893">
|
1122
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=561612&file_id=1313893">13345</a></td>
|
698
1123
|
<td class="even">Platform-Independent</td>
|
699
1124
|
<td class="even">.zip</td>
|
700
1125
|
</tr>
|
701
1126
|
</tbody>
|
702
|
-
<tbody class="show" id="
|
703
|
-
<tr class="release" id="
|
1127
|
+
<tbody class="show" id="pkg0_28">
|
1128
|
+
<tr class="release" id="pkg0_28rel0">
|
704
1129
|
<td> </td>
|
705
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=557954" onclick="report_expand('
|
1130
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=557954" onclick="report_expand('pkg0_28rel0'); void(0); return false;" class="tdwn" id="pkg0_28rel0_0">3.0b2</a> <span class="notes"><a href="shownotes.php?release_id=557954&group_id=103281" title="View notes">Notes</a></span> <small>(2007-11-29 16:01) </small></td>
|
706
1131
|
</tr>
|
707
|
-
<tr class="hide" id="
|
1132
|
+
<tr class="hide" id="pkg0_28rel0_1">
|
708
1133
|
<td colspan="2" > </td>
|
709
|
-
<td ><a
|
710
|
-
 
|
1134
|
+
<td ><a id="showfiles_download_file_pkg0_28rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0b2_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0b2_dev.zip');">tinymce_3_0b2_dev.zip</a>
|
1135
|
+
|
711
1136
|
</td>
|
712
1137
|
<td >870479</td>
|
713
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557954&file_id=1303484">
|
1138
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557954&file_id=1303484">1023</a></td>
|
714
1139
|
<td >Platform-Independent</td>
|
715
1140
|
<td >.zip</td>
|
716
1141
|
</tr>
|
717
|
-
<tr class="hide" id="
|
1142
|
+
<tr class="hide" id="pkg0_28rel0_2">
|
718
1143
|
<td colspan="2" class="even"> </td>
|
719
|
-
<td class="even"><a
|
720
|
-
 
|
1144
|
+
<td class="even"><a id="showfiles_download_file_pkg0_28rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0b2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0b2.zip');">tinymce_3_0b2.zip</a>
|
1145
|
+
|
721
1146
|
</td>
|
722
1147
|
<td class="even">572835</td>
|
723
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557954&file_id=1303483">
|
1148
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557954&file_id=1303483">9441</a></td>
|
724
1149
|
<td class="even">Platform-Independent</td>
|
725
1150
|
<td class="even">.zip</td>
|
726
1151
|
</tr>
|
727
1152
|
</tbody>
|
728
|
-
<tbody class="show" id="
|
729
|
-
<tr class="release" id="
|
1153
|
+
<tbody class="show" id="pkg0_29">
|
1154
|
+
<tr class="release" id="pkg0_29rel0">
|
730
1155
|
<td> </td>
|
731
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=557383" onclick="report_expand('
|
1156
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=557383" onclick="report_expand('pkg0_29rel0'); void(0); return false;" class="tdwn" id="pkg0_29rel0_0">2.1.3</a> <span class="notes"><a href="shownotes.php?release_id=557383&group_id=103281" title="View notes">Notes</a></span> <small>(2007-11-27 14:06) </small></td>
|
732
1157
|
</tr>
|
733
|
-
<tr class="hide" id="
|
1158
|
+
<tr class="hide" id="pkg0_29rel0_1">
|
734
1159
|
<td colspan="2" > </td>
|
735
|
-
<td ><a
|
736
|
-
 
|
1160
|
+
<td ><a id="showfiles_download_file_pkg0_29rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_3_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_3_dev.tgz');">tinymce_2_1_3_dev.tgz</a>
|
1161
|
+
|
737
1162
|
</td>
|
738
1163
|
<td >757193</td>
|
739
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557383&file_id=1302052">
|
1164
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557383&file_id=1302052">2113</a></td>
|
740
1165
|
<td >Platform-Independent</td>
|
741
1166
|
<td >.gz</td>
|
742
1167
|
</tr>
|
743
|
-
<tr class="hide" id="
|
1168
|
+
<tr class="hide" id="pkg0_29rel0_2">
|
744
1169
|
<td colspan="2" class="even"> </td>
|
745
|
-
<td class="even"><a
|
746
|
-
 
|
1170
|
+
<td class="even"><a id="showfiles_download_file_pkg0_29rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_3_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_3_dev.zip');">tinymce_2_1_3_dev.zip</a>
|
1171
|
+
|
747
1172
|
</td>
|
748
1173
|
<td class="even">980218</td>
|
749
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557383&file_id=1302053">
|
1174
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557383&file_id=1302053">6417</a></td>
|
750
1175
|
<td class="even">Platform-Independent</td>
|
751
1176
|
<td class="even">.zip</td>
|
752
1177
|
</tr>
|
753
|
-
<tr class="hide" id="
|
1178
|
+
<tr class="hide" id="pkg0_29rel0_3">
|
754
1179
|
<td colspan="2" > </td>
|
755
|
-
<td ><a
|
756
|
-
 
|
1180
|
+
<td ><a id="showfiles_download_file_pkg0_29rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_3.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_3.tgz');">tinymce_2_1_3.tgz</a>
|
1181
|
+
|
757
1182
|
</td>
|
758
1183
|
<td >459851</td>
|
759
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557383&file_id=1302050">
|
1184
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557383&file_id=1302050">34743</a></td>
|
760
1185
|
<td >Platform-Independent</td>
|
761
1186
|
<td >.gz</td>
|
762
1187
|
</tr>
|
763
|
-
<tr class="hide" id="
|
1188
|
+
<tr class="hide" id="pkg0_29rel0_4">
|
764
1189
|
<td colspan="2" class="even"> </td>
|
765
|
-
<td class="even"><a
|
766
|
-
 
|
1190
|
+
<td class="even"><a id="showfiles_download_file_pkg0_29rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_3.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_3.zip');">tinymce_2_1_3.zip</a>
|
1191
|
+
|
767
1192
|
</td>
|
768
1193
|
<td class="even">634275</td>
|
769
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557383&file_id=1302051">
|
1194
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=557383&file_id=1302051">93794</a></td>
|
770
1195
|
<td class="even">Platform-Independent</td>
|
771
1196
|
<td class="even">.zip</td>
|
772
1197
|
</tr>
|
773
1198
|
</tbody>
|
774
|
-
<tbody class="show" id="
|
775
|
-
<tr class="release" id="
|
1199
|
+
<tbody class="show" id="pkg0_30">
|
1200
|
+
<tr class="release" id="pkg0_30rel0">
|
776
1201
|
<td> </td>
|
777
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=555723" onclick="report_expand('
|
1202
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=555723" onclick="report_expand('pkg0_30rel0'); void(0); return false;" class="tdwn" id="pkg0_30rel0_0">3.0b1</a> <span class="notes"><a href="shownotes.php?release_id=555723&group_id=103281" title="View notes">Notes</a></span> <small>(2007-11-21 15:10) </small></td>
|
778
1203
|
</tr>
|
779
|
-
<tr class="hide" id="
|
1204
|
+
<tr class="hide" id="pkg0_30rel0_1">
|
780
1205
|
<td colspan="2" > </td>
|
781
|
-
<td ><a
|
782
|
-
 
|
1206
|
+
<td ><a id="showfiles_download_file_pkg0_30rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0b1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0b1_dev.zip');">tinymce_3_0b1_dev.zip</a>
|
1207
|
+
|
783
1208
|
</td>
|
784
1209
|
<td >861057</td>
|
785
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=555723&file_id=1298486">
|
1210
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=555723&file_id=1298486">558</a></td>
|
786
1211
|
<td >Platform-Independent</td>
|
787
1212
|
<td >.zip</td>
|
788
1213
|
</tr>
|
789
|
-
<tr class="hide" id="
|
1214
|
+
<tr class="hide" id="pkg0_30rel0_2">
|
790
1215
|
<td colspan="2" class="even"> </td>
|
791
|
-
<td class="even"><a
|
792
|
-
 
|
1216
|
+
<td class="even"><a id="showfiles_download_file_pkg0_30rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0b1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0b1.zip');">tinymce_3_0b1.zip</a>
|
1217
|
+
|
793
1218
|
</td>
|
794
1219
|
<td class="even">571245</td>
|
795
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=555723&file_id=1298485">
|
1220
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=555723&file_id=1298485">5078</a></td>
|
796
1221
|
<td class="even">Platform-Independent</td>
|
797
1222
|
<td class="even">.zip</td>
|
798
1223
|
</tr>
|
799
1224
|
</tbody>
|
800
|
-
<tbody class="show" id="
|
801
|
-
<tr class="release" id="
|
1225
|
+
<tbody class="show" id="pkg0_31">
|
1226
|
+
<tr class="release" id="pkg0_31rel0">
|
802
1227
|
<td> </td>
|
803
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=553890" onclick="report_expand('
|
1228
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=553890" onclick="report_expand('pkg0_31rel0'); void(0); return false;" class="tdwn" id="pkg0_31rel0_0">3.0a3</a> <span class="notes"><a href="shownotes.php?release_id=553890&group_id=103281" title="View notes">Notes</a></span> <small>(2007-11-13 14:58) </small></td>
|
804
1229
|
</tr>
|
805
|
-
<tr class="hide" id="
|
1230
|
+
<tr class="hide" id="pkg0_31rel0_1">
|
806
1231
|
<td colspan="2" > </td>
|
807
|
-
<td ><a
|
808
|
-
 
|
1232
|
+
<td ><a id="showfiles_download_file_pkg0_31rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0a3_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0a3_dev.zip');">tinymce_3_0a3_dev.zip</a>
|
1233
|
+
|
809
1234
|
</td>
|
810
1235
|
<td >852958</td>
|
811
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=553890&file_id=1293891">
|
1236
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=553890&file_id=1293891">581</a></td>
|
812
1237
|
<td >Platform-Independent</td>
|
813
1238
|
<td >.zip</td>
|
814
1239
|
</tr>
|
815
|
-
<tr class="hide" id="
|
1240
|
+
<tr class="hide" id="pkg0_31rel0_2">
|
816
1241
|
<td colspan="2" class="even"> </td>
|
817
|
-
<td class="even"><a
|
818
|
-
 
|
1242
|
+
<td class="even"><a id="showfiles_download_file_pkg0_31rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0a3.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0a3.zip');">tinymce_3_0a3.zip</a>
|
1243
|
+
|
819
1244
|
</td>
|
820
1245
|
<td class="even">568294</td>
|
821
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=553890&file_id=1293890">
|
1246
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=553890&file_id=1293890">5203</a></td>
|
822
1247
|
<td class="even">Platform-Independent</td>
|
823
1248
|
<td class="even">.zip</td>
|
824
1249
|
</tr>
|
825
1250
|
</tbody>
|
826
|
-
<tbody class="show" id="
|
827
|
-
<tr class="release" id="
|
1251
|
+
<tbody class="show" id="pkg0_32">
|
1252
|
+
<tr class="release" id="pkg0_32rel0">
|
828
1253
|
<td> </td>
|
829
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=551331" onclick="report_expand('
|
1254
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=551331" onclick="report_expand('pkg0_32rel0'); void(0); return false;" class="tdwn" id="pkg0_32rel0_0">3.0a2</a> <span class="notes"><a href="shownotes.php?release_id=551331&group_id=103281" title="View notes">Notes</a></span> <small>(2007-11-02 14:49) </small></td>
|
830
1255
|
</tr>
|
831
|
-
<tr class="hide" id="
|
1256
|
+
<tr class="hide" id="pkg0_32rel0_1">
|
832
1257
|
<td colspan="2" > </td>
|
833
|
-
<td ><a
|
834
|
-
 
|
1258
|
+
<td ><a id="showfiles_download_file_pkg0_32rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0a2_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0a2_dev.zip');">tinymce_3_0a2_dev.zip</a>
|
1259
|
+
|
835
1260
|
</td>
|
836
1261
|
<td >686820</td>
|
837
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=551331&file_id=1286914">
|
1262
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=551331&file_id=1286914">713</a></td>
|
838
1263
|
<td >Platform-Independent</td>
|
839
1264
|
<td >.zip</td>
|
840
1265
|
</tr>
|
841
|
-
<tr class="hide" id="
|
1266
|
+
<tr class="hide" id="pkg0_32rel0_2">
|
842
1267
|
<td colspan="2" class="even"> </td>
|
843
|
-
<td class="even"><a
|
844
|
-
 
|
1268
|
+
<td class="even"><a id="showfiles_download_file_pkg0_32rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0a2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0a2.zip');">tinymce_3_0a2.zip</a>
|
1269
|
+
|
845
1270
|
</td>
|
846
1271
|
<td class="even">562691</td>
|
847
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=551331&file_id=1286913">
|
1272
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=551331&file_id=1286913">6484</a></td>
|
848
1273
|
<td class="even">Platform-Independent</td>
|
849
1274
|
<td class="even">.zip</td>
|
850
1275
|
</tr>
|
851
1276
|
</tbody>
|
852
|
-
<tbody class="show" id="
|
853
|
-
<tr class="release" id="
|
1277
|
+
<tbody class="show" id="pkg0_33">
|
1278
|
+
<tr class="release" id="pkg0_33rel0">
|
854
1279
|
<td> </td>
|
855
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=551095" onclick="report_expand('
|
1280
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=551095" onclick="report_expand('pkg0_33rel0'); void(0); return false;" class="tdwn" id="pkg0_33rel0_0">3.0a1</a> <span class="notes"><a href="shownotes.php?release_id=551095&group_id=103281" title="View notes">Notes</a></span> <small>(2007-11-01 15:52) </small></td>
|
856
1281
|
</tr>
|
857
|
-
<tr class="hide" id="
|
1282
|
+
<tr class="hide" id="pkg0_33rel0_1">
|
858
1283
|
<td colspan="2" > </td>
|
859
|
-
<td ><a
|
860
|
-
 
|
1284
|
+
<td ><a id="showfiles_download_file_pkg0_33rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0a1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0a1_dev.zip');">tinymce_3_0a1_dev.zip</a>
|
1285
|
+
|
861
1286
|
</td>
|
862
1287
|
<td >686493</td>
|
863
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=551095&file_id=1286346">
|
1288
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=551095&file_id=1286346">157</a></td>
|
864
1289
|
<td >Platform-Independent</td>
|
865
1290
|
<td >.zip</td>
|
866
1291
|
</tr>
|
867
|
-
<tr class="hide" id="
|
1292
|
+
<tr class="hide" id="pkg0_33rel0_2">
|
868
1293
|
<td colspan="2" class="even"> </td>
|
869
|
-
<td class="even"><a
|
870
|
-
 
|
1294
|
+
<td class="even"><a id="showfiles_download_file_pkg0_33rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_3_0a1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_3_0a1.zip');">tinymce_3_0a1.zip</a>
|
1295
|
+
|
871
1296
|
</td>
|
872
1297
|
<td class="even">562408</td>
|
873
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=551095&file_id=1286345">
|
1298
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=551095&file_id=1286345">786</a></td>
|
874
1299
|
<td class="even">Platform-Independent</td>
|
875
1300
|
<td class="even">.zip</td>
|
876
1301
|
</tr>
|
877
1302
|
</tbody>
|
878
|
-
<tbody class="show" id="
|
879
|
-
<tr class="release" id="
|
1303
|
+
<tbody class="show" id="pkg0_34">
|
1304
|
+
<tr class="release" id="pkg0_34rel0">
|
880
1305
|
<td> </td>
|
881
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=533711" onclick="report_expand('
|
1306
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=533711" onclick="report_expand('pkg0_34rel0'); void(0); return false;" class="tdwn" id="pkg0_34rel0_0">2.1.2</a> <span class="notes"><a href="shownotes.php?release_id=533711&group_id=103281" title="View notes">Notes</a></span> <small>(2007-08-21 11:54) </small></td>
|
882
1307
|
</tr>
|
883
|
-
<tr class="hide" id="
|
1308
|
+
<tr class="hide" id="pkg0_34rel0_1">
|
884
1309
|
<td colspan="2" > </td>
|
885
|
-
<td ><a
|
886
|
-
 
|
1310
|
+
<td ><a id="showfiles_download_file_pkg0_34rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_2_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_2_dev.tgz');">tinymce_2_1_2_dev.tgz</a>
|
1311
|
+
|
887
1312
|
</td>
|
888
1313
|
<td >742500</td>
|
889
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=533711&file_id=1239796">
|
1314
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=533711&file_id=1239796">1805</a></td>
|
890
1315
|
<td >Platform-Independent</td>
|
891
1316
|
<td >.gz</td>
|
892
1317
|
</tr>
|
893
|
-
<tr class="hide" id="
|
1318
|
+
<tr class="hide" id="pkg0_34rel0_2">
|
894
1319
|
<td colspan="2" class="even"> </td>
|
895
|
-
<td class="even"><a
|
896
|
-
 
|
1320
|
+
<td class="even"><a id="showfiles_download_file_pkg0_34rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_2_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_2_dev.zip');">tinymce_2_1_2_dev.zip</a>
|
1321
|
+
|
897
1322
|
</td>
|
898
1323
|
<td class="even">970411</td>
|
899
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=533711&file_id=1239797">
|
1324
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=533711&file_id=1239797">7786</a></td>
|
900
1325
|
<td class="even">Platform-Independent</td>
|
901
1326
|
<td class="even">.zip</td>
|
902
1327
|
</tr>
|
903
|
-
<tr class="hide" id="
|
1328
|
+
<tr class="hide" id="pkg0_34rel0_3">
|
904
1329
|
<td colspan="2" > </td>
|
905
|
-
<td ><a
|
906
|
-
 
|
1330
|
+
<td ><a id="showfiles_download_file_pkg0_34rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_2.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_2.tgz');">tinymce_2_1_2.tgz</a>
|
1331
|
+
|
907
1332
|
</td>
|
908
1333
|
<td >447400</td>
|
909
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=533711&file_id=1239794">
|
1334
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=533711&file_id=1239794">28698</a></td>
|
910
1335
|
<td >Platform-Independent</td>
|
911
1336
|
<td >.gz</td>
|
912
1337
|
</tr>
|
913
|
-
<tr class="hide" id="
|
1338
|
+
<tr class="hide" id="pkg0_34rel0_4">
|
914
1339
|
<td colspan="2" class="even"> </td>
|
915
|
-
<td class="even"><a
|
916
|
-
 
|
1340
|
+
<td class="even"><a id="showfiles_download_file_pkg0_34rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_2.zip');">tinymce_2_1_2.zip</a>
|
1341
|
+
|
917
1342
|
</td>
|
918
1343
|
<td class="even">620954</td>
|
919
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=533711&file_id=1239795">
|
1344
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=533711&file_id=1239795">92158</a></td>
|
920
1345
|
<td class="even">Platform-Independent</td>
|
921
1346
|
<td class="even">.zip</td>
|
922
1347
|
</tr>
|
923
1348
|
</tbody>
|
924
|
-
<tbody class="show" id="
|
925
|
-
<tr class="release" id="
|
1349
|
+
<tbody class="show" id="pkg0_35">
|
1350
|
+
<tr class="release" id="pkg0_35rel0">
|
926
1351
|
<td> </td>
|
927
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=508293" onclick="report_expand('
|
1352
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=508293" onclick="report_expand('pkg0_35rel0'); void(0); return false;" class="tdwn" id="pkg0_35rel0_0">2.1.1.1</a> <span class="notes"><a href="shownotes.php?release_id=508293&group_id=103281" title="View notes">Notes</a></span> <small>(2007-05-14 15:37) </small></td>
|
928
1353
|
</tr>
|
929
|
-
<tr class="hide" id="
|
1354
|
+
<tr class="hide" id="pkg0_35rel0_1">
|
930
1355
|
<td colspan="2" > </td>
|
931
|
-
<td ><a
|
932
|
-
 
|
1356
|
+
<td ><a id="showfiles_download_file_pkg0_35rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_1_1_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_1_1_dev.tgz');">tinymce_2_1_1_1_dev.tgz</a>
|
1357
|
+
|
933
1358
|
</td>
|
934
1359
|
<td >741119</td>
|
935
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=508293&file_id=1179330">
|
1360
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=508293&file_id=1179330">1841</a></td>
|
936
1361
|
<td >Platform-Independent</td>
|
937
1362
|
<td >.gz</td>
|
938
1363
|
</tr>
|
939
|
-
<tr class="hide" id="
|
1364
|
+
<tr class="hide" id="pkg0_35rel0_2">
|
940
1365
|
<td colspan="2" class="even"> </td>
|
941
|
-
<td class="even"><a
|
942
|
-
 
|
1366
|
+
<td class="even"><a id="showfiles_download_file_pkg0_35rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_1_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_1_1_dev.zip');">tinymce_2_1_1_1_dev.zip</a>
|
1367
|
+
|
943
1368
|
</td>
|
944
1369
|
<td class="even">968699</td>
|
945
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=508293&file_id=1179331">
|
1370
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=508293&file_id=1179331">8376</a></td>
|
946
1371
|
<td class="even">Platform-Independent</td>
|
947
1372
|
<td class="even">.zip</td>
|
948
1373
|
</tr>
|
949
|
-
<tr class="hide" id="
|
1374
|
+
<tr class="hide" id="pkg0_35rel0_3">
|
950
1375
|
<td colspan="2" > </td>
|
951
|
-
<td ><a
|
952
|
-
 
|
1376
|
+
<td ><a id="showfiles_download_file_pkg0_35rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_1_1.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_1_1.tgz');">tinymce_2_1_1_1.tgz</a>
|
1377
|
+
|
953
1378
|
</td>
|
954
1379
|
<td >446656</td>
|
955
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=508293&file_id=1179328">
|
1380
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=508293&file_id=1179328">29613</a></td>
|
956
1381
|
<td >Platform-Independent</td>
|
957
1382
|
<td >.gz</td>
|
958
1383
|
</tr>
|
959
|
-
<tr class="hide" id="
|
1384
|
+
<tr class="hide" id="pkg0_35rel0_4">
|
960
1385
|
<td colspan="2" class="even"> </td>
|
961
|
-
<td class="even"><a
|
962
|
-
 
|
1386
|
+
<td class="even"><a id="showfiles_download_file_pkg0_35rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_1_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_1_1.zip');">tinymce_2_1_1_1.zip</a>
|
1387
|
+
|
963
1388
|
</td>
|
964
1389
|
<td class="even">620172</td>
|
965
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=508293&file_id=1179329">
|
1390
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=508293&file_id=1179329">94558</a></td>
|
966
1391
|
<td class="even">Platform-Independent</td>
|
967
1392
|
<td class="even">.zip</td>
|
968
1393
|
</tr>
|
969
1394
|
</tbody>
|
970
|
-
<tbody class="show" id="
|
971
|
-
<tr class="release" id="
|
1395
|
+
<tbody class="show" id="pkg0_36">
|
1396
|
+
<tr class="release" id="pkg0_36rel0">
|
972
1397
|
<td> </td>
|
973
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=506857" onclick="report_expand('
|
1398
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=506857" onclick="report_expand('pkg0_36rel0'); void(0); return false;" class="tdwn" id="pkg0_36rel0_0">2.1.1</a> <span class="notes"><a href="shownotes.php?release_id=506857&group_id=103281" title="View notes">Notes</a></span> <small>(2007-05-08 13:22) </small></td>
|
974
1399
|
</tr>
|
975
|
-
<tr class="hide" id="
|
1400
|
+
<tr class="hide" id="pkg0_36rel0_1">
|
976
1401
|
<td colspan="2" > </td>
|
977
|
-
<td ><a
|
978
|
-
 
|
1402
|
+
<td ><a id="showfiles_download_file_pkg0_36rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_1_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_1_dev.tgz');">tinymce_2_1_1_dev.tgz</a>
|
1403
|
+
|
979
1404
|
</td>
|
980
1405
|
<td >740852</td>
|
981
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=506857&file_id=1175943">
|
1406
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=506857&file_id=1175943">344</a></td>
|
982
1407
|
<td >Platform-Independent</td>
|
983
1408
|
<td >.gz</td>
|
984
1409
|
</tr>
|
985
|
-
<tr class="hide" id="
|
1410
|
+
<tr class="hide" id="pkg0_36rel0_2">
|
986
1411
|
<td colspan="2" class="even"> </td>
|
987
|
-
<td class="even"><a
|
988
|
-
 
|
1412
|
+
<td class="even"><a id="showfiles_download_file_pkg0_36rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_1_dev.zip');">tinymce_2_1_1_dev.zip</a>
|
1413
|
+
|
989
1414
|
</td>
|
990
1415
|
<td class="even">968459</td>
|
991
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=506857&file_id=1175944">
|
1416
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=506857&file_id=1175944">798</a></td>
|
992
1417
|
<td class="even">Platform-Independent</td>
|
993
1418
|
<td class="even">.zip</td>
|
994
1419
|
</tr>
|
995
|
-
<tr class="hide" id="
|
1420
|
+
<tr class="hide" id="pkg0_36rel0_3">
|
996
1421
|
<td colspan="2" > </td>
|
997
|
-
<td ><a
|
998
|
-
 
|
1422
|
+
<td ><a id="showfiles_download_file_pkg0_36rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_1.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_1.tgz');">tinymce_2_1_1.tgz</a>
|
1423
|
+
|
999
1424
|
</td>
|
1000
1425
|
<td >446513</td>
|
1001
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=506857&file_id=1175941">
|
1426
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=506857&file_id=1175941">2642</a></td>
|
1002
1427
|
<td >Platform-Independent</td>
|
1003
1428
|
<td >.gz</td>
|
1004
1429
|
</tr>
|
1005
|
-
<tr class="hide" id="
|
1430
|
+
<tr class="hide" id="pkg0_36rel0_4">
|
1006
1431
|
<td colspan="2" class="even"> </td>
|
1007
|
-
<td class="even"><a
|
1008
|
-
 
|
1432
|
+
<td class="even"><a id="showfiles_download_file_pkg0_36rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_1.zip');">tinymce_2_1_1.zip</a>
|
1433
|
+
|
1009
1434
|
</td>
|
1010
1435
|
<td class="even">620013</td>
|
1011
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=506857&file_id=1175942">
|
1436
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=506857&file_id=1175942">7132</a></td>
|
1012
1437
|
<td class="even">Platform-Independent</td>
|
1013
1438
|
<td class="even">.zip</td>
|
1014
1439
|
</tr>
|
1015
1440
|
</tbody>
|
1016
|
-
<tbody class="show" id="
|
1017
|
-
<tr class="release" id="
|
1441
|
+
<tbody class="show" id="pkg0_37">
|
1442
|
+
<tr class="release" id="pkg0_37rel0">
|
1018
1443
|
<td> </td>
|
1019
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=485937" onclick="report_expand('
|
1444
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=485937" onclick="report_expand('pkg0_37rel0'); void(0); return false;" class="tdwn" id="pkg0_37rel0_0">2.1.0</a> <span class="notes"><a href="shownotes.php?release_id=485937&group_id=103281" title="View notes">Notes</a></span> <small>(2007-02-13 13:08) </small></td>
|
1020
1445
|
</tr>
|
1021
|
-
<tr class="hide" id="
|
1446
|
+
<tr class="hide" id="pkg0_37rel0_1">
|
1022
1447
|
<td colspan="2" > </td>
|
1023
|
-
<td ><a
|
1024
|
-
 
|
1448
|
+
<td ><a id="showfiles_download_file_pkg0_37rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_0_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_0_dev.tgz');">tinymce_2_1_0_dev.tgz</a>
|
1449
|
+
|
1025
1450
|
</td>
|
1026
1451
|
<td >737390</td>
|
1027
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=485937&file_id=1124428">
|
1452
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=485937&file_id=1124428">2142</a></td>
|
1028
1453
|
<td >Platform-Independent</td>
|
1029
1454
|
<td >.gz</td>
|
1030
1455
|
</tr>
|
1031
|
-
<tr class="hide" id="
|
1456
|
+
<tr class="hide" id="pkg0_37rel0_2">
|
1032
1457
|
<td colspan="2" class="even"> </td>
|
1033
|
-
<td class="even"><a
|
1034
|
-
 
|
1458
|
+
<td class="even"><a id="showfiles_download_file_pkg0_37rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_0_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_0_dev.zip');">tinymce_2_1_0_dev.zip</a>
|
1459
|
+
|
1035
1460
|
</td>
|
1036
1461
|
<td class="even">965966</td>
|
1037
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=485937&file_id=1124429">
|
1462
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=485937&file_id=1124429">8502</a></td>
|
1038
1463
|
<td class="even">Platform-Independent</td>
|
1039
1464
|
<td class="even">.zip</td>
|
1040
1465
|
</tr>
|
1041
|
-
<tr class="hide" id="
|
1466
|
+
<tr class="hide" id="pkg0_37rel0_3">
|
1042
1467
|
<td colspan="2" > </td>
|
1043
|
-
<td ><a
|
1044
|
-
 
|
1468
|
+
<td ><a id="showfiles_download_file_pkg0_37rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_0.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_0.tgz');">tinymce_2_1_0.tgz</a>
|
1469
|
+
|
1045
1470
|
</td>
|
1046
1471
|
<td >444429</td>
|
1047
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=485937&file_id=1124426">
|
1472
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=485937&file_id=1124426">29209</a></td>
|
1048
1473
|
<td >Platform-Independent</td>
|
1049
1474
|
<td >.gz</td>
|
1050
1475
|
</tr>
|
1051
|
-
<tr class="hide" id="
|
1476
|
+
<tr class="hide" id="pkg0_37rel0_4">
|
1052
1477
|
<td colspan="2" class="even"> </td>
|
1053
|
-
<td class="even"><a
|
1054
|
-
 
|
1478
|
+
<td class="even"><a id="showfiles_download_file_pkg0_37rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_1_0.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_1_0.zip');">tinymce_2_1_0.zip</a>
|
1479
|
+
|
1055
1480
|
</td>
|
1056
1481
|
<td class="even">617449</td>
|
1057
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=485937&file_id=1124427">
|
1482
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=485937&file_id=1124427">88828</a></td>
|
1058
1483
|
<td class="even">Platform-Independent</td>
|
1059
1484
|
<td class="even">.zip</td>
|
1060
1485
|
</tr>
|
1061
1486
|
</tbody>
|
1062
|
-
<tbody class="show" id="
|
1063
|
-
<tr class="release" id="
|
1487
|
+
<tbody class="show" id="pkg0_38">
|
1488
|
+
<tr class="release" id="pkg0_38rel0">
|
1064
1489
|
<td> </td>
|
1065
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=477094" onclick="report_expand('
|
1490
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=477094" onclick="report_expand('pkg0_38rel0'); void(0); return false;" class="tdwn" id="pkg0_38rel0_0">2.0.9</a> <span class="notes"><a href="shownotes.php?release_id=477094&group_id=103281" title="View notes">Notes</a></span> <small>(2007-01-09 12:56) </small></td>
|
1066
1491
|
</tr>
|
1067
|
-
<tr class="hide" id="
|
1492
|
+
<tr class="hide" id="pkg0_38rel0_1">
|
1068
1493
|
<td colspan="2" > </td>
|
1069
|
-
<td ><a
|
1070
|
-
 
|
1494
|
+
<td ><a id="showfiles_download_file_pkg0_38rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_9_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_9_dev.tgz');">tinymce_2_0_9_dev.tgz</a>
|
1495
|
+
|
1071
1496
|
</td>
|
1072
1497
|
<td >709976</td>
|
1073
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=477094&file_id=1101054">
|
1498
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=477094&file_id=1101054">1076</a></td>
|
1074
1499
|
<td >Platform-Independent</td>
|
1075
1500
|
<td >.gz</td>
|
1076
1501
|
</tr>
|
1077
|
-
<tr class="hide" id="
|
1502
|
+
<tr class="hide" id="pkg0_38rel0_2">
|
1078
1503
|
<td colspan="2" class="even"> </td>
|
1079
|
-
<td class="even"><a
|
1080
|
-
 
|
1504
|
+
<td class="even"><a id="showfiles_download_file_pkg0_38rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_9_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_9_dev.zip');">tinymce_2_0_9_dev.zip</a>
|
1505
|
+
|
1081
1506
|
</td>
|
1082
1507
|
<td class="even">926232</td>
|
1083
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=477094&file_id=1101055">
|
1508
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=477094&file_id=1101055">3809</a></td>
|
1084
1509
|
<td class="even">Platform-Independent</td>
|
1085
1510
|
<td class="even">.zip</td>
|
1086
1511
|
</tr>
|
1087
|
-
<tr class="hide" id="
|
1512
|
+
<tr class="hide" id="pkg0_38rel0_3">
|
1088
1513
|
<td colspan="2" > </td>
|
1089
|
-
<td ><a
|
1090
|
-
 
|
1514
|
+
<td ><a id="showfiles_download_file_pkg0_38rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_9.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_9.tgz');">tinymce_2_0_9.tgz</a>
|
1515
|
+
|
1091
1516
|
</td>
|
1092
1517
|
<td >416974</td>
|
1093
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=477094&file_id=1101052">
|
1518
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=477094&file_id=1101052">12276</a></td>
|
1094
1519
|
<td >Platform-Independent</td>
|
1095
1520
|
<td >.gz</td>
|
1096
1521
|
</tr>
|
1097
|
-
<tr class="hide" id="
|
1522
|
+
<tr class="hide" id="pkg0_38rel0_4">
|
1098
1523
|
<td colspan="2" class="even"> </td>
|
1099
|
-
<td class="even"><a
|
1100
|
-
 
|
1524
|
+
<td class="even"><a id="showfiles_download_file_pkg0_38rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_9.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_9.zip');">tinymce_2_0_9.zip</a>
|
1525
|
+
|
1101
1526
|
</td>
|
1102
1527
|
<td class="even">580981</td>
|
1103
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=477094&file_id=1101053">
|
1528
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=477094&file_id=1101053">39255</a></td>
|
1104
1529
|
<td class="even">Platform-Independent</td>
|
1105
1530
|
<td class="even">.zip</td>
|
1106
1531
|
</tr>
|
1107
1532
|
</tbody>
|
1108
|
-
<tbody class="show" id="
|
1109
|
-
<tr class="release" id="
|
1533
|
+
<tbody class="show" id="pkg0_39">
|
1534
|
+
<tr class="release" id="pkg0_39rel0">
|
1110
1535
|
<td> </td>
|
1111
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=457830" onclick="report_expand('
|
1536
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=457830" onclick="report_expand('pkg0_39rel0'); void(0); return false;" class="tdwn" id="pkg0_39rel0_0">2.0.8</a> <span class="notes"><a href="shownotes.php?release_id=457830&group_id=103281" title="View notes">Notes</a></span> <small>(2006-10-23 11:43) </small></td>
|
1112
1537
|
</tr>
|
1113
|
-
<tr class="hide" id="
|
1538
|
+
<tr class="hide" id="pkg0_39rel0_1">
|
1114
1539
|
<td colspan="2" > </td>
|
1115
|
-
<td ><a
|
1116
|
-
 
|
1540
|
+
<td ><a id="showfiles_download_file_pkg0_39rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_8_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_8_dev.tgz');">tinymce_2_0_8_dev.tgz</a>
|
1541
|
+
|
1117
1542
|
</td>
|
1118
1543
|
<td >766969</td>
|
1119
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=457830&file_id=1054854">
|
1544
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=457830&file_id=1054854">1568</a></td>
|
1120
1545
|
<td >Platform-Independent</td>
|
1121
1546
|
<td >.gz</td>
|
1122
1547
|
</tr>
|
1123
|
-
<tr class="hide" id="
|
1548
|
+
<tr class="hide" id="pkg0_39rel0_2">
|
1124
1549
|
<td colspan="2" class="even"> </td>
|
1125
|
-
<td class="even"><a
|
1126
|
-
 
|
1550
|
+
<td class="even"><a id="showfiles_download_file_pkg0_39rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_8_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_8_dev.zip');">tinymce_2_0_8_dev.zip</a>
|
1551
|
+
|
1127
1552
|
</td>
|
1128
1553
|
<td class="even">1092611</td>
|
1129
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=457830&file_id=1054855">
|
1554
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=457830&file_id=1054855">6544</a></td>
|
1130
1555
|
<td class="even">Platform-Independent</td>
|
1131
1556
|
<td class="even">.zip</td>
|
1132
1557
|
</tr>
|
1133
|
-
<tr class="hide" id="
|
1558
|
+
<tr class="hide" id="pkg0_39rel0_3">
|
1134
1559
|
<td colspan="2" > </td>
|
1135
|
-
<td ><a
|
1136
|
-
 
|
1560
|
+
<td ><a id="showfiles_download_file_pkg0_39rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_8.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_8.tgz');">tinymce_2_0_8.tgz</a>
|
1561
|
+
|
1137
1562
|
</td>
|
1138
1563
|
<td >481230</td>
|
1139
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=457830&file_id=1054852">
|
1564
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=457830&file_id=1054852">19918</a></td>
|
1140
1565
|
<td >Platform-Independent</td>
|
1141
1566
|
<td >.gz</td>
|
1142
1567
|
</tr>
|
1143
|
-
<tr class="hide" id="
|
1568
|
+
<tr class="hide" id="pkg0_39rel0_4">
|
1144
1569
|
<td colspan="2" class="even"> </td>
|
1145
|
-
<td class="even"><a
|
1146
|
-
 
|
1570
|
+
<td class="even"><a id="showfiles_download_file_pkg0_39rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_8.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_8.zip');">tinymce_2_0_8.zip</a>
|
1571
|
+
|
1147
1572
|
</td>
|
1148
1573
|
<td class="even">755487</td>
|
1149
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=457830&file_id=1054853">
|
1574
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=457830&file_id=1054853">72004</a></td>
|
1150
1575
|
<td class="even">Platform-Independent</td>
|
1151
1576
|
<td class="even">.zip</td>
|
1152
1577
|
</tr>
|
1153
1578
|
</tbody>
|
1154
|
-
<tbody class="show" id="
|
1155
|
-
<tr class="release" id="
|
1579
|
+
<tbody class="show" id="pkg0_40">
|
1580
|
+
<tr class="release" id="pkg0_40rel0">
|
1156
1581
|
<td> </td>
|
1157
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=456293" onclick="report_expand('
|
1582
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=456293" onclick="report_expand('pkg0_40rel0'); void(0); return false;" class="tdwn" id="pkg0_40rel0_0">2.0.7</a> <span class="notes"><a href="shownotes.php?release_id=456293&group_id=103281" title="View notes">Notes</a></span> <small>(2006-10-17 11:01) </small></td>
|
1158
1583
|
</tr>
|
1159
|
-
<tr class="hide" id="
|
1584
|
+
<tr class="hide" id="pkg0_40rel0_1">
|
1160
1585
|
<td colspan="2" > </td>
|
1161
|
-
<td ><a
|
1162
|
-
 
|
1586
|
+
<td ><a id="showfiles_download_file_pkg0_40rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_7_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_7_dev.tgz');">tinymce_2_0_7_dev.tgz</a>
|
1587
|
+
|
1163
1588
|
</td>
|
1164
1589
|
<td >777233</td>
|
1165
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=456293&file_id=1050918">
|
1590
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=456293&file_id=1050918">343</a></td>
|
1166
1591
|
<td >Platform-Independent</td>
|
1167
1592
|
<td >.gz</td>
|
1168
1593
|
</tr>
|
1169
|
-
<tr class="hide" id="
|
1594
|
+
<tr class="hide" id="pkg0_40rel0_2">
|
1170
1595
|
<td colspan="2" class="even"> </td>
|
1171
|
-
<td class="even"><a
|
1172
|
-
 
|
1596
|
+
<td class="even"><a id="showfiles_download_file_pkg0_40rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_7_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_7_dev.zip');">tinymce_2_0_7_dev.zip</a>
|
1597
|
+
|
1173
1598
|
</td>
|
1174
1599
|
<td class="even">1094770</td>
|
1175
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=456293&file_id=1050919">
|
1600
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=456293&file_id=1050919">812</a></td>
|
1176
1601
|
<td class="even">Platform-Independent</td>
|
1177
1602
|
<td class="even">.zip</td>
|
1178
1603
|
</tr>
|
1179
|
-
<tr class="hide" id="
|
1604
|
+
<tr class="hide" id="pkg0_40rel0_3">
|
1180
1605
|
<td colspan="2" > </td>
|
1181
|
-
<td ><a
|
1182
|
-
 
|
1606
|
+
<td ><a id="showfiles_download_file_pkg0_40rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_7.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_7.tgz');">tinymce_2_0_7.tgz</a>
|
1607
|
+
|
1183
1608
|
</td>
|
1184
1609
|
<td >539699</td>
|
1185
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=456293&file_id=1050916">
|
1610
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=456293&file_id=1050916">3204</a></td>
|
1186
1611
|
<td >Platform-Independent</td>
|
1187
1612
|
<td >.gz</td>
|
1188
1613
|
</tr>
|
1189
|
-
<tr class="hide" id="
|
1614
|
+
<tr class="hide" id="pkg0_40rel0_4">
|
1190
1615
|
<td colspan="2" class="even"> </td>
|
1191
|
-
<td class="even"><a
|
1192
|
-
 
|
1616
|
+
<td class="even"><a id="showfiles_download_file_pkg0_40rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_7.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_7.zip');">tinymce_2_0_7.zip</a>
|
1617
|
+
|
1193
1618
|
</td>
|
1194
1619
|
<td class="even">820775</td>
|
1195
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=456293&file_id=1050917">
|
1620
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=456293&file_id=1050917">8414</a></td>
|
1196
1621
|
<td class="even">Platform-Independent</td>
|
1197
1622
|
<td class="even">.zip</td>
|
1198
1623
|
</tr>
|
1199
1624
|
</tbody>
|
1200
|
-
<tbody class="show" id="
|
1201
|
-
<tr class="release" id="
|
1625
|
+
<tbody class="show" id="pkg0_41">
|
1626
|
+
<tr class="release" id="pkg0_41rel0">
|
1202
1627
|
<td> </td>
|
1203
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=414700" onclick="report_expand('
|
1628
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=414700" onclick="report_expand('pkg0_41rel0'); void(0); return false;" class="tdwn" id="pkg0_41rel0_0">2.0.6.1</a> <span class="notes"><a href="shownotes.php?release_id=414700&group_id=103281" title="View notes">Notes</a></span> <small>(2006-05-04 07:33) </small></td>
|
1204
1629
|
</tr>
|
1205
|
-
<tr class="hide" id="
|
1630
|
+
<tr class="hide" id="pkg0_41rel0_1">
|
1206
1631
|
<td colspan="2" > </td>
|
1207
|
-
<td ><a
|
1208
|
-
 
|
1632
|
+
<td ><a id="showfiles_download_file_pkg0_41rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6_1_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6_1_dev.tgz');">tinymce_2_0_6_1_dev.tgz</a>
|
1633
|
+
|
1209
1634
|
</td>
|
1210
1635
|
<td >678810</td>
|
1211
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414700&file_id=948264">
|
1636
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414700&file_id=948264">2245</a></td>
|
1212
1637
|
<td >Platform-Independent</td>
|
1213
1638
|
<td >.gz</td>
|
1214
1639
|
</tr>
|
1215
|
-
<tr class="hide" id="
|
1640
|
+
<tr class="hide" id="pkg0_41rel0_2">
|
1216
1641
|
<td colspan="2" class="even"> </td>
|
1217
|
-
<td class="even"><a
|
1218
|
-
 
|
1642
|
+
<td class="even"><a id="showfiles_download_file_pkg0_41rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6_1_dev.zip');">tinymce_2_0_6_1_dev.zip</a>
|
1643
|
+
|
1219
1644
|
</td>
|
1220
1645
|
<td class="even">994537</td>
|
1221
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414700&file_id=948265">
|
1646
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414700&file_id=948265">11487</a></td>
|
1222
1647
|
<td class="even">Platform-Independent</td>
|
1223
1648
|
<td class="even">.zip</td>
|
1224
1649
|
</tr>
|
1225
|
-
<tr class="hide" id="
|
1650
|
+
<tr class="hide" id="pkg0_41rel0_3">
|
1226
1651
|
<td colspan="2" > </td>
|
1227
|
-
<td ><a
|
1228
|
-
 
|
1652
|
+
<td ><a id="showfiles_download_file_pkg0_41rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6_1.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6_1.tgz');">tinymce_2_0_6_1.tgz</a>
|
1653
|
+
|
1229
1654
|
</td>
|
1230
1655
|
<td >553652</td>
|
1231
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414700&file_id=948262">
|
1656
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414700&file_id=948262">37734</a></td>
|
1232
1657
|
<td >Platform-Independent</td>
|
1233
1658
|
<td >.gz</td>
|
1234
1659
|
</tr>
|
1235
|
-
<tr class="hide" id="
|
1660
|
+
<tr class="hide" id="pkg0_41rel0_4">
|
1236
1661
|
<td colspan="2" class="even"> </td>
|
1237
|
-
<td class="even"><a
|
1238
|
-
 
|
1662
|
+
<td class="even"><a id="showfiles_download_file_pkg0_41rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6_1.zip');">tinymce_2_0_6_1.zip</a>
|
1663
|
+
|
1239
1664
|
</td>
|
1240
1665
|
<td class="even">833181</td>
|
1241
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414700&file_id=948263">
|
1666
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414700&file_id=948263">128029</a></td>
|
1242
1667
|
<td class="even">Platform-Independent</td>
|
1243
1668
|
<td class="even">.zip</td>
|
1244
1669
|
</tr>
|
1245
1670
|
</tbody>
|
1246
|
-
<tbody class="show" id="
|
1247
|
-
<tr class="release" id="
|
1671
|
+
<tbody class="show" id="pkg0_42">
|
1672
|
+
<tr class="release" id="pkg0_42rel0">
|
1248
1673
|
<td> </td>
|
1249
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=414521" onclick="report_expand('
|
1674
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=414521" onclick="report_expand('pkg0_42rel0'); void(0); return false;" class="tdwn" id="pkg0_42rel0_0">2.0.6</a> <span class="notes"><a href="shownotes.php?release_id=414521&group_id=103281" title="View notes">Notes</a></span> <small>(2006-05-03 13:43) </small></td>
|
1250
1675
|
</tr>
|
1251
|
-
<tr class="hide" id="
|
1676
|
+
<tr class="hide" id="pkg0_42rel0_1">
|
1252
1677
|
<td colspan="2" > </td>
|
1253
|
-
<td ><a
|
1254
|
-
 
|
1678
|
+
<td ><a id="showfiles_download_file_pkg0_42rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6_dev.tgz');">tinymce_2_0_6_dev.tgz</a>
|
1679
|
+
|
1255
1680
|
</td>
|
1256
1681
|
<td >673298</td>
|
1257
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947726">
|
1682
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947726">154</a></td>
|
1258
1683
|
<td >None</td>
|
1259
1684
|
<td >None</td>
|
1260
1685
|
</tr>
|
1261
|
-
<tr class="hide" id="
|
1686
|
+
<tr class="hide" id="pkg0_42rel0_2">
|
1262
1687
|
<td colspan="2" class="even"> </td>
|
1263
|
-
<td class="even"><a
|
1264
|
-
 
|
1688
|
+
<td class="even"><a id="showfiles_download_file_pkg0_42rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6_dev.tgz');">tinymce_2_0_6_dev.tgz</a>
|
1689
|
+
|
1265
1690
|
</td>
|
1266
1691
|
<td class="even">673298</td>
|
1267
1692
|
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947725">0</a></td>
|
1268
1693
|
<td class="even">None</td>
|
1269
1694
|
<td class="even">None</td>
|
1270
1695
|
</tr>
|
1271
|
-
<tr class="hide" id="
|
1696
|
+
<tr class="hide" id="pkg0_42rel0_3">
|
1272
1697
|
<td colspan="2" > </td>
|
1273
|
-
<td ><a
|
1274
|
-
 
|
1698
|
+
<td ><a id="showfiles_download_file_pkg0_42rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6_dev.zip');">tinymce_2_0_6_dev.zip</a>
|
1699
|
+
|
1275
1700
|
</td>
|
1276
1701
|
<td >991628</td>
|
1277
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947728">
|
1702
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947728">164</a></td>
|
1278
1703
|
<td >None</td>
|
1279
1704
|
<td >None</td>
|
1280
1705
|
</tr>
|
1281
|
-
<tr class="hide" id="
|
1706
|
+
<tr class="hide" id="pkg0_42rel0_4">
|
1282
1707
|
<td colspan="2" class="even"> </td>
|
1283
|
-
<td class="even"><a
|
1284
|
-
 
|
1708
|
+
<td class="even"><a id="showfiles_download_file_pkg0_42rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6_dev.zip');">tinymce_2_0_6_dev.zip</a>
|
1709
|
+
|
1285
1710
|
</td>
|
1286
1711
|
<td class="even">991628</td>
|
1287
1712
|
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947727">0</a></td>
|
1288
1713
|
<td class="even">None</td>
|
1289
1714
|
<td class="even">None</td>
|
1290
1715
|
</tr>
|
1291
|
-
<tr class="hide" id="
|
1716
|
+
<tr class="hide" id="pkg0_42rel0_5">
|
1292
1717
|
<td colspan="2" > </td>
|
1293
|
-
<td ><a
|
1294
|
-
 
|
1718
|
+
<td ><a id="showfiles_download_file_pkg0_42rel0_5" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6.tgz');">tinymce_2_0_6.tgz</a>
|
1719
|
+
|
1295
1720
|
</td>
|
1296
1721
|
<td >548776</td>
|
1297
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947722">
|
1722
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947722">481</a></td>
|
1298
1723
|
<td >None</td>
|
1299
1724
|
<td >None</td>
|
1300
1725
|
</tr>
|
1301
|
-
<tr class="hide" id="
|
1726
|
+
<tr class="hide" id="pkg0_42rel0_6">
|
1302
1727
|
<td colspan="2" class="even"> </td>
|
1303
|
-
<td class="even"><a
|
1304
|
-
 
|
1728
|
+
<td class="even"><a id="showfiles_download_file_pkg0_42rel0_6" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6.zip');">tinymce_2_0_6.zip</a>
|
1729
|
+
|
1305
1730
|
</td>
|
1306
1731
|
<td class="even">830891</td>
|
1307
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=
|
1732
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947723">0</a></td>
|
1308
1733
|
<td class="even">None</td>
|
1309
1734
|
<td class="even">None</td>
|
1310
1735
|
</tr>
|
1311
|
-
<tr class="hide" id="
|
1736
|
+
<tr class="hide" id="pkg0_42rel0_7">
|
1312
1737
|
<td colspan="2" > </td>
|
1313
|
-
<td ><a
|
1314
|
-
 
|
1738
|
+
<td ><a id="showfiles_download_file_pkg0_42rel0_7" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_6.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_6.zip');">tinymce_2_0_6.zip</a>
|
1739
|
+
|
1315
1740
|
</td>
|
1316
1741
|
<td >830891</td>
|
1317
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=
|
1742
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=414521&file_id=947724">968</a></td>
|
1318
1743
|
<td >None</td>
|
1319
1744
|
<td >None</td>
|
1320
1745
|
</tr>
|
1321
1746
|
</tbody>
|
1322
|
-
<tbody class="show" id="
|
1323
|
-
<tr class="release" id="
|
1747
|
+
<tbody class="show" id="pkg0_43">
|
1748
|
+
<tr class="release" id="pkg0_43rel0">
|
1324
1749
|
<td> </td>
|
1325
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=403763" onclick="report_expand('
|
1750
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=403763" onclick="report_expand('pkg0_43rel0'); void(0); return false;" class="tdwn" id="pkg0_43rel0_0">2.0.5.1</a> <span class="notes"><a href="shownotes.php?release_id=403763&group_id=103281" title="View notes">Notes</a></span> <small>(2006-03-22 15:20) </small></td>
|
1326
1751
|
</tr>
|
1327
|
-
<tr class="hide" id="
|
1752
|
+
<tr class="hide" id="pkg0_43rel0_1">
|
1328
1753
|
<td colspan="2" > </td>
|
1329
|
-
<td ><a
|
1330
|
-
 
|
1754
|
+
<td ><a id="showfiles_download_file_pkg0_43rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_5_1_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_5_1_dev.tgz');">tinymce_2_0_5_1_dev.tgz</a>
|
1755
|
+
|
1331
1756
|
</td>
|
1332
1757
|
<td >627042</td>
|
1333
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403763&file_id=917599">
|
1758
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403763&file_id=917599">611</a></td>
|
1334
1759
|
<td >Platform-Independent</td>
|
1335
1760
|
<td >.gz</td>
|
1336
1761
|
</tr>
|
1337
|
-
<tr class="hide" id="
|
1762
|
+
<tr class="hide" id="pkg0_43rel0_2">
|
1338
1763
|
<td colspan="2" class="even"> </td>
|
1339
|
-
<td class="even"><a
|
1340
|
-
 
|
1764
|
+
<td class="even"><a id="showfiles_download_file_pkg0_43rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_5_1_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_5_1_dev.zip');">tinymce_2_0_5_1_dev.zip</a>
|
1765
|
+
|
1341
1766
|
</td>
|
1342
1767
|
<td class="even">928968</td>
|
1343
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403763&file_id=917600">
|
1768
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403763&file_id=917600">2573</a></td>
|
1344
1769
|
<td class="even">Platform-Independent</td>
|
1345
1770
|
<td class="even">.zip</td>
|
1346
1771
|
</tr>
|
1347
|
-
<tr class="hide" id="
|
1772
|
+
<tr class="hide" id="pkg0_43rel0_3">
|
1348
1773
|
<td colspan="2" > </td>
|
1349
|
-
<td ><a
|
1350
|
-
 
|
1774
|
+
<td ><a id="showfiles_download_file_pkg0_43rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_5_1.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_5_1.tgz');">tinymce_2_0_5_1.tgz</a>
|
1775
|
+
|
1351
1776
|
</td>
|
1352
1777
|
<td >404408</td>
|
1353
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403763&file_id=917597">
|
1778
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403763&file_id=917597">7149</a></td>
|
1354
1779
|
<td >Platform-Independent</td>
|
1355
1780
|
<td >.gz</td>
|
1356
1781
|
</tr>
|
1357
|
-
<tr class="hide" id="
|
1782
|
+
<tr class="hide" id="pkg0_43rel0_4">
|
1358
1783
|
<td colspan="2" class="even"> </td>
|
1359
|
-
<td class="even"><a
|
1360
|
-
 
|
1784
|
+
<td class="even"><a id="showfiles_download_file_pkg0_43rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_5_1.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_5_1.zip');">tinymce_2_0_5_1.zip</a>
|
1785
|
+
|
1361
1786
|
</td>
|
1362
1787
|
<td class="even">631594</td>
|
1363
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403763&file_id=917598">
|
1788
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403763&file_id=917598">25273</a></td>
|
1364
1789
|
<td class="even">Platform-Independent</td>
|
1365
1790
|
<td class="even">.zip</td>
|
1366
1791
|
</tr>
|
1367
1792
|
</tbody>
|
1368
|
-
<tbody class="show" id="
|
1369
|
-
<tr class="release" id="
|
1793
|
+
<tbody class="show" id="pkg0_44">
|
1794
|
+
<tr class="release" id="pkg0_44rel0">
|
1370
1795
|
<td> </td>
|
1371
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=403434" onclick="report_expand('
|
1796
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=403434" onclick="report_expand('pkg0_44rel0'); void(0); return false;" class="tdwn" id="pkg0_44rel0_0">2.0.5</a> <span class="notes"><a href="shownotes.php?release_id=403434&group_id=103281" title="View notes">Notes</a></span> <small>(2006-03-21 15:32) </small></td>
|
1372
1797
|
</tr>
|
1373
|
-
<tr class="hide" id="
|
1798
|
+
<tr class="hide" id="pkg0_44rel0_1">
|
1374
1799
|
<td colspan="2" > </td>
|
1375
|
-
<td ><a
|
1376
|
-
 
|
1800
|
+
<td ><a id="showfiles_download_file_pkg0_44rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_5_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_5_dev.tgz');">tinymce_2_0_5_dev.tgz</a>
|
1801
|
+
|
1377
1802
|
</td>
|
1378
1803
|
<td >627109</td>
|
1379
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403434&file_id=916790">
|
1804
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403434&file_id=916790">105</a></td>
|
1380
1805
|
<td >Platform-Independent</td>
|
1381
1806
|
<td >.gz</td>
|
1382
1807
|
</tr>
|
1383
|
-
<tr class="hide" id="
|
1808
|
+
<tr class="hide" id="pkg0_44rel0_2">
|
1384
1809
|
<td colspan="2" class="even"> </td>
|
1385
|
-
<td class="even"><a
|
1386
|
-
 
|
1810
|
+
<td class="even"><a id="showfiles_download_file_pkg0_44rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_5_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_5_dev.zip');">tinymce_2_0_5_dev.zip</a>
|
1811
|
+
|
1387
1812
|
</td>
|
1388
1813
|
<td class="even">928597</td>
|
1389
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403434&file_id=916791">
|
1814
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403434&file_id=916791">201</a></td>
|
1390
1815
|
<td class="even">Platform-Independent</td>
|
1391
1816
|
<td class="even">.zip</td>
|
1392
1817
|
</tr>
|
1393
|
-
<tr class="hide" id="
|
1818
|
+
<tr class="hide" id="pkg0_44rel0_3">
|
1394
1819
|
<td colspan="2" > </td>
|
1395
|
-
<td ><a
|
1396
|
-
 
|
1820
|
+
<td ><a id="showfiles_download_file_pkg0_44rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_5.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_5.tgz');">tinymce_2_0_5.tgz</a>
|
1821
|
+
|
1397
1822
|
</td>
|
1398
1823
|
<td >404451</td>
|
1399
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403434&file_id=916788">
|
1824
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403434&file_id=916788">976</a></td>
|
1400
1825
|
<td >Platform-Independent</td>
|
1401
1826
|
<td >.gz</td>
|
1402
1827
|
</tr>
|
1403
|
-
<tr class="hide" id="
|
1828
|
+
<tr class="hide" id="pkg0_44rel0_4">
|
1404
1829
|
<td colspan="2" class="even"> </td>
|
1405
|
-
<td class="even"><a
|
1406
|
-
 
|
1830
|
+
<td class="even"><a id="showfiles_download_file_pkg0_44rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_5.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_5.zip');">tinymce_2_0_5.zip</a>
|
1831
|
+
|
1407
1832
|
</td>
|
1408
1833
|
<td class="even">631381</td>
|
1409
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403434&file_id=916789">
|
1834
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=403434&file_id=916789">1198</a></td>
|
1410
1835
|
<td class="even">Platform-Independent</td>
|
1411
1836
|
<td class="even">.zip</td>
|
1412
1837
|
</tr>
|
1413
1838
|
</tbody>
|
1414
|
-
<tbody class="show" id="
|
1415
|
-
<tr class="release" id="
|
1839
|
+
<tbody class="show" id="pkg0_45">
|
1840
|
+
<tr class="release" id="pkg0_45rel0">
|
1416
1841
|
<td> </td>
|
1417
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=396233" onclick="report_expand('
|
1842
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=396233" onclick="report_expand('pkg0_45rel0'); void(0); return false;" class="tdwn" id="pkg0_45rel0_0">2.0.4</a> <span class="notes"><a href="shownotes.php?release_id=396233&group_id=103281" title="View notes">Notes</a></span> <small>(2006-02-24 13:07) </small></td>
|
1418
1843
|
</tr>
|
1419
|
-
<tr class="hide" id="
|
1844
|
+
<tr class="hide" id="pkg0_45rel0_1">
|
1420
1845
|
<td colspan="2" > </td>
|
1421
|
-
<td ><a
|
1422
|
-
 
|
1846
|
+
<td ><a id="showfiles_download_file_pkg0_45rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_4_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_4_dev.tgz');">tinymce_2_0_4_dev.tgz</a>
|
1847
|
+
|
1423
1848
|
</td>
|
1424
1849
|
<td >1364722</td>
|
1425
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=396233&file_id=899012">
|
1850
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=396233&file_id=899012">478</a></td>
|
1426
1851
|
<td >Platform-Independent</td>
|
1427
1852
|
<td >.gz</td>
|
1428
1853
|
</tr>
|
1429
|
-
<tr class="hide" id="
|
1854
|
+
<tr class="hide" id="pkg0_45rel0_2">
|
1430
1855
|
<td colspan="2" class="even"> </td>
|
1431
|
-
<td class="even"><a
|
1432
|
-
 
|
1856
|
+
<td class="even"><a id="showfiles_download_file_pkg0_45rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_4_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_4_dev.zip');">tinymce_2_0_4_dev.zip</a>
|
1857
|
+
|
1433
1858
|
</td>
|
1434
1859
|
<td class="even">1898406</td>
|
1435
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=396233&file_id=899013">
|
1860
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=396233&file_id=899013">2287</a></td>
|
1436
1861
|
<td class="even">Platform-Independent</td>
|
1437
1862
|
<td class="even">.zip</td>
|
1438
1863
|
</tr>
|
1439
|
-
<tr class="hide" id="
|
1864
|
+
<tr class="hide" id="pkg0_45rel0_3">
|
1440
1865
|
<td colspan="2" > </td>
|
1441
|
-
<td ><a
|
1442
|
-
 
|
1866
|
+
<td ><a id="showfiles_download_file_pkg0_45rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_4.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_4.tgz');">tinymce_2_0_4.tgz</a>
|
1867
|
+
|
1443
1868
|
</td>
|
1444
1869
|
<td >1269798</td>
|
1445
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=396233&file_id=899010">
|
1870
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=396233&file_id=899010">4584</a></td>
|
1446
1871
|
<td >Platform-Independent</td>
|
1447
1872
|
<td >.gz</td>
|
1448
1873
|
</tr>
|
1449
|
-
<tr class="hide" id="
|
1874
|
+
<tr class="hide" id="pkg0_45rel0_4">
|
1450
1875
|
<td colspan="2" class="even"> </td>
|
1451
|
-
<td class="even"><a
|
1452
|
-
 
|
1876
|
+
<td class="even"><a id="showfiles_download_file_pkg0_45rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_4.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_4.zip');">tinymce_2_0_4.zip</a>
|
1877
|
+
|
1453
1878
|
</td>
|
1454
1879
|
<td class="even">1783204</td>
|
1455
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=396233&file_id=899011">
|
1880
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=396233&file_id=899011">15522</a></td>
|
1456
1881
|
<td class="even">Platform-Independent</td>
|
1457
1882
|
<td class="even">.zip</td>
|
1458
1883
|
</tr>
|
1459
1884
|
</tbody>
|
1460
|
-
<tbody class="show" id="
|
1461
|
-
<tr class="release" id="
|
1885
|
+
<tbody class="show" id="pkg0_46">
|
1886
|
+
<tr class="release" id="pkg0_46rel0">
|
1462
1887
|
<td> </td>
|
1463
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=393305" onclick="report_expand('
|
1888
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=393305" onclick="report_expand('pkg0_46rel0'); void(0); return false;" class="tdwn" id="pkg0_46rel0_0">2.0.3</a> <span class="notes"><a href="shownotes.php?release_id=393305&group_id=103281" title="View notes">Notes</a></span> <small>(2006-02-13 18:57) </small></td>
|
1464
1889
|
</tr>
|
1465
|
-
<tr class="hide" id="
|
1890
|
+
<tr class="hide" id="pkg0_46rel0_1">
|
1466
1891
|
<td colspan="2" > </td>
|
1467
|
-
<td ><a
|
1468
|
-
 
|
1892
|
+
<td ><a id="showfiles_download_file_pkg0_46rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_3_dev.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_3_dev.tgz');">tinymce_2_0_3_dev.tgz</a>
|
1893
|
+
|
1469
1894
|
</td>
|
1470
1895
|
<td >1360149</td>
|
1471
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=393305&file_id=891902">
|
1896
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=393305&file_id=891902">358</a></td>
|
1472
1897
|
<td >Platform-Independent</td>
|
1473
1898
|
<td >.gz</td>
|
1474
1899
|
</tr>
|
1475
|
-
<tr class="hide" id="
|
1900
|
+
<tr class="hide" id="pkg0_46rel0_2">
|
1476
1901
|
<td colspan="2" class="even"> </td>
|
1477
|
-
<td class="even"><a
|
1478
|
-
 
|
1902
|
+
<td class="even"><a id="showfiles_download_file_pkg0_46rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_3_dev.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_3_dev.zip');">tinymce_2_0_3_dev.zip</a>
|
1903
|
+
|
1479
1904
|
</td>
|
1480
1905
|
<td class="even">1894247</td>
|
1481
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=393305&file_id=891903">
|
1906
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=393305&file_id=891903">1415</a></td>
|
1482
1907
|
<td class="even">Platform-Independent</td>
|
1483
1908
|
<td class="even">.zip</td>
|
1484
1909
|
</tr>
|
1485
|
-
<tr class="hide" id="
|
1910
|
+
<tr class="hide" id="pkg0_46rel0_3">
|
1486
1911
|
<td colspan="2" > </td>
|
1487
|
-
<td ><a
|
1488
|
-
 
|
1912
|
+
<td ><a id="showfiles_download_file_pkg0_46rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_3.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_3.tgz');">tinymce_2_0_3.tgz</a>
|
1913
|
+
|
1489
1914
|
</td>
|
1490
1915
|
<td >1268072</td>
|
1491
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=393305&file_id=891900">
|
1916
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=393305&file_id=891900">5221</a></td>
|
1492
1917
|
<td >Platform-Independent</td>
|
1493
1918
|
<td >.gz</td>
|
1494
1919
|
</tr>
|
1495
|
-
<tr class="hide" id="
|
1920
|
+
<tr class="hide" id="pkg0_46rel0_4">
|
1496
1921
|
<td colspan="2" class="even"> </td>
|
1497
|
-
<td class="even"><a
|
1498
|
-
 
|
1922
|
+
<td class="even"><a id="showfiles_download_file_pkg0_46rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_3.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_3.zip');">tinymce_2_0_3.zip</a>
|
1923
|
+
|
1499
1924
|
</td>
|
1500
1925
|
<td class="even">1781277</td>
|
1501
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=393305&file_id=891901">
|
1926
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=393305&file_id=891901">12483</a></td>
|
1502
1927
|
<td class="even">Platform-Independent</td>
|
1503
1928
|
<td class="even">.zip</td>
|
1504
1929
|
</tr>
|
1505
1930
|
</tbody>
|
1506
|
-
<tbody class="show" id="
|
1507
|
-
<tr class="release" id="
|
1931
|
+
<tbody class="show" id="pkg0_47">
|
1932
|
+
<tr class="release" id="pkg0_47rel0">
|
1508
1933
|
<td> </td>
|
1509
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=226501" onclick="report_expand('
|
1934
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=226501" onclick="report_expand('pkg0_47rel0'); void(0); return false;" class="tdwn" id="pkg0_47rel0_0">2.02</a> <span class="notes"><a href="shownotes.php?release_id=226501&group_id=103281" title="View notes">Notes</a></span> <small>(2006-01-24 15:28) </small></td>
|
1510
1935
|
</tr>
|
1511
|
-
<tr class="hide" id="
|
1936
|
+
<tr class="hide" id="pkg0_47rel0_1">
|
1512
1937
|
<td colspan="2" > </td>
|
1513
|
-
<td ><a
|
1514
|
-
 
|
1938
|
+
<td ><a id="showfiles_download_file_pkg0_47rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_1_45.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_1_45.tgz');">tinymce_1_45.tgz</a>
|
1939
|
+
|
1515
1940
|
</td>
|
1516
1941
|
<td >1065601</td>
|
1517
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=751946">
|
1942
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=751946">7899</a></td>
|
1518
1943
|
<td >Platform-Independent</td>
|
1519
1944
|
<td >.gz</td>
|
1520
1945
|
</tr>
|
1521
|
-
<tr class="hide" id="
|
1946
|
+
<tr class="hide" id="pkg0_47rel0_2">
|
1522
1947
|
<td colspan="2" class="even"> </td>
|
1523
|
-
<td class="even"><a
|
1524
|
-
 
|
1948
|
+
<td class="even"><a id="showfiles_download_file_pkg0_47rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_1_45.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_1_45.zip');">tinymce_1_45.zip</a>
|
1949
|
+
|
1525
1950
|
</td>
|
1526
1951
|
<td class="even">1443593</td>
|
1527
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=751947">
|
1952
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=751947">27191</a></td>
|
1528
1953
|
<td class="even">Platform-Independent</td>
|
1529
1954
|
<td class="even">.zip</td>
|
1530
1955
|
</tr>
|
1531
|
-
<tr class="hide" id="
|
1956
|
+
<tr class="hide" id="pkg0_47rel0_3">
|
1532
1957
|
<td colspan="2" > </td>
|
1533
|
-
<td ><a
|
1534
|
-
 
|
1958
|
+
<td ><a id="showfiles_download_file_pkg0_47rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_2.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_2.tgz');">tinymce_2_0_2.tgz</a>
|
1959
|
+
|
1535
1960
|
</td>
|
1536
1961
|
<td >1091458</td>
|
1537
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=878090">
|
1962
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=878090">4200</a></td>
|
1538
1963
|
<td >Platform-Independent</td>
|
1539
1964
|
<td >.gz</td>
|
1540
1965
|
</tr>
|
1541
|
-
<tr class="hide" id="
|
1966
|
+
<tr class="hide" id="pkg0_47rel0_4">
|
1542
1967
|
<td colspan="2" class="even"> </td>
|
1543
|
-
<td class="even"><a
|
1544
|
-
 
|
1968
|
+
<td class="even"><a id="showfiles_download_file_pkg0_47rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_2_0_2.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_2_0_2.zip');">tinymce_2_0_2.zip</a>
|
1969
|
+
|
1545
1970
|
</td>
|
1546
1971
|
<td class="even">1574690</td>
|
1547
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=878091">
|
1972
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=878091">12446</a></td>
|
1548
1973
|
<td class="even">Platform-Independent</td>
|
1549
1974
|
<td class="even">.zip</td>
|
1550
1975
|
</tr>
|
1551
|
-
<tr class="hide" id="
|
1976
|
+
<tr class="hide" id="pkg0_47rel0_5">
|
1552
1977
|
<td colspan="2" > </td>
|
1553
|
-
<td ><a
|
1554
|
-
 
|
1978
|
+
<td ><a id="showfiles_download_file_pkg0_47rel0_5" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_compressor_cfm_1_0.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_compressor_cfm_1_0.tgz');">tinymce_compressor_cfm_1_0.tgz</a>
|
1979
|
+
|
1555
1980
|
</td>
|
1556
1981
|
<td >58844</td>
|
1557
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=875535">
|
1982
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=875535">85</a></td>
|
1558
1983
|
<td >Platform-Independent</td>
|
1559
1984
|
<td >.gz</td>
|
1560
1985
|
</tr>
|
1561
|
-
<tr class="hide" id="
|
1986
|
+
<tr class="hide" id="pkg0_47rel0_6">
|
1562
1987
|
<td colspan="2" class="even"> </td>
|
1563
|
-
<td class="even"><a
|
1564
|
-
 
|
1988
|
+
<td class="even"><a id="showfiles_download_file_pkg0_47rel0_6" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_compressor_cfm_1_0.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_compressor_cfm_1_0.zip');">tinymce_compressor_cfm_1_0.zip</a>
|
1989
|
+
|
1565
1990
|
</td>
|
1566
1991
|
<td class="even">13503</td>
|
1567
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=875533">
|
1992
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=875533">383</a></td>
|
1568
1993
|
<td class="even">Platform-Independent</td>
|
1569
1994
|
<td class="even">.zip</td>
|
1570
1995
|
</tr>
|
1571
|
-
<tr class="hide" id="
|
1996
|
+
<tr class="hide" id="pkg0_47rel0_7">
|
1572
1997
|
<td colspan="2" > </td>
|
1573
|
-
<td ><a
|
1574
|
-
 
|
1998
|
+
<td ><a id="showfiles_download_file_pkg0_47rel0_7" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_compressor_jsp_1_0.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_compressor_jsp_1_0.tgz');">tinymce_compressor_jsp_1_0.tgz</a>
|
1999
|
+
|
1575
2000
|
</td>
|
1576
2001
|
<td >3198</td>
|
1577
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=875536">
|
2002
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=875536">155</a></td>
|
1578
2003
|
<td >Platform-Independent</td>
|
1579
2004
|
<td >.gz</td>
|
1580
2005
|
</tr>
|
1581
|
-
<tr class="hide" id="
|
2006
|
+
<tr class="hide" id="pkg0_47rel0_8">
|
1582
2007
|
<td colspan="2" class="even"> </td>
|
1583
|
-
<td class="even"><a
|
1584
|
-
 
|
2008
|
+
<td class="even"><a id="showfiles_download_file_pkg0_47rel0_8" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_compressor_jsp_1_0.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_compressor_jsp_1_0.zip');">tinymce_compressor_jsp_1_0.zip</a>
|
2009
|
+
|
1585
2010
|
</td>
|
1586
2011
|
<td class="even">3723</td>
|
1587
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=875534">
|
2012
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=875534">681</a></td>
|
1588
2013
|
<td class="even">Platform-Independent</td>
|
1589
2014
|
<td class="even">.zip</td>
|
1590
2015
|
</tr>
|
1591
|
-
<tr class="hide" id="
|
2016
|
+
<tr class="hide" id="pkg0_47rel0_9">
|
1592
2017
|
<td colspan="2" > </td>
|
1593
|
-
<td ><a
|
1594
|
-
 
|
2018
|
+
<td ><a id="showfiles_download_file_pkg0_47rel0_9" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_compressor_net_1_0.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_compressor_net_1_0.zip');">tinymce_compressor_net_1_0.zip</a>
|
2019
|
+
|
1595
2020
|
</td>
|
1596
2021
|
<td >69897</td>
|
1597
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=847290">
|
2022
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=847290">1337</a></td>
|
1598
2023
|
<td >i386</td>
|
1599
2024
|
<td >.zip</td>
|
1600
2025
|
</tr>
|
1601
|
-
<tr class="hide" id="
|
2026
|
+
<tr class="hide" id="pkg0_47rel0_10">
|
1602
2027
|
<td colspan="2" class="even"> </td>
|
1603
|
-
<td class="even"><a
|
1604
|
-
 
|
2028
|
+
<td class="even"><a id="showfiles_download_file_pkg0_47rel0_10" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_compressor_php_1_06.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_compressor_php_1_06.tgz');">tinymce_compressor_php_1_06.tgz</a>
|
2029
|
+
|
1605
2030
|
</td>
|
1606
2031
|
<td class="even">3366</td>
|
1607
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=862553">
|
2032
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=862553">1751</a></td>
|
1608
2033
|
<td class="even">Platform-Independent</td>
|
1609
2034
|
<td class="even">.gz</td>
|
1610
2035
|
</tr>
|
1611
|
-
<tr class="hide" id="
|
2036
|
+
<tr class="hide" id="pkg0_47rel0_11">
|
1612
2037
|
<td colspan="2" > </td>
|
1613
|
-
<td ><a
|
1614
|
-
 
|
2038
|
+
<td ><a id="showfiles_download_file_pkg0_47rel0_11" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_compressor_php_1_06.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_compressor_php_1_06.zip');">tinymce_compressor_php_1_06.zip</a>
|
2039
|
+
|
1615
2040
|
</td>
|
1616
2041
|
<td >3978</td>
|
1617
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=862554">
|
2042
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=862554">3751</a></td>
|
1618
2043
|
<td >Platform-Independent</td>
|
1619
2044
|
<td >.zip</td>
|
1620
2045
|
</tr>
|
1621
|
-
<tr class="hide" id="
|
2046
|
+
<tr class="hide" id="pkg0_47rel0_12">
|
1622
2047
|
<td colspan="2" class="even"> </td>
|
1623
|
-
<td class="even"><a
|
1624
|
-
 
|
2048
|
+
<td class="even"><a id="showfiles_download_file_pkg0_47rel0_12" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_old_icons.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_old_icons.zip');">tinymce_old_icons.zip</a>
|
2049
|
+
|
1625
2050
|
</td>
|
1626
2051
|
<td class="even">54531</td>
|
1627
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=671817">
|
2052
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=226501&file_id=671817">611</a></td>
|
1628
2053
|
<td class="even">Platform-Independent</td>
|
1629
2054
|
<td class="even">.zip</td>
|
1630
2055
|
</tr>
|
1631
2056
|
</tbody>
|
1632
|
-
<tbody class="show" id="
|
1633
|
-
<tr class="release" id="
|
2057
|
+
<tbody class="show" id="pkg0_48">
|
2058
|
+
<tr class="release" id="pkg0_48rel0">
|
1634
2059
|
<td> </td>
|
1635
|
-
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=221502" onclick="report_expand('
|
2060
|
+
<td colspan="6"><a href="showfiles.php?group_id=103281&package_id=111430&release_id=221502" onclick="report_expand('pkg0_48rel0'); void(0); return false;" class="tdwn" id="pkg0_48rel0_0">Old releases</a> <span class="notes"><a href="shownotes.php?release_id=221502&group_id=103281" title="View notes">Notes</a></span> <small>(2004-06-28 00:00) </small></td>
|
1636
2061
|
</tr>
|
1637
|
-
<tr class="hide" id="
|
2062
|
+
<tr class="hide" id="pkg0_48rel0_1">
|
1638
2063
|
<td colspan="2" > </td>
|
1639
|
-
<td ><a
|
1640
|
-
 
|
2064
|
+
<td ><a id="showfiles_download_file_pkg0_48rel0_1" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_1_19.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_1_19.tgz');">tinymce_1_19.tgz</a>
|
2065
|
+
|
1641
2066
|
</td>
|
1642
2067
|
<td >210938</td>
|
1643
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=543905">
|
2068
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=543905">214</a></td>
|
1644
2069
|
<td >None</td>
|
1645
2070
|
<td >None</td>
|
1646
2071
|
</tr>
|
1647
|
-
<tr class="hide" id="
|
2072
|
+
<tr class="hide" id="pkg0_48rel0_2">
|
1648
2073
|
<td colspan="2" class="even"> </td>
|
1649
|
-
<td class="even"><a
|
1650
|
-
 
|
2074
|
+
<td class="even"><a id="showfiles_download_file_pkg0_48rel0_2" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_1_19.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_1_19.zip');">tinymce_1_19.zip</a>
|
2075
|
+
|
1651
2076
|
</td>
|
1652
2077
|
<td class="even">278411</td>
|
1653
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=543906">
|
2078
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=543906">361</a></td>
|
1654
2079
|
<td class="even">None</td>
|
1655
2080
|
<td class="even">None</td>
|
1656
2081
|
</tr>
|
1657
|
-
<tr class="hide" id="
|
2082
|
+
<tr class="hide" id="pkg0_48rel0_3">
|
1658
2083
|
<td colspan="2" > </td>
|
1659
|
-
<td ><a
|
1660
|
-
 
|
2084
|
+
<td ><a id="showfiles_download_file_pkg0_48rel0_3" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_1_24.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_1_24.tgz');">tinymce_1_24.tgz</a>
|
2085
|
+
|
1661
2086
|
</td>
|
1662
2087
|
<td >958464</td>
|
1663
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=572820">
|
2088
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=572820">83</a></td>
|
1664
2089
|
<td >None</td>
|
1665
2090
|
<td >None</td>
|
1666
2091
|
</tr>
|
1667
|
-
<tr class="hide" id="
|
2092
|
+
<tr class="hide" id="pkg0_48rel0_4">
|
1668
2093
|
<td colspan="2" class="even"> </td>
|
1669
|
-
<td class="even"><a
|
1670
|
-
 
|
2094
|
+
<td class="even"><a id="showfiles_download_file_pkg0_48rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_1_24.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_1_24.zip');">tinymce_1_24.zip</a>
|
2095
|
+
|
1671
2096
|
</td>
|
1672
2097
|
<td class="even">400077</td>
|
1673
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=572821">
|
2098
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=572821">147</a></td>
|
1674
2099
|
<td class="even">None</td>
|
1675
2100
|
<td class="even">None</td>
|
1676
2101
|
</tr>
|
1677
|
-
<tr class="hide" id="
|
2102
|
+
<tr class="hide" id="pkg0_48rel0_5">
|
1678
2103
|
<td colspan="2" > </td>
|
1679
|
-
<td ><a
|
1680
|
-
 
|
2104
|
+
<td ><a id="showfiles_download_file_pkg0_48rel0_5" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_1_26.tgz" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_1_26.tgz');">tinymce_1_26.tgz</a>
|
2105
|
+
|
1681
2106
|
</td>
|
1682
2107
|
<td >309056</td>
|
1683
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=575733">
|
2108
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=575733">135</a></td>
|
1684
2109
|
<td >None</td>
|
1685
2110
|
<td >None</td>
|
1686
2111
|
</tr>
|
1687
|
-
<tr class="hide" id="
|
2112
|
+
<tr class="hide" id="pkg0_48rel0_6">
|
1688
2113
|
<td colspan="2" class="even"> </td>
|
1689
|
-
<td class="even"><a
|
1690
|
-
 
|
2114
|
+
<td class="even"><a id="showfiles_download_file_pkg0_48rel0_6" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_1_26.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_1_26.zip');">tinymce_1_26.zip</a>
|
2115
|
+
|
1691
2116
|
</td>
|
1692
2117
|
<td class="even">409251</td>
|
1693
|
-
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=575734">
|
2118
|
+
<td class="even"><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=575734">457</a></td>
|
1694
2119
|
<td class="even">None</td>
|
1695
2120
|
<td class="even">None</td>
|
1696
2121
|
</tr>
|
1697
|
-
<tr class="hide" id="
|
2122
|
+
<tr class="hide" id="pkg0_48rel0_7">
|
1698
2123
|
<td colspan="2" > </td>
|
1699
|
-
<td ><a
|
1700
|
-
 
|
2124
|
+
<td ><a id="showfiles_download_file_pkg0_48rel0_7" class="sfx_qalogger_element sfx_qalogger_clickable" href="/project/downloading.php?group_id=103281&filename=tinymce_1_43.zip" onClick="init_download('http://downloads.sourceforge.net/tinymce/tinymce_1_43.zip');">tinymce_1_43.zip</a>
|
2125
|
+
|
1701
2126
|
</td>
|
1702
2127
|
<td >1292566</td>
|
1703
|
-
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=714381">
|
2128
|
+
<td ><a href="/project/stats/detail.php?type=prdownload&group_id=103281&ugn=tinymce&package_id=111430&release_id=221502&file_id=714381">1651</a></td>
|
1704
2129
|
<td >Platform-Independent</td>
|
1705
2130
|
<td >.zip</td>
|
1706
2131
|
</tr>
|
1707
2132
|
</tbody>
|
1708
2133
|
</table>
|
1709
|
-
<div id="fadbtmp"> </div>
|
1710
|
-
</div>
|
1711
|
-
</div>
|
1712
2134
|
|
1713
|
-
|
1714
|
-
|
1715
|
-
<div id="footer">
|
1716
|
-
<ul>
|
1717
|
-
<li><a href="/docs/about">About SourceForge.net</a></li>
|
1718
|
-
<li><a href="/tos/privacy.php">Privacy Statement</a></li>
|
1719
|
-
<li><a href="/tos/tos.php">Terms of Use</a></li>
|
1720
|
-
<li><a href="http://web.sourceforge.com/media_kit.php">Advertise</a></li>
|
1721
|
-
<li><a href="/support/getsupport.php">Get Support</a></li>
|
1722
|
-
<li><a href="/supporters.php">Our Supporters</a></li>
|
1723
|
-
<li><a href="/subscriptions.php">Subscribe</a></li>
|
1724
|
-
<li><a href="http://newsletters.ostg.com/wws/subrequest/sourceforge-daily">Newsletter</a></li>
|
1725
|
-
<li><a href="/export/rss2_sfnews.php?group_id=1&rss_fulltext=1">RSS</a></li>
|
1726
|
-
</ul>
|
1727
|
-
<p>
|
1728
|
-
©Copyright 1999-2008 - <a href="http://sourceforge.com" title="Network which provides and promotes Open Source software downloads, development, discussion and news.">SourceForge</a>, Inc., All Rights Reserved
|
1729
|
-
</p>
|
1730
|
-
<ul class="ostgnavbar">
|
1731
|
-
<li class="begin"><a href="http://sourceforge.com">SourceForge</a></li>
|
1732
|
-
<li><a href="http://thinkgeek.com">ThinkGeek</a></li>
|
1733
|
-
<li><a href="http://slashdot.org">Slashdot</a></li>
|
1734
|
-
<li><a href="http://itmj.com">ITMJ</a></li>
|
1735
|
-
<li><a href="http://linux.com">Linux.com</a></li>
|
1736
|
-
<li><a href="http://newsforge.com">NewsForge</a></li>
|
1737
|
-
<li><a href="http://freshmeat.net">freshmeat</a></li>
|
1738
|
-
<li><a href="http://newsletters.ostg.com">Newsletters</a></li>
|
1739
|
-
<li><a href="http://sourceforge.pricegrabber.com/">PriceGrabber</a></li>
|
1740
|
-
<li><a href="http://ad.doubleclick.net/clk;177533387;24688860;z?http://seeker.dice.com/jobsearch/genthree/index.jsp">Jobs</a></li>
|
1741
|
-
</ul>
|
2135
|
+
<br />
|
2136
|
+
</div>
|
1742
2137
|
</div>
|
1743
|
-
|
1744
|
-
|
1745
|
-
<div id="adbatch" class="filespackage">
|
1746
|
-
|
1747
|
-
<div id="fad6">
|
1748
|
-
<div>
|
1749
|
-
<!-- DoubleClick Ad Tag -->
|
2138
|
+
<div class="yui-b" style="padding-bottom: 2em; text-align: center;">
|
2139
|
+
<div id="fad83"><!-- DoubleClick Ad Tag -->
|
1750
2140
|
<script type="text/javascript">
|
1751
2141
|
//<![CDATA[
|
1752
|
-
|
1753
|
-
|
2142
|
+
if(immersion_adcode == ""){
|
2143
|
+
var adspot = "none_p87_fusion";
|
2144
|
+
if(adid !="") adspot+= ";comp=" +adid +"";
|
2145
|
+
if(sponsored !="") adspot+= ";spons=" +sponsored+"";
|
2146
|
+
document.write('<script src="http://ad.doubleclick.net/adj/ostg.sourceforge/'+adspot+';pg=/project/showfiles.php;psrch=0;logged_in=0;ptile='+dfp_ptile+';tpc=tinymce;tpc=by_industrysector;tpc=os_groups;tpc=mswin_nt;tpc=mswin_2000;tpc=mswin_xp;tpc=modern_oses;tpc=informationtechnology;tpc=macosx;tpc=textprocessing;tpc=JavaScript;tpc=sitemanagement;tpc=other;tpc=independent;tpc=linux;tpc=dynamic;tpc=www;tpc=internet;tpc=wordprocessors;tpc=editors;aud=developers;aud=sysadmins;aud=informationtechnology;aud=endusers;aud=developers;ord='+dfp_ord+'?" type="text/javascript"><\/script>');
|
2147
|
+
dfp_ptile++;
|
2148
|
+
}
|
1754
2149
|
//]]>
|
1755
2150
|
</script>
|
1756
|
-
<!-- End DoubleClick Ad Tag
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1760
|
-
|
1761
|
-
|
1762
|
-
<div id="fad1">
|
1763
|
-
<div>
|
1764
|
-
<div>
|
1765
|
-
<!-- DoubleClick Ad Tag -->
|
2151
|
+
<!-- End DoubleClick Ad Tag --></div>
|
2152
|
+
<br/>
|
2153
|
+
<div id="fad84"><!-- DoubleClick Ad Tag -->
|
1766
2154
|
<script type="text/javascript">
|
1767
2155
|
//<![CDATA[
|
1768
|
-
|
1769
|
-
|
2156
|
+
if(immersion_adcode == ""){
|
2157
|
+
var adspot = "none_p84_medrec";
|
2158
|
+
if(adid !="") adspot+= ";comp=" +adid +"";
|
2159
|
+
if(sponsored !="") adspot+= ";spons=" +sponsored+"";
|
2160
|
+
document.write('<script src="http://ad.doubleclick.net/adj/ostg.sourceforge/'+adspot+';pg=/project/showfiles.php;psrch=0;logged_in=0;ptile='+dfp_ptile+';tpc=tinymce;tpc=by_industrysector;tpc=os_groups;tpc=mswin_nt;tpc=mswin_2000;tpc=mswin_xp;tpc=modern_oses;tpc=informationtechnology;tpc=macosx;tpc=textprocessing;tpc=JavaScript;tpc=sitemanagement;tpc=other;tpc=independent;tpc=linux;tpc=dynamic;tpc=www;tpc=internet;tpc=wordprocessors;tpc=editors;aud=developers;aud=sysadmins;aud=informationtechnology;aud=endusers;aud=developers;ord='+dfp_ord+'?" type="text/javascript"><\/script>');
|
2161
|
+
dfp_ptile++;
|
2162
|
+
}
|
1770
2163
|
//]]>
|
1771
2164
|
</script>
|
1772
|
-
<!-- End DoubleClick Ad Tag
|
1773
|
-
</div>
|
1774
|
-
</div>
|
2165
|
+
<!-- End DoubleClick Ad Tag --></div>
|
1775
2166
|
</div>
|
1776
|
-
|
1777
|
-
|
1778
|
-
<div
|
2167
|
+
<br style="clear: both" />
|
2168
|
+
<div class="yui-g ads tier2">
|
2169
|
+
<div class="yui-u first">
|
2170
|
+
<div id="fad71"><!-- DoubleClick Ad Tag -->
|
1779
2171
|
<script type="text/javascript">
|
1780
2172
|
//<![CDATA[
|
1781
|
-
|
2173
|
+
if(immersion_adcode == ""){
|
2174
|
+
var adspot = "none_p71_text";
|
2175
|
+
if(adid !="") adspot+= ";comp=" +adid +"";
|
2176
|
+
if(sponsored !="") adspot+= ";spons=" +sponsored+"";
|
2177
|
+
document.write('<script src="http://ad.doubleclick.net/adj/ostg.sourceforge/'+adspot+';pg=/project/showfiles.php;psrch=0;logged_in=0;tile='+dfp_tile+';tpc=tinymce;tpc=by_industrysector;tpc=os_groups;tpc=mswin_nt;tpc=mswin_2000;tpc=mswin_xp;tpc=modern_oses;tpc=informationtechnology;tpc=macosx;tpc=textprocessing;tpc=JavaScript;tpc=sitemanagement;tpc=other;tpc=independent;tpc=linux;tpc=dynamic;tpc=www;tpc=internet;tpc=wordprocessors;tpc=editors;aud=developers;aud=sysadmins;aud=informationtechnology;aud=endusers;aud=developers;ord='+dfp_ord+'?" type="text/javascript"><\/script>');
|
1782
2178
|
dfp_tile++;
|
2179
|
+
}
|
1783
2180
|
//]]>
|
1784
2181
|
</script>
|
1785
|
-
<!-- End DoubleClick Ad Tag --></div
|
1786
|
-
|
1787
|
-
|
1788
|
-
|
1789
|
-
dfp_tile++;
|
1790
|
-
//]]>
|
1791
|
-
</script>
|
1792
|
-
<!-- End DoubleClick Ad Tag --></div><div id="ostgservices"><!-- DoubleClick Ad Tag -->
|
2182
|
+
<!-- End DoubleClick Ad Tag --></div>
|
2183
|
+
</div>
|
2184
|
+
<div class="yui-u">
|
2185
|
+
<div id="fad72"><!-- DoubleClick Ad Tag -->
|
1793
2186
|
<script type="text/javascript">
|
1794
2187
|
//<![CDATA[
|
1795
|
-
|
2188
|
+
if(immersion_adcode == ""){
|
2189
|
+
var adspot = "none_p72_text";
|
2190
|
+
if(adid !="") adspot+= ";comp=" +adid +"";
|
2191
|
+
if(sponsored !="") adspot+= ";spons=" +sponsored+"";
|
2192
|
+
document.write('<script src="http://ad.doubleclick.net/adj/ostg.sourceforge/'+adspot+';pg=/project/showfiles.php;psrch=0;logged_in=0;tile='+dfp_tile+';tpc=tinymce;tpc=by_industrysector;tpc=os_groups;tpc=mswin_nt;tpc=mswin_2000;tpc=mswin_xp;tpc=modern_oses;tpc=informationtechnology;tpc=macosx;tpc=textprocessing;tpc=JavaScript;tpc=sitemanagement;tpc=other;tpc=independent;tpc=linux;tpc=dynamic;tpc=www;tpc=internet;tpc=wordprocessors;tpc=editors;aud=developers;aud=sysadmins;aud=informationtechnology;aud=endusers;aud=developers;ord='+dfp_ord+'?" type="text/javascript"><\/script>');
|
1796
2193
|
dfp_tile++;
|
2194
|
+
}
|
1797
2195
|
//]]>
|
1798
2196
|
</script>
|
1799
|
-
<!-- End DoubleClick Ad Tag --></div
|
2197
|
+
<!-- End DoubleClick Ad Tag --></div>
|
2198
|
+
</div>
|
2199
|
+
</div>
|
2200
|
+
|
2201
|
+
</div>
|
2202
|
+
|
2203
|
+
|
2204
|
+
|
1800
2205
|
|
1801
|
-
|
2206
|
+
<div id="ft">
|
2207
|
+
<div class="togbar"></div>
|
2208
|
+
<div class="yui-g hide">
|
2209
|
+
<div class="yui-g first">
|
2210
|
+
<div class="yui-u first">
|
2211
|
+
<strong><a href="/support/getsupport.php">Support</a></strong><br />
|
2212
|
+
<a href="/sitestatus">Site Status</a><br />
|
2213
|
+
<a href="/support/getsupport.php#sitesupport">Site Support</a><br />
|
2214
|
+
<a href="/support/getsupport.php#projectsupport">Project Support</a><br />
|
2215
|
+
<a href="/services/help.php">Marketplace Support</a>
|
2216
|
+
</div>
|
2217
|
+
<div class="yui-u">
|
2218
|
+
<strong>Syndication Feeds / RSS</strong><br />
|
2219
|
+
<a href="/community/feed/">Community News</a><br />
|
2220
|
+
<a href="/export/rss2_sfnews.php?group_id=1&rss_fulltext=1">Project Releases</a><br />
|
2221
|
+
</div>
|
2222
|
+
</div>
|
2223
|
+
<div class="yui-g">
|
2224
|
+
<div class="yui-u first">
|
2225
|
+
<strong>About</strong><br />
|
2226
|
+
<a href="http://p.sf.net/sourceforge/about">SourceForge.net</a><br />
|
2227
|
+
<a href="http://sourceforge.com" title="Network which provides and promotes Open Source software downloads, development, discussion and news.">SourceForge, Inc.</a><br />
|
2228
|
+
<a href="/services/buy/index.php">Marketplace</a><br />
|
2229
|
+
</div>
|
2230
|
+
<div class="yui-u">
|
2231
|
+
<br />
|
2232
|
+
<a href="http://web.sourceforge.com/media_kit.php">Advertising</a><br />
|
2233
|
+
</div>
|
2234
|
+
</div>
|
2235
|
+
</div>
|
2236
|
+
<div class="yui-g divider">
|
2237
|
+
<div class="yui-u first copyright">
|
2238
|
+
©Copyright 1999-2009 - <a href="http://sourceforge.com" title="Network which provides and promotes Open Source software downloads, development, discussion and news.">SourceForge</a>, Inc., All Rights Reserved
|
2239
|
+
</div>
|
2240
|
+
<div class="yui-u">
|
2241
|
+
<a href="http://p.sf.net/sourceforge/terms">Legal</a> <a href="http://p.sf.net/sourceforge/getsupport">Help</a>
|
2242
|
+
</div>
|
2243
|
+
</div>
|
2244
|
+
</div>
|
1802
2245
|
</div>
|
2246
|
+
|
2247
|
+
<!-- Ad calls and positioning -->
|
2248
|
+
<div id="adbatch" class="filespackage pville">
|
2249
|
+
</div>
|
1803
2250
|
|
1804
2251
|
|
1805
2252
|
<script type="text/javascript">
|
1806
2253
|
pageTracker._trackPageview();
|
1807
2254
|
</script>
|
1808
2255
|
|
2256
|
+
<!-- Start Quantcast tag -->
|
2257
|
+
|
2258
|
+
<script type="text/javascript">
|
2259
|
+
_qoptions={
|
2260
|
+
qacct:"p-93nPV3-Eb4x22"
|
2261
|
+
};
|
2262
|
+
</script>
|
2263
|
+
|
2264
|
+
<script type="text/javascript" src="//secure.quantserve.com/quant.js"></script>
|
2265
|
+
<noscript>
|
2266
|
+
<img src="//secure.quantserve.com/pixel/p-93nPV3-Eb4x22.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>
|
2267
|
+
</noscript>
|
2268
|
+
<!-- End Quantcast tag -->
|
1809
2269
|
|
2270
|
+
|
2271
|
+
<script type="text/javascript">if($.browser.msie && $.browser.version=='6.0'){$(document).ready(function(){$("body").append("<div class=\"killie6\"><p>Your browser isn't supported, so some things might not work as expected. Please upgrade to a newer version of IE, or to Firefox.</p><span><a>x</a></span></div>");$("head").append('<style type="text/css">div.killie6{display:none;z-index:100;background:#ffffe1;height:21px;padding:0pt;margin:0pt;position:absolute;top:0pt;left:0pt;width:100%;border-bottom:1px solid #716f64;border-top:1px solid #e0dfd0;}div.killie6 p{padding:0pt;margin:0pt;height:21px;border-bottom:1px solid #aca899;border-top:1px solid #cdcabb;background:url\("/images/sflogofavicon.gif"\) no-repeat 3px center;text-indent:22px;font-family:Arial,sans-serif !important;font-size:11px !important;font-weight:lighter;line-height:21px;overflow:hidden;text-align:left !important;}div.killie6 p,div.killie6 p a{color:#000;}div.killie6 span a{background:url\("/images/phoneix/x.gif"\) no-repeat top left;text-indent:-9999px;display:block;position:absolute;right:5px;top:5px;width:8px;height:8px;padding:0pt .1em;margin:0pt;}</style>');function showKillie6(){$("div.killie6").show("fast");scrollTo(0,0);}$("div.killie6 span a").mousedown(function(){$("div.killie6").slideUp("fast");$.cookie('ie6_warning_shown',1,{path:'/',expires:14});});if(!$.cookie('ie6_warning_shown')){setTimeout(showKillie6,1000);}});}</script>
|
2272
|
+
|
2273
|
+
<script src="/include/js/abtest.js"></script>
|
2274
|
+
<script type="text/javascript">
|
2275
|
+
clickGoal('#fad1', '0926615710', 'UA-32013-30');
|
2276
|
+
clickGoal(' #fad6', '0926615710', 'UA-32013-30');
|
2277
|
+
clickGoal(' #fad36', '0926615710', 'UA-32013-30');
|
2278
|
+
clickGoal(' #ad34', '0926615710', 'UA-32013-30');
|
2279
|
+
clickGoal(' #ad7', '0926615710', 'UA-32013-30');
|
2280
|
+
clickGoal(' #ostgservices', '0926615710', 'UA-32013-30');
|
2281
|
+
clickGoal(' #fad83', '0926615710', 'UA-32013-30');
|
2282
|
+
clickGoal(' #fad84', '0926615710', 'UA-32013-30');
|
2283
|
+
clickGoal(' #fad71', '0926615710', 'UA-32013-30');
|
2284
|
+
clickGoal(' #fad72', '0926615710', 'UA-32013-30');
|
2285
|
+
</script>
|
1810
2286
|
<script>
|
1811
2287
|
if(typeof(urchinTracker)!='function')document.write('<sc'+'ript src="'+
|
1812
2288
|
'http'+(document.location.protocol=='https:'?'s://ssl':'://www')+
|
1813
2289
|
'.google-analytics.com/urchin.js'+'"></sc'+'ript>')
|
1814
2290
|
</script>
|
1815
|
-
<script>
|
1816
|
-
_uacct =
|
1817
|
-
urchinTracker("
|
2291
|
+
<script type="text/javascript">
|
2292
|
+
_uacct = "UA-32013-30";
|
2293
|
+
urchinTracker("/0926615710/test");
|
1818
2294
|
</script>
|
2295
|
+
|
1819
2296
|
</body>
|
1820
2297
|
</html>
|
2298
|
+
|
1821
2299
|
|