initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 32
/svn/!svn/ver/52/pae.co.at/trunk
END

34
trunk copy/.svn/entries Normal file
View File

@@ -0,0 +1,34 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
htdocs
dir
proactiveenglish
dir

View File

@@ -0,0 +1,26 @@
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
# uncomment the following line, if you are having trouble
# getting no_script_name to work
#RewriteBase /
# we skip all files with .something
# comment the following 3 lines to allow periods in routes
RewriteCond %{REQUEST_URI} \..+$
RewriteCond %{REQUEST_URI} !\.html$
RewriteRule .* - [L]
# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
# no, so we redirect to our front web controller
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
# big crash from our front web controller
ErrorDocument 500 "<h2>Application error</h2>symfony application failed to start properly"

View File

@@ -0,0 +1,47 @@
K 25
svn:wc:ra_dav:version-url
V 39
/svn/!svn/ver/52/pae.co.at/trunk/htdocs
END
frontend_dev.php
K 25
svn:wc:ra_dav:version-url
V 56
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/frontend_dev.php
END
robots.txt
K 25
svn:wc:ra_dav:version-url
V 50
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/robots.txt
END
favicon.png
K 25
svn:wc:ra_dav:version-url
V 51
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/favicon.png
END
.htaccess
K 25
svn:wc:ra_dav:version-url
V 49
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/.htaccess
END
admin_dev.php
K 25
svn:wc:ra_dav:version-url
V 53
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/admin_dev.php
END
index.php
K 25
svn:wc:ra_dav:version-url
V 49
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/index.php
END
admin.php
K 25
svn:wc:ra_dav:version-url
V 49
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/admin.php
END

View File

@@ -0,0 +1,134 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
media
dir
files
dir
frontend_dev.php
file
2009-05-28T02:26:34.000000Z
b1fc73aa4d87db463f6a0507accd7853
2009-05-28T02:14:48.119086Z
25
ben
images
dir
robots.txt
file
2009-05-28T02:26:34.000000Z
58358960364e26d020c98d05aa8f27ad
2009-05-28T02:14:48.119086Z
25
ben
uploads
dir
css
dir
favicon.png
file
2009-05-28T02:26:34.000000Z
c7d0020d0234086cf2a06b2dc01562c7
2009-05-28T02:14:48.119086Z
25
ben
has-props
sf
dir
.htaccess
file
2009-05-28T02:26:34.000000Z
d264371e7c7775cafff14139e26c62af
2009-05-28T02:14:48.119086Z
25
ben
admin_dev.php
file
2009-05-28T02:26:34.000000Z
c03b0164d1434e810f52257d0b1e5320
2009-05-28T02:14:48.119086Z
25
ben
js
dir
index.php
file
2009-05-28T02:26:34.000000Z
44e2fc5c33541012f51ffe9bd946d2a6
2009-05-28T02:14:48.119086Z
25
ben
admin.php
file
2009-05-28T02:26:34.000000Z
e4780533735c8da8fddd53604285c805
2009-05-28T02:14:48.119086Z
25
ben

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,26 @@
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
# uncomment the following line, if you are having trouble
# getting no_script_name to work
#RewriteBase /
# we skip all files with .something
# comment the following 3 lines to allow periods in routes
RewriteCond %{REQUEST_URI} \..+$
RewriteCond %{REQUEST_URI} !\.html$
RewriteRule .* - [L]
# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
# no, so we redirect to our front web controller
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
# big crash from our front web controller
ErrorDocument 500 "<h2>Application error</h2>symfony application failed to start properly"

View File

@@ -0,0 +1,10 @@
<?php
define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/../proactiveenglish'));
define('SF_APP', 'admin');
define('SF_ENVIRONMENT', 'prod');
define('SF_DEBUG', false);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
sfContext::getInstance()->getController()->dispatch();

View File

@@ -0,0 +1,10 @@
<?php
define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/../proactiveenglish'));
define('SF_APP', 'admin');
define('SF_ENVIRONMENT', 'dev');
define('SF_DEBUG', true);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
sfContext::getInstance()->getController()->dispatch();

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1,10 @@
<?php
define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/../proactiveenglish'));
define('SF_APP', 'frontend');
define('SF_ENVIRONMENT', 'dev');
define('SF_DEBUG', true);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
sfContext::getInstance()->getController()->dispatch();

View File

@@ -0,0 +1,10 @@
<?php
define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/../proactiveenglish'));
define('SF_APP', 'frontend');
define('SF_ENVIRONMENT', 'prod');
define('SF_DEBUG', false);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
sfContext::getInstance()->getController()->dispatch();

View File

@@ -0,0 +1,2 @@
#User-agent: *
#Disallow:

View File

@@ -0,0 +1,10 @@
<?php
define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/../proactiveenglish'));
define('SF_APP', 'admin');
define('SF_ENVIRONMENT', 'prod');
define('SF_DEBUG', false);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
sfContext::getInstance()->getController()->dispatch();

View File

@@ -0,0 +1,10 @@
<?php
define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/../proactiveenglish'));
define('SF_APP', 'admin');
define('SF_ENVIRONMENT', 'dev');
define('SF_DEBUG', true);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
sfContext::getInstance()->getController()->dispatch();

View File

@@ -0,0 +1,71 @@
K 25
svn:wc:ra_dav:version-url
V 43
/svn/!svn/ver/52/pae.co.at/trunk/htdocs/css
END
admin.css
K 25
svn:wc:ra_dav:version-url
V 53
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/css/admin.css
END
home.css
K 25
svn:wc:ra_dav:version-url
V 52
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/css/home.css
END
contact.css
K 25
svn:wc:ra_dav:version-url
V 55
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/css/contact.css
END
howdowedoit.css
K 25
svn:wc:ra_dav:version-url
V 59
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/css/howdowedoit.css
END
schedule.css
K 25
svn:wc:ra_dav:version-url
V 56
/svn/!svn/ver/52/pae.co.at/trunk/htdocs/css/schedule.css
END
whoarewe.css
K 25
svn:wc:ra_dav:version-url
V 56
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/css/whoarewe.css
END
form.css
K 25
svn:wc:ra_dav:version-url
V 52
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/css/form.css
END
events.css
K 25
svn:wc:ra_dav:version-url
V 54
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/css/events.css
END
main.css
K 25
svn:wc:ra_dav:version-url
V 52
/svn/!svn/ver/52/pae.co.at/trunk/htdocs/css/main.css
END
whatdowedo.css
K 25
svn:wc:ra_dav:version-url
V 58
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/css/whatdowedo.css
END
film.css
K 25
svn:wc:ra_dav:version-url
V 52
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/css/film.css
END

View File

@@ -0,0 +1,204 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/css
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
admin.css
file
2009-05-28T02:26:18.000000Z
962a20beb74e0e23f5529eabaa43f187
2009-05-28T02:14:48.119086Z
25
ben
home.css
file
2009-05-28T02:26:18.000000Z
79ed00568177945890f54c44d4b1a5f0
2009-05-28T02:14:48.119086Z
25
ben
contact.css
file
2009-05-28T02:26:18.000000Z
e49f63e04fae98d8ba50abf78cde62a6
2009-05-28T02:14:48.119086Z
25
ben
howdowedoit.css
file
2009-05-28T02:26:18.000000Z
ff8ad6aa31d0253990223fb36c2dc3c9
2009-05-28T02:14:48.119086Z
25
ben
schedule.css
file
2010-05-20T02:43:01.000000Z
ec1738e8f7054a084e5c254db07a2082
2010-05-21T03:59:05.104047Z
52
ben
1927
whoarewe.css
file
2009-05-28T02:26:18.000000Z
394e19f4fbc28dd45fc5f5cc95444fee
2009-05-28T02:14:48.119086Z
25
ben
form.css
file
2009-05-28T02:26:18.000000Z
512c8fefb8f7250c811919097fd6e642
2009-05-28T02:14:48.119086Z
25
ben
events.css
file
2009-05-28T02:26:18.000000Z
38d8fd937c1c36cb1200b0a1c4c37524
2009-05-28T02:14:48.119086Z
25
ben
main.css
file
2010-02-23T05:23:52.000000Z
09f2b2aaefe7ef2ddaf712bc359c72e7
2010-05-21T03:59:05.104047Z
52
ben
6505
whatdowedo.css
file
2009-05-28T02:26:18.000000Z
780f958e241e3636423e205059b3624e
2009-05-28T02:14:48.119086Z
25
ben
film.css
file
2009-05-28T02:26:18.000000Z
8961da636a960a2ddf9224259d35257a
2009-05-28T02:14:48.119086Z
25
ben

View File

@@ -0,0 +1,35 @@
/*
* Styles specific to the admin application
* Most of these override styles in main.css
*/
div#nav ul {
left: 0;
}
div#nav>img {
position: relative;
left: 431px;
}
#content {
left: 0;
width: auto;
padding-top: 0;
}
img.event-thumb,
img.employee-thumb {
margin: 0 5px 0 0;
vertical-align: top;
}
body#employee li#employees_nav a,
body#event li#events_nav a,
body#course li#courses_nav a {
background: #22347C;
border-bottom: 6px solid #7592C5;
}
/*
* TinyMCE styles
*/
#content table.mceToolbar {
margin: 0;
}

View File

@@ -0,0 +1,16 @@
body#info p.contact-info {
clear: both;
}
body#info p.contact-info label {
font-weight: bold;
text-align: right;
display: block;
width: 5em;
float: left;
margin-right: 10px;
}
body#info p.contact-info span {
display: block;
float: left;
margin-bottom: 20px;
}

View File

@@ -0,0 +1,8 @@
#info img.event-picture {
background: #fff;
border: 1px solid #F19B62;
padding: 4px;
margin: 5px 10px 5px 20px;
float: right;
max-width: 300px;
}

View File

@@ -0,0 +1,3 @@
#info div.pae-film {
margin: 10px;
}

View File

@@ -0,0 +1,42 @@
/*
* Styles for common form stuff
*
*/
ul.errors {
margin: 0 0 10px 0;
padding: 10px;
background: #990000;
color: #fff;
list-style: none;
}
ul.errors li {
}
div.field {
float: left;
width: 100%;
margin-bottom: 5px;
}
div.field-submit {
clear: both;
}
div.field label {
width: 140px;
text-align: right;
display: block;
float: left;
margin-right: 10px;
}
div.field input,
div.field select,
div.field .input {
clear: left;
}
/*
* Login-specific styles
*/
fieldset.login {
}
fieldset.login div.field label {
width: 80px;
}

View File

