/srv/irclogs.ubuntu.com/2012/06/28/#ubuntu-app-devel.txt

HamdonYes00:01
JanC(there is a file chooser button in there by default00:01
penguindoes anyone know the function to "go forward" and "go backward" in webkit00:04
penguinvia python00:05
penguinim trying to expand on the tutorial00:05
JanCpenguin: did you check the C docs?00:14
penguinsorry... im a newbie00:18
penguindont know what that is00:19
JanChttp://www.webkitgtk.org/reference/webkitgtk/stable/index.html I think00:23
penguinwhere do i look00:23
penguinnvm00:23
penguinty00:23
JanCthe way to use webkit/gtk from python should be equivalent00:24
JanChttp://www.webkitgtk.org/reference/webkitgtk/stable/WebKitWebBackForwardList.html look relevant to your question  ☺00:24
stlsaintHello all, Can tell me the file used to set default apps on unity bar?00:49
mhall119stlsaint: it's in dconf03:03
mhall119IIRC03:03
stlsaintmhall119: right, i open it up but cant tell how to edit it. right click, double click, cant seem to edit the favorites03:16
tr3ntonUsing quickly, I chuck some images in data/media/ folder ; and when referring to these in glade, use: ../media/image.png . In code, I found to use data/media/image.png. Is there a better practice for referring to images stored there? Thinking that reference wouldn't work once installed ... looking at the media player example, I see they just use the helpers module, e.g. helpers.get_media_file("image.png")03:33
dholbachgood morning06:49
jvrbanacgood morning to you too07:23
vigneshhi, what is the best way to store the data associated with an app in ubuntu?10:29
vigneshI am trying quickly...10:30
vigneshIs sqlite a good option10:30
twobottuxauappdev: python3 can partecipate to Ubuntu app showdown? <http://askubuntu.com/questions/157101/python3-can-partecipate-to-ubuntu-app-showdown>10:55
twobottuxauappdev: Ubuntu App Showdown: Commercial applications <http://askubuntu.com/questions/157117/ubuntu-app-showdown-commercial-applications> || Adding a deamon to quickly app? <http://askubuntu.com/questions/157108/adding-a-deamon-to-quickly-app>11:30
cedeonhi all11:57
twobottuxauappdev: Ambiance theme text stays black - Jono Bacon - Creating First Ubuntu Application <http://askubuntu.com/questions/157123/ambiance-theme-text-stays-black-jono-bacon-creating-first-ubuntu-application>12:10
x_orAre there alteratives to using quickly and putting apps inside the app store?  I love the simplicity of quickly, but I don't know python.  I would prefer something for ruby if it exists...12:17
twobottuxauappdev: Ambiance theme text stays black - <http://askubuntu.com/questions/157123/ambiance-theme-text-stays-black>12:22
twobottuxauappdev: Opening a Window within an already open window (Quickly/Glade) <http://askubuntu.com/questions/157131/opening-a-window-within-an-already-open-window-quickly-glade>12:27
zoopsterx_or: you don't need to use quickly, but I think the intent is to bring the app into extras so it doesn't have to go into "the store"12:48
x_orzoopster: OK, I'm not sure what you mean by "bring the app into extras"...13:01
zoopsterx_or: extras.ubuntu.com is where applications submitted through myapps for review by the Application Review Board are placed once approved.  Extras is a repository that allows for post-release applications to be released13:03
=== jppiiroinen2 is now known as jppiiroinen
twobottuxauappdev: python3 can participate to Ubuntu app showdown? <http://askubuntu.com/questions/157101/python3-can-participate-to-ubuntu-app-showdown>13:48
twobottuxauappdev: Dynamic quicklist: how to reference to .desktop file? (installed in /opt) <http://askubuntu.com/questions/157178/dynamic-quicklist-how-to-reference-to-desktop-file-installed-in-opt>15:00
ComptHey everyone, I have a question regarding Glade and Quickly. Is it possible to map a button to a notebook within the same program. Like say for instance I have a toolbar with a button on it. Can I link it to, say page 3, on the notebook widget?15:10
twobottuxauappdev: Quickly/Glade linking a button to notebook page <http://askubuntu.com/questions/157186/quickly-glade-linking-a-button-to-notebook-page>15:24
Comptlol that's my post ^_^15:34
lemaireif I create a package using 'quickly package --extras', does that package generate a .desktop file after installation, because I can't seem to find it..15:52
twobottuxauappdev: How to reference to .desktop file? (installed in /opt) in a dynamic quicklist? <http://askubuntu.com/questions/157178/how-to-reference-to-desktop-file-installed-in-opt-in-a-dynamic-quicklist>16:17
twobottuxauappdev: Quickly app Unity support <http://askubuntu.com/questions/157228/quickly-app-unity-support>16:59
twobottuxauappdev: GTK+ Custom Accelarator Groups <http://askubuntu.com/questions/157247/gtk-custom-accelarator-groups> || Webview load specific URL (Quickly/Glade) <http://askubuntu.com/questions/157246/webview-load-specific-url-quickly-glade>17:47
cedeonso i just spent the last hour in winpdb tearing my hair out about a piece of code only to realise that winpdb was loading all the old *.pyc files so none of my changes made a difference until i nuked all the *.pyc.18:07
cedeonseriously, what kind of insanity is that for a debugger18:08
cedeon*calms down from rage-fit* sorry guys this window was my closest vent point, im good now :)18:10
ComptHey guys, it's me again. I was wondering if there was a way to tell Webkit to load a specific URL upon a click of a notebook label. So for instance, if I were to click "page 2" on my notebook, the tab would open and webkit would launch the URL of my choice.18:12
cedeonsure, just embed it as normal and set up a callback on the "switch-page" signal18:15
cedeonin quickly it would be def on_notebook1_switch-page(self,widget): i believe18:16
ComptOk (thanks for the response), I have it embed already, but where is the field to launch the specific URL?18:18
cedeonunsure gotta be in the docs somewhere18:21
cedeontheres no ui element packed with it, you'll have to make your own like a GtkEntry or something18:21
ComptOk, thanks18:23
x_orAnyone know of a way to authenticate a quickly app via Google OpenID or Facebook?18:36
twobottuxauappdev: "No Launchpad project set" - Quickly <http://askubuntu.com/questions/156707/no-launchpad-project-set-quickly>18:39
commandolinex_or: openid isn't meant for logging in desktop apps since it requires a callback on a webserver.18:42
commandolinethere are apis for desktop apps available though18:42
x_orcommandoline:  OK, yeah, I think I meant to say oauth using google.  I'18:43
x_orwill look up desktop apps authenticating into google services, good idea.18:43
twobottuxauappdev: Quickly & Ubuntu App Developer: Returns "State: Failed to build" <http://askubuntu.com/questions/157277/quickly-ubuntu-app-developer-returns-state-failed-to-build>18:51
twobottuxauappdev: How to change GtkWidget background in GTK3? <http://askubuntu.com/questions/157283/how-to-change-gtkwidget-background-in-gtk3>19:09
twobottuxauappdev: How to apply gradient background to GtkWidget in GTK3? <http://askubuntu.com/questions/157286/how-to-apply-gradient-background-to-gtkwidget-in-gtk3>19:16
twobottuxauappdev: How to draw on mouse click in Gtk.DrawingArea using pygi <http://askubuntu.com/questions/157290/how-to-draw-on-mouse-click-in-gtk-drawingarea-using-pygi>19:22
twobottuxauappdev: How do I use the Unity methods in Quickly's python code? <http://askubuntu.com/questions/157228/how-do-i-use-the-unity-methods-in-quicklys-python-code>19:46
=== imbrando1 is now known as imbrandon
=== james_w` is now known as james_w
twobottuxauappdev: Quickly/Glade autoadjust text position <http://askubuntu.com/questions/157334/quickly-glade-autoadjust-text-position>21:39
chimneyHeyo21:47
chimneyI want to write a script (bash,perl) which runs continuous an checks if eth0 is up. which file or which function I've to call for gretiing this information?21:49
chimneys/gretiing/getting/21:49
chimneyI also want to signal traffic like the leds on a switch21:50
chimneyok I must leave due to rl will be back in an hour hopefully.21:54
twobottuxauappdev: Quickly. adding button to grid <http://askubuntu.com/questions/157351/quickly-adding-button-to-grid>22:21
twobottuxauappdev: Wikipedia lens example broken <http://askubuntu.com/questions/157364/wikipedia-lens-example-broken>22:49
chimneyhi. I'm back :)22:53
chimneysomeone awake?22:53
zoopsternot sure if someone's awake at the moment23:06
=== chimney is now known as chimney-away
=== chimney-away is now known as chimney-scared

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!