Changeset 3532
- Timestamp:
- Feb 6, 2017, 2:09:25 PM (4 years ago)
- Location:
- lliurex-up/trunk/fuentes
- Files:
-
- 4 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-up/trunk/fuentes/lliurex-up-cli/usr/sbin/lliurex-upgrade
r3525 r3532 27 27 28 28 def canConnectToLliurexNet(self): 29 30 if "lliurex-meta-server" == self.targetMetapackage or "server" in self.lliurexcore.previuosFlavours: 31 print(" [Lliurex-up]: Checking connection to lliurex.net") 32 33 can_connect=self.lliurexcore.canConnectToLliurexNet() 34 if can_connect: 29 30 print(" [Lliurex-up]: Checking connection to lliurex.net") 31 can_connect=self.lliurexcore.canConnectToLliurexNet() 32 if can_connect: 35 33 log_msg="Can connect to lliurex.net: True" 36 34 self.log(log_msg) 37 35 return True 38 else: 39 log_msg="Can connect to lliurex.net: False" 40 self.log(log_msg) 36 else: 37 log_msg="Can connect to lliurex.net: False" 38 self.log(log_msg) 39 40 if "lliurex-meta-server" == self.targetMetapackage or "server" in self.lliurexcore.previuosFlavours: 41 41 self.lliurexcore.cleanEnvironment() 42 42 return False 43 else:44 return True43 else: 44 return True 45 45 46 46 def initActionsScript(self): … … 160 160 161 161 162 def getPackagesToUpdate(self): 163 164 print(" [Lliurex-up]: Checking for new updates") 165 packages=self.lliurexcore.getPackagesToUpdate() 166 log_msg="Get packages to update. Number of packages: "+ str(len(packages)) 167 self.log(log_msg) 168 169 self.newpackages=0 170 self.listpackages="" 171 if (len(packages))>0: 172 for item in packages: 173 if packages[item]["install"]==None: 174 self.newpackages=int(self.newpackages) + 1 175 self.listpackages=str(self.listpackages) + item +" " 176 177 return packages 178 162 179 def checkingIncorrectFlavours(self): 163 180 … … 292 309 self.getLliurexVersionLliurexNet() 293 310 self.checkingInitialFlavourToInstall() 294 295 print(" [Lliurex-up]: Checking for new updates") 296 self.packages=self.lliurexcore.getPackagesToUpdate() 311 self.packages=self.getPackagesToUpdate() 297 312 298 313 if len(self.packages)>0: 299 314 if not self.checkingIncorrectFlavours(): 300 301 print(" [Lliurex-up]:List of packages to update") 302 log_msg="Number of packages: "+ str(len(self.packages)) 303 self.log(log_msg) 304 305 for item in self.packages: 306 print item + ": " + self.packages[item]["candidate"] 315 print(" [Lliurex-up]:Number of packages to update: " + str(len(self.packages)) + " (" + str(self.newpackages) + " news). Details: " ) 316 print self.listpackages 307 317 308 318 response=raw_input(' [LLiurex-up]: Do you want to udpate the system(yes/no)): ').lower() … … 348 358 349 359 360 def free_space_check(): 361 362 if ((os.statvfs("/").f_bfree * os.statvfs("/").f_bsize) / (1024*1024*1024)) < 2: #less than 2GB available? 363 print " [Lliurex-up]: There's not enough space on disk to upgrade (2 GB needed)" 364 365 sys.exit(1) 350 366 351 367 if __name__ == '__main__': 352 368 if os.geteuid() != 0: 353 print " You need be root!"369 print " [Lliurex-up]: You need be root!" 354 370 sys.exit(1) 371 372 free_space_check() 355 373 mode=None 356 374 args=arguments.Args().copy -
lliurex-up/trunk/fuentes/lliurex-up/usr/share/lliurex-up/LliurexUpConnect.py
r3525 r3532 150 150 def canConnectToLliurexNet(self): 151 151 152 if "lliurex-meta-server" == self.targetMetapackage or "server" in self.llxUpCore.previuosFlavours: 153 can_connect=self.llxUpCore.canConnectToLliurexNet() 154 if can_connect: 155 log_msg="Can connect to lliurex.net: True" 156 self.log(log_msg) 157 return True 152 can_connect=self.llxUpCore.canConnectToLliurexNet() 153 154 if can_connect: 155 log_msg="Can connect to lliurex.net: True" 156 self.log(log_msg) 157 return True 158 159 else: 160 log_msg="Can connect to lliurex.net: False" 161 self.log(log_msg) 162 if "lliurex-meta-server" == self.targetMetapackage or "server" in self.llxUpCore.previuosFlavours: 163 return False 158 164 else: 159 log_msg="Can connect to lliurex.net: False" 160 self.log(log_msg) 161 return False 162 163 else: 164 return True 165 return True 165 166 166 167 #def canConnectToLliurexNet -
lliurex-up/trunk/fuentes/lliurex-up/usr/share/lliurex-up/lliurex-up.py
r3525 r3532 34 34 DONE_ICON=BASE_DIR+"rsrc/done.png" 35 35 ERROR_ICON=BASE_DIR+"rsrc/error.png" 36 NEWPACKAGE_ICON=BASE_DIR +"rsrc/newpackage.png" 37 UPDATEPACKAGE_ICON=BASE_DIR + "rsrc/updatepackage.png" 36 38 DESKTOP_PATH="/usr/share/applications" 37 39 … … 39 41 40 42 #def __init__(self,name,version,size,desktop_file,changelog_file): 41 def __init__(self, name,version,size):43 def __init__(self,installed,name,version,size): 42 44 self.name=name 43 45 self.version=version … … 47 49 #self.parse_changelog(changelog_file) 48 50 self.parse_installed_icon(CACHED_ICON) 51 self.parse_newpackage_icon(installed) 49 52 50 53 #def__init__ … … 91 94 image.set_from_file(icon_file) 92 95 self.installed=image.get_pixbuf() 93 96 97 94 98 #def parse_installed_icon 99 100 101 def parse_newpackage_icon(self, installed): 102 103 image=Gtk.Image() 104 if installed==str(None): 105 icon_file=NEWPACKAGE_ICON 106 else: 107 icon_file=UPDATEPACKAGE_ICON 108 109 image.set_from_file(icon_file) 110 self.type=image.get_pixbuf() 95 111 96 112 … … 99 115 def __init__(self): 100 116 self.check_root() 117 self.free_space_check() 101 118 self.llxup_connect=LliurexUpConnect.LliurexUpConnect() 102 119 print " [Lliurex-up]: Checking metapackage" … … 119 136 print " [Lliurex-up]: No administration privileges" 120 137 dialog = Gtk.MessageDialog(None,0,Gtk.MessageType.ERROR, Gtk.ButtonsType.CANCEL, "Lliurex UP") 121 dialog.format_secondary_text( "You need administration privileges to run this application.")138 dialog.format_secondary_text(_("You need administration privileges to run this application.")) 122 139 dialog.run() 123 140 sys.exit(1) … … 125 142 #def check_root 126 143 144 def free_space_check(self): 145 146 if ((os.statvfs("/").f_bfree * os.statvfs("/").f_bsize) / (1024*1024*1024)) < 2: #less than 2GB available? 147 md = Gtk.MessageDialog(None, 0,Gtk.MessageType.ERROR, Gtk.ButtonsType.CANCEL," Lliurex UP") 148 md.format_secondary_text(_("There's not enough space on disk to upgrade (2 GB needed)")) 149 md.run() 150 md.destroy() 151 sys.exit(1) 152 153 # def free_space_check 154 127 155 def start_gui(self): 128 156 … … 234 262 235 263 #self.packages_store=Gtk.ListStore(str,str,str,GdkPixbuf.Pixbuf) 236 self.packages_store=Gtk.ListStore( str,str,str,GdkPixbuf.Pixbuf)264 self.packages_store=Gtk.ListStore(GdkPixbuf.Pixbuf,str,str,str,GdkPixbuf.Pixbuf) 237 265 self.packages_tv.set_model(self.packages_store) 266 267 column=Gtk.TreeViewColumn("") 268 cell=Gtk.CellRendererPixbuf() 269 column.pack_start(cell,True) 270 column.add_attribute(cell,"pixbuf",0) 271 self.packages_tv.append_column(column) 272 238 273 column=Gtk.TreeViewColumn("") 239 274 cell=Gtk.CellRendererPixbuf() 240 275 cell.set_property("stock-size",Gtk.IconSize.DIALOG) 241 276 column.pack_start(cell,True) 242 column.add_attribute(cell,"icon-name", 0)277 column.add_attribute(cell,"icon-name",1) 243 278 self.packages_tv.append_column(column) 244 279 245 column=Gtk.TreeViewColumn( "Package")280 column=Gtk.TreeViewColumn(_("Package")) 246 281 cell=Gtk.CellRendererText() 247 282 column.pack_start(cell,True) 248 column.add_attribute(cell,"markup", 1)283 column.add_attribute(cell,"markup",2) 249 284 column.set_expand(True) 250 285 … … 254 289 # self.packages_tv.connect("button-release-event",self.package_clicked) 255 290 256 column=Gtk.TreeViewColumn( "Size")291 column=Gtk.TreeViewColumn(_("Size")) 257 292 cell=Gtk.CellRendererText() 258 293 cell.set_property("alignment",Pango.Alignment.CENTER) 259 294 column.pack_start(cell,False) 260 column.add_attribute(cell,"markup", 2)295 column.add_attribute(cell,"markup",3) 261 296 self.packages_tv.append_column(column) 262 297 263 298 264 done_icon=Gtk.Image()265 done_icon.set_from_file(CACHED_ICON)266 pixbuf=done_icon.get_pixbuf()267 column=Gtk.TreeViewColumn(" Installed")299 # done_icon=Gtk.Image() 300 # done_icon.set_from_file(CACHED_ICON) 301 # pixbuf=done_icon.get_pixbuf() 302 column=Gtk.TreeViewColumn("") 268 303 cell=Gtk.CellRendererPixbuf() 269 304 column.pack_start(cell,True) 270 column.add_attribute(cell,"pixbuf", 3)305 column.add_attribute(cell,"pixbuf",4) 271 306 self.packages_tv.append_column(column) 272 307 … … 669 704 time.sleep(5) 670 705 self.can_connect=self.llxup_connect.canConnectToLliurexNet() 671 self.llxup_connect.initActionsScript() 706 if self.can_connect: 707 self.llxup_connect.initActionsScript() 672 708 self.initactions_process_t.done=True 673 709 … … 1034 1070 for package in self.package_list: 1035 1071 #self.packages_store.append((package.icon,"<span font='Roboto'><b>"+package.name+"</b></span>\n"+"<span font='Roboto' size='small'>"+package.version+"</span>","<span font='Roboto' size='large'><b>"+package.size+"</b></span>",package.installed)) 1036 self.packages_store.append((package. icon,"<span font='Roboto'><b>"+package.name+"</b></span>\n"+"<span font='Roboto' size='small'>"+package.version+"</span>","<span font='Roboto' size='small'>"+package.size+"</span>", package.installed))1072 self.packages_store.append((package.type,package.icon,"<span font='Roboto'><b>"+package.name+"</b></span>\n"+"<span font='Roboto' size='small'>"+package.version+"</span>","<span font='Roboto' size='small'>"+package.size+"</span>", package.installed)) 1037 1073 1038 1074 #print len(self.packages_store) … … 1046 1082 tmp=item.split(";") 1047 1083 if len(tmp)>1: 1048 pack=Package(tmp[ 0],tmp[1],tmp[2])1084 pack=Package(tmp[3],tmp[0],tmp[1],tmp[2]) 1049 1085 self.package_list.append(pack) 1050 1086 if tmp[3]==str(None): … … 1058 1094 model,iter=selection.get_selected() 1059 1095 #name=self.packages_store.get_value(iter,1) 1060 name=model[iter][ 1]1096 name=model[iter][2] 1061 1097 name=name[name.find("<b>")+3:name.find("</b>")] 1062 1098 … … 1277 1313 1278 1314 for item in self.packages_store: 1279 name=item[ 1].split(">")[2]1315 name=item[2].split(">")[2] 1280 1316 name=name.split("<")[0] 1281 version=item[ 1].split(">")[5]1317 version=item[2].split(">")[5] 1282 1318 version=version.split("<")[0] 1283 1319 tmp=str(name)+"_"+str(version) 1284 1320 if tmp in packages_status: 1285 item[ 3]=iconok1321 item[4]=iconok 1286 1322 else: 1287 item[ 3]=iconerr1323 item[4]=iconerr 1288 1324 1289 1325 #def update_installed_icon -
lliurex-up/trunk/fuentes/lliurex-up/usr/share/lliurex-up/rsrc/cached.svg
r3208 r3532 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 <!-- Created with Inkscape (http://www.inkscape.org/) --> 3 2 4 <svg 3 5 xmlns:dc="http://purl.org/dc/elements/1.1/" … … 6 8 xmlns:svg="http://www.w3.org/2000/svg" 7 9 xmlns="http://www.w3.org/2000/svg" 10 xmlns:xlink="http://www.w3.org/1999/xlink" 8 11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 9 12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" 10 fill="#000000" 11 height="24" 12 viewBox="0 0 24 24" 13 width="24" 13 version="1.0" 14 width="96" 15 height="96" 14 16 id="svg2" 15 version="1.1"16 17 inkscape:version="0.91 r13725" 17 sodipodi:docname="cached.svg"> 18 <metadata 19 id="metadata12"> 20 <rdf:RDF> 21 <cc:Work 22 rdf:about=""> 23 <dc:format>image/svg+xml</dc:format> 24 <dc:type 25 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 26 </cc:Work> 27 </rdf:RDF> 28 </metadata> 29 <defs 30 id="defs10" /> 18 sodipodi:docname="cached_new.svg" 19 inkscape:export-filename="/home/lliurex/Documentos/cached.png" 20 inkscape:export-xdpi="22.5" 21 inkscape:export-ydpi="22.5"> 31 22 <sodipodi:namedview 32 23 pagecolor="#ffffff" … … 38 29 inkscape:pageopacity="0" 39 30 inkscape:pageshadow="2" 40 inkscape:window-width=" 792"41 inkscape:window-height=" 480"42 id="namedview 8"31 inkscape:window-width="1920" 32 inkscape:window-height="870" 33 id="namedview4184" 43 34 showgrid="false" 44 inkscape:zoom=" 9.8333333"45 inkscape:cx=" 12"46 inkscape:cy=" 12"35 inkscape:zoom="2.5779935" 36 inkscape:cx="-88.459305" 37 inkscape:cy="23.192025" 47 38 inkscape:window-x="0" 48 39 inkscape:window-y="24" 49 inkscape:window-maximized="0" 50 inkscape:current-layer="svg2" /> 51 <path 52 d="M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" 53 id="path4" 54 style="fill:#43ab47;fill-opacity:1" /> 55 <path 56 d="M0 0h24v24H0z" 57 fill="none" 58 id="path6" /> 40 inkscape:window-maximized="1" 41 inkscape:current-layer="layer3" /> 42 <defs 43 id="defs4"> 44 <linearGradient 45 x1="11.640054" 46 y1="4.0775533" 47 x2="11.640054" 48 y2="17.924156" 49 id="linearGradient3972" 50 gradientUnits="userSpaceOnUse"> 51 <stop 52 id="stop3974" 53 style="stop-color:#03a9f4;stop-opacity:1" 54 offset="0" /> 55 <stop 56 id="stop3976" 57 style="stop-color:#29b6f6;stop-opacity:1" 58 offset="1" /> 59 </linearGradient> 60 <linearGradient 61 x1="11.640054" 62 y1="4.0775533" 63 x2="11.640054" 64 y2="17.924156" 65 id="linearGradient2862" 66 xlink:href="#linearGradient3972" 67 gradientUnits="userSpaceOnUse" 68 gradientTransform="matrix(4,0,0,4,2.4484057,-135.55486)" /> 69 <clipPath 70 id="clipPath3647"> 71 <path 72 d="m -100,-74 0,96 96,0 0,-96 -96,0 z m 39.875,20.3125 16.125,0 0,19.75 19.6875,0 0,16.1875 -19.6875,0 0,19.4375 -16.125,0 0,-19.4375 -19.5625,0 0,-16.1875 19.5625,0 0,-19.75 z" 73 inkscape:connector-curvature="0" 74 id="path3649" 75 style="opacity:0.3;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> 76 </clipPath> 77 <filter 78 id="filter3651" 79 color-interpolation-filters="sRGB"> 80 <feGaussianBlur 81 id="feGaussianBlur3653" 82 stdDeviation="0.83069354" /> 83 </filter> 84 <clipPath 85 id="clipPath3266"> 86 <path 87 d="M 0,0 0,96 96,96 96,0 0,0 z m 12,6 72,0 c 3.324,0 6,2.676 6,6 l 0,72 c 0,3.324 -2.676,6 -6,6 L 12,90 C 8.676,90 6,87.324 6,84 L 6,12 C 6,8.676 8.676,6 12,6 z" 88 inkscape:connector-curvature="0" 89 id="path3268" 90 style="opacity:0.3;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> 91 </clipPath> 92 <linearGradient 93 x1="32.251034" 94 y1="6.1317081" 95 x2="32.251034" 96 y2="90.238609" 97 id="linearGradient3101" 98 xlink:href="#ButtonShadow-0" 99 gradientUnits="userSpaceOnUse" 100 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 101 <linearGradient 102 x1="45.447727" 103 y1="92.539597" 104 x2="45.447727" 105 y2="7.0165396" 106 id="ButtonShadow-0" 107 gradientUnits="userSpaceOnUse" 108 gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)"> 109 <stop 110 id="stop3750-8" 111 style="stop-color:#000000;stop-opacity:1" 112 offset="0" /> 113 <stop 114 id="stop3752-5" 115 style="stop-color:#000000;stop-opacity:0.58823532" 116 offset="1" /> 117 </linearGradient> 118 <linearGradient 119 x1="32.251034" 120 y1="6.1317081" 121 x2="32.251034" 122 y2="90.238609" 123 id="linearGradient3780" 124 xlink:href="#ButtonShadow-0" 125 gradientUnits="userSpaceOnUse" 126 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 127 <linearGradient 128 x1="32.251034" 129 y1="6.1317081" 130 x2="32.251034" 131 y2="90.238609" 132 id="linearGradient3772" 133 xlink:href="#ButtonShadow-0" 134 gradientUnits="userSpaceOnUse" 135 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 136 <linearGradient 137 x1="32.251034" 138 y1="6.1317081" 139 x2="32.251034" 140 y2="90.238609" 141 id="linearGradient3725" 142 xlink:href="#ButtonShadow-0" 143 gradientUnits="userSpaceOnUse" 144 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 145 <linearGradient 146 x1="48" 147 y1="90" 148 x2="48" 149 y2="5.9877172" 150 id="linearGradient3052" 151 xlink:href="#ButtonColor-6" 152 gradientUnits="userSpaceOnUse" /> 153 <linearGradient 154 x1="10.31979" 155 y1="21" 156 x2="10.31979" 157 y2="0.99929649" 158 id="ButtonColor-6" 159 gradientUnits="userSpaceOnUse"> 160 <stop 161 id="stop3189-4" 162 style="stop-color:#c8c8c8;stop-opacity:1" 163 offset="0" /> 164 <stop 165 id="stop3191-0" 166 style="stop-color:#e6e6e6;stop-opacity:1" 167 offset="1" /> 168 </linearGradient> 169 <linearGradient 170 x1="36.357143" 171 y1="6" 172 x2="36.357143" 173 y2="63.893143" 174 id="linearGradient3188" 175 xlink:href="#linearGradient3737" 176 gradientUnits="userSpaceOnUse" /> 177 <linearGradient 178 id="linearGradient3737"> 179 <stop 180 id="stop3739" 181 style="stop-color:#ffffff;stop-opacity:1" 182 offset="0" /> 183 <stop 184 id="stop3741" 185 style="stop-color:#ffffff;stop-opacity:0" 186 offset="1" /> 187 </linearGradient> 188 <radialGradient 189 cx="48" 190 cy="90.171875" 191 r="42" 192 fx="48" 193 fy="90.171875" 194 id="radialGradient3619" 195 xlink:href="#linearGradient3737" 196 gradientUnits="userSpaceOnUse" 197 gradientTransform="matrix(1.1573129,0,0,0.99590774,-7.551021,0.1971319)" /> 198 <linearGradient 199 x1="32.251034" 200 y1="6.1317081" 201 x2="32.251034" 202 y2="90.238609" 203 id="linearGradient4256" 204 xlink:href="#ButtonShadow-0" 205 gradientUnits="userSpaceOnUse" 206 gradientTransform="translate(0,-97)" /> 207 <path 208 id="a" 209 d="M0 0h24v24H0V0z" /> 210 </defs> 211 <metadata 212 id="metadata7"> 213 <rdf:RDF> 214 <cc:Work 215 rdf:about=""> 216 <dc:format>image/svg+xml</dc:format> 217 <dc:type 218 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 219 <dc:title /> 220 </cc:Work> 221 </rdf:RDF> 222 </metadata> 223 <g 224 id="layer1"> 225 <g 226 clip-path="url(#clipPath3266)" 227 id="g3202" 228 style="display:inline"> 229 <path 230 d="m 12,-95.03125 c -5.5110903,0 -10.03125,4.52016 -10.03125,10.03125 l 0,71 c 0,5.5110902 4.5201598,10.03125 10.03125,10.03125 l 72,0 c 5.51109,0 10.03125,-4.5201597 10.03125,-10.03125 l 0,-71 c 0,-5.51109 -4.52016,-10.03125 -10.03125,-10.03125 l -72,0 z" 231 transform="scale(1,-1)" 232 id="path3786" 233 style="opacity:0.07999998;fill:url(#linearGradient3101);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 234 <path 235 d="m 12,-94.03125 c -4.971633,0 -9.03125,4.059617 -9.03125,9.03125 l 0,71 c 0,4.9716329 4.0596171,9.03125 9.03125,9.03125 l 72,0 c 4.971633,0 9.03125,-4.059617 9.03125,-9.03125 l 0,-71 c 0,-4.971633 -4.059617,-9.03125 -9.03125,-9.03125 l -72,0 z" 236 transform="scale(1,-1)" 237 id="path3778" 238 style="opacity:0.1;fill:url(#linearGradient3780);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 239 <path 240 d="m 12,-93 c -4.4091333,0 -8,3.590867 -8,8 l 0,71 c 0,4.4091333 3.5908667,8 8,8 l 72,0 c 4.409133,0 8,-3.5908667 8,-8 l 0,-71 c 0,-4.409133 -3.590867,-8 -8,-8 l -72,0 z" 241 transform="scale(1,-1)" 242 id="path3770" 243 style="opacity:0.2;fill:url(#linearGradient3772);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 244 <rect 245 width="86" 246 height="85" 247 rx="7" 248 ry="7" 249 x="5" 250 y="-92" 251 transform="scale(1,-1)" 252 id="rect3723" 253 style="opacity:0.3;fill:url(#linearGradient3725);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 254 <rect 255 width="84" 256 height="84" 257 rx="6" 258 ry="6" 259 x="6" 260 y="-91" 261 transform="scale(1,-1)" 262 id="rect3716" 263 style="opacity:0.45;fill:url(#linearGradient4256);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 264 </g> 265 <rect 266 width="84" 267 height="84" 268 rx="6" 269 ry="6" 270 x="6" 271 y="6" 272 id="rect2419" 273 style="opacity:0.75;fill:url(#linearGradient3052);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 274 <path 275 d="M 12,6 C 8.676,6 6,8.676 6,12 l 0,2 0,68 0,2 c 0,0.334721 0.04135,0.6507 0.09375,0.96875 0.0487,0.295596 0.09704,0.596915 0.1875,0.875 0.00988,0.03038 0.020892,0.0636 0.03125,0.09375 0.098865,0.287771 0.2348802,0.547452 0.375,0.8125 0.1445918,0.273507 0.3156161,0.535615 0.5,0.78125 0.1843839,0.245635 0.3737765,0.473472 0.59375,0.6875 0.439947,0.428056 0.94291,0.814526 1.5,1.09375 0.278545,0.139612 0.5734731,0.246947 0.875,0.34375 -0.2562018,-0.100222 -0.4867109,-0.236272 -0.71875,-0.375 -0.00741,-0.0044 -0.023866,0.0045 -0.03125,0 -0.031933,-0.0193 -0.062293,-0.04251 -0.09375,-0.0625 -0.120395,-0.0767 -0.2310226,-0.163513 -0.34375,-0.25 -0.1061728,-0.0808 -0.2132809,-0.161112 -0.3125,-0.25 C 8.4783201,88.557317 8.3087904,88.373362 8.15625,88.1875 8.0486711,88.057245 7.9378561,87.922215 7.84375,87.78125 7.818661,87.74287 7.805304,87.69538 7.78125,87.65625 7.716487,87.553218 7.6510225,87.451733 7.59375,87.34375 7.4927417,87.149044 7.3880752,86.928049 7.3125,86.71875 7.30454,86.69694 7.288911,86.6782 7.28125,86.65625 7.2494249,86.5643 7.2454455,86.469419 7.21875,86.375 7.188418,86.268382 7.148361,86.171969 7.125,86.0625 7.052121,85.720988 7,85.364295 7,85 L 7,83 7,15 7,13 C 7,10.218152 9.2181517,8 12,8 l 2,0 68,0 2,0 c 2.781848,0 5,2.218152 5,5 l 0,2 0,68 0,2 c 0,0.364295 -0.05212,0.720988 -0.125,1.0625 -0.04415,0.206893 -0.08838,0.397658 -0.15625,0.59375 -0.0077,0.02195 -0.0233,0.04069 -0.03125,0.0625 -0.06274,0.173739 -0.138383,0.367449 -0.21875,0.53125 -0.04158,0.0828 -0.07904,0.169954 -0.125,0.25 -0.0546,0.09721 -0.126774,0.18835 -0.1875,0.28125 -0.09411,0.140965 -0.204921,0.275995 -0.3125,0.40625 -0.143174,0.17445 -0.303141,0.346998 -0.46875,0.5 -0.01117,0.0102 -0.01998,0.02115 -0.03125,0.03125 -0.138386,0.125556 -0.285091,0.234436 -0.4375,0.34375 -0.102571,0.07315 -0.204318,0.153364 -0.3125,0.21875 -0.0074,0.0045 -0.02384,-0.0044 -0.03125,0 -0.232039,0.138728 -0.462548,0.274778 -0.71875,0.375 0.301527,-0.0968 0.596455,-0.204138 0.875,-0.34375 0.55709,-0.279224 1.060053,-0.665694 1.5,-1.09375 0.219973,-0.214028 0.409366,-0.441865 0.59375,-0.6875 0.184384,-0.245635 0.355408,-0.507743 0.5,-0.78125 0.14012,-0.265048 0.276135,-0.524729 0.375,-0.8125 0.01041,-0.03078 0.02133,-0.06274 0.03125,-0.09375 0.09046,-0.278085 0.1388,-0.579404 0.1875,-0.875 C 89.95865,84.6507 90,84.334721 90,84 l 0,-2 0,-68 0,-2 C 90,8.676 87.324,6 84,6 L 12,6 z" 276 inkscape:connector-curvature="0" 277 id="rect3728" 278 style="opacity:0.5;fill:url(#linearGradient3188);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 279 <path 280 d="M 12,90 C 8.676,90 6,87.324 6,84 L 6,82 6,14 6,12 c 0,-0.334721 0.04135,-0.6507 0.09375,-0.96875 0.0487,-0.295596 0.09704,-0.596915 0.1875,-0.875 C 6.29113,10.12587 6.302142,10.09265 6.3125,10.0625 6.411365,9.774729 6.5473802,9.515048 6.6875,9.25 6.8320918,8.976493 7.0031161,8.714385 7.1875,8.46875 7.3718839,8.223115 7.5612765,7.995278 7.78125,7.78125 8.221197,7.353194 8.72416,6.966724 9.28125,6.6875 9.559795,6.547888 9.8547231,6.440553 10.15625,6.34375 9.9000482,6.443972 9.6695391,6.580022 9.4375,6.71875 c -0.00741,0.0044 -0.023866,-0.0045 -0.03125,0 -0.031933,0.0193 -0.062293,0.04251 -0.09375,0.0625 -0.120395,0.0767 -0.2310226,0.163513 -0.34375,0.25 -0.1061728,0.0808 -0.2132809,0.161112 -0.3125,0.25 C 8.4783201,7.442683 8.3087904,7.626638 8.15625,7.8125 8.0486711,7.942755 7.9378561,8.077785 7.84375,8.21875 7.818661,8.25713 7.805304,8.30462 7.78125,8.34375 7.716487,8.446782 7.6510225,8.548267 7.59375,8.65625 7.4927417,8.850956 7.3880752,9.071951 7.3125,9.28125 7.30454,9.30306 7.288911,9.3218 7.28125,9.34375 7.2494249,9.4357 7.2454455,9.530581 7.21875,9.625 7.188418,9.731618 7.148361,9.828031 7.125,9.9375 7.052121,10.279012 7,10.635705 7,11 l 0,2 0,68 0,2 c 0,2.781848 2.2181517,5 5,5 l 2,0 68,0 2,0 c 2.781848,0 5,-2.218152 5,-5 l 0,-2 0,-68 0,-2 C 89,10.635705 88.94788,10.279012 88.875,9.9375 88.83085,9.730607 88.78662,9.539842 88.71875,9.34375 88.71105,9.3218 88.69545,9.30306 88.6875,9.28125 88.62476,9.107511 88.549117,8.913801 88.46875,8.75 88.42717,8.6672 88.38971,8.580046 88.34375,8.5 88.28915,8.40279 88.216976,8.31165 88.15625,8.21875 88.06214,8.077785 87.951329,7.942755 87.84375,7.8125 87.700576,7.63805 87.540609,7.465502 87.375,7.3125 87.36383,7.3023 87.35502,7.29135 87.34375,7.28125 87.205364,7.155694 87.058659,7.046814 86.90625,6.9375 86.803679,6.86435 86.701932,6.784136 86.59375,6.71875 c -0.0074,-0.0045 -0.02384,0.0044 -0.03125,0 -0.232039,-0.138728 -0.462548,-0.274778 -0.71875,-0.375 0.301527,0.0968 0.596455,0.204138 0.875,0.34375 0.55709,0.279224 1.060053,0.665694 1.5,1.09375 0.219973,0.214028 0.409366,0.441865 0.59375,0.6875 0.184384,0.245635 0.355408,0.507743 0.5,0.78125 0.14012,0.265048 0.276135,0.524729 0.375,0.8125 0.01041,0.03078 0.02133,0.06274 0.03125,0.09375 0.09046,0.278085 0.1388,0.579404 0.1875,0.875 C 89.95865,11.3493 90,11.665279 90,12 l 0,2 0,68 0,2 c 0,3.324 -2.676,6 -6,6 l -72,0 z" 281 inkscape:connector-curvature="0" 282 id="path3615" 283 style="opacity:0.2;fill:url(#radialGradient3619);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 284 </g> 285 <g 286 transform="translate(-141.97088,149.25232)" 287 id="layer3" 288 style="display:inline"> 289 <path 290 inkscape:connector-curvature="0" 291 d="m 215.42536,-115.79768 -14.54549,14.54525 10.9092,0 c 0,12.036459 -9.78196,21.818286 -21.81821,21.818286 -3.67277,0 -7.16378,-0.909102 -10.1818,-2.545457 l -5.30919,5.309081 c 4.47278,2.836375 9.78197,4.509099 15.49099,4.509099 16.07277,0 29.09099,-13.01818 29.09099,-29.091009 l 10.90901,0 -14.5455,-14.54525 z m -47.2727,14.54525 c 0,-12.03622 9.78195,-21.81801 21.8182,-21.81801 3.67276,0 7.16375,0.90901 10.18179,2.54524 l 5.3092,-5.309 c -4.47278,-2.83625 -9.78198,-4.50902 -15.49099,-4.50902 -16.07277,0 -29.09098,13.01802 -29.09098,29.09079 l -10.90902,0 14.54551,14.545559 14.54547,-14.545559 -10.90918,0 z" 292 id="path4-6" 293 style="display:inline;opacity:0.1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 294 <path 295 d="m -60.119657,-53.689786 0,19.741424 -19.570128,0 0,16.190394 19.570128,0 0,19.447752 16.119657,0 0,-19.447752 19.689784,0 0,-16.190394 -19.689784,0 0,-19.741424 -16.119657,0 z" 296 inkscape:connector-curvature="0" 297 transform="translate(100,0)" 298 clip-path="url(#clipPath3647)" 299 id="path3638" 300 style="display:inline;opacity:0.2;fill:none;stroke:#ffffff;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3651)" /> 301 <path 302 inkscape:connector-curvature="0" 303 d="m 215.42538,-115.79768 -14.54549,14.54525 10.9092,0 c 0,12.036456 -9.78196,21.818288 -21.81821,21.818288 -3.67277,0 -7.16378,-0.909102 -10.1818,-2.545457 l -5.30919,5.309081 c 4.47278,2.836375 9.78197,4.509099 15.49099,4.509099 16.07277,0 29.09099,-13.01818 29.09099,-29.091011 l 10.90901,0 -14.5455,-14.54525 z m -47.2727,14.54525 c 0,-12.03622 9.78195,-21.81801 21.8182,-21.81801 3.67276,0 7.16375,0.90901 10.18179,2.54524 l 5.3092,-5.309 c -4.47278,-2.83625 -9.78198,-4.50902 -15.49099,-4.50902 -16.07277,0 -29.09098,13.01802 -29.09098,29.09079 l -10.90902,0 14.54551,14.545558 14.54547,-14.545558 -10.90918,0 z" 304 id="path4" 305 style="fill:#43ab47;fill-opacity:1" /> 306 <path 307 style="fill:none" 308 inkscape:connector-curvature="0" 309 d="m 156.32955,-27.932168 24,0 0,23.9999999 -24,0 z" 310 id="path6" /> 311 <path 312 inkscape:connector-curvature="0" 313 d="m 215.42537,-115.79768 -14.54549,14.54525 10.9092,0 c 0,12.036461 -9.78196,21.818286 -21.81821,21.818286 -3.67277,0 -7.16378,-0.909102 -10.1818,-2.545457 l -5.30919,5.309081 c 4.47278,2.836375 9.78197,4.509099 15.49099,4.509099 16.07277,0 29.09099,-13.01818 29.09099,-29.091009 l 10.90901,0 -14.5455,-14.54525 z m -47.2727,14.54525 c 0,-12.03622 9.78195,-21.81801 21.8182,-21.81801 3.67276,0 7.16375,0.90901 10.18179,2.54524 l 5.3092,-5.309 c -4.47278,-2.83625 -9.78198,-4.50902 -15.49099,-4.50902 -16.07277,0 -29.09098,13.01802 -29.09098,29.09079 l -10.90902,0 14.54551,14.545559 14.54547,-14.545559 -10.90918,0 z" 314 id="path4-7" 315 style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-opacity:1" /> 316 </g> 59 317 </svg> -
lliurex-up/trunk/fuentes/lliurex-up/usr/share/lliurex-up/rsrc/done.svg
r3208 r3532 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 <!-- Created with Inkscape (http://www.inkscape.org/) --> 3 2 4 <svg 3 5 xmlns:dc="http://purl.org/dc/elements/1.1/" … … 6 8 xmlns:svg="http://www.w3.org/2000/svg" 7 9 xmlns="http://www.w3.org/2000/svg" 10 xmlns:xlink="http://www.w3.org/1999/xlink" 8 11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 9 12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" 10 fill="#000000" 11 height="24" 12 viewBox="0 0 24 24" 13 width="24" 13 version="1.0" 14 width="96" 15 height="96" 14 16 id="svg2" 15 version="1.1"16 17 inkscape:version="0.91 r13725" 17 18 sodipodi:docname="done.svg" 18 inkscape:export-filename="/home/lliurex/svn/lliurex-up/trunk/fuentes/lliurex-up-gui/rsrc/done.png" 19 inkscape:export-xdpi="90" 20 inkscape:export-ydpi="90"> 21 <metadata 22 id="metadata12"> 23 <rdf:RDF> 24 <cc:Work 25 rdf:about=""> 26 <dc:format>image/svg+xml</dc:format> 27 <dc:type 28 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 29 </cc:Work> 30 </rdf:RDF> 31 </metadata> 32 <defs 33 id="defs10" /> 19 inkscape:export-filename="/home/lliurex/Documentos/done.png" 20 inkscape:export-xdpi="22.5" 21 inkscape:export-ydpi="22.5"> 34 22 <sodipodi:namedview 35 23 pagecolor="#ffffff" … … 42 30 inkscape:pageshadow="2" 43 31 inkscape:window-width="1920" 44 inkscape:window-height=" 926"45 id="namedview 8"32 inkscape:window-height="870" 33 id="namedview4184" 46 34 showgrid="false" 47 inkscape:zoom=" 9.8333333"48 inkscape:cx=" 12"49 inkscape:cy=" 12"35 inkscape:zoom="2.5779935" 36 inkscape:cx="-181.16706" 37 inkscape:cy="23.192025" 50 38 inkscape:window-x="0" 51 39 inkscape:window-y="24" 52 40 inkscape:window-maximized="1" 53 inkscape:current-layer="svg2" /> 54 <path 55 d="M0 0h24v24H0z" 56 fill="none" 57 id="path4" /> 58 <path 59 d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" 60 id="path6" 61 style="fill:#43aa47;fill-opacity:1" /> 41 inkscape:current-layer="g4326" /> 42 <defs 43 id="defs4"> 44 <linearGradient 45 x1="11.640054" 46 y1="4.0775533" 47 x2="11.640054" 48 y2="17.924156" 49 id="linearGradient3972" 50 gradientUnits="userSpaceOnUse"> 51 <stop 52 id="stop3974" 53 style="stop-color:#03a9f4;stop-opacity:1" 54 offset="0" /> 55 <stop 56 id="stop3976" 57 style="stop-color:#29b6f6;stop-opacity:1" 58 offset="1" /> 59 </linearGradient> 60 <linearGradient 61 x1="11.640054" 62 y1="4.0775533" 63 x2="11.640054" 64 y2="17.924156" 65 id="linearGradient2862" 66 xlink:href="#linearGradient3972" 67 gradientUnits="userSpaceOnUse" 68 gradientTransform="matrix(4,0,0,4,2.4484057,-135.55486)" /> 69 <clipPath 70 id="clipPath3647"> 71 <path 72 d="m -100,-74 0,96 96,0 0,-96 -96,0 z m 39.875,20.3125 16.125,0 0,19.75 19.6875,0 0,16.1875 -19.6875,0 0,19.4375 -16.125,0 0,-19.4375 -19.5625,0 0,-16.1875 19.5625,0 0,-19.75 z" 73 inkscape:connector-curvature="0" 74 id="path3649" 75 style="opacity:0.3;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> 76 </clipPath> 77 <filter 78 id="filter3651" 79 color-interpolation-filters="sRGB"> 80 <feGaussianBlur 81 id="feGaussianBlur3653" 82 stdDeviation="0.83069354" /> 83 </filter> 84 <clipPath 85 id="clipPath3266"> 86 <path 87 d="M 0,0 0,96 96,96 96,0 0,0 z m 12,6 72,0 c 3.324,0 6,2.676 6,6 l 0,72 c 0,3.324 -2.676,6 -6,6 L 12,90 C 8.676,90 6,87.324 6,84 L 6,12 C 6,8.676 8.676,6 12,6 z" 88 inkscape:connector-curvature="0" 89 id="path3268" 90 style="opacity:0.3;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> 91 </clipPath> 92 <linearGradient 93 x1="32.251034" 94 y1="6.1317081" 95 x2="32.251034" 96 y2="90.238609" 97 id="linearGradient3101" 98 xlink:href="#ButtonShadow-0" 99 gradientUnits="userSpaceOnUse" 100 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 101 <linearGradient 102 x1="45.447727" 103 y1="92.539597" 104 x2="45.447727" 105 y2="7.0165396" 106 id="ButtonShadow-0" 107 gradientUnits="userSpaceOnUse" 108 gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)"> 109 <stop 110 id="stop3750-8" 111 style="stop-color:#000000;stop-opacity:1" 112 offset="0" /> 113 <stop 114 id="stop3752-5" 115 style="stop-color:#000000;stop-opacity:0.58823532" 116 offset="1" /> 117 </linearGradient> 118 <linearGradient 119 x1="32.251034" 120 y1="6.1317081" 121 x2="32.251034" 122 y2="90.238609" 123 id="linearGradient3780" 124 xlink:href="#ButtonShadow-0" 125 gradientUnits="userSpaceOnUse" 126 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 127 <linearGradient 128 x1="32.251034" 129 y1="6.1317081" 130 x2="32.251034" 131 y2="90.238609" 132 id="linearGradient3772" 133 xlink:href="#ButtonShadow-0" 134 gradientUnits="userSpaceOnUse" 135 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 136 <linearGradient 137 x1="32.251034" 138 y1="6.1317081" 139 x2="32.251034" 140 y2="90.238609" 141 id="linearGradient3725" 142 xlink:href="#ButtonShadow-0" 143 gradientUnits="userSpaceOnUse" 144 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 145 <linearGradient 146 x1="48" 147 y1="90" 148 x2="48" 149 y2="5.9877172" 150 id="linearGradient3052" 151 xlink:href="#ButtonColor-6" 152 gradientUnits="userSpaceOnUse" /> 153 <linearGradient 154 x1="10.31979" 155 y1="21" 156 x2="10.31979" 157 y2="0.99929649" 158 id="ButtonColor-6" 159 gradientUnits="userSpaceOnUse"> 160 <stop 161 id="stop3189-4" 162 style="stop-color:#c8c8c8;stop-opacity:1" 163 offset="0" /> 164 <stop 165 id="stop3191-0" 166 style="stop-color:#e6e6e6;stop-opacity:1" 167 offset="1" /> 168 </linearGradient> 169 <linearGradient 170 x1="36.357143" 171 y1="6" 172 x2="36.357143" 173 y2="63.893143" 174 id="linearGradient3188" 175 xlink:href="#linearGradient3737" 176 gradientUnits="userSpaceOnUse" /> 177 <linearGradient 178 id="linearGradient3737"> 179 <stop 180 id="stop3739" 181 style="stop-color:#ffffff;stop-opacity:1" 182 offset="0" /> 183 <stop 184 id="stop3741" 185 style="stop-color:#ffffff;stop-opacity:0" 186 offset="1" /> 187 </linearGradient> 188 <radialGradient 189 cx="48" 190 cy="90.171875" 191 r="42" 192 fx="48" 193 fy="90.171875" 194 id="radialGradient3619" 195 xlink:href="#linearGradient3737" 196 gradientUnits="userSpaceOnUse" 197 gradientTransform="matrix(1.1573129,0,0,0.99590774,-7.551021,0.1971319)" /> 198 <linearGradient 199 x1="32.251034" 200 y1="6.1317081" 201 x2="32.251034" 202 y2="90.238609" 203 id="linearGradient4256" 204 xlink:href="#ButtonShadow-0" 205 gradientUnits="userSpaceOnUse" 206 gradientTransform="translate(0,-97)" /> 207 <path 208 id="a" 209 d="M0 0h24v24H0V0z" /> 210 </defs> 211 <metadata 212 id="metadata7"> 213 <rdf:RDF> 214 <cc:Work 215 rdf:about=""> 216 <dc:format>image/svg+xml</dc:format> 217 <dc:type 218 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 219 <dc:title /> 220 </cc:Work> 221 </rdf:RDF> 222 </metadata> 223 <g 224 id="layer1"> 225 <g 226 clip-path="url(#clipPath3266)" 227 id="g3202" 228 style="display:inline"> 229 <path 230 d="m 12,-95.03125 c -5.5110903,0 -10.03125,4.52016 -10.03125,10.03125 l 0,71 c 0,5.5110902 4.5201598,10.03125 10.03125,10.03125 l 72,0 c 5.51109,0 10.03125,-4.5201597 10.03125,-10.03125 l 0,-71 c 0,-5.51109 -4.52016,-10.03125 -10.03125,-10.03125 l -72,0 z" 231 transform="scale(1,-1)" 232 id="path3786" 233 style="opacity:0.07999998;fill:url(#linearGradient3101);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 234 <path 235 d="m 12,-94.03125 c -4.971633,0 -9.03125,4.059617 -9.03125,9.03125 l 0,71 c 0,4.9716329 4.0596171,9.03125 9.03125,9.03125 l 72,0 c 4.971633,0 9.03125,-4.059617 9.03125,-9.03125 l 0,-71 c 0,-4.971633 -4.059617,-9.03125 -9.03125,-9.03125 l -72,0 z" 236 transform="scale(1,-1)" 237 id="path3778" 238 style="opacity:0.1;fill:url(#linearGradient3780);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 239 <path 240 d="m 12,-93 c -4.4091333,0 -8,3.590867 -8,8 l 0,71 c 0,4.4091333 3.5908667,8 8,8 l 72,0 c 4.409133,0 8,-3.5908667 8,-8 l 0,-71 c 0,-4.409133 -3.590867,-8 -8,-8 l -72,0 z" 241 transform="scale(1,-1)" 242 id="path3770" 243 style="opacity:0.2;fill:url(#linearGradient3772);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 244 <rect 245 width="86" 246 height="85" 247 rx="7" 248 ry="7" 249 x="5" 250 y="-92" 251 transform="scale(1,-1)" 252 id="rect3723" 253 style="opacity:0.3;fill:url(#linearGradient3725);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 254 <rect 255 width="84" 256 height="84" 257 rx="6" 258 ry="6" 259 x="6" 260 y="-91" 261 transform="scale(1,-1)" 262 id="rect3716" 263 style="opacity:0.45;fill:url(#linearGradient4256);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 264 </g> 265 <rect 266 width="84" 267 height="84" 268 rx="6" 269 ry="6" 270 x="6" 271 y="6" 272 id="rect2419" 273 style="opacity:0.75;fill:url(#linearGradient3052);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 274 <path 275 d="M 12,6 C 8.676,6 6,8.676 6,12 l 0,2 0,68 0,2 c 0,0.334721 0.04135,0.6507 0.09375,0.96875 0.0487,0.295596 0.09704,0.596915 0.1875,0.875 0.00988,0.03038 0.020892,0.0636 0.03125,0.09375 0.098865,0.287771 0.2348802,0.547452 0.375,0.8125 0.1445918,0.273507 0.3156161,0.535615 0.5,0.78125 0.1843839,0.245635 0.3737765,0.473472 0.59375,0.6875 0.439947,0.428056 0.94291,0.814526 1.5,1.09375 0.278545,0.139612 0.5734731,0.246947 0.875,0.34375 -0.2562018,-0.100222 -0.4867109,-0.236272 -0.71875,-0.375 -0.00741,-0.0044 -0.023866,0.0045 -0.03125,0 -0.031933,-0.0193 -0.062293,-0.04251 -0.09375,-0.0625 -0.120395,-0.0767 -0.2310226,-0.163513 -0.34375,-0.25 -0.1061728,-0.0808 -0.2132809,-0.161112 -0.3125,-0.25 C 8.4783201,88.557317 8.3087904,88.373362 8.15625,88.1875 8.0486711,88.057245 7.9378561,87.922215 7.84375,87.78125 7.818661,87.74287 7.805304,87.69538 7.78125,87.65625 7.716487,87.553218 7.6510225,87.451733 7.59375,87.34375 7.4927417,87.149044 7.3880752,86.928049 7.3125,86.71875 7.30454,86.69694 7.288911,86.6782 7.28125,86.65625 7.2494249,86.5643 7.2454455,86.469419 7.21875,86.375 7.188418,86.268382 7.148361,86.171969 7.125,86.0625 7.052121,85.720988 7,85.364295 7,85 L 7,83 7,15 7,13 C 7,10.218152 9.2181517,8 12,8 l 2,0 68,0 2,0 c 2.781848,0 5,2.218152 5,5 l 0,2 0,68 0,2 c 0,0.364295 -0.05212,0.720988 -0.125,1.0625 -0.04415,0.206893 -0.08838,0.397658 -0.15625,0.59375 -0.0077,0.02195 -0.0233,0.04069 -0.03125,0.0625 -0.06274,0.173739 -0.138383,0.367449 -0.21875,0.53125 -0.04158,0.0828 -0.07904,0.169954 -0.125,0.25 -0.0546,0.09721 -0.126774,0.18835 -0.1875,0.28125 -0.09411,0.140965 -0.204921,0.275995 -0.3125,0.40625 -0.143174,0.17445 -0.303141,0.346998 -0.46875,0.5 -0.01117,0.0102 -0.01998,0.02115 -0.03125,0.03125 -0.138386,0.125556 -0.285091,0.234436 -0.4375,0.34375 -0.102571,0.07315 -0.204318,0.153364 -0.3125,0.21875 -0.0074,0.0045 -0.02384,-0.0044 -0.03125,0 -0.232039,0.138728 -0.462548,0.274778 -0.71875,0.375 0.301527,-0.0968 0.596455,-0.204138 0.875,-0.34375 0.55709,-0.279224 1.060053,-0.665694 1.5,-1.09375 0.219973,-0.214028 0.409366,-0.441865 0.59375,-0.6875 0.184384,-0.245635 0.355408,-0.507743 0.5,-0.78125 0.14012,-0.265048 0.276135,-0.524729 0.375,-0.8125 0.01041,-0.03078 0.02133,-0.06274 0.03125,-0.09375 0.09046,-0.278085 0.1388,-0.579404 0.1875,-0.875 C 89.95865,84.6507 90,84.334721 90,84 l 0,-2 0,-68 0,-2 C 90,8.676 87.324,6 84,6 L 12,6 z" 276 inkscape:connector-curvature="0" 277 id="rect3728" 278 style="opacity:0.5;fill:url(#linearGradient3188);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 279 <path 280 d="M 12,90 C 8.676,90 6,87.324 6,84 L 6,82 6,14 6,12 c 0,-0.334721 0.04135,-0.6507 0.09375,-0.96875 0.0487,-0.295596 0.09704,-0.596915 0.1875,-0.875 C 6.29113,10.12587 6.302142,10.09265 6.3125,10.0625 6.411365,9.774729 6.5473802,9.515048 6.6875,9.25 6.8320918,8.976493 7.0031161,8.714385 7.1875,8.46875 7.3718839,8.223115 7.5612765,7.995278 7.78125,7.78125 8.221197,7.353194 8.72416,6.966724 9.28125,6.6875 9.559795,6.547888 9.8547231,6.440553 10.15625,6.34375 9.9000482,6.443972 9.6695391,6.580022 9.4375,6.71875 c -0.00741,0.0044 -0.023866,-0.0045 -0.03125,0 -0.031933,0.0193 -0.062293,0.04251 -0.09375,0.0625 -0.120395,0.0767 -0.2310226,0.163513 -0.34375,0.25 -0.1061728,0.0808 -0.2132809,0.161112 -0.3125,0.25 C 8.4783201,7.442683 8.3087904,7.626638 8.15625,7.8125 8.0486711,7.942755 7.9378561,8.077785 7.84375,8.21875 7.818661,8.25713 7.805304,8.30462 7.78125,8.34375 7.716487,8.446782 7.6510225,8.548267 7.59375,8.65625 7.4927417,8.850956 7.3880752,9.071951 7.3125,9.28125 7.30454,9.30306 7.288911,9.3218 7.28125,9.34375 7.2494249,9.4357 7.2454455,9.530581 7.21875,9.625 7.188418,9.731618 7.148361,9.828031 7.125,9.9375 7.052121,10.279012 7,10.635705 7,11 l 0,2 0,68 0,2 c 0,2.781848 2.2181517,5 5,5 l 2,0 68,0 2,0 c 2.781848,0 5,-2.218152 5,-5 l 0,-2 0,-68 0,-2 C 89,10.635705 88.94788,10.279012 88.875,9.9375 88.83085,9.730607 88.78662,9.539842 88.71875,9.34375 88.71105,9.3218 88.69545,9.30306 88.6875,9.28125 88.62476,9.107511 88.549117,8.913801 88.46875,8.75 88.42717,8.6672 88.38971,8.580046 88.34375,8.5 88.28915,8.40279 88.216976,8.31165 88.15625,8.21875 88.06214,8.077785 87.951329,7.942755 87.84375,7.8125 87.700576,7.63805 87.540609,7.465502 87.375,7.3125 87.36383,7.3023 87.35502,7.29135 87.34375,7.28125 87.205364,7.155694 87.058659,7.046814 86.90625,6.9375 86.803679,6.86435 86.701932,6.784136 86.59375,6.71875 c -0.0074,-0.0045 -0.02384,0.0044 -0.03125,0 -0.232039,-0.138728 -0.462548,-0.274778 -0.71875,-0.375 0.301527,0.0968 0.596455,0.204138 0.875,0.34375 0.55709,0.279224 1.060053,0.665694 1.5,1.09375 0.219973,0.214028 0.409366,0.441865 0.59375,0.6875 0.184384,0.245635 0.355408,0.507743 0.5,0.78125 0.14012,0.265048 0.276135,0.524729 0.375,0.8125 0.01041,0.03078 0.02133,0.06274 0.03125,0.09375 0.09046,0.278085 0.1388,0.579404 0.1875,0.875 C 89.95865,11.3493 90,11.665279 90,12 l 0,2 0,68 0,2 c 0,3.324 -2.676,6 -6,6 l -72,0 z" 281 inkscape:connector-curvature="0" 282 id="path3615" 283 style="opacity:0.2;fill:url(#radialGradient3619);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 284 </g> 285 <g 286 transform="translate(-141.97088,149.25232)" 287 id="layer3" 288 style="display:inline"> 289 <path 290 d="m -60.119657,-53.689786 0,19.741424 -19.570128,0 0,16.190394 19.570128,0 0,19.447752 16.119657,0 0,-19.447752 19.689784,0 0,-16.190394 -19.689784,0 0,-19.741424 -16.119657,0 z" 291 inkscape:connector-curvature="0" 292 transform="translate(100,0)" 293 clip-path="url(#clipPath3647)" 294 id="path3638" 295 style="display:inline;opacity:0.2;fill:none;stroke:#ffffff;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3651)" /> 296 <path 297 style="fill:none" 298 inkscape:connector-curvature="0" 299 d="m 156.32955,-27.932168 24,0 0,23.9999999 -24,0 z" 300 id="path6" /> 301 <g 302 style="fill:#000000" 303 id="g4223" 304 transform="matrix(3.3874999,0,0,3.3874999,149.32088,-141.90232)"> 305 <path 306 id="path4-67" 307 d="M 0,0 24,0 24,24 0,24 0,0 Z" 308 inkscape:connector-curvature="0" 309 style="fill:none" /> 310 </g> 311 <g 312 style="display:inline;fill:#000000" 313 id="g4223-3" 314 transform="matrix(3.3874999,0,0,3.3874999,149.32088,-141.90232)"> 315 <path 316 id="path4-67-5" 317 d="M 0,0 24,0 24,24 0,24 0,0 Z" 318 inkscape:connector-curvature="0" 319 style="fill:none" /> 320 </g> 321 <g 322 style="display:inline;fill:#000000" 323 id="g4223-2" 324 transform="matrix(3.3874999,0,0,3.3874999,149.32088,-141.90232)"> 325 <path 326 id="path4-67-9" 327 d="M 0,0 24,0 24,24 0,24 0,0 Z" 328 inkscape:connector-curvature="0" 329 style="fill:none" /> 330 </g> 331 <g 332 style="fill:#000000" 333 id="g4326" 334 transform="translate(41.511575,-88.444345)"> 335 <path 336 id="path4" 337 d="M 0,0 24,0 24,24 0,24 Z" 338 inkscape:connector-curvature="0" 339 style="fill:none" /> 340 <path 341 style="opacity:0.1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 342 id="path6-7" 343 d="m 134.82294,3.8113437 -17.89773,-17.8977267 -5.9659,5.9659087 23.86363,23.8636363 51.13636,-51.136363 -5.9659,-5.96591 -45.17046,45.1704547 z" 344 inkscape:connector-curvature="0" /> 345 <path 346 style="display:inline;fill:#43aa47;fill-opacity:1" 347 id="path6-7-9" 348 d="m 134.82294,3.8113435 -17.89773,-17.8977275 -5.96589,5.9659094 23.86362,23.8636356 51.13635,-51.136363 -5.96589,-5.96591 -45.17046,45.1704555 z" 349 inkscape:connector-curvature="0" /> 350 <path 351 style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-opacity:1" 352 id="path6-7-3" 353 d="m 134.82295,3.8113498 -17.89773,-17.8977298 -5.9659,5.9659098 23.86363,23.8636302 51.13634,-51.136359 -5.96589,-5.96591 -45.17045,45.1704588 z" 354 inkscape:connector-curvature="0" /> 355 </g> 356 </g> 62 357 </svg> -
lliurex-up/trunk/fuentes/lliurex-up/usr/share/lliurex-up/rsrc/error.svg
r3208 r3532 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 <!-- Created with Inkscape (http://www.inkscape.org/) --> 3 2 4 <svg 3 5 xmlns:dc="http://purl.org/dc/elements/1.1/" … … 6 8 xmlns:svg="http://www.w3.org/2000/svg" 7 9 xmlns="http://www.w3.org/2000/svg" 10 xmlns:xlink="http://www.w3.org/1999/xlink" 8 11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 9 12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" 10 fill="#000000" 11 height="24" 12 viewBox="0 0 24 24" 13 width="24" 13 version="1.0" 14 width="96" 15 height="96" 14 16 id="svg2" 15 version="1.1"16 17 inkscape:version="0.91 r13725" 17 sodipodi:docname="error.svg"> 18 <metadata 19 id="metadata12"> 20 <rdf:RDF> 21 <cc:Work 22 rdf:about=""> 23 <dc:format>image/svg+xml</dc:format> 24 <dc:type 25 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 26 <dc:title></dc:title> 27 </cc:Work> 28 </rdf:RDF> 29 </metadata> 30 <defs 31 id="defs10" /> 18 sodipodi:docname="error.svg" 19 inkscape:export-filename="/home/lliurex/Documentos/error.png" 20 inkscape:export-xdpi="22.5" 21 inkscape:export-ydpi="22.5"> 32 22 <sodipodi:namedview 33 23 pagecolor="#ffffff" … … 40 30 inkscape:pageshadow="2" 41 31 inkscape:window-width="1920" 42 inkscape:window-height=" 926"43 id="namedview 8"32 inkscape:window-height="870" 33 id="namedview4184" 44 34 showgrid="false" 45 inkscape:zoom=" 9.8333333"46 inkscape:cx=" 12"47 inkscape:cy=" 12"35 inkscape:zoom="2.5779935" 36 inkscape:cx="-85.201976" 37 inkscape:cy="44.58354" 48 38 inkscape:window-x="0" 49 39 inkscape:window-y="24" 50 40 inkscape:window-maximized="1" 51 inkscape:current-layer="svg2" /> 52 <path 53 d="M0 0h24v24H0V0z" 54 fill="none" 55 id="path4" /> 56 <path 57 d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" 58 id="path6" 59 style="fill:#d50000;fill-opacity:1" 60 inkscape:export-filename="/home/lliurex/svn/lliurex-up/trunk/fuentes/lliurex-up-gui/rsrc/error.png" 61 inkscape:export-xdpi="90" 62 inkscape:export-ydpi="90" /> 41 inkscape:current-layer="layer3" /> 42 <defs 43 id="defs4"> 44 <linearGradient 45 x1="11.640054" 46 y1="4.0775533" 47 x2="11.640054" 48 y2="17.924156" 49 id="linearGradient3972" 50 gradientUnits="userSpaceOnUse"> 51 <stop 52 id="stop3974" 53 style="stop-color:#03a9f4;stop-opacity:1" 54 offset="0" /> 55 <stop 56 id="stop3976" 57 style="stop-color:#29b6f6;stop-opacity:1" 58 offset="1" /> 59 </linearGradient> 60 <linearGradient 61 x1="11.640054" 62 y1="4.0775533" 63 x2="11.640054" 64 y2="17.924156" 65 id="linearGradient2862" 66 xlink:href="#linearGradient3972" 67 gradientUnits="userSpaceOnUse" 68 gradientTransform="matrix(4,0,0,4,2.4484057,-135.55486)" /> 69 <clipPath 70 id="clipPath3647"> 71 <path 72 d="m -100,-74 0,96 96,0 0,-96 -96,0 z m 39.875,20.3125 16.125,0 0,19.75 19.6875,0 0,16.1875 -19.6875,0 0,19.4375 -16.125,0 0,-19.4375 -19.5625,0 0,-16.1875 19.5625,0 0,-19.75 z" 73 inkscape:connector-curvature="0" 74 id="path3649" 75 style="opacity:0.3;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> 76 </clipPath> 77 <filter 78 id="filter3651" 79 color-interpolation-filters="sRGB"> 80 <feGaussianBlur 81 id="feGaussianBlur3653" 82 stdDeviation="0.83069354" /> 83 </filter> 84 <clipPath 85 id="clipPath3266"> 86 <path 87 d="M 0,0 0,96 96,96 96,0 0,0 z m 12,6 72,0 c 3.324,0 6,2.676 6,6 l 0,72 c 0,3.324 -2.676,6 -6,6 L 12,90 C 8.676,90 6,87.324 6,84 L 6,12 C 6,8.676 8.676,6 12,6 z" 88 inkscape:connector-curvature="0" 89 id="path3268" 90 style="opacity:0.3;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> 91 </clipPath> 92 <linearGradient 93 x1="32.251034" 94 y1="6.1317081" 95 x2="32.251034" 96 y2="90.238609" 97 id="linearGradient3101" 98 xlink:href="#ButtonShadow-0" 99 gradientUnits="userSpaceOnUse" 100 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 101 <linearGradient 102 x1="45.447727" 103 y1="92.539597" 104 x2="45.447727" 105 y2="7.0165396" 106 id="ButtonShadow-0" 107 gradientUnits="userSpaceOnUse" 108 gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)"> 109 <stop 110 id="stop3750-8" 111 style="stop-color:#000000;stop-opacity:1" 112 offset="0" /> 113 <stop 114 id="stop3752-5" 115 style="stop-color:#000000;stop-opacity:0.58823532" 116 offset="1" /> 117 </linearGradient> 118 <linearGradient 119 x1="32.251034" 120 y1="6.1317081" 121 x2="32.251034" 122 y2="90.238609" 123 id="linearGradient3780" 124 xlink:href="#ButtonShadow-0" 125 gradientUnits="userSpaceOnUse" 126 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 127 <linearGradient 128 x1="32.251034" 129 y1="6.1317081" 130 x2="32.251034" 131 y2="90.238609" 132 id="linearGradient3772" 133 xlink:href="#ButtonShadow-0" 134 gradientUnits="userSpaceOnUse" 135 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 136 <linearGradient 137 x1="32.251034" 138 y1="6.1317081" 139 x2="32.251034" 140 y2="90.238609" 141 id="linearGradient3725" 142 xlink:href="#ButtonShadow-0" 143 gradientUnits="userSpaceOnUse" 144 gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" /> 145 <linearGradient 146 x1="48" 147 y1="90" 148 x2="48" 149 y2="5.9877172" 150 id="linearGradient3052" 151 xlink:href="#ButtonColor-6" 152 gradientUnits="userSpaceOnUse" /> 153 <linearGradient 154 x1="10.31979" 155 y1="21" 156 x2="10.31979" 157 y2="0.99929649" 158 id="ButtonColor-6" 159 gradientUnits="userSpaceOnUse"> 160 <stop 161 id="stop3189-4" 162 style="stop-color:#c8c8c8;stop-opacity:1" 163 offset="0" /> 164 <stop 165 id="stop3191-0" 166 style="stop-color:#e6e6e6;stop-opacity:1" 167 offset="1" /> 168 </linearGradient> 169 <linearGradient 170 x1="36.357143" 171 y1="6" 172 x2="36.357143" 173 y2="63.893143" 174 id="linearGradient3188" 175 xlink:href="#linearGradient3737" 176 gradientUnits="userSpaceOnUse" /> 177 <linearGradient 178 id="linearGradient3737"> 179 <stop 180 id="stop3739" 181 style="stop-color:#ffffff;stop-opacity:1" 182 offset="0" /> 183 <stop 184 id="stop3741" 185 style="stop-color:#ffffff;stop-opacity:0" 186 offset="1" /> 187 </linearGradient> 188 <radialGradient 189 cx="48" 190 cy="90.171875" 191 r="42" 192 fx="48" 193 fy="90.171875" 194 id="radialGradient3619" 195 xlink:href="#linearGradient3737" 196 gradientUnits="userSpaceOnUse" 197 gradientTransform="matrix(1.1573129,0,0,0.99590774,-7.551021,0.1971319)" /> 198 <linearGradient 199 x1="32.251034" 200 y1="6.1317081" 201 x2="32.251034" 202 y2="90.238609" 203 id="linearGradient4256" 204 xlink:href="#ButtonShadow-0" 205 gradientUnits="userSpaceOnUse" 206 gradientTransform="translate(0,-97)" /> 207 <path 208 id="a" 209 d="M0 0h24v24H0V0z" /> 210 </defs> 211 <metadata 212 id="metadata7"> 213 <rdf:RDF> 214 <cc:Work 215 rdf:about=""> 216 <dc:format>image/svg+xml</dc:format> 217 <dc:type 218 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 219 <dc:title /> 220 </cc:Work> 221 </rdf:RDF> 222 </metadata> 223 <g 224 id="layer1"> 225 <g 226 clip-path="url(#clipPath3266)" 227 id="g3202" 228 style="display:inline"> 229 <path 230 d="m 12,-95.03125 c -5.5110903,0 -10.03125,4.52016 -10.03125,10.03125 l 0,71 c 0,5.5110902 4.5201598,10.03125 10.03125,10.03125 l 72,0 c 5.51109,0 10.03125,-4.5201597 10.03125,-10.03125 l 0,-71 c 0,-5.51109 -4.52016,-10.03125 -10.03125,-10.03125 l -72,0 z" 231 transform="scale(1,-1)" 232 id="path3786" 233 style="opacity:0.07999998;fill:url(#linearGradient3101);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 234 <path 235 d="m 12,-94.03125 c -4.971633,0 -9.03125,4.059617 -9.03125,9.03125 l 0,71 c 0,4.9716329 4.0596171,9.03125 9.03125,9.03125 l 72,0 c 4.971633,0 9.03125,-4.059617 9.03125,-9.03125 l 0,-71 c 0,-4.971633 -4.059617,-9.03125 -9.03125,-9.03125 l -72,0 z" 236 transform="scale(1,-1)" 237 id="path3778" 238 style="opacity:0.1;fill:url(#linearGradient3780);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 239 <path 240 d="m 12,-93 c -4.4091333,0 -8,3.590867 -8,8 l 0,71 c 0,4.4091333 3.5908667,8 8,8 l 72,0 c 4.409133,0 8,-3.5908667 8,-8 l 0,-71 c 0,-4.409133 -3.590867,-8 -8,-8 l -72,0 z" 241 transform="scale(1,-1)" 242 id="path3770" 243 style="opacity:0.2;fill:url(#linearGradient3772);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 244 <rect 245 width="86" 246 height="85" 247 rx="7" 248 ry="7" 249 x="5" 250 y="-92" 251 transform="scale(1,-1)" 252 id="rect3723" 253 style="opacity:0.3;fill:url(#linearGradient3725);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 254 <rect 255 width="84" 256 height="84" 257 rx="6" 258 ry="6" 259 x="6" 260 y="-91" 261 transform="scale(1,-1)" 262 id="rect3716" 263 style="opacity:0.45;fill:url(#linearGradient4256);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 264 </g> 265 <rect 266 width="84" 267 height="84" 268 rx="6" 269 ry="6" 270 x="6" 271 y="6" 272 id="rect2419" 273 style="opacity:0.75;fill:url(#linearGradient3052);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 274 <path 275 d="M 12,6 C 8.676,6 6,8.676 6,12 l 0,2 0,68 0,2 c 0,0.334721 0.04135,0.6507 0.09375,0.96875 0.0487,0.295596 0.09704,0.596915 0.1875,0.875 0.00988,0.03038 0.020892,0.0636 0.03125,0.09375 0.098865,0.287771 0.2348802,0.547452 0.375,0.8125 0.1445918,0.273507 0.3156161,0.535615 0.5,0.78125 0.1843839,0.245635 0.3737765,0.473472 0.59375,0.6875 0.439947,0.428056 0.94291,0.814526 1.5,1.09375 0.278545,0.139612 0.5734731,0.246947 0.875,0.34375 -0.2562018,-0.100222 -0.4867109,-0.236272 -0.71875,-0.375 -0.00741,-0.0044 -0.023866,0.0045 -0.03125,0 -0.031933,-0.0193 -0.062293,-0.04251 -0.09375,-0.0625 -0.120395,-0.0767 -0.2310226,-0.163513 -0.34375,-0.25 -0.1061728,-0.0808 -0.2132809,-0.161112 -0.3125,-0.25 C 8.4783201,88.557317 8.3087904,88.373362 8.15625,88.1875 8.0486711,88.057245 7.9378561,87.922215 7.84375,87.78125 7.818661,87.74287 7.805304,87.69538 7.78125,87.65625 7.716487,87.553218 7.6510225,87.451733 7.59375,87.34375 7.4927417,87.149044 7.3880752,86.928049 7.3125,86.71875 7.30454,86.69694 7.288911,86.6782 7.28125,86.65625 7.2494249,86.5643 7.2454455,86.469419 7.21875,86.375 7.188418,86.268382 7.148361,86.171969 7.125,86.0625 7.052121,85.720988 7,85.364295 7,85 L 7,83 7,15 7,13 C 7,10.218152 9.2181517,8 12,8 l 2,0 68,0 2,0 c 2.781848,0 5,2.218152 5,5 l 0,2 0,68 0,2 c 0,0.364295 -0.05212,0.720988 -0.125,1.0625 -0.04415,0.206893 -0.08838,0.397658 -0.15625,0.59375 -0.0077,0.02195 -0.0233,0.04069 -0.03125,0.0625 -0.06274,0.173739 -0.138383,0.367449 -0.21875,0.53125 -0.04158,0.0828 -0.07904,0.169954 -0.125,0.25 -0.0546,0.09721 -0.126774,0.18835 -0.1875,0.28125 -0.09411,0.140965 -0.204921,0.275995 -0.3125,0.40625 -0.143174,0.17445 -0.303141,0.346998 -0.46875,0.5 -0.01117,0.0102 -0.01998,0.02115 -0.03125,0.03125 -0.138386,0.125556 -0.285091,0.234436 -0.4375,0.34375 -0.102571,0.07315 -0.204318,0.153364 -0.3125,0.21875 -0.0074,0.0045 -0.02384,-0.0044 -0.03125,0 -0.232039,0.138728 -0.462548,0.274778 -0.71875,0.375 0.301527,-0.0968 0.596455,-0.204138 0.875,-0.34375 0.55709,-0.279224 1.060053,-0.665694 1.5,-1.09375 0.219973,-0.214028 0.409366,-0.441865 0.59375,-0.6875 0.184384,-0.245635 0.355408,-0.507743 0.5,-0.78125 0.14012,-0.265048 0.276135,-0.524729 0.375,-0.8125 0.01041,-0.03078 0.02133,-0.06274 0.03125,-0.09375 0.09046,-0.278085 0.1388,-0.579404 0.1875,-0.875 C 89.95865,84.6507 90,84.334721 90,84 l 0,-2 0,-68 0,-2 C 90,8.676 87.324,6 84,6 L 12,6 z" 276 inkscape:connector-curvature="0" 277 id="rect3728" 278 style="opacity:0.5;fill:url(#linearGradient3188);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 279 <path 280 d="M 12,90 C 8.676,90 6,87.324 6,84 L 6,82 6,14 6,12 c 0,-0.334721 0.04135,-0.6507 0.09375,-0.96875 0.0487,-0.295596 0.09704,-0.596915 0.1875,-0.875 C 6.29113,10.12587 6.302142,10.09265 6.3125,10.0625 6.411365,9.774729 6.5473802,9.515048 6.6875,9.25 6.8320918,8.976493 7.0031161,8.714385 7.1875,8.46875 7.3718839,8.223115 7.5612765,7.995278 7.78125,7.78125 8.221197,7.353194 8.72416,6.966724 9.28125,6.6875 9.559795,6.547888 9.8547231,6.440553 10.15625,6.34375 9.9000482,6.443972 9.6695391,6.580022 9.4375,6.71875 c -0.00741,0.0044 -0.023866,-0.0045 -0.03125,0 -0.031933,0.0193 -0.062293,0.04251 -0.09375,0.0625 -0.120395,0.0767 -0.2310226,0.163513 -0.34375,0.25 -0.1061728,0.0808 -0.2132809,0.161112 -0.3125,0.25 C 8.4783201,7.442683 8.3087904,7.626638 8.15625,7.8125 8.0486711,7.942755 7.9378561,8.077785 7.84375,8.21875 7.818661,8.25713 7.805304,8.30462 7.78125,8.34375 7.716487,8.446782 7.6510225,8.548267 7.59375,8.65625 7.4927417,8.850956 7.3880752,9.071951 7.3125,9.28125 7.30454,9.30306 7.288911,9.3218 7.28125,9.34375 7.2494249,9.4357 7.2454455,9.530581 7.21875,9.625 7.188418,9.731618 7.148361,9.828031 7.125,9.9375 7.052121,10.279012 7,10.635705 7,11 l 0,2 0,68 0,2 c 0,2.781848 2.2181517,5 5,5 l 2,0 68,0 2,0 c 2.781848,0 5,-2.218152 5,-5 l 0,-2 0,-68 0,-2 C 89,10.635705 88.94788,10.279012 88.875,9.9375 88.83085,9.730607 88.78662,9.539842 88.71875,9.34375 88.71105,9.3218 88.69545,9.30306 88.6875,9.28125 88.62476,9.107511 88.549117,8.913801 88.46875,8.75 88.42717,8.6672 88.38971,8.580046 88.34375,8.5 88.28915,8.40279 88.216976,8.31165 88.15625,8.21875 88.06214,8.077785 87.951329,7.942755 87.84375,7.8125 87.700576,7.63805 87.540609,7.465502 87.375,7.3125 87.36383,7.3023 87.35502,7.29135 87.34375,7.28125 87.205364,7.155694 87.058659,7.046814 86.90625,6.9375 86.803679,6.86435 86.701932,6.784136 86.59375,6.71875 c -0.0074,-0.0045 -0.02384,0.0044 -0.03125,0 -0.232039,-0.138728 -0.462548,-0.274778 -0.71875,-0.375 0.301527,0.0968 0.596455,0.204138 0.875,0.34375 0.55709,0.279224 1.060053,0.665694 1.5,1.09375 0.219973,0.214028 0.409366,0.441865 0.59375,0.6875 0.184384,0.245635 0.355408,0.507743 0.5,0.78125 0.14012,0.265048 0.276135,0.524729 0.375,0.8125 0.01041,0.03078 0.02133,0.06274 0.03125,0.09375 0.09046,0.278085 0.1388,0.579404 0.1875,0.875 C 89.95865,11.3493 90,11.665279 90,12 l 0,2 0,68 0,2 c 0,3.324 -2.676,6 -6,6 l -72,0 z" 281 inkscape:connector-curvature="0" 282 id="path3615" 283 style="opacity:0.2;fill:url(#radialGradient3619);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" /> 284 </g> 285 <g 286 transform="translate(-141.97088,149.25232)" 287 id="layer3" 288 style="display:inline"> 289 <path 290 d="m -60.119657,-53.689786 0,19.741424 -19.570128,0 0,16.190394 19.570128,0 0,19.447752 16.119657,0 0,-19.447752 19.689784,0 0,-16.190394 -19.689784,0 0,-19.741424 -16.119657,0 z" 291 inkscape:connector-curvature="0" 292 transform="translate(100,0)" 293 clip-path="url(#clipPath3647)" 294 id="path3638" 295 style="display:inline;opacity:0.2;fill:none;stroke:#ffffff;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3651)" /> 296 <path 297 style="fill:none" 298 inkscape:connector-curvature="0" 299 d="m 156.32955,-27.932168 24,0 0,23.9999999 -24,0 z" 300 id="path6" /> 301 <g 302 style="fill:#000000" 303 id="g4223" 304 transform="matrix(3.3874999,0,0,3.3874999,149.32088,-141.90232)"> 305 <path 306 id="path4-67" 307 d="M 0,0 24,0 24,24 0,24 0,0 Z" 308 inkscape:connector-curvature="0" 309 style="fill:none" /> 310 <path 311 inkscape:export-ydpi="90" 312 inkscape:export-xdpi="90" 313 inkscape:export-filename="/home/lliurex/svn/lliurex-up/trunk/fuentes/lliurex-up-gui/rsrc/error.png" 314 style="fill:#d50000;fill-opacity:1" 315 id="path6-5" 316 d="m 11,15 2,0 0,2 -2,0 z m 0,-8 2,0 0,6 -2,0 z M 11.99,2 C 6.47,2 2,6.48 2,12 2,17.52 6.47,22 11.99,22 17.52,22 22,17.52 22,12 22,6.48 17.52,2 11.99,2 Z M 12,20 C 7.58,20 4,16.42 4,12 4,7.58 7.58,4 12,4 c 4.42,0 8,3.58 8,8 0,4.42 -3.58,8 -8,8 z" 317 inkscape:connector-curvature="0" /> 318 </g> 319 <g 320 style="display:inline;fill:#000000" 321 id="g4223-3" 322 transform="matrix(3.3874999,0,0,3.3874999,251.32088,-141.90232)"> 323 <path 324 id="path4-67-5" 325 d="M 0,0 24,0 24,24 0,24 0,0 Z" 326 inkscape:connector-curvature="0" 327 style="fill:none" /> 328 <path 329 inkscape:export-ydpi="90" 330 inkscape:export-xdpi="90" 331 inkscape:export-filename="/home/lliurex/svn/lliurex-up/trunk/fuentes/lliurex-up-gui/rsrc/error.png" 332 style="opacity:0.1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.59040594;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 333 id="path6-5-6" 334 d="m -19.110702,15 2,0 0,2 -2,0 z m 0,-7.9999996 2,0 0,5.9999996 -2,0 z m 0.99,-5 c -5.52,0 -9.99,4.48 -9.99,9.9999996 0,5.52 4.47,10 9.99,10 5.53,0 10.0100004,-4.48 10.0100004,-10 0,-5.5199996 -4.4800004,-9.9999996 -10.0100004,-9.9999996 z M -18.110702,20 c -4.42,0 -8,-3.58 -8,-8 0,-4.4199996 3.58,-7.9999996 8,-7.9999996 4.42,0 8,3.58 8,7.9999996 0,4.42 -3.58,8 -8,8 z" 335 inkscape:connector-curvature="0" /> 336 </g> 337 <g 338 style="display:inline;fill:#000000" 339 id="g4223-2" 340 transform="matrix(3.3874999,0,0,3.3874999,149.32088,-141.90232)"> 341 <path 342 id="path4-67-9" 343 d="M 0,0 24,0 24,24 0,24 0,0 Z" 344 inkscape:connector-curvature="0" 345 style="fill:none" /> 346 <path 347 inkscape:export-ydpi="90" 348 inkscape:export-xdpi="90" 349 inkscape:export-filename="/home/lliurex/svn/lliurex-up/trunk/fuentes/lliurex-up-gui/rsrc/error.png" 350 style="opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.29520297;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 351 id="path6-5-1" 352 d="m 11,15 2,0 0,2 -2,0 z m 0,-8 2,0 0,6 -2,0 z M 11.99,2 C 6.47,2 2,6.48 2,12 2,17.52 6.47,22 11.99,22 17.52,22 22,17.52 22,12 22,6.48 17.52,2 11.99,2 Z M 12,20 C 7.58,20 4,16.42 4,12 4,7.58 7.58,4 12,4 c 4.42,0 8,3.58 8,8 0,4.42 -3.58,8 -8,8 z" 353 inkscape:connector-curvature="0" /> 354 </g> 355 </g> 63 356 </svg> -
lliurex-up/trunk/fuentes/python-lliurex-up/lliurex/lliurexup/__init__.py
r3525 r3532 209 209 options = "" 210 210 if self.canConnectToLliurexNet(): 211 options = "-o Dir::Etc::sourcelist={sourceslistOnlyLliurex} -o Dir::Etc::sourceparts=/dev/null -o APT::Get::List-Cleanup=0".format(sourceslistOnlyLliurex=sourceslistDefaultPath)211 options = "-o Dir::Etc::sourcelist={sourceslistOnlyLliurex} -o Dir::Etc::sourceparts=/dev/null".format(sourceslistOnlyLliurex=sourceslistDefaultPath) 212 212 213 213 self.updateCacheApt(options) … … 317 317 options = "" 318 318 if self.canConnectToLliurexNet(): 319 options = "-o Dir::Etc::sourcelist={sourceslistOnlyLliurex} -o Dir::Etc::sourceparts=/dev/null -o APT::Get::List-Cleanup=0".format(sourceslistOnlyLliurex=sourceslistDefaultPath)319 options = "-o Dir::Etc::sourcelist={sourceslistOnlyLliurex} -o Dir::Etc::sourceparts=/dev/null".format(sourceslistOnlyLliurex=sourceslistDefaultPath) 320 320 self.updateCacheApt(options) 321 321 return self.getPackageVersionAvailable('lliurex-version-timestamp',options)
Note: See TracChangeset
for help on using the changeset viewer.