@@ -0,0 +1,14 @@
a img {
border: 0;
}
#default p.panorama-para {
display: none;
margin: 0 0 0 10px;
font-size: 0.8em;
}
#default p.panorama-para+p {
}
#default div.pae-film {
margin: 20px;
}

View File

@@ -0,0 +1,12 @@
body#howdowedoit h3+img {
float: right;
margin: 0 5px;
padding-bottom: 15px;
}
body#howdowedoit h2 {
clear: both;
}
body#howdowedoit h3 {
clear: both;
}

View File

@@ -0,0 +1,383 @@
/*
* Styles to get footer at bottom of page
* from http://www.alistapart.com/articles/footers/
*/
html, body {
height: 100%;
}
#main {
position: relative;
min-height: 100%;
height: 100%;
voice-family: "\"}\"";
voice-family: inherit;
height: auto;
margin-bottom: -48px;
}
html>body #main {
height: auto;
}
#footer {
clear: both;
width: 100%;
}
/* end footer at bottom style */
#main {
min-width: 985px;
}
html {
margin: 0;
}
body {
margin: 0;
font-family: Arial;
background: url(/images/identity/bg_runman.jpg) right top no-repeat;
}
h2 {
margin: 4px 0;
color: #22347C;
font-weight: bold;
font-size: 1.3em;
font-variant: small-caps;
clear: both;
}
p+h2 {
margin-top: 26px;
}
h2+h3 {
margin-top: 12px;
}
h3 {
border-top: 1px solid #F19D62;
font-size: 1.0em;
margin: 25px 0 0 5px;
padding: 2px;
font-weight: normal;
color: #21337B;
}
h3+h4 {
margin-top: 10px;
}
h4 {
margin: 25px 0px 0px 20px;
font-size: 0.9em;
}
div.leitbetriebe-austria {
position: absolute;
right: 5px;
top: 150px;
z-index: 3;
}
div#header div.leitbetriebe-austria img {
border: 0;
}
#content h4+ul,
#content h4+p,
#content h3+ul,
#content h3+p {
margin-top: 2px;
}
#content table,
#content p,
#content blockquote {
font-size: 0.9em;
line-height: 1.3em;
}
#content table,
#content p {
margin: 15px 20px;
}
#content ul {
font-size: 0.9em;
margin: 15px 20px;
padding-left: 15px;
}
#content ul ul {
margin: 5px 10px;
}
/*
* Header styles
*/
div#header {
position: relative;
}
div#user-bar {
position: relative;
background: url(/images/accents/top_line.gif) repeat-x center center;
height: 30px;
}
div#user-bar a {
color: #fff;
}
div#user-bar a:hover {
color: #ddd;
}
div#user-bar span {
position: absolute;
top: 0px;
left: 0px;
color: #fff;
font-size: 0.8em;
padding: 4px 3px 3px;
}
h1 {
position: relative;
z-index: 2;
padding: 0;
margin: 0;
}
h1 a {
display: block;
text-indent: -9999px;
background: url(/images/identity/logo_pae-small2.gif) no-repeat left center;
height: 89px;
width: 605px;
}
h1 img {
position: absolute;
top: 0px;
left: 610px;
}
h1 img+img {
left: 662px;
}
div.orange-line {
position: absolute;
z-index: 1;
bottom: 7px;
width: 100%;
height: 14px;
background: #F19D62;
}
/*
* Navigation styles
*/
div#nav {
position: relative;
z-index: 3;
top: -7px;
background: url(/images/accents/bottom_line.gif) repeat-x center center;
height: 34px;
}
div#nav ul {
margin: 0;
padding: 0;
position: absolute;
left: 216px;
top: 0px;
}
div#nav li {
list-style: none;
float: left;
}
div#nav li a,
div#nav li a:hover {
display: block;
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 0.9em;
padding: 5px 10px 4px;
}
div#nav li a:hover,
body#whoarewe li#whoarewe_nav a,
body#whatdowedo li#whatdowedo_nav a,
body#howdowedoit li#howdowedoit_nav a,
body#where li#where_nav a {
background: #22347C;
border-bottom: 6px solid #7592C5;
}
div#nav span#language-toggle {
position: absolute;
right: 0px;
color: #fff;
font-size: 0.8em;
padding: 6px 6px 5px 0;
}
div#nav span#language-toggle a {
color: #fff;
}
/*
* Sidebar and content wrapper styles
*/
div#sidebar-content-wrapper {
position: relative;
top: -7px;
width: 100%;
min-height: 517px;
voice-family: "\"}\"";
voice-family: inherit;
height: auto;
}
/*
* Sidebar styles
*/
#sidebar {
padding: 0 0 10px 0;
position: absolute;
width: 217px;
background: #22347C url(/images/accents/right_side-blue.gif) repeat-y right;
color: #fff;
height: 100%;
}
#sidebar .sb-section {
border-bottom: 1px solid #fff;
padding: 10px 0 10px 10px;
margin-right: 12px;
background: #7592C5;
}
#sidebar .sb-section a {
color: #fff;
}
#sidebar h2 {
margin: 0;
padding: 0;
font-variant: small-caps;
font-size: 1.0em;
color: #fff;
}
/*
* Sub-navigation styles
*/
#subnav ul {
margin: 0 0 0 4px;
padding: 0;
}
#subnav p {
font-size: 1.2em;
}
#subnav li {
list-style-type: none;
font-size: 0.6em;
}
#subnav a {
margin-left: 2px;
text-decoration: none;
font-size: 1.4em;
}
#subnav a:hover,
body#home li#home_subnav a,
body#schedule li#schedule_subnav a,
body#events li#events_subnav a,
body#references li#references_subnav a,
body#subsidies li#subsidies_subnav a,
body#translations li#translations_subnav a,
body#links li#links_subnav a,
body#drivingdirections li#drivingdirections_subnav a {
color: #ddd;
}
/*
* Quick contact styles
*/
#sidebar #quickcontact {
padding-top: 0;
}
#quickcontact p {
font-size: 0.8em;
margin: 4px;
}
/*
* Page navigation styles
*/
#pagenav {
}
#pagenav p {
font-size: 0.7em;
margin: 4px;
}
#pagenav ul {
font-size: 0.7em;
padding: 0 10px;
margin: 4px;
}
/*
* Follow us box
*/
#sidebar #follow-us img {
border: 1px solid #000;
margin-top: 4px;
}
/*
* Sidebar random picture styles
*/
#sidebar #sidebarpicture {
padding: 0;
font-size: 0;
}
#sidebarpicture img {
width: 205px;
}
/*
* Content styles
*/
#content {
position: relative;
left: 217px;
width: 630px;
padding: 10px 15px 48px;
}
/*
* Footer styles
*/
div#footer {
position: relative;
z-index: 2;
text-align: center;
background: #7592C5;
border-top: 1px solid #fff;
border-bottom: 10px #F19D62 solid;
color: #fff;
padding: 6px 0;
font-size: 0.8em;
}
div#footer a {
color: #fff;
}
div#footer a:hover {
color: #ccc;
}
/*
* Tab styles
*/
#content ul.tabs {
position: relative;
z-index: 2;
padding: 0;
margin: 10px 0 0 2px;
list-style-type: none;
}
#content ul.tabs li {
background: #eee;
border-width: 1px 1px 0px 1px;
border-style: solid;
border-color: #999;
padding: 2px 4px;
margin: 0;
display: inline;
cursor: pointer;
}
#content ul.tabs li.selected-tab,
#content ul.tabs li:hover {
background: #fff;
}
#content div.tab-content-wrapper {
position: relative;
z-index: 1;
}
#content div.tab-content {
display: none;
}
div.tab-content h3 {
margin-top: 10px;
border: 0;
}
#content div.initial-tab {
display: block;
}

View File

@@ -0,0 +1,84 @@
/*
* Styles for schedule page
*/
#content table.schedule-table {
margin-top: 0;
border-collapse: collapse;
font-size: 0.8em;
width: 600px;
}
#content table#public_courses_20092010_table,
#content table#public_courses_2010_table,
#content table#summer_courses_2009_table {
width: 840px;
}
table.schedule-table col.level-col,
table#bec_schedule col.dates-col,
table#cae_schedule col.dates-col,
table#fce_schedule col.dates-col,
table#ielts_schedule col.dates-col,
table.schedule-table col.times-col,
table.schedule-table col.dates-col,
table.schedule-table col.days-col,
table.schedule-table col.coursename-col {
border-right: 1px solid #eee;
}
table#biweek_schedule col.level-col {
white-space: nowrap;
}
table.schedule-table col.level-col {
}
table.schedule-table col.dates-col {
width: 150px;
}
table#summer_courses_2009_table col.prices-col {
width: 140px;
}
table#summer_courses_2009_table col.days-col {
width: 210px;
}
table#summer_courses_2009_table col.dates-col {
width: 200px;
}
table#summer_courses_2009_table td {
padding: 4px;
}
table.schedule-table td.course-name {
white-space: nowrap;
}
table.schedule-table thead th {
background: #1D327A;
padding: 4px;
font-weight: normal;
color: #eee;
text-align: left;
}
table.schedule-table tbody tr {
border-bottom: 1px solid #eee;
}
table.schedule-table tbody tr.master {
cursor: pointer;
}
table.schedule-table tbody tr.month-row td {
padding: 4px;
text-align: left;
font-weight: bold;
font-size: 1.0em;
}
table.schedule-table tbody tr.regular td,
table.schedule-table tbody tr.master td {
padding: 4px 6px;
}
table.schedule-table tbody div.detail {
display: none;
padding: 4px 6px;
}
table.schedule-table tbody tr.master-selected,
table.schedule-table tbody tr.regular:hover,
table.schedule-table tbody tr.master:hover {
background: #EABC8C;
}
table.schedule-table td {
vertical-align: top;
padding: 0 6px;
}

View File

@@ -0,0 +1,6 @@
#whatdowedo a img {
border: 2px #ccc solid;
}
#whatdowedo a:hover img {
border: 2px #666 solid;
}

View File

@@ -0,0 +1,48 @@
#whoarewe img.employee-summary-picture {
float: left;
padding: 5px;
border: 1px solid #F19B62;
background: #fff;
margin: 2px 10px 10px 20px;
}
#whoarewe img.employee-details-picture {
float: right;
padding: 5px;
border: 1px solid #F19B62;
background: #fff;
margin: 2px 0 10px 10px;
}
#whoarewe p.employee-title {
margin: -5px 10px 0;
font-size: 1.0em;
}
#whoarewe div.employee-summary {
min-height: 120px;
}
#whoarewe div.employee-summary>p {
margin-top: 4px;
}
#whoarewe h3.employee-summary-name {
clear: both;
}
#whoarewe h3+img+p {
margin-top: 2px;
}
#whoarewe p.contact-info {
clear: left;
margin: 0 4px;
}
#whoarewe p.contact-info label {
font-weight: bold;
text-align: right;
display: block;
width: 5em;
float: left;
margin-right: 10px;
}
#whoarewe p.contact-info span {
display: block;
float: left;
margin-bottom: 5px;
}

