41 changed files with 1090 additions and 329 deletions
-
24database.php
-
4image.php
-
12loader.php
-
30system/Cache.php
-
3system/RPC.php
-
1system/Session.php
-
3system/Utils.php
-
42system/UtilsPicture.php
-
31system/Widget/WidgetCommon.php
-
62system/Widget/widgets/Chat/Chat.php
-
60system/Widget/widgets/ContactCard/ContactCard.php
-
90system/Widget/widgets/ContactInfo/ContactInfo.php
-
43system/Widget/widgets/ContactSummary/ContactSummary.php
-
2system/Widget/widgets/Explore/Explore.php
-
53system/Widget/widgets/Feed/Feed.php
-
7system/Widget/widgets/Login/Login.php
-
1system/Widget/widgets/Logout/Logout.php
-
34system/Widget/widgets/Node/Node.php
-
19system/Widget/widgets/Profile/Profile.php
-
20system/Widget/widgets/ProfileData/ProfileData.php
-
48system/Widget/widgets/Roster/Roster.php
-
BINsystem/Widget/widgets/Roster/img/earth.png
-
BINsystem/Widget/widgets/Roster/img/mobile.png
-
BINsystem/Widget/widgets/Roster/img/music.png
-
BINsystem/Widget/widgets/Roster/img/robot.png
-
24system/Widget/widgets/Roster/roster.css
-
8system/Widget/widgets/ServerNodes/ServerNodes.php
-
49system/Widget/widgets/Vcard/Vcard.php
-
53system/Widget/widgets/Wall/Wall.php
-
1themes/movim/css/posts.css
-
14themes/movim/css/style2.css
-
4themes/movim/img/default.svg
-
95themes/movim/img/default1.svg
-
95themes/movim/img/default2.svg
-
95themes/movim/img/default3.svg
-
95themes/movim/img/default4.svg
-
95themes/movim/img/default5.svg
-
95themes/movim/img/default6.svg
-
95themes/movim/img/default7.svg
-
6themes/movim/node.tpl
-
6themes/movim/server.tpl
@ -0,0 +1,24 @@ |
|||
<?php |
|||
require('init.php'); |
|||
$pd = new \modl\PostDAO(); |
|||
$pd->create(); |
|||
|
|||
$nd = new \modl\NodeDAO(); |
|||
$nd->create(); |
|||
|
|||
$cd = new \modl\ContactDAO(); |
|||
$cd->create(); |
|||
|
|||
$cad = new \modl\CapsDAO(); |
|||
$cad->create(); |
|||
|
|||
$prd = new \modl\PresenceDAO(); |
|||
$prd->create(); |
|||
|
|||
$rd = new \modl\RosterLinkDAO(); |
|||
$rd->create(); |
|||
|
|||
$sd = new \modl\SessionDAO(); |
|||
$sd->create(); |
|||
|
|||
echo 'Recreate database... done !'; |
|||
@ -0,0 +1,42 @@ |
|||
<?php |
|||
|
|||
function createThumbnails($jid, $photobin) { |
|||
unlink(BASE_PATH.'cache/'.$jid.'_l.jpg'); |
|||
unlink(BASE_PATH.'cache/'.$jid.'_m.jpg'); |
|||
unlink(BASE_PATH.'cache/'.$jid.'_s.jpg'); |
|||
unlink(BASE_PATH.'cache/'.$jid.'_xs.jpg'); |
|||
createThumbnailSize($photobin, 150, BASE_PATH.'cache/'.$jid.'_l.jpg'); |
|||
createThumbnailSize($photobin, 120, BASE_PATH.'cache/'.$jid.'_m.jpg'); |
|||
createThumbnailSize($photobin, 50, BASE_PATH.'cache/'.$jid.'_s.jpg'); |
|||
createThumbnailSize($photobin, 24, BASE_PATH.'cache/'.$jid.'_xs.jpg'); |
|||
} |
|||
|
|||
function createThumbnailSize($photobin, $size, $path) { |
|||
$thumb = imagecreatetruecolor($size, $size); |
|||
$white = imagecolorallocate($thumb, 255, 255, 255); |
|||
imagefill($thumb, 0, 0, $white); |
|||
|
|||
$source = imagecreatefromstring(base64_decode($photobin)); |
|||
|
|||
$width = imagesx($source); |
|||
$height = imagesy($source); |
|||
|
|||
if($width >= $height) { |
|||
// For landscape images
|
|||
$x_offset = ($width - $height) / 2; |
|||
$y_offset = 0; |
|||
$square_size = $width - ($x_offset * 2); |
|||
} else { |
|||
// For portrait and square images
|
|||
$x_offset = 0; |
|||
$y_offset = ($height - $width) / 2; |
|||
$square_size = $height - ($y_offset * 2); |
|||
} |
|||
|
|||
if($source) { |
|||
imagecopyresampled($thumb, $source, 0, 0, $x_offset, $y_offset, $size, $size, $square_size, $square_size); |
|||
|
|||
//display_image($hash, "image/jpeg");
|
|||
imagejpeg($thumb, $path, 95); |
|||
} |
|||
} |
|||
|
After Width: 16 | Height: 16 | Size: 390 B |
|
After Width: 16 | Height: 16 | Size: 128 B |
|
After Width: 16 | Height: 16 | Size: 204 B |
|
After Width: 16 | Height: 16 | Size: 364 B |
@ -0,0 +1,95 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|||
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
|||
|
|||
<svg |
|||
xmlns:dc="http://purl.org/dc/elements/1.1/" |
|||
xmlns:cc="http://creativecommons.org/ns#" |
|||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
|||
xmlns:svg="http://www.w3.org/2000/svg" |
|||
xmlns="http://www.w3.org/2000/svg" |
|||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
|||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
|||
width="600" |
|||
height="600" |
|||
id="svg2" |
|||
version="1.1" |
|||
inkscape:version="0.48.3.1 r9886" |
|||
sodipodi:docname="default.svg"> |
|||
<defs |
|||
id="defs4" /> |
|||
<sodipodi:namedview |
|||
id="base" |
|||
pagecolor="#ffffff" |
|||
bordercolor="#666666" |
|||
borderopacity="1.0" |
|||
inkscape:pageopacity="0.0" |
|||
inkscape:pageshadow="2" |
|||
inkscape:zoom="0.42" |
|||
inkscape:cx="-282.14285" |
|||
inkscape:cy="120" |
|||
inkscape:document-units="px" |
|||
inkscape:current-layer="layer1" |
|||
showgrid="true" |
|||
showborder="false" |
|||
inkscape:window-width="1280" |
|||
inkscape:window-height="736" |
|||
inkscape:window-x="0" |
|||
inkscape:window-y="24" |
|||
inkscape:window-maximized="1" |
|||
fit-margin-top="0" |
|||
fit-margin-left="0" |
|||
fit-margin-right="0" |
|||
fit-margin-bottom="0"> |
|||
<inkscape:grid |
|||
type="xygrid" |
|||
id="grid2985" |
|||
empspacing="5" |
|||
visible="true" |
|||
enabled="true" |
|||
snapvisiblegridlinesonly="true" |
|||
originx="0px" |
|||
originy="-3.8281246e-07px" /> |
|||
</sodipodi:namedview> |
|||
<metadata |
|||
id="metadata7"> |
|||
<rdf:RDF> |
|||
<cc:Work |
|||
rdf:about=""> |
|||
<dc:format>image/svg+xml</dc:format> |
|||
<dc:type |
|||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
|||
<dc:title></dc:title> |
|||
</cc:Work> |
|||
</rdf:RDF> |
|||
</metadata> |
|||
<g |
|||
inkscape:label="Calque 1" |
|||
inkscape:groupmode="layer" |
|||
id="layer1" |
|||
transform="translate(200,-52.362183)"> |
|||
<rect |
|||
style="fill:#442178;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2987" |
|||
width="600" |
|||
height="600" |
|||
x="-200" |
|||
y="52.362183" /> |
|||
<path |
|||
sodipodi:type="arc" |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="path2989" |
|||
sodipodi:cx="100" |
|||
sodipodi:cy="312.36218" |
|||
sodipodi:rx="140" |
|||
sodipodi:ry="140" |
|||
d="m 240,312.36218 c 0,77.31987 -62.68014,140 -140,140 -77.319865,0 -140,-62.68013 -140,-140 0,-77.31986 62.680135,-140 140,-140 77.31986,0 140,62.68014 140,140 z" /> |
|||
<rect |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2993" |
|||
width="360" |
|||
height="280" |
|||
x="-80" |
|||
y="452.36218" |
|||
ry="80" /> |
|||
</g> |
|||
</svg> |
|||
@ -0,0 +1,95 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|||
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
|||
|
|||
<svg |
|||
xmlns:dc="http://purl.org/dc/elements/1.1/" |
|||
xmlns:cc="http://creativecommons.org/ns#" |
|||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
|||
xmlns:svg="http://www.w3.org/2000/svg" |
|||
xmlns="http://www.w3.org/2000/svg" |
|||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
|||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
|||
width="600" |
|||
height="600" |
|||
id="svg2" |
|||
version="1.1" |
|||
inkscape:version="0.48.3.1 r9886" |
|||
sodipodi:docname="default1.svg"> |
|||
<defs |
|||
id="defs4" /> |
|||
<sodipodi:namedview |
|||
id="base" |
|||
pagecolor="#ffffff" |
|||
bordercolor="#666666" |
|||
borderopacity="1.0" |
|||
inkscape:pageopacity="0.0" |
|||
inkscape:pageshadow="2" |
|||
inkscape:zoom="0.42" |
|||
inkscape:cx="-282.14285" |
|||
inkscape:cy="120" |
|||
inkscape:document-units="px" |
|||
inkscape:current-layer="layer1" |
|||
showgrid="true" |
|||
showborder="false" |
|||
inkscape:window-width="1280" |
|||
inkscape:window-height="736" |
|||
inkscape:window-x="0" |
|||
inkscape:window-y="24" |
|||
inkscape:window-maximized="1" |
|||
fit-margin-top="0" |
|||
fit-margin-left="0" |
|||
fit-margin-right="0" |
|||
fit-margin-bottom="0"> |
|||
<inkscape:grid |
|||
type="xygrid" |
|||
id="grid2985" |
|||
empspacing="5" |
|||
visible="true" |
|||
enabled="true" |
|||
snapvisiblegridlinesonly="true" |
|||
originx="0px" |
|||
originy="-3.8281246e-07px" /> |
|||
</sodipodi:namedview> |
|||
<metadata |
|||
id="metadata7"> |
|||
<rdf:RDF> |
|||
<cc:Work |
|||
rdf:about=""> |
|||
<dc:format>image/svg+xml</dc:format> |
|||
<dc:type |
|||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
|||
<dc:title></dc:title> |
|||
</cc:Work> |
|||
</rdf:RDF> |
|||
</metadata> |
|||
<g |
|||
inkscape:label="Calque 1" |
|||
inkscape:groupmode="layer" |
|||
id="layer1" |
|||
transform="translate(200,-52.362183)"> |
|||
<rect |
|||
style="fill:#800033;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2987" |
|||
width="600" |
|||
height="600" |
|||
x="-200" |
|||
y="52.362183" /> |
|||
<path |
|||
sodipodi:type="arc" |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="path2989" |
|||
sodipodi:cx="100" |
|||
sodipodi:cy="312.36218" |
|||
sodipodi:rx="140" |
|||
sodipodi:ry="140" |
|||
d="m 240,312.36218 c 0,77.31987 -62.68014,140 -140,140 -77.319865,0 -140,-62.68013 -140,-140 0,-77.31986 62.680135,-140 140,-140 77.31986,0 140,62.68014 140,140 z" /> |
|||
<rect |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2993" |
|||
width="360" |
|||
height="280" |
|||
x="-80" |
|||
y="452.36218" |
|||
ry="80" /> |
|||
</g> |
|||
</svg> |
|||
@ -0,0 +1,95 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|||
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
|||
|
|||
<svg |
|||
xmlns:dc="http://purl.org/dc/elements/1.1/" |
|||
xmlns:cc="http://creativecommons.org/ns#" |
|||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
|||
xmlns:svg="http://www.w3.org/2000/svg" |
|||
xmlns="http://www.w3.org/2000/svg" |
|||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
|||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
|||
width="600" |
|||
height="600" |
|||
id="svg2" |
|||
version="1.1" |
|||
inkscape:version="0.48.3.1 r9886" |
|||
sodipodi:docname="default2.svg"> |
|||
<defs |
|||
id="defs4" /> |
|||
<sodipodi:namedview |
|||
id="base" |
|||
pagecolor="#ffffff" |
|||
bordercolor="#666666" |
|||
borderopacity="1.0" |
|||
inkscape:pageopacity="0.0" |
|||
inkscape:pageshadow="2" |
|||
inkscape:zoom="0.42" |
|||
inkscape:cx="-282.14285" |
|||
inkscape:cy="120" |
|||
inkscape:document-units="px" |
|||
inkscape:current-layer="layer1" |
|||
showgrid="true" |
|||
showborder="false" |
|||
inkscape:window-width="1280" |
|||
inkscape:window-height="736" |
|||
inkscape:window-x="0" |
|||
inkscape:window-y="24" |
|||
inkscape:window-maximized="1" |
|||
fit-margin-top="0" |
|||
fit-margin-left="0" |
|||
fit-margin-right="0" |
|||
fit-margin-bottom="0"> |
|||
<inkscape:grid |
|||
type="xygrid" |
|||
id="grid2985" |
|||
empspacing="5" |
|||
visible="true" |
|||
enabled="true" |
|||
snapvisiblegridlinesonly="true" |
|||
originx="0px" |
|||
originy="-3.8281246e-07px" /> |
|||
</sodipodi:namedview> |
|||
<metadata |
|||
id="metadata7"> |
|||
<rdf:RDF> |
|||
<cc:Work |
|||
rdf:about=""> |
|||
<dc:format>image/svg+xml</dc:format> |
|||
<dc:type |
|||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
|||
<dc:title></dc:title> |
|||
</cc:Work> |
|||
</rdf:RDF> |
|||
</metadata> |
|||
<g |
|||
inkscape:label="Calque 1" |
|||
inkscape:groupmode="layer" |
|||
id="layer1" |
|||
transform="translate(200,-52.362183)"> |
|||
<rect |
|||
style="fill:#806600;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2987" |
|||
width="600" |
|||
height="600" |
|||
x="-200" |
|||
y="52.362183" /> |
|||
<path |
|||
sodipodi:type="arc" |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="path2989" |
|||
sodipodi:cx="100" |
|||
sodipodi:cy="312.36218" |
|||
sodipodi:rx="140" |
|||
sodipodi:ry="140" |
|||
d="m 240,312.36218 c 0,77.31987 -62.68014,140 -140,140 -77.319865,0 -140,-62.68013 -140,-140 0,-77.31986 62.680135,-140 140,-140 77.31986,0 140,62.68014 140,140 z" /> |
|||
<rect |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2993" |
|||
width="360" |
|||
height="280" |
|||
x="-80" |
|||
y="452.36218" |
|||
ry="80" /> |
|||
</g> |
|||
</svg> |
|||
@ -0,0 +1,95 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|||
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
|||
|
|||
<svg |
|||
xmlns:dc="http://purl.org/dc/elements/1.1/" |
|||
xmlns:cc="http://creativecommons.org/ns#" |
|||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
|||
xmlns:svg="http://www.w3.org/2000/svg" |
|||
xmlns="http://www.w3.org/2000/svg" |
|||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
|||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
|||
width="600" |
|||
height="600" |
|||
id="svg2" |
|||
version="1.1" |
|||
inkscape:version="0.48.3.1 r9886" |
|||
sodipodi:docname="default3.svg"> |
|||
<defs |
|||
id="defs4" /> |
|||
<sodipodi:namedview |
|||
id="base" |
|||
pagecolor="#ffffff" |
|||
bordercolor="#666666" |
|||
borderopacity="1.0" |
|||
inkscape:pageopacity="0.0" |
|||
inkscape:pageshadow="2" |
|||
inkscape:zoom="0.42" |
|||
inkscape:cx="-282.14285" |
|||
inkscape:cy="120" |
|||
inkscape:document-units="px" |
|||
inkscape:current-layer="layer1" |
|||
showgrid="true" |
|||
showborder="false" |
|||
inkscape:window-width="1280" |
|||
inkscape:window-height="736" |
|||
inkscape:window-x="0" |
|||
inkscape:window-y="24" |
|||
inkscape:window-maximized="1" |
|||
fit-margin-top="0" |
|||
fit-margin-left="0" |
|||
fit-margin-right="0" |
|||
fit-margin-bottom="0"> |
|||
<inkscape:grid |
|||
type="xygrid" |
|||
id="grid2985" |
|||
empspacing="5" |
|||
visible="true" |
|||
enabled="true" |
|||
snapvisiblegridlinesonly="true" |
|||
originx="0px" |
|||
originy="-3.8281246e-07px" /> |
|||
</sodipodi:namedview> |
|||
<metadata |
|||
id="metadata7"> |
|||
<rdf:RDF> |
|||
<cc:Work |
|||
rdf:about=""> |
|||
<dc:format>image/svg+xml</dc:format> |
|||
<dc:type |
|||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
|||
<dc:title></dc:title> |
|||
</cc:Work> |
|||
</rdf:RDF> |
|||
</metadata> |
|||
<g |
|||
inkscape:label="Calque 1" |
|||
inkscape:groupmode="layer" |
|||
id="layer1" |
|||
transform="translate(200,-52.362183)"> |
|||
<rect |
|||
style="fill:#aa4400;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2987" |
|||
width="600" |
|||
height="600" |
|||
x="-200" |
|||
y="52.362183" /> |
|||
<path |
|||
sodipodi:type="arc" |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="path2989" |
|||
sodipodi:cx="100" |
|||
sodipodi:cy="312.36218" |
|||
sodipodi:rx="140" |
|||
sodipodi:ry="140" |
|||
d="m 240,312.36218 c 0,77.31987 -62.68014,140 -140,140 -77.319865,0 -140,-62.68013 -140,-140 0,-77.31986 62.680135,-140 140,-140 77.31986,0 140,62.68014 140,140 z" /> |
|||
<rect |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2993" |
|||
width="360" |
|||
height="280" |
|||
x="-80" |
|||
y="452.36218" |
|||
ry="80" /> |
|||
</g> |
|||
</svg> |
|||
@ -0,0 +1,95 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|||
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
|||
|
|||
<svg |
|||
xmlns:dc="http://purl.org/dc/elements/1.1/" |
|||
xmlns:cc="http://creativecommons.org/ns#" |
|||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
|||
xmlns:svg="http://www.w3.org/2000/svg" |
|||
xmlns="http://www.w3.org/2000/svg" |
|||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
|||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
|||
width="600" |
|||
height="600" |
|||
id="svg2" |
|||
version="1.1" |
|||
inkscape:version="0.48.3.1 r9886" |
|||
sodipodi:docname="default4.svg"> |
|||
<defs |
|||
id="defs4" /> |
|||
<sodipodi:namedview |
|||
id="base" |
|||
pagecolor="#ffffff" |
|||
bordercolor="#666666" |
|||
borderopacity="1.0" |
|||
inkscape:pageopacity="0.0" |
|||
inkscape:pageshadow="2" |
|||
inkscape:zoom="0.42" |
|||
inkscape:cx="-282.14285" |
|||
inkscape:cy="120" |
|||
inkscape:document-units="px" |
|||
inkscape:current-layer="layer1" |
|||
showgrid="true" |
|||
showborder="false" |
|||
inkscape:window-width="1280" |
|||
inkscape:window-height="736" |
|||
inkscape:window-x="0" |
|||
inkscape:window-y="24" |
|||
inkscape:window-maximized="1" |
|||
fit-margin-top="0" |
|||
fit-margin-left="0" |
|||
fit-margin-right="0" |
|||
fit-margin-bottom="0"> |
|||
<inkscape:grid |
|||
type="xygrid" |
|||
id="grid2985" |
|||
empspacing="5" |
|||
visible="true" |
|||
enabled="true" |
|||
snapvisiblegridlinesonly="true" |
|||
originx="0px" |
|||
originy="-3.8281246e-07px" /> |
|||
</sodipodi:namedview> |
|||
<metadata |
|||
id="metadata7"> |
|||
<rdf:RDF> |
|||
<cc:Work |
|||
rdf:about=""> |
|||
<dc:format>image/svg+xml</dc:format> |
|||
<dc:type |
|||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
|||
<dc:title></dc:title> |
|||
</cc:Work> |
|||
</rdf:RDF> |
|||
</metadata> |
|||
<g |
|||
inkscape:label="Calque 1" |
|||
inkscape:groupmode="layer" |
|||
id="layer1" |
|||
transform="translate(200,-52.362183)"> |
|||
<rect |
|||
style="fill:#338000;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2987" |
|||
width="600" |
|||
height="600" |
|||
x="-200" |
|||
y="52.362183" /> |
|||
<path |
|||
sodipodi:type="arc" |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="path2989" |
|||
sodipodi:cx="100" |
|||
sodipodi:cy="312.36218" |
|||
sodipodi:rx="140" |
|||
sodipodi:ry="140" |
|||
d="m 240,312.36218 c 0,77.31987 -62.68014,140 -140,140 -77.319865,0 -140,-62.68013 -140,-140 0,-77.31986 62.680135,-140 140,-140 77.31986,0 140,62.68014 140,140 z" /> |
|||
<rect |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2993" |
|||
width="360" |
|||
height="280" |
|||
x="-80" |
|||
y="452.36218" |
|||
ry="80" /> |
|||
</g> |
|||
</svg> |
|||
@ -0,0 +1,95 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|||
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
|||
|
|||
<svg |
|||
xmlns:dc="http://purl.org/dc/elements/1.1/" |
|||
xmlns:cc="http://creativecommons.org/ns#" |
|||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
|||
xmlns:svg="http://www.w3.org/2000/svg" |
|||
xmlns="http://www.w3.org/2000/svg" |
|||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
|||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
|||
width="600" |
|||
height="600" |
|||
id="svg2" |
|||
version="1.1" |
|||
inkscape:version="0.48.3.1 r9886" |
|||
sodipodi:docname="default5.svg"> |
|||
<defs |
|||
id="defs4" /> |
|||
<sodipodi:namedview |
|||
id="base" |
|||
pagecolor="#ffffff" |
|||
bordercolor="#666666" |
|||
borderopacity="1.0" |
|||
inkscape:pageopacity="0.0" |
|||
inkscape:pageshadow="2" |
|||
inkscape:zoom="0.42" |
|||
inkscape:cx="-282.14285" |
|||
inkscape:cy="120" |
|||
inkscape:document-units="px" |
|||
inkscape:current-layer="layer1" |
|||
showgrid="true" |
|||
showborder="false" |
|||
inkscape:window-width="1280" |
|||
inkscape:window-height="736" |
|||
inkscape:window-x="0" |
|||
inkscape:window-y="24" |
|||
inkscape:window-maximized="1" |
|||
fit-margin-top="0" |
|||
fit-margin-left="0" |
|||
fit-margin-right="0" |
|||
fit-margin-bottom="0"> |
|||
<inkscape:grid |
|||
type="xygrid" |
|||
id="grid2985" |
|||
empspacing="5" |
|||
visible="true" |
|||
enabled="true" |
|||
snapvisiblegridlinesonly="true" |
|||
originx="0px" |
|||
originy="-3.8281246e-07px" /> |
|||
</sodipodi:namedview> |
|||
<metadata |
|||
id="metadata7"> |
|||
<rdf:RDF> |
|||
<cc:Work |
|||
rdf:about=""> |
|||
<dc:format>image/svg+xml</dc:format> |
|||
<dc:type |
|||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
|||
<dc:title></dc:title> |
|||
</cc:Work> |
|||
</rdf:RDF> |
|||
</metadata> |
|||
<g |
|||
inkscape:label="Calque 1" |
|||
inkscape:groupmode="layer" |
|||
id="layer1" |
|||
transform="translate(200,-52.362183)"> |
|||
<rect |
|||
style="fill:#800000;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2987" |
|||
width="600" |
|||
height="600" |
|||
x="-200" |
|||
y="52.362183" /> |
|||
<path |
|||
sodipodi:type="arc" |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="path2989" |
|||
sodipodi:cx="100" |
|||
sodipodi:cy="312.36218" |
|||
sodipodi:rx="140" |
|||
sodipodi:ry="140" |
|||
d="m 240,312.36218 c 0,77.31987 -62.68014,140 -140,140 -77.319865,0 -140,-62.68013 -140,-140 0,-77.31986 62.680135,-140 140,-140 77.31986,0 140,62.68014 140,140 z" /> |
|||
<rect |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2993" |
|||
width="360" |
|||
height="280" |
|||
x="-80" |
|||
y="452.36218" |
|||
ry="80" /> |
|||
</g> |
|||
</svg> |
|||
@ -0,0 +1,95 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|||
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
|||
|
|||
<svg |
|||
xmlns:dc="http://purl.org/dc/elements/1.1/" |
|||
xmlns:cc="http://creativecommons.org/ns#" |
|||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
|||
xmlns:svg="http://www.w3.org/2000/svg" |
|||
xmlns="http://www.w3.org/2000/svg" |
|||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
|||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
|||
width="600" |
|||
height="600" |
|||
id="svg2" |
|||
version="1.1" |
|||
inkscape:version="0.48.3.1 r9886" |
|||
sodipodi:docname="default6.svg"> |
|||
<defs |
|||
id="defs4" /> |
|||
<sodipodi:namedview |
|||
id="base" |
|||
pagecolor="#ffffff" |
|||
bordercolor="#666666" |
|||
borderopacity="1.0" |
|||
inkscape:pageopacity="0.0" |
|||
inkscape:pageshadow="2" |
|||
inkscape:zoom="0.42" |
|||
inkscape:cx="-282.14285" |
|||
inkscape:cy="120" |
|||
inkscape:document-units="px" |
|||
inkscape:current-layer="layer1" |
|||
showgrid="true" |
|||
showborder="false" |
|||
inkscape:window-width="1280" |
|||
inkscape:window-height="736" |
|||
inkscape:window-x="0" |
|||
inkscape:window-y="24" |
|||
inkscape:window-maximized="1" |
|||
fit-margin-top="0" |
|||
fit-margin-left="0" |
|||
fit-margin-right="0" |
|||
fit-margin-bottom="0"> |
|||
<inkscape:grid |
|||
type="xygrid" |
|||
id="grid2985" |
|||
empspacing="5" |
|||
visible="true" |
|||
enabled="true" |
|||
snapvisiblegridlinesonly="true" |
|||
originx="0px" |
|||
originy="-3.8281246e-07px" /> |
|||
</sodipodi:namedview> |
|||
<metadata |
|||
id="metadata7"> |
|||
<rdf:RDF> |
|||
<cc:Work |
|||
rdf:about=""> |
|||
<dc:format>image/svg+xml</dc:format> |
|||
<dc:type |
|||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
|||
<dc:title></dc:title> |
|||
</cc:Work> |
|||
</rdf:RDF> |
|||
</metadata> |
|||
<g |
|||
inkscape:label="Calque 1" |
|||
inkscape:groupmode="layer" |
|||
id="layer1" |
|||
transform="translate(200,-52.362183)"> |
|||
<rect |
|||
style="fill:#162d50;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2987" |
|||
width="600" |
|||
height="600" |
|||
x="-200" |
|||
y="52.362183" /> |
|||
<path |
|||
sodipodi:type="arc" |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="path2989" |
|||
sodipodi:cx="100" |
|||
sodipodi:cy="312.36218" |
|||
sodipodi:rx="140" |
|||
sodipodi:ry="140" |
|||
d="m 240,312.36218 c 0,77.31987 -62.68014,140 -140,140 -77.319865,0 -140,-62.68013 -140,-140 0,-77.31986 62.680135,-140 140,-140 77.31986,0 140,62.68014 140,140 z" /> |
|||
<rect |
|||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" |
|||
id="rect2993" |
|||
width="360" |
|||
height="280" |
|||
x="-80" |
|||
y="452.36218" |
|||
ry="80" /> |
|||
</g> |
|||
</svg> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue