Menu

[r13762]: / web / index.php  Maximize  Restore  History

Download this file

80 lines (66 with data), 3.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
ini_set('display_errors','0');
////////////////////////////////////////////////////////
// Hack to redirect old forum urls (PNphpBB2) to the //
// correct forum/topic in the SMF forum. //
// //
// Inspired from phpBB_Redirection_v1.0 hack //
// by Spaceman-Spiff - spiff@monkey-pirate.com //
////////////////////////////////////////////////////////
if(in_array($_SERVER['PHP_SELF'],array('/','/index.php')) &&
in_array($_GET['file'],array('viewtopic','viewforum')))
{
if ($_GET['name'] == 'PNphpBB2')
{
$forumurl = 'http://forums.codeblocks.org/';
if ($_GET['file'] == 'viewtopic')
{
$x = (int) $_GET['t'];
header ('Location: ' . $forumurl . 'index.php?topic=' . $x);
exit;
}
else if ($_GET['file'] == 'viewforum')
{
$x = (int) $_GET['f'];
header ('Location: ' . $forumurl . 'index.php?board=' . $x);
exit;
}
}
}
// end of PNphpBB2 urls hack
require_once('prepend.php');
?>
<title>Code::Blocks IDE - Open Source, Cross-platform Free C++ IDE</title>
<h1>Moving to new server</h1>
We are in the process of moving our sites to a new server. This will take a few minutes
from our side, as we have already prepared everything for the move.<br>
But it might take from a few minutes up to 48 hours for you to "see" the new server. It's
a matter of the DNS changes propagating around the internet and especially reaching your
ISP's DNS servers.
<p>
Thank you for your patience :)
<p>
<h1>Code::Blocks</h1>
<div class="right">
<a href="/img/screenshots/scr1.png"><img width="312" height="229"
alt="Screenshot" title="Zoom in"
src="/img/screenshots/scr1_tiny.jpg" /><br />
<span class="caption">Nightly build (zoom in)</span></a><br />
<a class="caption" href="screenshots.php">(more screenshots)</a>
</div>
<h2 style="font-size:1.2em;border-bottom:none;">The open source, cross platform Free C++ IDE.</h2>
<p>Code::Blocks is a <em>free C++ IDE</em> built to meet the most demanding needs of its users.
It is designed to be very extensible and fully configurable.</p>
<p>Built around a plugin framework, Code::Blocks can be <em>extended with plugins</em>. It even
includes a plugin wizard so you can <em>create your own plugins</em>! (Free SDK downloaded separately)</p>
<p style="clear:right">Finally, an IDE with all the <a href="/features.php">features</a> <em>you</em> need,
having a consistent look, feel and operation across platforms.<br />
We hope you enjoy using Code::Blocks!</p>
<p>The Code::Blocks Team.</p>
<p><center><a href="/downloads.php"><img alt="Download Code::Blocks now!" src="/img/download_now.png" /></a></center></p>
<!-- <p class="caption"><b>[ <a title="Features list" href="/features.php">Next</a> ]</b></p> -->
<hr />
<p><b>Latest <a href="http://forums.codeblocks.org">forum</a> topics:</b></p>
<?php
include('http://forums.codeblocks.org/SSI.php?ssi_function=recentTopics');
?>