View File

@@ -0,0 +1,35 @@
/*
* Styles specific to the admin application
* Most of these override styles in main.css
*/
div#nav ul {
left: 0;
}
div#nav>img {
position: relative;
left: 431px;
}
#content {
left: 0;
width: auto;
padding-top: 0;
}
img.event-thumb,
img.employee-thumb {
margin: 0 5px 0 0;
vertical-align: top;
}
body#employee li#employees_nav a,
body#event li#events_nav a,
body#course li#courses_nav a {
background: #22347C;
border-bottom: 6px solid #7592C5;
}
/*
* TinyMCE styles
*/
#content table.mceToolbar {
margin: 0;
}

View File

@@ -0,0 +1,16 @@
body#info p.contact-info {
clear: both;
}
body#info p.contact-info label {
font-weight: bold;
text-align: right;
display: block;
width: 5em;
float: left;
margin-right: 10px;
}
body#info p.contact-info span {
display: block;
float: left;
margin-bottom: 20px;
}

View File

@@ -0,0 +1,8 @@
#info img.event-picture {
background: #fff;
border: 1px solid #F19B62;
padding: 4px;
margin: 5px 10px 5px 20px;
float: right;
max-width: 300px;
}

View File

@@ -0,0 +1,3 @@
#info div.pae-film {
margin: 10px;
}

View File

@@ -0,0 +1,42 @@
/*
* Styles for common form stuff
*
*/
ul.errors {
margin: 0 0 10px 0;
padding: 10px;
background: #990000;
color: #fff;
list-style: none;
}
ul.errors li {
}
div.field {
float: left;
width: 100%;
margin-bottom: 5px;
}
div.field-submit {
clear: both;
}
div.field label {
width: 140px;
text-align: right;
display: block;
float: left;
margin-right: 10px;
}
div.field input,
div.field select,
div.field .input {
clear: left;
}
/*
* Login-specific styles
*/
fieldset.login {
}
fieldset.login div.field label {
width: 80px;
}

View File

@@ -0,0 +1,14 @@
a img {
border: 0;
}
#default p.panorama-para {
display: none;
margin: 0 0 0 10px;
font-size: 0.8em;
}
#default p.panorama-para+p {
}
#default div.pae-film {
margin: 20px;
}

View File

@@ -0,0 +1,12 @@
body#howdowedoit h3+img {
float: right;
margin: 0 5px;
padding-bottom: 15px;
}
body#howdowedoit h2 {
clear: both;
}
body#howdowedoit h3 {
clear: both;
}

View File

