tiny_mce_helper 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +5 -0
- data/Rakefile +18 -16
- data/lib/tiny_mce_helper.rb +12 -11
- data/test/files/sourceforge.rss +3095 -0
- data/test/files/tinymce_3_2_7.zip +0 -0
- data/test/test_helper.rb +1 -1
- data/test/unit/tiny_mce_helper_test.rb +14 -13
- metadata +14 -18
- data/test/files/sourceforge.html +0 -2299
- data/test/files/tinymce_3_2_2_3.zip +0 -0
Binary file
|
data/test/test_helper.rb
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
2
2
|
|
3
3
|
uses_mocha 'mocking install/update' do
|
4
|
-
class TinyMceInstallerTest <
|
4
|
+
class TinyMceInstallerTest < ActiveSupport::TestCase
|
5
5
|
def setup
|
6
6
|
# Set up public path
|
7
7
|
FileUtils.mkdir_p("#{Rails.root}/public/javascripts")
|
8
8
|
end
|
9
9
|
|
10
10
|
def test_should_save_latest_version_to_default_target
|
11
|
-
TinyMCEHelper.expects(:open).with('http://sourceforge.net/project/
|
12
|
-
TinyMCEHelper.expects(:open).with('http://
|
11
|
+
TinyMCEHelper.expects(:open).with('http://sourceforge.net/api/file/index/project-id/103281/mtime/desc/rss?path=/TinyMCE').returns(open('test/files/sourceforge.rss')) unless live?
|
12
|
+
TinyMCEHelper.expects(:open).with('http://sourceforge.net/projects/tinymce/files%2FTinyMCE%2F3.2.7%2Ftinymce_3_2_7.zip/download').yields(open("#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_2_7.zip")) unless live?
|
13
13
|
TinyMCEHelper.install(:force => true)
|
14
14
|
|
15
15
|
assert File.exists?("#{Rails.root}/public/javascripts/tiny_mce")
|
@@ -20,12 +20,13 @@ uses_mocha 'mocking install/update' do
|
|
20
20
|
assert source.include?('tinymce')
|
21
21
|
else
|
22
22
|
assert source.include?("majorVersion : '3'");
|
23
|
-
assert source.include?("minorVersion : '2.
|
23
|
+
assert source.include?("minorVersion : '2.7'");
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
27
27
|
def test_should_allow_custom_version
|
28
|
-
TinyMCEHelper.expects(:open).with('http://
|
28
|
+
TinyMCEHelper.expects(:open).with('http://sourceforge.net/api/file/index/project-id/103281/mtime/desc/rss?path=/TinyMCE').returns(open('test/files/sourceforge.rss')) unless live?
|
29
|
+
TinyMCEHelper.expects(:open).with('http://sourceforge.net/projects/tinymce/files%2FTinyMCE%2F3.2.2%2Ftinymce_3_2_2.zip/download').yields(open("#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_2_2.zip")) unless live?
|
29
30
|
TinyMCEHelper.install(:version => '3.2.2', :force => true)
|
30
31
|
|
31
32
|
assert File.exists?("#{Rails.root}/public/javascripts/tiny_mce")
|
@@ -36,8 +37,8 @@ uses_mocha 'mocking install/update' do
|
|
36
37
|
end
|
37
38
|
|
38
39
|
def test_should_allow_custom_target
|
39
|
-
TinyMCEHelper.expects(:open).with('http://sourceforge.net/project/
|
40
|
-
TinyMCEHelper.expects(:open).with('http://
|
40
|
+
TinyMCEHelper.expects(:open).with('http://sourceforge.net/api/file/index/project-id/103281/mtime/desc/rss?path=/TinyMCE').returns(open('test/files/sourceforge.rss')) unless live?
|
41
|
+
TinyMCEHelper.expects(:open).with('http://sourceforge.net/projects/tinymce/files%2FTinyMCE%2F3.2.7%2Ftinymce_3_2_7.zip/download').yields(open("#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_2_7.zip")) unless live?
|
41
42
|
TinyMCEHelper.install(:target => 'public/javascripts/tinymce', :force => true)
|
42
43
|
|
43
44
|
assert File.exists?("#{Rails.root}/public/javascripts/tinymce")
|
@@ -48,7 +49,7 @@ uses_mocha 'mocking install/update' do
|
|
48
49
|
end
|
49
50
|
end
|
50
51
|
|
51
|
-
class TinyMceInstallerExistingTest <
|
52
|
+
class TinyMceInstallerExistingTest < ActiveSupport::TestCase
|
52
53
|
def setup
|
53
54
|
# Set up public path
|
54
55
|
FileUtils.mkdir_p("#{Rails.root}/public/javascripts/tiny_mce")
|
@@ -104,15 +105,15 @@ uses_mocha 'mocking install/update' do
|
|
104
105
|
private
|
105
106
|
def expects_file_requests
|
106
107
|
unless live?
|
107
|
-
TinyMCEHelper.expects(:open).with('http://sourceforge.net/project/
|
108
|
-
TinyMCEHelper.expects(:open).with('http://
|
108
|
+
TinyMCEHelper.expects(:open).with('http://sourceforge.net/api/file/index/project-id/103281/mtime/desc/rss?path=/TinyMCE').returns(open('test/files/sourceforge.rss'))
|
109
|
+
TinyMCEHelper.expects(:open).with('http://sourceforge.net/projects/tinymce/files%2FTinyMCE%2F3.2.7%2Ftinymce_3_2_7.zip/download').yields(open("#{EXPANDED_RAILS_ROOT}/../files/tinymce_3_2_7.zip"))
|
109
110
|
end
|
110
111
|
end
|
111
112
|
end
|
112
113
|
|
113
|
-
class TinyMceUpdaterTest <
|
114
|
+
class TinyMceUpdaterTest < ActiveSupport::TestCase
|
114
115
|
def setup
|
115
|
-
TinyMCEHelper.expects(:open).with('http://wiki.moxiecode.com/index.php/TinyMCE:Configuration').returns(open('test/files/
|
116
|
+
TinyMCEHelper.expects(:open).with('http://wiki.moxiecode.com/index.php/TinyMCE:Configuration').returns(open('test/files/wiki.html')) unless live?
|
116
117
|
|
117
118
|
# Track valid options
|
118
119
|
@original_valid_options = TinyMCEHelper.valid_options.dup
|
@@ -143,7 +144,7 @@ uses_mocha 'mocking install/update' do
|
|
143
144
|
end
|
144
145
|
end
|
145
146
|
|
146
|
-
class TinyMceUninstallerTest <
|
147
|
+
class TinyMceUninstallerTest < ActiveSupport::TestCase
|
147
148
|
def setup
|
148
149
|
# Set up public path
|
149
150
|
FileUtils.mkdir_p("#{Rails.root}/public/javascripts")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tiny_mce_helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Pfeifer
|
@@ -9,11 +9,11 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-03-07 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description:
|
16
|
+
description: Adds helper methods for creating the TinyMCE initialization script in Rails
|
17
17
|
email: aaron@pluginaweek.org
|
18
18
|
executables: []
|
19
19
|
|
@@ -24,21 +24,15 @@ extra_rdoc_files: []
|
|
24
24
|
files:
|
25
25
|
- lib/tiny_mce_helper.rb
|
26
26
|
- tasks/tiny_mce_helper_tasks.rake
|
27
|
-
- test/
|
28
|
-
- test/
|
29
|
-
- test/
|
30
|
-
- test/files/
|
27
|
+
- test/unit/tiny_mce_helper_test.rb
|
28
|
+
- test/app_root/config/tiny_mce_options.yml
|
29
|
+
- test/app_root/config_bak/tiny_mce_options.yml
|
30
|
+
- test/files/tinymce_3_2_7.zip
|
31
31
|
- test/files/tinymce_3_2_2.zip
|
32
32
|
- test/files/wiki.html
|
33
|
-
- test/
|
34
|
-
- test/
|
35
|
-
- test/helpers
|
33
|
+
- test/files/sourceforge.rss
|
34
|
+
- test/test_helper.rb
|
36
35
|
- test/helpers/tiny_mce_helper_test.rb
|
37
|
-
- test/app_root
|
38
|
-
- test/app_root/config_bak
|
39
|
-
- test/app_root/config_bak/tiny_mce_options.yml
|
40
|
-
- test/app_root/config
|
41
|
-
- test/app_root/config/tiny_mce_options.yml
|
42
36
|
- CHANGELOG.rdoc
|
43
37
|
- init.rb
|
44
38
|
- install.rb
|
@@ -47,6 +41,8 @@ files:
|
|
47
41
|
- uninstall.rb
|
48
42
|
has_rdoc: true
|
49
43
|
homepage: http://www.pluginaweek.org
|
44
|
+
licenses: []
|
45
|
+
|
50
46
|
post_install_message:
|
51
47
|
rdoc_options: []
|
52
48
|
|
@@ -67,10 +63,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
63
|
requirements: []
|
68
64
|
|
69
65
|
rubyforge_project: pluginaweek
|
70
|
-
rubygems_version: 1.3.
|
66
|
+
rubygems_version: 1.3.5
|
71
67
|
signing_key:
|
72
|
-
specification_version:
|
73
|
-
summary: Adds helper methods for creating the TinyMCE initialization script
|
68
|
+
specification_version: 3
|
69
|
+
summary: Adds helper methods for creating the TinyMCE initialization script in Rails
|
74
70
|
test_files:
|
75
71
|
- test/unit/tiny_mce_helper_test.rb
|
76
72
|
- test/helpers/tiny_mce_helper_test.rb
|
data/test/files/sourceforge.html
DELETED
@@ -1,2299 +0,0 @@
|
|
1
|
-
|
2
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
3
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4
|
-
<!-- Server: sfs-web-5 -->
|
5
|
-
<!--
|
6
|
-
~ SourceForge.net: Create, Participate, Evaluate
|
7
|
-
~ Copyright (c) 1999-2009 SourceForge, Inc. All rights reserved.
|
8
|
-
-->
|
9
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
10
|
-
<head>
|
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>
|
94
|
-
|
95
|
-
<script type="text/javascript">
|
96
|
-
//<![CDATA[
|
97
|
-
jQuery(document).ready(function(){
|
98
|
-
$('.vertical_widget_content ul.tab, #container2 ul.tab').tabs({ selected: 0 });
|
99
|
-
});
|
100
|
-
|
101
|
-
//]]>
|
102
|
-
</script>
|
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[
|
108
|
-
var sf_proj_home = 'http://sourceforge.net/projects/tinymce';
|
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">
|
119
|
-
//<![CDATA[
|
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
|
-
|
146
|
-
//]]>
|
147
|
-
</script>
|
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>
|
176
|
-
<!-- BEGIN: AdSolution-Tag 4.2: Global-Code [PLACE IN HTML-HEAD-AREA!] -->
|
177
|
-
<!-- DoubleClick Random Number -->
|
178
|
-
<script language="JavaScript" type="text/javascript">
|
179
|
-
var dfp_ord=Math.random()*10000000000000000;
|
180
|
-
var dfp_tile = 1;
|
181
|
-
var dfp_ptile = 1;
|
182
|
-
</script>
|
183
|
-
<!-- End DoubleClick Random Number -->
|
184
|
-
<script type="text/javascript">
|
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.';
|
188
|
-
</script>
|
189
|
-
<!-- END: AdSolution-Tag 4.2: Global-Code -->
|
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: -->
|
191
|
-
<script type="text/javascript">
|
192
|
-
var immersion_adcode = "";
|
193
|
-
var adid = "";
|
194
|
-
var sponsored = "";
|
195
|
-
</script>
|
196
|
-
|
197
|
-
<!-- after META tags -->
|
198
|
-
|
199
|
-
<script type="text/javascript">
|
200
|
-
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
201
|
-
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
202
|
-
</script>
|
203
|
-
<script type="text/javascript">
|
204
|
-
var pageTracker = _gat._getTracker("UA-32013-6");
|
205
|
-
pageTracker._initData();
|
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>
|
217
|
-
|
218
|
-
<script type="text/javascript" src="http://static.sourceforge.net/sfx.js"></script>
|
219
|
-
|
220
|
-
</head>
|
221
|
-
<body>
|
222
|
-
|
223
|
-
<div id="doc3" class="yui-t6 filespackage">
|
224
|
-
|
225
|
-
<div id="hd">
|
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>
|
246
|
-
</div>
|
247
|
-
</div>
|
248
|
-
<div id="bd">
|
249
|
-
<!-- begin content -->
|
250
|
-
|
251
|
-
|
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>
|
286
|
-
</ul>
|
287
|
-
</li>
|
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>
|
304
|
-
</ul>
|
305
|
-
</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>
|
308
|
-
</ul>
|
309
|
-
</li>
|
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>
|
314
|
-
</ul>
|
315
|
-
</li>
|
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>
|
320
|
-
</ul>
|
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>
|
354
|
-
|
355
|
-
</ul>
|
356
|
-
|
357
|
-
</div>
|
358
|
-
<div style="clear: both;"></div>
|
359
|
-
|
360
|
-
|
361
|
-
<a name="content"></a>
|
362
|
-
|
363
|
-
<!--
|
364
|
-
/frs/showfiles.html - Copyright 1999-2006 (c) Open Source Technology Group
|
365
|
-
@version $Id: showfiles.html 28645 2009-03-26 20:32:54Z jwh $
|
366
|
-
-->
|
367
|
-
|
368
|
-
<script type="text/javascript">
|
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
|
-
});
|
378
|
-
</script>
|
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">
|
394
|
-
<thead>
|
395
|
-
<tr>
|
396
|
-
<th>Package</th>
|
397
|
-
<th title="Date">Release</th>
|
398
|
-
<th>Filename</th>
|
399
|
-
<th title="Bytes">Size</th>
|
400
|
-
<th>Downloads</th>
|
401
|
-
<th>Architecture</th>
|
402
|
-
<th>Type</th>
|
403
|
-
</tr>
|
404
|
-
</thead>
|
405
|
-
<tfoot>
|
406
|
-
<tr>
|
407
|
-
<td>Totals:</td>
|
408
|
-
<td>48</td>
|
409
|
-
<td>142</td>
|
410
|
-
<td>120107443</td>
|
411
|
-
<td>1888692</td>
|
412
|
-
<td colspan="2"> </td>
|
413
|
-
</tr>
|
414
|
-
</tfoot>
|
415
|
-
|
416
|
-
<tbody>
|
417
|
-
<tr class="package">
|
418
|
-
<td colspan="7">
|
419
|
-
<a href="#" onclick="report_expand('pkg0'); void(0); return false;" class="tup" id="pkg0_0">
|
420
|
-
TinyMCE
|
421
|
-
</a>
|
422
|
-
</td>
|
423
|
-
</tr>
|
424
|
-
</tbody>
|
425
|
-
<tbody class="show" id="pkg0_1">
|
426
|
-
<tr class="release current" id="pkg0_1rel0">
|
427
|
-
<td><small>Latest</small></td>
|
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>
|
429
|
-
</tr>
|
430
|
-
<tr class="show" id="pkg0_1rel0_1">
|
431
|
-
<td colspan="2" > </td>
|
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
|
-
|
434
|
-
</td>
|
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>
|
437
|
-
<td >Platform-Independent</td>
|
438
|
-
<td >.zip</td>
|
439
|
-
</tr>
|
440
|
-
<tr class="show" id="pkg0_1rel0_2">
|
441
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
444
|
-
</td>
|
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>
|
447
|
-
<td class="even">Platform-Independent</td>
|
448
|
-
<td class="even">.zip</td>
|
449
|
-
</tr>
|
450
|
-
</tbody>
|
451
|
-
<tbody class="show" id="pkg0_2">
|
452
|
-
<tr class="release" id="pkg0_2rel0">
|
453
|
-
<td> </td>
|
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>
|
455
|
-
</tr>
|
456
|
-
<tr class="hide" id="pkg0_2rel0_1">
|
457
|
-
<td colspan="2" > </td>
|
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
|
-
|
460
|
-
</td>
|
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>
|
463
|
-
<td >Platform-Independent</td>
|
464
|
-
<td >.zip</td>
|
465
|
-
</tr>
|
466
|
-
<tr class="hide" id="pkg0_2rel0_2">
|
467
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
470
|
-
</td>
|
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>
|
473
|
-
<td class="even">Platform-Independent</td>
|
474
|
-
<td class="even">.zip</td>
|
475
|
-
</tr>
|
476
|
-
</tbody>
|
477
|
-
<tbody class="show" id="pkg0_3">
|
478
|
-
<tr class="release" id="pkg0_3rel0">
|
479
|
-
<td> </td>
|
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>
|
481
|
-
</tr>
|
482
|
-
<tr class="hide" id="pkg0_3rel0_1">
|
483
|
-
<td colspan="2" > </td>
|
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
|
-
|
824
|
-
</td>
|
825
|
-
<td >954177</td>
|
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>
|
827
|
-
<td >Platform-Independent</td>
|
828
|
-
<td >.zip</td>
|
829
|
-
</tr>
|
830
|
-
<tr class="hide" id="pkg0_16rel0_2">
|
831
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
834
|
-
</td>
|
835
|
-
<td class="even">628569</td>
|
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>
|
837
|
-
<td class="even">Platform-Independent</td>
|
838
|
-
<td class="even">.zip</td>
|
839
|
-
</tr>
|
840
|
-
</tbody>
|
841
|
-
<tbody class="show" id="pkg0_17">
|
842
|
-
<tr class="release" id="pkg0_17rel0">
|
843
|
-
<td> </td>
|
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>
|
845
|
-
</tr>
|
846
|
-
<tr class="hide" id="pkg0_17rel0_1">
|
847
|
-
<td colspan="2" > </td>
|
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
|
-
|
850
|
-
</td>
|
851
|
-
<td >953381</td>
|
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>
|
853
|
-
<td >Platform-Independent</td>
|
854
|
-
<td >.zip</td>
|
855
|
-
</tr>
|
856
|
-
<tr class="hide" id="pkg0_17rel0_2">
|
857
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
860
|
-
</td>
|
861
|
-
<td class="even">628040</td>
|
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>
|
863
|
-
<td class="even">Platform-Independent</td>
|
864
|
-
<td class="even">.zip</td>
|
865
|
-
</tr>
|
866
|
-
</tbody>
|
867
|
-
<tbody class="show" id="pkg0_18">
|
868
|
-
<tr class="release" id="pkg0_18rel0">
|
869
|
-
<td> </td>
|
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>
|
871
|
-
</tr>
|
872
|
-
<tr class="hide" id="pkg0_18rel0_1">
|
873
|
-
<td colspan="2" > </td>
|
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
|
-
|
876
|
-
</td>
|
877
|
-
<td >952461</td>
|
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>
|
879
|
-
<td >Platform-Independent</td>
|
880
|
-
<td >.zip</td>
|
881
|
-
</tr>
|
882
|
-
<tr class="hide" id="pkg0_18rel0_2">
|
883
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
886
|
-
</td>
|
887
|
-
<td class="even">627592</td>
|
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>
|
889
|
-
<td class="even">Platform-Independent</td>
|
890
|
-
<td class="even">.zip</td>
|
891
|
-
</tr>
|
892
|
-
</tbody>
|
893
|
-
<tbody class="show" id="pkg0_19">
|
894
|
-
<tr class="release" id="pkg0_19rel0">
|
895
|
-
<td> </td>
|
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>
|
897
|
-
</tr>
|
898
|
-
<tr class="hide" id="pkg0_19rel0_1">
|
899
|
-
<td colspan="2" > </td>
|
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
|
-
|
902
|
-
</td>
|
903
|
-
<td >939340</td>
|
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>
|
905
|
-
<td >Platform-Independent</td>
|
906
|
-
<td >.zip</td>
|
907
|
-
</tr>
|
908
|
-
<tr class="hide" id="pkg0_19rel0_2">
|
909
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
912
|
-
</td>
|
913
|
-
<td class="even">622254</td>
|
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>
|
915
|
-
<td class="even">Platform-Independent</td>
|
916
|
-
<td class="even">.zip</td>
|
917
|
-
</tr>
|
918
|
-
</tbody>
|
919
|
-
<tbody class="show" id="pkg0_20">
|
920
|
-
<tr class="release" id="pkg0_20rel0">
|
921
|
-
<td> </td>
|
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>
|
923
|
-
</tr>
|
924
|
-
<tr class="hide" id="pkg0_20rel0_1">
|
925
|
-
<td colspan="2" > </td>
|
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
|
-
|
928
|
-
</td>
|
929
|
-
<td >930881</td>
|
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>
|
931
|
-
<td >Platform-Independent</td>
|
932
|
-
<td >.zip</td>
|
933
|
-
</tr>
|
934
|
-
<tr class="hide" id="pkg0_20rel0_2">
|
935
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
938
|
-
</td>
|
939
|
-
<td class="even">608623</td>
|
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>
|
941
|
-
<td class="even">Platform-Independent</td>
|
942
|
-
<td class="even">.zip</td>
|
943
|
-
</tr>
|
944
|
-
</tbody>
|
945
|
-
<tbody class="show" id="pkg0_21">
|
946
|
-
<tr class="release" id="pkg0_21rel0">
|
947
|
-
<td> </td>
|
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>
|
949
|
-
</tr>
|
950
|
-
<tr class="hide" id="pkg0_21rel0_1">
|
951
|
-
<td colspan="2" > </td>
|
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
|
-
|
954
|
-
</td>
|
955
|
-
<td >928087</td>
|
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>
|
957
|
-
<td >Platform-Independent</td>
|
958
|
-
<td >.zip</td>
|
959
|
-
</tr>
|
960
|
-
<tr class="hide" id="pkg0_21rel0_2">
|
961
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
964
|
-
</td>
|
965
|
-
<td class="even">613204</td>
|
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>
|
967
|
-
<td class="even">Platform-Independent</td>
|
968
|
-
<td class="even">.zip</td>
|
969
|
-
</tr>
|
970
|
-
</tbody>
|
971
|
-
<tbody class="show" id="pkg0_22">
|
972
|
-
<tr class="release" id="pkg0_22rel0">
|
973
|
-
<td> </td>
|
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>
|
975
|
-
</tr>
|
976
|
-
<tr class="hide" id="pkg0_22rel0_1">
|
977
|
-
<td colspan="2" > </td>
|
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
|
-
|
980
|
-
</td>
|
981
|
-
<td >926118</td>
|
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>
|
983
|
-
<td >Platform-Independent</td>
|
984
|
-
<td >.zip</td>
|
985
|
-
</tr>
|
986
|
-
<tr class="hide" id="pkg0_22rel0_2">
|
987
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
990
|
-
</td>
|
991
|
-
<td class="even">611938</td>
|
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>
|
993
|
-
<td class="even">Platform-Independent</td>
|
994
|
-
<td class="even">.zip</td>
|
995
|
-
</tr>
|
996
|
-
</tbody>
|
997
|
-
<tbody class="show" id="pkg0_23">
|
998
|
-
<tr class="release" id="pkg0_23rel0">
|
999
|
-
<td> </td>
|
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>
|
1001
|
-
</tr>
|
1002
|
-
<tr class="hide" id="pkg0_23rel0_1">
|
1003
|
-
<td colspan="2" > </td>
|
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
|
-
|
1006
|
-
</td>
|
1007
|
-
<td >912683</td>
|
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>
|
1009
|
-
<td >Platform-Independent</td>
|
1010
|
-
<td >.zip</td>
|
1011
|
-
</tr>
|
1012
|
-
<tr class="hide" id="pkg0_23rel0_2">
|
1013
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1016
|
-
</td>
|
1017
|
-
<td class="even">601277</td>
|
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>
|
1019
|
-
<td class="even">Platform-Independent</td>
|
1020
|
-
<td class="even">.zip</td>
|
1021
|
-
</tr>
|
1022
|
-
</tbody>
|
1023
|
-
<tbody class="show" id="pkg0_24">
|
1024
|
-
<tr class="release" id="pkg0_24rel0">
|
1025
|
-
<td> </td>
|
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>
|
1027
|
-
</tr>
|
1028
|
-
<tr class="hide" id="pkg0_24rel0_1">
|
1029
|
-
<td colspan="2" > </td>
|
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
|
-
|
1032
|
-
</td>
|
1033
|
-
<td >896840</td>
|
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>
|
1035
|
-
<td >Platform-Independent</td>
|
1036
|
-
<td >.zip</td>
|
1037
|
-
</tr>
|
1038
|
-
<tr class="hide" id="pkg0_24rel0_2">
|
1039
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1042
|
-
</td>
|
1043
|
-
<td class="even">585964</td>
|
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>
|
1045
|
-
<td class="even">Platform-Independent</td>
|
1046
|
-
<td class="even">.zip</td>
|
1047
|
-
</tr>
|
1048
|
-
</tbody>
|
1049
|
-
<tbody class="show" id="pkg0_25">
|
1050
|
-
<tr class="release" id="pkg0_25rel0">
|
1051
|
-
<td> </td>
|
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>
|
1053
|
-
</tr>
|
1054
|
-
<tr class="hide" id="pkg0_25rel0_1">
|
1055
|
-
<td colspan="2" > </td>
|
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
|
-
|
1058
|
-
</td>
|
1059
|
-
<td >894268</td>
|
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>
|
1061
|
-
<td >Platform-Independent</td>
|
1062
|
-
<td >.zip</td>
|
1063
|
-
</tr>
|
1064
|
-
<tr class="hide" id="pkg0_25rel0_2">
|
1065
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1068
|
-
</td>
|
1069
|
-
<td class="even">584307</td>
|
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>
|
1071
|
-
<td class="even">Platform-Independent</td>
|
1072
|
-
<td class="even">.zip</td>
|
1073
|
-
</tr>
|
1074
|
-
</tbody>
|
1075
|
-
<tbody class="show" id="pkg0_26">
|
1076
|
-
<tr class="release" id="pkg0_26rel0">
|
1077
|
-
<td> </td>
|
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>
|
1079
|
-
</tr>
|
1080
|
-
<tr class="hide" id="pkg0_26rel0_1">
|
1081
|
-
<td colspan="2" > </td>
|
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
|
-
|
1084
|
-
</td>
|
1085
|
-
<td >886585</td>
|
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>
|
1087
|
-
<td >Platform-Independent</td>
|
1088
|
-
<td >.zip</td>
|
1089
|
-
</tr>
|
1090
|
-
<tr class="hide" id="pkg0_26rel0_2">
|
1091
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1094
|
-
</td>
|
1095
|
-
<td class="even">580391</td>
|
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>
|
1097
|
-
<td class="even">Platform-Independent</td>
|
1098
|
-
<td class="even">.gz</td>
|
1099
|
-
</tr>
|
1100
|
-
</tbody>
|
1101
|
-
<tbody class="show" id="pkg0_27">
|
1102
|
-
<tr class="release" id="pkg0_27rel0">
|
1103
|
-
<td> </td>
|
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>
|
1105
|
-
</tr>
|
1106
|
-
<tr class="hide" id="pkg0_27rel0_1">
|
1107
|
-
<td colspan="2" > </td>
|
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
|
-
|
1110
|
-
</td>
|
1111
|
-
<td >878357</td>
|
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>
|
1113
|
-
<td >Platform-Independent</td>
|
1114
|
-
<td >.zip</td>
|
1115
|
-
</tr>
|
1116
|
-
<tr class="hide" id="pkg0_27rel0_2">
|
1117
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1120
|
-
</td>
|
1121
|
-
<td class="even">577041</td>
|
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>
|
1123
|
-
<td class="even">Platform-Independent</td>
|
1124
|
-
<td class="even">.zip</td>
|
1125
|
-
</tr>
|
1126
|
-
</tbody>
|
1127
|
-
<tbody class="show" id="pkg0_28">
|
1128
|
-
<tr class="release" id="pkg0_28rel0">
|
1129
|
-
<td> </td>
|
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>
|
1131
|
-
</tr>
|
1132
|
-
<tr class="hide" id="pkg0_28rel0_1">
|
1133
|
-
<td colspan="2" > </td>
|
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
|
-
|
1136
|
-
</td>
|
1137
|
-
<td >870479</td>
|
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>
|
1139
|
-
<td >Platform-Independent</td>
|
1140
|
-
<td >.zip</td>
|
1141
|
-
</tr>
|
1142
|
-
<tr class="hide" id="pkg0_28rel0_2">
|
1143
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1146
|
-
</td>
|
1147
|
-
<td class="even">572835</td>
|
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>
|
1149
|
-
<td class="even">Platform-Independent</td>
|
1150
|
-
<td class="even">.zip</td>
|
1151
|
-
</tr>
|
1152
|
-
</tbody>
|
1153
|
-
<tbody class="show" id="pkg0_29">
|
1154
|
-
<tr class="release" id="pkg0_29rel0">
|
1155
|
-
<td> </td>
|
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>
|
1157
|
-
</tr>
|
1158
|
-
<tr class="hide" id="pkg0_29rel0_1">
|
1159
|
-
<td colspan="2" > </td>
|
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
|
-
|
1162
|
-
</td>
|
1163
|
-
<td >757193</td>
|
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>
|
1165
|
-
<td >Platform-Independent</td>
|
1166
|
-
<td >.gz</td>
|
1167
|
-
</tr>
|
1168
|
-
<tr class="hide" id="pkg0_29rel0_2">
|
1169
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1172
|
-
</td>
|
1173
|
-
<td class="even">980218</td>
|
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>
|
1175
|
-
<td class="even">Platform-Independent</td>
|
1176
|
-
<td class="even">.zip</td>
|
1177
|
-
</tr>
|
1178
|
-
<tr class="hide" id="pkg0_29rel0_3">
|
1179
|
-
<td colspan="2" > </td>
|
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
|
-
|
1182
|
-
</td>
|
1183
|
-
<td >459851</td>
|
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>
|
1185
|
-
<td >Platform-Independent</td>
|
1186
|
-
<td >.gz</td>
|
1187
|
-
</tr>
|
1188
|
-
<tr class="hide" id="pkg0_29rel0_4">
|
1189
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1192
|
-
</td>
|
1193
|
-
<td class="even">634275</td>
|
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>
|
1195
|
-
<td class="even">Platform-Independent</td>
|
1196
|
-
<td class="even">.zip</td>
|
1197
|
-
</tr>
|
1198
|
-
</tbody>
|
1199
|
-
<tbody class="show" id="pkg0_30">
|
1200
|
-
<tr class="release" id="pkg0_30rel0">
|
1201
|
-
<td> </td>
|
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>
|
1203
|
-
</tr>
|
1204
|
-
<tr class="hide" id="pkg0_30rel0_1">
|
1205
|
-
<td colspan="2" > </td>
|
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
|
-
|
1208
|
-
</td>
|
1209
|
-
<td >861057</td>
|
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>
|
1211
|
-
<td >Platform-Independent</td>
|
1212
|
-
<td >.zip</td>
|
1213
|
-
</tr>
|
1214
|
-
<tr class="hide" id="pkg0_30rel0_2">
|
1215
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1218
|
-
</td>
|
1219
|
-
<td class="even">571245</td>
|
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>
|
1221
|
-
<td class="even">Platform-Independent</td>
|
1222
|
-
<td class="even">.zip</td>
|
1223
|
-
</tr>
|
1224
|
-
</tbody>
|
1225
|
-
<tbody class="show" id="pkg0_31">
|
1226
|
-
<tr class="release" id="pkg0_31rel0">
|
1227
|
-
<td> </td>
|
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>
|
1229
|
-
</tr>
|
1230
|
-
<tr class="hide" id="pkg0_31rel0_1">
|
1231
|
-
<td colspan="2" > </td>
|
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
|
-
|
1234
|
-
</td>
|
1235
|
-
<td >852958</td>
|
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>
|
1237
|
-
<td >Platform-Independent</td>
|
1238
|
-
<td >.zip</td>
|
1239
|
-
</tr>
|
1240
|
-
<tr class="hide" id="pkg0_31rel0_2">
|
1241
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1244
|
-
</td>
|
1245
|
-
<td class="even">568294</td>
|
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>
|
1247
|
-
<td class="even">Platform-Independent</td>
|
1248
|
-
<td class="even">.zip</td>
|
1249
|
-
</tr>
|
1250
|
-
</tbody>
|
1251
|
-
<tbody class="show" id="pkg0_32">
|
1252
|
-
<tr class="release" id="pkg0_32rel0">
|
1253
|
-
<td> </td>
|
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>
|
1255
|
-
</tr>
|
1256
|
-
<tr class="hide" id="pkg0_32rel0_1">
|
1257
|
-
<td colspan="2" > </td>
|
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
|
-
|
1260
|
-
</td>
|
1261
|
-
<td >686820</td>
|
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>
|
1263
|
-
<td >Platform-Independent</td>
|
1264
|
-
<td >.zip</td>
|
1265
|
-
</tr>
|
1266
|
-
<tr class="hide" id="pkg0_32rel0_2">
|
1267
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1270
|
-
</td>
|
1271
|
-
<td class="even">562691</td>
|
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>
|
1273
|
-
<td class="even">Platform-Independent</td>
|
1274
|
-
<td class="even">.zip</td>
|
1275
|
-
</tr>
|
1276
|
-
</tbody>
|
1277
|
-
<tbody class="show" id="pkg0_33">
|
1278
|
-
<tr class="release" id="pkg0_33rel0">
|
1279
|
-
<td> </td>
|
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>
|
1281
|
-
</tr>
|
1282
|
-
<tr class="hide" id="pkg0_33rel0_1">
|
1283
|
-
<td colspan="2" > </td>
|
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
|
-
|
1286
|
-
</td>
|
1287
|
-
<td >686493</td>
|
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>
|
1289
|
-
<td >Platform-Independent</td>
|
1290
|
-
<td >.zip</td>
|
1291
|
-
</tr>
|
1292
|
-
<tr class="hide" id="pkg0_33rel0_2">
|
1293
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1296
|
-
</td>
|
1297
|
-
<td class="even">562408</td>
|
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>
|
1299
|
-
<td class="even">Platform-Independent</td>
|
1300
|
-
<td class="even">.zip</td>
|
1301
|
-
</tr>
|
1302
|
-
</tbody>
|
1303
|
-
<tbody class="show" id="pkg0_34">
|
1304
|
-
<tr class="release" id="pkg0_34rel0">
|
1305
|
-
<td> </td>
|
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>
|
1307
|
-
</tr>
|
1308
|
-
<tr class="hide" id="pkg0_34rel0_1">
|
1309
|
-
<td colspan="2" > </td>
|
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
|
-
|
1312
|
-
</td>
|
1313
|
-
<td >742500</td>
|
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>
|
1315
|
-
<td >Platform-Independent</td>
|
1316
|
-
<td >.gz</td>
|
1317
|
-
</tr>
|
1318
|
-
<tr class="hide" id="pkg0_34rel0_2">
|
1319
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1322
|
-
</td>
|
1323
|
-
<td class="even">970411</td>
|
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>
|
1325
|
-
<td class="even">Platform-Independent</td>
|
1326
|
-
<td class="even">.zip</td>
|
1327
|
-
</tr>
|
1328
|
-
<tr class="hide" id="pkg0_34rel0_3">
|
1329
|
-
<td colspan="2" > </td>
|
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
|
-
|
1332
|
-
</td>
|
1333
|
-
<td >447400</td>
|
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>
|
1335
|
-
<td >Platform-Independent</td>
|
1336
|
-
<td >.gz</td>
|
1337
|
-
</tr>
|
1338
|
-
<tr class="hide" id="pkg0_34rel0_4">
|
1339
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1342
|
-
</td>
|
1343
|
-
<td class="even">620954</td>
|
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>
|
1345
|
-
<td class="even">Platform-Independent</td>
|
1346
|
-
<td class="even">.zip</td>
|
1347
|
-
</tr>
|
1348
|
-
</tbody>
|
1349
|
-
<tbody class="show" id="pkg0_35">
|
1350
|
-
<tr class="release" id="pkg0_35rel0">
|
1351
|
-
<td> </td>
|
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>
|
1353
|
-
</tr>
|
1354
|
-
<tr class="hide" id="pkg0_35rel0_1">
|
1355
|
-
<td colspan="2" > </td>
|
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
|
-
|
1358
|
-
</td>
|
1359
|
-
<td >741119</td>
|
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>
|
1361
|
-
<td >Platform-Independent</td>
|
1362
|
-
<td >.gz</td>
|
1363
|
-
</tr>
|
1364
|
-
<tr class="hide" id="pkg0_35rel0_2">
|
1365
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1368
|
-
</td>
|
1369
|
-
<td class="even">968699</td>
|
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>
|
1371
|
-
<td class="even">Platform-Independent</td>
|
1372
|
-
<td class="even">.zip</td>
|
1373
|
-
</tr>
|
1374
|
-
<tr class="hide" id="pkg0_35rel0_3">
|
1375
|
-
<td colspan="2" > </td>
|
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
|
-
|
1378
|
-
</td>
|
1379
|
-
<td >446656</td>
|
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>
|
1381
|
-
<td >Platform-Independent</td>
|
1382
|
-
<td >.gz</td>
|
1383
|
-
</tr>
|
1384
|
-
<tr class="hide" id="pkg0_35rel0_4">
|
1385
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1388
|
-
</td>
|
1389
|
-
<td class="even">620172</td>
|
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>
|
1391
|
-
<td class="even">Platform-Independent</td>
|
1392
|
-
<td class="even">.zip</td>
|
1393
|
-
</tr>
|
1394
|
-
</tbody>
|
1395
|
-
<tbody class="show" id="pkg0_36">
|
1396
|
-
<tr class="release" id="pkg0_36rel0">
|
1397
|
-
<td> </td>
|
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>
|
1399
|
-
</tr>
|
1400
|
-
<tr class="hide" id="pkg0_36rel0_1">
|
1401
|
-
<td colspan="2" > </td>
|
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
|
-
|
1404
|
-
</td>
|
1405
|
-
<td >740852</td>
|
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>
|
1407
|
-
<td >Platform-Independent</td>
|
1408
|
-
<td >.gz</td>
|
1409
|
-
</tr>
|
1410
|
-
<tr class="hide" id="pkg0_36rel0_2">
|
1411
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1414
|
-
</td>
|
1415
|
-
<td class="even">968459</td>
|
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>
|
1417
|
-
<td class="even">Platform-Independent</td>
|
1418
|
-
<td class="even">.zip</td>
|
1419
|
-
</tr>
|
1420
|
-
<tr class="hide" id="pkg0_36rel0_3">
|
1421
|
-
<td colspan="2" > </td>
|
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
|
-
|
1424
|
-
</td>
|
1425
|
-
<td >446513</td>
|
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>
|
1427
|
-
<td >Platform-Independent</td>
|
1428
|
-
<td >.gz</td>
|
1429
|
-
</tr>
|
1430
|
-
<tr class="hide" id="pkg0_36rel0_4">
|
1431
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1434
|
-
</td>
|
1435
|
-
<td class="even">620013</td>
|
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>
|
1437
|
-
<td class="even">Platform-Independent</td>
|
1438
|
-
<td class="even">.zip</td>
|
1439
|
-
</tr>
|
1440
|
-
</tbody>
|
1441
|
-
<tbody class="show" id="pkg0_37">
|
1442
|
-
<tr class="release" id="pkg0_37rel0">
|
1443
|
-
<td> </td>
|
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>
|
1445
|
-
</tr>
|
1446
|
-
<tr class="hide" id="pkg0_37rel0_1">
|
1447
|
-
<td colspan="2" > </td>
|
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
|
-
|
1450
|
-
</td>
|
1451
|
-
<td >737390</td>
|
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>
|
1453
|
-
<td >Platform-Independent</td>
|
1454
|
-
<td >.gz</td>
|
1455
|
-
</tr>
|
1456
|
-
<tr class="hide" id="pkg0_37rel0_2">
|
1457
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1460
|
-
</td>
|
1461
|
-
<td class="even">965966</td>
|
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>
|
1463
|
-
<td class="even">Platform-Independent</td>
|
1464
|
-
<td class="even">.zip</td>
|
1465
|
-
</tr>
|
1466
|
-
<tr class="hide" id="pkg0_37rel0_3">
|
1467
|
-
<td colspan="2" > </td>
|
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
|
-
|
1470
|
-
</td>
|
1471
|
-
<td >444429</td>
|
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>
|
1473
|
-
<td >Platform-Independent</td>
|
1474
|
-
<td >.gz</td>
|
1475
|
-
</tr>
|
1476
|
-
<tr class="hide" id="pkg0_37rel0_4">
|
1477
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1480
|
-
</td>
|
1481
|
-
<td class="even">617449</td>
|
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>
|
1483
|
-
<td class="even">Platform-Independent</td>
|
1484
|
-
<td class="even">.zip</td>
|
1485
|
-
</tr>
|
1486
|
-
</tbody>
|
1487
|
-
<tbody class="show" id="pkg0_38">
|
1488
|
-
<tr class="release" id="pkg0_38rel0">
|
1489
|
-
<td> </td>
|
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>
|
1491
|
-
</tr>
|
1492
|
-
<tr class="hide" id="pkg0_38rel0_1">
|
1493
|
-
<td colspan="2" > </td>
|
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
|
-
|
1496
|
-
</td>
|
1497
|
-
<td >709976</td>
|
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>
|
1499
|
-
<td >Platform-Independent</td>
|
1500
|
-
<td >.gz</td>
|
1501
|
-
</tr>
|
1502
|
-
<tr class="hide" id="pkg0_38rel0_2">
|
1503
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1506
|
-
</td>
|
1507
|
-
<td class="even">926232</td>
|
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>
|
1509
|
-
<td class="even">Platform-Independent</td>
|
1510
|
-
<td class="even">.zip</td>
|
1511
|
-
</tr>
|
1512
|
-
<tr class="hide" id="pkg0_38rel0_3">
|
1513
|
-
<td colspan="2" > </td>
|
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
|
-
|
1516
|
-
</td>
|
1517
|
-
<td >416974</td>
|
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>
|
1519
|
-
<td >Platform-Independent</td>
|
1520
|
-
<td >.gz</td>
|
1521
|
-
</tr>
|
1522
|
-
<tr class="hide" id="pkg0_38rel0_4">
|
1523
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1526
|
-
</td>
|
1527
|
-
<td class="even">580981</td>
|
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>
|
1529
|
-
<td class="even">Platform-Independent</td>
|
1530
|
-
<td class="even">.zip</td>
|
1531
|
-
</tr>
|
1532
|
-
</tbody>
|
1533
|
-
<tbody class="show" id="pkg0_39">
|
1534
|
-
<tr class="release" id="pkg0_39rel0">
|
1535
|
-
<td> </td>
|
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>
|
1537
|
-
</tr>
|
1538
|
-
<tr class="hide" id="pkg0_39rel0_1">
|
1539
|
-
<td colspan="2" > </td>
|
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
|
-
|
1542
|
-
</td>
|
1543
|
-
<td >766969</td>
|
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>
|
1545
|
-
<td >Platform-Independent</td>
|
1546
|
-
<td >.gz</td>
|
1547
|
-
</tr>
|
1548
|
-
<tr class="hide" id="pkg0_39rel0_2">
|
1549
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1552
|
-
</td>
|
1553
|
-
<td class="even">1092611</td>
|
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>
|
1555
|
-
<td class="even">Platform-Independent</td>
|
1556
|
-
<td class="even">.zip</td>
|
1557
|
-
</tr>
|
1558
|
-
<tr class="hide" id="pkg0_39rel0_3">
|
1559
|
-
<td colspan="2" > </td>
|
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
|
-
|
1562
|
-
</td>
|
1563
|
-
<td >481230</td>
|
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>
|
1565
|
-
<td >Platform-Independent</td>
|
1566
|
-
<td >.gz</td>
|
1567
|
-
</tr>
|
1568
|
-
<tr class="hide" id="pkg0_39rel0_4">
|
1569
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1572
|
-
</td>
|
1573
|
-
<td class="even">755487</td>
|
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>
|
1575
|
-
<td class="even">Platform-Independent</td>
|
1576
|
-
<td class="even">.zip</td>
|
1577
|
-
</tr>
|
1578
|
-
</tbody>
|
1579
|
-
<tbody class="show" id="pkg0_40">
|
1580
|
-
<tr class="release" id="pkg0_40rel0">
|
1581
|
-
<td> </td>
|
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>
|
1583
|
-
</tr>
|
1584
|
-
<tr class="hide" id="pkg0_40rel0_1">
|
1585
|
-
<td colspan="2" > </td>
|
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
|
-
|
1588
|
-
</td>
|
1589
|
-
<td >777233</td>
|
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>
|
1591
|
-
<td >Platform-Independent</td>
|
1592
|
-
<td >.gz</td>
|
1593
|
-
</tr>
|
1594
|
-
<tr class="hide" id="pkg0_40rel0_2">
|
1595
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1598
|
-
</td>
|
1599
|
-
<td class="even">1094770</td>
|
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>
|
1601
|
-
<td class="even">Platform-Independent</td>
|
1602
|
-
<td class="even">.zip</td>
|
1603
|
-
</tr>
|
1604
|
-
<tr class="hide" id="pkg0_40rel0_3">
|
1605
|
-
<td colspan="2" > </td>
|
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
|
-
|
1608
|
-
</td>
|
1609
|
-
<td >539699</td>
|
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>
|
1611
|
-
<td >Platform-Independent</td>
|
1612
|
-
<td >.gz</td>
|
1613
|
-
</tr>
|
1614
|
-
<tr class="hide" id="pkg0_40rel0_4">
|
1615
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1618
|
-
</td>
|
1619
|
-
<td class="even">820775</td>
|
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>
|
1621
|
-
<td class="even">Platform-Independent</td>
|
1622
|
-
<td class="even">.zip</td>
|
1623
|
-
</tr>
|
1624
|
-
</tbody>
|
1625
|
-
<tbody class="show" id="pkg0_41">
|
1626
|
-
<tr class="release" id="pkg0_41rel0">
|
1627
|
-
<td> </td>
|
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>
|
1629
|
-
</tr>
|
1630
|
-
<tr class="hide" id="pkg0_41rel0_1">
|
1631
|
-
<td colspan="2" > </td>
|
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
|
-
|
1634
|
-
</td>
|
1635
|
-
<td >678810</td>
|
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>
|
1637
|
-
<td >Platform-Independent</td>
|
1638
|
-
<td >.gz</td>
|
1639
|
-
</tr>
|
1640
|
-
<tr class="hide" id="pkg0_41rel0_2">
|
1641
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1644
|
-
</td>
|
1645
|
-
<td class="even">994537</td>
|
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>
|
1647
|
-
<td class="even">Platform-Independent</td>
|
1648
|
-
<td class="even">.zip</td>
|
1649
|
-
</tr>
|
1650
|
-
<tr class="hide" id="pkg0_41rel0_3">
|
1651
|
-
<td colspan="2" > </td>
|
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
|
-
|
1654
|
-
</td>
|
1655
|
-
<td >553652</td>
|
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>
|
1657
|
-
<td >Platform-Independent</td>
|
1658
|
-
<td >.gz</td>
|
1659
|
-
</tr>
|
1660
|
-
<tr class="hide" id="pkg0_41rel0_4">
|
1661
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1664
|
-
</td>
|
1665
|
-
<td class="even">833181</td>
|
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>
|
1667
|
-
<td class="even">Platform-Independent</td>
|
1668
|
-
<td class="even">.zip</td>
|
1669
|
-
</tr>
|
1670
|
-
</tbody>
|
1671
|
-
<tbody class="show" id="pkg0_42">
|
1672
|
-
<tr class="release" id="pkg0_42rel0">
|
1673
|
-
<td> </td>
|
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>
|
1675
|
-
</tr>
|
1676
|
-
<tr class="hide" id="pkg0_42rel0_1">
|
1677
|
-
<td colspan="2" > </td>
|
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
|
-
|
1680
|
-
</td>
|
1681
|
-
<td >673298</td>
|
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>
|
1683
|
-
<td >None</td>
|
1684
|
-
<td >None</td>
|
1685
|
-
</tr>
|
1686
|
-
<tr class="hide" id="pkg0_42rel0_2">
|
1687
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1690
|
-
</td>
|
1691
|
-
<td class="even">673298</td>
|
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>
|
1693
|
-
<td class="even">None</td>
|
1694
|
-
<td class="even">None</td>
|
1695
|
-
</tr>
|
1696
|
-
<tr class="hide" id="pkg0_42rel0_3">
|
1697
|
-
<td colspan="2" > </td>
|
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
|
-
|
1700
|
-
</td>
|
1701
|
-
<td >991628</td>
|
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>
|
1703
|
-
<td >None</td>
|
1704
|
-
<td >None</td>
|
1705
|
-
</tr>
|
1706
|
-
<tr class="hide" id="pkg0_42rel0_4">
|
1707
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1710
|
-
</td>
|
1711
|
-
<td class="even">991628</td>
|
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>
|
1713
|
-
<td class="even">None</td>
|
1714
|
-
<td class="even">None</td>
|
1715
|
-
</tr>
|
1716
|
-
<tr class="hide" id="pkg0_42rel0_5">
|
1717
|
-
<td colspan="2" > </td>
|
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
|
-
|
1720
|
-
</td>
|
1721
|
-
<td >548776</td>
|
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>
|
1723
|
-
<td >None</td>
|
1724
|
-
<td >None</td>
|
1725
|
-
</tr>
|
1726
|
-
<tr class="hide" id="pkg0_42rel0_6">
|
1727
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1730
|
-
</td>
|
1731
|
-
<td class="even">830891</td>
|
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>
|
1733
|
-
<td class="even">None</td>
|
1734
|
-
<td class="even">None</td>
|
1735
|
-
</tr>
|
1736
|
-
<tr class="hide" id="pkg0_42rel0_7">
|
1737
|
-
<td colspan="2" > </td>
|
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
|
-
|
1740
|
-
</td>
|
1741
|
-
<td >830891</td>
|
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>
|
1743
|
-
<td >None</td>
|
1744
|
-
<td >None</td>
|
1745
|
-
</tr>
|
1746
|
-
</tbody>
|
1747
|
-
<tbody class="show" id="pkg0_43">
|
1748
|
-
<tr class="release" id="pkg0_43rel0">
|
1749
|
-
<td> </td>
|
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>
|
1751
|
-
</tr>
|
1752
|
-
<tr class="hide" id="pkg0_43rel0_1">
|
1753
|
-
<td colspan="2" > </td>
|
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
|
-
|
1756
|
-
</td>
|
1757
|
-
<td >627042</td>
|
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>
|
1759
|
-
<td >Platform-Independent</td>
|
1760
|
-
<td >.gz</td>
|
1761
|
-
</tr>
|
1762
|
-
<tr class="hide" id="pkg0_43rel0_2">
|
1763
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1766
|
-
</td>
|
1767
|
-
<td class="even">928968</td>
|
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>
|
1769
|
-
<td class="even">Platform-Independent</td>
|
1770
|
-
<td class="even">.zip</td>
|
1771
|
-
</tr>
|
1772
|
-
<tr class="hide" id="pkg0_43rel0_3">
|
1773
|
-
<td colspan="2" > </td>
|
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
|
-
|
1776
|
-
</td>
|
1777
|
-
<td >404408</td>
|
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>
|
1779
|
-
<td >Platform-Independent</td>
|
1780
|
-
<td >.gz</td>
|
1781
|
-
</tr>
|
1782
|
-
<tr class="hide" id="pkg0_43rel0_4">
|
1783
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1786
|
-
</td>
|
1787
|
-
<td class="even">631594</td>
|
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>
|
1789
|
-
<td class="even">Platform-Independent</td>
|
1790
|
-
<td class="even">.zip</td>
|
1791
|
-
</tr>
|
1792
|
-
</tbody>
|
1793
|
-
<tbody class="show" id="pkg0_44">
|
1794
|
-
<tr class="release" id="pkg0_44rel0">
|
1795
|
-
<td> </td>
|
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>
|
1797
|
-
</tr>
|
1798
|
-
<tr class="hide" id="pkg0_44rel0_1">
|
1799
|
-
<td colspan="2" > </td>
|
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
|
-
|
1802
|
-
</td>
|
1803
|
-
<td >627109</td>
|
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>
|
1805
|
-
<td >Platform-Independent</td>
|
1806
|
-
<td >.gz</td>
|
1807
|
-
</tr>
|
1808
|
-
<tr class="hide" id="pkg0_44rel0_2">
|
1809
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1812
|
-
</td>
|
1813
|
-
<td class="even">928597</td>
|
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>
|
1815
|
-
<td class="even">Platform-Independent</td>
|
1816
|
-
<td class="even">.zip</td>
|
1817
|
-
</tr>
|
1818
|
-
<tr class="hide" id="pkg0_44rel0_3">
|
1819
|
-
<td colspan="2" > </td>
|
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
|
-
|
1822
|
-
</td>
|
1823
|
-
<td >404451</td>
|
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>
|
1825
|
-
<td >Platform-Independent</td>
|
1826
|
-
<td >.gz</td>
|
1827
|
-
</tr>
|
1828
|
-
<tr class="hide" id="pkg0_44rel0_4">
|
1829
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1832
|
-
</td>
|
1833
|
-
<td class="even">631381</td>
|
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>
|
1835
|
-
<td class="even">Platform-Independent</td>
|
1836
|
-
<td class="even">.zip</td>
|
1837
|
-
</tr>
|
1838
|
-
</tbody>
|
1839
|
-
<tbody class="show" id="pkg0_45">
|
1840
|
-
<tr class="release" id="pkg0_45rel0">
|
1841
|
-
<td> </td>
|
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>
|
1843
|
-
</tr>
|
1844
|
-
<tr class="hide" id="pkg0_45rel0_1">
|
1845
|
-
<td colspan="2" > </td>
|
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
|
-
|
1848
|
-
</td>
|
1849
|
-
<td >1364722</td>
|
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>
|
1851
|
-
<td >Platform-Independent</td>
|
1852
|
-
<td >.gz</td>
|
1853
|
-
</tr>
|
1854
|
-
<tr class="hide" id="pkg0_45rel0_2">
|
1855
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1858
|
-
</td>
|
1859
|
-
<td class="even">1898406</td>
|
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>
|
1861
|
-
<td class="even">Platform-Independent</td>
|
1862
|
-
<td class="even">.zip</td>
|
1863
|
-
</tr>
|
1864
|
-
<tr class="hide" id="pkg0_45rel0_3">
|
1865
|
-
<td colspan="2" > </td>
|
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
|
-
|
1868
|
-
</td>
|
1869
|
-
<td >1269798</td>
|
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>
|
1871
|
-
<td >Platform-Independent</td>
|
1872
|
-
<td >.gz</td>
|
1873
|
-
</tr>
|
1874
|
-
<tr class="hide" id="pkg0_45rel0_4">
|
1875
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1878
|
-
</td>
|
1879
|
-
<td class="even">1783204</td>
|
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>
|
1881
|
-
<td class="even">Platform-Independent</td>
|
1882
|
-
<td class="even">.zip</td>
|
1883
|
-
</tr>
|
1884
|
-
</tbody>
|
1885
|
-
<tbody class="show" id="pkg0_46">
|
1886
|
-
<tr class="release" id="pkg0_46rel0">
|
1887
|
-
<td> </td>
|
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>
|
1889
|
-
</tr>
|
1890
|
-
<tr class="hide" id="pkg0_46rel0_1">
|
1891
|
-
<td colspan="2" > </td>
|
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
|
-
|
1894
|
-
</td>
|
1895
|
-
<td >1360149</td>
|
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>
|
1897
|
-
<td >Platform-Independent</td>
|
1898
|
-
<td >.gz</td>
|
1899
|
-
</tr>
|
1900
|
-
<tr class="hide" id="pkg0_46rel0_2">
|
1901
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1904
|
-
</td>
|
1905
|
-
<td class="even">1894247</td>
|
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>
|
1907
|
-
<td class="even">Platform-Independent</td>
|
1908
|
-
<td class="even">.zip</td>
|
1909
|
-
</tr>
|
1910
|
-
<tr class="hide" id="pkg0_46rel0_3">
|
1911
|
-
<td colspan="2" > </td>
|
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
|
-
|
1914
|
-
</td>
|
1915
|
-
<td >1268072</td>
|
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>
|
1917
|
-
<td >Platform-Independent</td>
|
1918
|
-
<td >.gz</td>
|
1919
|
-
</tr>
|
1920
|
-
<tr class="hide" id="pkg0_46rel0_4">
|
1921
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1924
|
-
</td>
|
1925
|
-
<td class="even">1781277</td>
|
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>
|
1927
|
-
<td class="even">Platform-Independent</td>
|
1928
|
-
<td class="even">.zip</td>
|
1929
|
-
</tr>
|
1930
|
-
</tbody>
|
1931
|
-
<tbody class="show" id="pkg0_47">
|
1932
|
-
<tr class="release" id="pkg0_47rel0">
|
1933
|
-
<td> </td>
|
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>
|
1935
|
-
</tr>
|
1936
|
-
<tr class="hide" id="pkg0_47rel0_1">
|
1937
|
-
<td colspan="2" > </td>
|
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
|
-
|
1940
|
-
</td>
|
1941
|
-
<td >1065601</td>
|
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>
|
1943
|
-
<td >Platform-Independent</td>
|
1944
|
-
<td >.gz</td>
|
1945
|
-
</tr>
|
1946
|
-
<tr class="hide" id="pkg0_47rel0_2">
|
1947
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1950
|
-
</td>
|
1951
|
-
<td class="even">1443593</td>
|
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>
|
1953
|
-
<td class="even">Platform-Independent</td>
|
1954
|
-
<td class="even">.zip</td>
|
1955
|
-
</tr>
|
1956
|
-
<tr class="hide" id="pkg0_47rel0_3">
|
1957
|
-
<td colspan="2" > </td>
|
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
|
-
|
1960
|
-
</td>
|
1961
|
-
<td >1091458</td>
|
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>
|
1963
|
-
<td >Platform-Independent</td>
|
1964
|
-
<td >.gz</td>
|
1965
|
-
</tr>
|
1966
|
-
<tr class="hide" id="pkg0_47rel0_4">
|
1967
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1970
|
-
</td>
|
1971
|
-
<td class="even">1574690</td>
|
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>
|
1973
|
-
<td class="even">Platform-Independent</td>
|
1974
|
-
<td class="even">.zip</td>
|
1975
|
-
</tr>
|
1976
|
-
<tr class="hide" id="pkg0_47rel0_5">
|
1977
|
-
<td colspan="2" > </td>
|
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
|
-
|
1980
|
-
</td>
|
1981
|
-
<td >58844</td>
|
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>
|
1983
|
-
<td >Platform-Independent</td>
|
1984
|
-
<td >.gz</td>
|
1985
|
-
</tr>
|
1986
|
-
<tr class="hide" id="pkg0_47rel0_6">
|
1987
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
1990
|
-
</td>
|
1991
|
-
<td class="even">13503</td>
|
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>
|
1993
|
-
<td class="even">Platform-Independent</td>
|
1994
|
-
<td class="even">.zip</td>
|
1995
|
-
</tr>
|
1996
|
-
<tr class="hide" id="pkg0_47rel0_7">
|
1997
|
-
<td colspan="2" > </td>
|
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
|
-
|
2000
|
-
</td>
|
2001
|
-
<td >3198</td>
|
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>
|
2003
|
-
<td >Platform-Independent</td>
|
2004
|
-
<td >.gz</td>
|
2005
|
-
</tr>
|
2006
|
-
<tr class="hide" id="pkg0_47rel0_8">
|
2007
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
2010
|
-
</td>
|
2011
|
-
<td class="even">3723</td>
|
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>
|
2013
|
-
<td class="even">Platform-Independent</td>
|
2014
|
-
<td class="even">.zip</td>
|
2015
|
-
</tr>
|
2016
|
-
<tr class="hide" id="pkg0_47rel0_9">
|
2017
|
-
<td colspan="2" > </td>
|
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
|
-
|
2020
|
-
</td>
|
2021
|
-
<td >69897</td>
|
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>
|
2023
|
-
<td >i386</td>
|
2024
|
-
<td >.zip</td>
|
2025
|
-
</tr>
|
2026
|
-
<tr class="hide" id="pkg0_47rel0_10">
|
2027
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
2030
|
-
</td>
|
2031
|
-
<td class="even">3366</td>
|
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>
|
2033
|
-
<td class="even">Platform-Independent</td>
|
2034
|
-
<td class="even">.gz</td>
|
2035
|
-
</tr>
|
2036
|
-
<tr class="hide" id="pkg0_47rel0_11">
|
2037
|
-
<td colspan="2" > </td>
|
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
|
-
|
2040
|
-
</td>
|
2041
|
-
<td >3978</td>
|
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>
|
2043
|
-
<td >Platform-Independent</td>
|
2044
|
-
<td >.zip</td>
|
2045
|
-
</tr>
|
2046
|
-
<tr class="hide" id="pkg0_47rel0_12">
|
2047
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
2050
|
-
</td>
|
2051
|
-
<td class="even">54531</td>
|
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>
|
2053
|
-
<td class="even">Platform-Independent</td>
|
2054
|
-
<td class="even">.zip</td>
|
2055
|
-
</tr>
|
2056
|
-
</tbody>
|
2057
|
-
<tbody class="show" id="pkg0_48">
|
2058
|
-
<tr class="release" id="pkg0_48rel0">
|
2059
|
-
<td> </td>
|
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>
|
2061
|
-
</tr>
|
2062
|
-
<tr class="hide" id="pkg0_48rel0_1">
|
2063
|
-
<td colspan="2" > </td>
|
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
|
-
|
2066
|
-
</td>
|
2067
|
-
<td >210938</td>
|
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>
|
2069
|
-
<td >None</td>
|
2070
|
-
<td >None</td>
|
2071
|
-
</tr>
|
2072
|
-
<tr class="hide" id="pkg0_48rel0_2">
|
2073
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
2076
|
-
</td>
|
2077
|
-
<td class="even">278411</td>
|
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>
|
2079
|
-
<td class="even">None</td>
|
2080
|
-
<td class="even">None</td>
|
2081
|
-
</tr>
|
2082
|
-
<tr class="hide" id="pkg0_48rel0_3">
|
2083
|
-
<td colspan="2" > </td>
|
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
|
-
|
2086
|
-
</td>
|
2087
|
-
<td >958464</td>
|
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>
|
2089
|
-
<td >None</td>
|
2090
|
-
<td >None</td>
|
2091
|
-
</tr>
|
2092
|
-
<tr class="hide" id="pkg0_48rel0_4">
|
2093
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
2096
|
-
</td>
|
2097
|
-
<td class="even">400077</td>
|
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>
|
2099
|
-
<td class="even">None</td>
|
2100
|
-
<td class="even">None</td>
|
2101
|
-
</tr>
|
2102
|
-
<tr class="hide" id="pkg0_48rel0_5">
|
2103
|
-
<td colspan="2" > </td>
|
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
|
-
|
2106
|
-
</td>
|
2107
|
-
<td >309056</td>
|
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>
|
2109
|
-
<td >None</td>
|
2110
|
-
<td >None</td>
|
2111
|
-
</tr>
|
2112
|
-
<tr class="hide" id="pkg0_48rel0_6">
|
2113
|
-
<td colspan="2" class="even"> </td>
|
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
|
-
|
2116
|
-
</td>
|
2117
|
-
<td class="even">409251</td>
|
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>
|
2119
|
-
<td class="even">None</td>
|
2120
|
-
<td class="even">None</td>
|
2121
|
-
</tr>
|
2122
|
-
<tr class="hide" id="pkg0_48rel0_7">
|
2123
|
-
<td colspan="2" > </td>
|
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
|
-
|
2126
|
-
</td>
|
2127
|
-
<td >1292566</td>
|
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>
|
2129
|
-
<td >Platform-Independent</td>
|
2130
|
-
<td >.zip</td>
|
2131
|
-
</tr>
|
2132
|
-
</tbody>
|
2133
|
-
</table>
|
2134
|
-
|
2135
|
-
<br />
|
2136
|
-
</div>
|
2137
|
-
</div>
|
2138
|
-
<div class="yui-b" style="padding-bottom: 2em; text-align: center;">
|
2139
|
-
<div id="fad83"><!-- DoubleClick Ad Tag -->
|
2140
|
-
<script type="text/javascript">
|
2141
|
-
//<![CDATA[
|
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
|
-
}
|
2149
|
-
//]]>
|
2150
|
-
</script>
|
2151
|
-
<!-- End DoubleClick Ad Tag --></div>
|
2152
|
-
<br/>
|
2153
|
-
<div id="fad84"><!-- DoubleClick Ad Tag -->
|
2154
|
-
<script type="text/javascript">
|
2155
|
-
//<![CDATA[
|
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
|
-
}
|
2163
|
-
//]]>
|
2164
|
-
</script>
|
2165
|
-
<!-- End DoubleClick Ad Tag --></div>
|
2166
|
-
</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 -->
|
2171
|
-
<script type="text/javascript">
|
2172
|
-
//<![CDATA[
|
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>');
|
2178
|
-
dfp_tile++;
|
2179
|
-
}
|
2180
|
-
//]]>
|
2181
|
-
</script>
|
2182
|
-
<!-- End DoubleClick Ad Tag --></div>
|
2183
|
-
</div>
|
2184
|
-
<div class="yui-u">
|
2185
|
-
<div id="fad72"><!-- DoubleClick Ad Tag -->
|
2186
|
-
<script type="text/javascript">
|
2187
|
-
//<![CDATA[
|
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>');
|
2193
|
-
dfp_tile++;
|
2194
|
-
}
|
2195
|
-
//]]>
|
2196
|
-
</script>
|
2197
|
-
<!-- End DoubleClick Ad Tag --></div>
|
2198
|
-
</div>
|
2199
|
-
</div>
|
2200
|
-
|
2201
|
-
</div>
|
2202
|
-
|
2203
|
-
|
2204
|
-
|
2205
|
-
|
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>
|
2245
|
-
</div>
|
2246
|
-
|
2247
|
-
<!-- Ad calls and positioning -->
|
2248
|
-
<div id="adbatch" class="filespackage pville">
|
2249
|
-
</div>
|
2250
|
-
|
2251
|
-
|
2252
|
-
<script type="text/javascript">
|
2253
|
-
pageTracker._trackPageview();
|
2254
|
-
</script>
|
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 -->
|
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>
|
2286
|
-
<script>
|
2287
|
-
if(typeof(urchinTracker)!='function')document.write('<sc'+'ript src="'+
|
2288
|
-
'http'+(document.location.protocol=='https:'?'s://ssl':'://www')+
|
2289
|
-
'.google-analytics.com/urchin.js'+'"></sc'+'ript>')
|
2290
|
-
</script>
|
2291
|
-
<script type="text/javascript">
|
2292
|
-
_uacct = "UA-32013-30";
|
2293
|
-
urchinTracker("/0926615710/test");
|
2294
|
-
</script>
|
2295
|
-
|
2296
|
-
</body>
|
2297
|
-
</html>
|
2298
|
-
|
2299
|
-
|