@@ -0,0 +1,383 @@
/*
* Styles to get footer at bottom of page
* from http://www.alistapart.com/articles/footers/
*/
html, body {
height: 100%;
}
#main {
position: relative;
min-height: 100%;
height: 100%;
voice-family: "\"}\"";
voice-family: inherit;
height: auto;
margin-bottom: -48px;
}
html>body #main {
height: auto;
}
#footer {
clear: both;
width: 100%;
}
/* end footer at bottom style */
#main {
min-width: 985px;
}
html {
margin: 0;
}
body {
margin: 0;
font-family: Arial;
background: url(/images/identity/bg_runman.jpg) right top no-repeat;
}
h2 {
margin: 4px 0;
color: #22347C;
font-weight: bold;
font-size: 1.3em;
font-variant: small-caps;
clear: both;
}
p+h2 {
margin-top: 26px;
}
h2+h3 {
margin-top: 12px;
}
h3 {
border-top: 1px solid #F19D62;
font-size: 1.0em;
margin: 25px 0 0 5px;
padding: 2px;
font-weight: normal;
color: #21337B;
}
h3+h4 {
margin-top: 10px;
}
h4 {
margin: 25px 0px 0px 20px;
font-size: 0.9em;
}
div.leitbetriebe-austria {
position: absolute;
right: 5px;
top: 150px;
z-index: 3;
}
div#header div.leitbetriebe-austria img {
border: 0;
}
#content h4+ul,
#content h4+p,
#content h3+ul,
#content h3+p {
margin-top: 2px;
}
#content table,
#content p,
#content blockquote {
font-size: 0.9em;
line-height: 1.3em;
}
#content table,
#content p {
margin: 15px 20px;
}
#content ul {
font-size: 0.9em;
margin: 15px 20px;
padding-left: 15px;
}
#content ul ul {
margin: 5px 10px;
}
/*
* Header styles
*/
div#header {
position: relative;
}
div#user-bar {
position: relative;
background: url(/images/accents/top_line.gif) repeat-x center center;
height: 30px;
}
div#user-bar a {
color: #fff;
}
div#user-bar a:hover {
color: #ddd;
}
div#user-bar span {
position: absolute;
top: 0px;
left: 0px;
color: #fff;
font-size: 0.8em;
padding: 4px 3px 3px;
}
h1 {
position: relative;
z-index: 2;
padding: 0;
margin: 0;
}
h1 a {
display: block;
text-indent: -9999px;
background: url(/images/identity/logo_pae-small2.gif) no-repeat left center;
height: 89px;
width: 605px;
}
h1 img {
position: absolute;
top: 0px;
left: 610px;
}
h1 img+img {
left: 662px;
}
div.orange-line {
position: absolute;
z-index: 1;
bottom: 7px;
width: 100%;
height: 14px;
background: #F19D62;
}
/*
* Navigation styles
*/
div#nav {
position: relative;
z-index: 3;
top: -7px;
background: url(/images/accents/bottom_line.gif) repeat-x center center;
height: 34px;
}
div#nav ul {
margin: 0;
padding: 0;
position: absolute;
left: 216px;
top: 0px;
}
div#nav li {
list-style: none;
float: left;
}
div#nav li a,
div#nav li a:hover {
display: block;
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 0.9em;
padding: 5px 10px 4px;
}
div#nav li a:hover,
body#whoarewe li#whoarewe_nav a,
body#whatdowedo li#whatdowedo_nav a,
body#howdowedoit li#howdowedoit_nav a,
body#where li#where_nav a {
background: #22347C;
border-bottom: 6px solid #7592C5;
}
div#nav span#language-toggle {
position: absolute;
right: 0px;
color: #fff;
font-size: 0.8em;
padding: 6px 6px 5px 0;
}
div#nav span#language-toggle a {
color: #fff;
}
/*
* Sidebar and content wrapper styles
*/
div#sidebar-content-wrapper {
position: relative;
top: -7px;
width: 100%;
min-height: 517px;
voice-family: "\"}\"";
voice-family: inherit;
height: auto;
}
/*
* Sidebar styles
*/
#sidebar {
padding: 0 0 10px 0;
position: absolute;
width: 217px;
background: #22347C url(/images/accents/right_side-blue.gif) repeat-y right;
color: #fff;
height: 100%;
}
#sidebar .sb-section {
border-bottom: 1px solid #fff;
padding: 10px 0 10px 10px;
margin-right: 12px;
background: #7592C5;
}
#sidebar .sb-section a {
color: #fff;
}
#sidebar h2 {
margin: 0;
padding: 0;
font-variant: small-caps;
font-size: 1.0em;
color: #fff;
}
/*
* Sub-navigation styles
*/
#subnav ul {
margin: 0 0 0 4px;
padding: 0;
}
#subnav p {
font-size: 1.2em;
}
#subnav li {
list-style-type: none;
font-size: 0.6em;
}
#subnav a {
margin-left: 2px;
text-decoration: none;
font-size: 1.4em;
}
#subnav a:hover,
body#home li#home_subnav a,
body#schedule li#schedule_subnav a,
body#events li#events_subnav a,
body#references li#references_subnav a,
body#subsidies li#subsidies_subnav a,
body#translations li#translations_subnav a,
body#links li#links_subnav a,
body#drivingdirections li#drivingdirections_subnav a {
color: #ddd;
}
/*
* Quick contact styles
*/
#sidebar #quickcontact {
padding-top: 0;
}
#quickcontact p {
font-size: 0.8em;
margin: 4px;
}
/*
* Page navigation styles
*/
#pagenav {
}
#pagenav p {
font-size: 0.7em;
margin: 4px;
}
#pagenav ul {
font-size: 0.7em;
padding: 0 10px;
margin: 4px;
}
/*
* Follow us box
*/
#sidebar #follow-us img {
border: 1px solid #000;
margin-top: 4px;
}
/*
* Sidebar random picture styles
*/
#sidebar #sidebarpicture {
padding: 0;
font-size: 0;
}
#sidebarpicture img {
width: 205px;
}
/*
* Content styles
*/
#content {
position: relative;
left: 217px;
width: 630px;
padding: 10px 15px 48px;
}
/*
* Footer styles
*/
div#footer {
position: relative;
z-index: 2;
text-align: center;
background: #7592C5;
border-top: 1px solid #fff;
border-bottom: 10px #F19D62 solid;
color: #fff;
padding: 6px 0;
font-size: 0.8em;
}
div#footer a {
color: #fff;
}
div#footer a:hover {
color: #ccc;
}
/*
* Tab styles
*/
#content ul.tabs {
position: relative;
z-index: 2;
padding: 0;
margin: 10px 0 0 2px;
list-style-type: none;
}
#content ul.tabs li {
background: #eee;
border-width: 1px 1px 0px 1px;
border-style: solid;
border-color: #999;
padding: 2px 4px;
margin: 0;
display: inline;
cursor: pointer;
}
#content ul.tabs li.selected-tab,
#content ul.tabs li:hover {
background: #fff;
}
#content div.tab-content-wrapper {
position: relative;
z-index: 1;
}
#content div.tab-content {
display: none;
}
div.tab-content h3 {
margin-top: 10px;
border: 0;
}
#content div.initial-tab {
display: block;
}

View File

@@ -0,0 +1,84 @@
/*
* Styles for schedule page
*/
#content table.schedule-table {
margin-top: 0;
border-collapse: collapse;
font-size: 0.8em;
width: 600px;
}
#content table#public_courses_20092010_table,
#content table#public_courses_2010_table,
#content table#summer_courses_2009_table {
width: 840px;
}
table.schedule-table col.level-col,
table#bec_schedule col.dates-col,
table#cae_schedule col.dates-col,
table#fce_schedule col.dates-col,
table#ielts_schedule col.dates-col,
table.schedule-table col.times-col,
table.schedule-table col.dates-col,
table.schedule-table col.days-col,
table.schedule-table col.coursename-col {
border-right: 1px solid #eee;
}
table#biweek_schedule col.level-col {
white-space: nowrap;
}
table.schedule-table col.level-col {
}
table.schedule-table col.dates-col {
width: 150px;
}
table#summer_courses_2009_table col.prices-col {
width: 140px;
}
table#summer_courses_2009_table col.days-col {
width: 210px;
}
table#summer_courses_2009_table col.dates-col {
width: 200px;
}
table#summer_courses_2009_table td {
padding: 4px;
}
table.schedule-table td.course-name {
white-space: nowrap;
}
table.schedule-table thead th {
background: #1D327A;
padding: 4px;
font-weight: normal;
color: #eee;
text-align: left;
}
table.schedule-table tbody tr {
border-bottom: 1px solid #eee;
}
table.schedule-table tbody tr.master {
cursor: pointer;
}
table.schedule-table tbody tr.month-row td {
padding: 4px;
text-align: left;
font-weight: bold;
font-size: 1.0em;
}
table.schedule-table tbody tr.regular td,
table.schedule-table tbody tr.master td {
padding: 4px 6px;
}
table.schedule-table tbody div.detail {
display: none;
padding: 4px 6px;
}
table.schedule-table tbody tr.master-selected,
table.schedule-table tbody tr.regular:hover,
table.schedule-table tbody tr.master:hover {
background: #EABC8C;
}
table.schedule-table td {
vertical-align: top;
padding: 0 6px;
}

View File

@@ -0,0 +1,6 @@
#whatdowedo a img {
border: 2px #ccc solid;
}
#whatdowedo a:hover img {
border: 2px #666 solid;
}

View File

@@ -0,0 +1,48 @@
#whoarewe img.employee-summary-picture {
float: left;
padding: 5px;
border: 1px solid #F19B62;
background: #fff;
margin: 2px 10px 10px 20px;
}
#whoarewe img.employee-details-picture {
float: right;
padding: 5px;
border: 1px solid #F19B62;
background: #fff;
margin: 2px 0 10px 10px;
}
#whoarewe p.employee-title {
margin: -5px 10px 0;
font-size: 1.0em;
}
#whoarewe div.employee-summary {
min-height: 120px;
}
#whoarewe div.employee-summary>p {
margin-top: 4px;
}
#whoarewe h3.employee-summary-name {
clear: both;
}
#whoarewe h3+img+p {
margin-top: 2px;
}
#whoarewe p.contact-info {
clear: left;
margin: 0 4px;
}
#whoarewe p.contact-info label {
font-weight: bold;
text-align: right;
display: block;
width: 5em;
float: left;
margin-right: 10px;
}
#whoarewe p.contact-info span {
display: block;
float: left;
margin-bottom: 5px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 45
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/files
END

View File

@@ -0,0 +1,31 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/files
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
references
dir

View File

@@ -0,0 +1,35 @@
K 25
svn:wc:ra_dav:version-url
V 56
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/files/references
END
OENBsmall.pdf
K 25
svn:wc:ra_dav:version-url
V 70
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/files/references/OENBsmall.pdf
END
Frantschachsmall.pdf
K 25
svn:wc:ra_dav:version-url
V 77
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/files/references/Frantschachsmall.pdf
END
Novartissmall.pdf
K 25
svn:wc:ra_dav:version-url
V 74
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/files/references/Novartissmall.pdf
END
Metrosmall.pdf
K 25
svn:wc:ra_dav:version-url
V 71
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/files/references/Metrosmall.pdf
END
Sonysmall.pdf
K 25
svn:wc:ra_dav:version-url
V 70
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/files/references/Sonysmall.pdf
END

View File

@@ -0,0 +1,93 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/files/references
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
OENBsmall.pdf
file
2009-05-28T02:25:00.000000Z
7c87ef5b47cf68465c5562a690c01fa3
2009-05-28T02:14:48.119086Z
25
ben
has-props
Frantschachsmall.pdf
file
2009-05-28T02:25:00.000000Z
ba4502c4619f64e3017ac948f0d7766f
2009-05-28T02:14:48.119086Z
25
ben
has-props
Novartissmall.pdf
file
2009-05-28T02:25:00.000000Z
107f2b6d84750e44e0951808ea8d4f00
2009-05-28T02:14:48.119086Z
25
ben
has-props
Metrosmall.pdf
file
2009-05-28T02:25:00.000000Z
1d171a0cdf987a8627fddd62426b4c85
2009-05-28T02:14:48.119086Z
25
ben
has-props
Sonysmall.pdf
file
2009-05-28T02:25:00.000000Z
dda06e8a79ef2a93a9df4782c3dc856c
2009-05-28T02:14:48.119086Z
25
ben
has-props

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,10 @@
<?php
define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/../proactiveenglish'));
define('SF_APP', 'frontend');
define('SF_ENVIRONMENT', 'dev');
define('SF_DEBUG', true);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
sfContext::getInstance()->getController()->dispatch();

View File

@@ -0,0 +1,23 @@
K 25
svn:wc:ra_dav:version-url
V 46
/svn/!svn/ver/52/pae.co.at/trunk/htdocs/images
END
xing.png
K 25
svn:wc:ra_dav:version-url
V 55
/svn/!svn/ver/52/pae.co.at/trunk/htdocs/images/xing.png
END
facebook.jpg
K 25
svn:wc:ra_dav:version-url
V 59
/svn/!svn/ver/52/pae.co.at/trunk/htdocs/images/facebook.jpg
END
leitbetriebeaustria.png
K 25
svn:wc:ra_dav:version-url
V 70
/svn/!svn/ver/52/pae.co.at/trunk/htdocs/images/leitbetriebeaustria.png
END

View File

@@ -0,0 +1,154 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/images
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
accents
dir
whoarewe
dir
events
dir
whatdowedo
dir
facebook.jpg
file
2010-02-13T17:15:39.000000Z
a582e91f37112966753cdf0f726634bd
2010-05-21T03:59:05.104047Z
52
ben
has-props
1516
xing.png
file
2010-02-13T17:17:45.000000Z
b0f01c4b9bf1360ba3c3d521d0002213
2010-05-21T03:59:05.104047Z
52
ben
has-props
1576
identity
dir
sidebar
dir
methodology
dir
leitbetriebeaustria.png
file
2010-02-23T05:15:54.000000Z
9d46b61e47943295f07ec248bfe34b9a
2010-05-21T03:59:05.104047Z
52
ben
has-props
4463
panorama
dir

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,41 @@
K 25
svn:wc:ra_dav:version-url
V 54
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents
END
bottom_line.gif
K 25
svn:wc:ra_dav:version-url
V 70
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/bottom_line.gif
END
bottom_swoop.gif
K 25
svn:wc:ra_dav:version-url
V 71
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/bottom_swoop.gif
END
bottom_swoop_admin.gif
K 25
svn:wc:ra_dav:version-url
V 77
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/bottom_swoop_admin.gif
END
right_side-blue.gif
K 25
svn:wc:ra_dav:version-url
V 74
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/right_side-blue.gif
END
top_line.gif
K 25
svn:wc:ra_dav:version-url
V 67
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/top_line.gif
END
top_swoop.gif
K 25
svn:wc:ra_dav:version-url
V 68
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/top_swoop.gif
END

View File

@@ -0,0 +1,109 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/images/accents
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
bottom_line.gif
file
2009-05-28T02:25:01.000000Z
6ef8a566fd2d923d20df72b684f857b9
2009-05-28T02:14:48.119086Z
25
ben
has-props
bottom_swoop.gif
file
2009-05-28T02:25:01.000000Z
6707dbb78a62434f9a6f0abbadc02402
2009-05-28T02:14:48.119086Z
25
ben
has-props
_pngs
dir
bottom_swoop_admin.gif
file
2009-05-28T02:25:01.000000Z
f390e7d12300f2914a57257ecf42281e
2009-05-28T02:14:48.119086Z
25
ben
has-props
right_side-blue.gif
file
2009-05-28T02:25:01.000000Z
ff1127e768b08a22f3726c985b42fbb5
2009-05-28T02:14:48.119086Z
25
ben
has-props
top_line.gif
file
2009-05-28T02:25:01.000000Z
c808fe1779b7d33a8e318fa0ef1cdad9
2009-05-28T02:14:48.119086Z
25
ben
has-props
top_swoop.gif
file
2009-05-28T02:25:01.000000Z
6faaed87e96181c0b8b2f0319634bbee
2009-05-28T02:14:48.119086Z
25
ben
has-props

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,35 @@
K 25
svn:wc:ra_dav:version-url
V 60
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/_pngs
END
bottom_swoop_admin.png
K 25
svn:wc:ra_dav:version-url
V 83
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/_pngs/bottom_swoop_admin.png
END
top_line.png
K 25
svn:wc:ra_dav:version-url
V 73
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/_pngs/top_line.png
END
top_swoop.png
K 25
svn:wc:ra_dav:version-url
V 74
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/_pngs/top_swoop.png
END
bottom_line.png
K 25
svn:wc:ra_dav:version-url
V 76
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/_pngs/bottom_line.png
END
bottom_swoop.png
K 25
svn:wc:ra_dav:version-url
V 77
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/images/accents/_pngs/bottom_swoop.png
END

View File

@@ -0,0 +1,93 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/images/accents/_pngs
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
bottom_swoop_admin.png
file
2009-05-28T02:25:00.000000Z
0713e2685611e7d2c286fef57a75210a
2009-05-28T02:14:48.119086Z
25
ben
has-props
top_line.png
file
2009-05-28T02:25:00.000000Z
6f6acb1e75003a4ba3842ea2466823d4
2009-05-28T02:14:48.119086Z
25
ben
has-props
top_swoop.png
file
2009-05-28T02:25:00.000000Z
919cc95607c5a021e5485e39f2dd3fb7
2009-05-28T02:14:48.119086Z
25
ben
has-props
bottom_line.png
file
2009-05-28T02:25:00.000000Z
efc4ae7361d9e51eb55b720ad4c89af1
2009-05-28T02:14:48.119086Z
25
ben
has-props
bottom_swoop.png
file
2009-05-28T02:25:00.000000Z
88820a449f3e22f84c032e7a6fab43e2
2009-05-28T02:14:48.119086Z
25
ben
has-props

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,9 @@
K 14
svn:executable
V 0
K 13
svn:mime-type
V 24
application/octet-stream
END

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

Some files were not shown because too many files have changed in this diff Show More