[openstack-dev] OpenStack-dev Digest, Vol 7, Issue 1

Văn Tuấn Nguyễn contactnewsky at gmail.com
Thu Nov 1 03:41:38 UTC 2012


hi all !

I'm newer on openstack, i have read document on openstack website, i saw
some project in it, but i don't  understand about it. please help me, send
to me a simple basic to use openstack please, i can understand more than
from it and dev in it!

thanks !


2012/11/1 <openstack-dev-request at lists.openstack.org>

> Send OpenStack-dev mailing list submissions to
>         openstack-dev at lists.openstack.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
> or, via email, send a message with subject or body 'help' to
>         openstack-dev-request at lists.openstack.org
>
> You can reach the person managing the list at
>         openstack-dev-owner at lists.openstack.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of OpenStack-dev digest..."
>
>
> Today's Topics:
>
>    1. Re: [Moniker] Meeting minutes from DNSaaS initial meeting
>       (Monty Taylor)
>    2. Re: horizon url namespace question (Bhandaru, Malini K)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 01 Nov 2012 01:47:16 +0100
> From: Monty Taylor <mordred at inaugust.com>
> To: openstack-dev at lists.openstack.org
> Subject: Re: [openstack-dev] [Moniker] Meeting minutes from DNSaaS
>         initial meeting
> Message-ID: <5091C694.1050007 at inaugust.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> I'll get this done asap.
>
> On 11/01/2012 12:16 AM, Kiall Mac Innes wrote:
> > Hi All,
> >
> > Thanks again for organizing the meet etc Ryan!
> >
> > Hopefully we can get the code etc moved to Gerrit + the Stackforge
> > GitHub account soon!
> >
> > Infrastructure guys, do you need anything from us to make this happen?
> >
> > Thanks,
> > Kiall
> >
> >
> > On Wed, Oct 31, 2012 at 10:00 PM, Ryan Lane <rlane at wikimedia.org
> > <mailto:rlane at wikimedia.org>> wrote:
> >
> >     Here's the minutes from the DNSaaS meeting:
> >
> >     <
> http://eavesdrop.openstack.org/meetings/dnsaas/2012/dnsaas.2012-10-31-17.02.html
> >
> >
> >     We also took a vote on which project we'll be targeting, but I
> >     messed up the voting syntax and it didn't get recorded in the
> >     minutes. Here's the log:
> >
> >     <
> http://eavesdrop.openstack.org/meetings/dnsaas/2012/dnsaas.2012-10-31-17.02.log.html
> >
> >
> >     The summary of the voting is:
> >
> >     Vote subject: Use moniker and merge other projects
> >     Vote results: 6 yes, 1 no
> >
> >     For future emails on this subject, please use Moniker as the project
> >     name in the subject-line.
> >
> >     We've set up a weekly meeting on Wednesdays at 18:00 UTC in
> >     #openstack-meeting. Kiall will be chair for the next two weeks and
> >     I'll be chair afterwards. Please join if you are interested.
> >
> >     - Ryan
> >
> >     _______________________________________________
> >     OpenStack-dev mailing list
> >     OpenStack-dev at lists.openstack.org
> >     <mailto:OpenStack-dev at lists.openstack.org>
> >     http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
> >
> >
> >
> >
> > _______________________________________________
> > OpenStack-dev mailing list
> > OpenStack-dev at lists.openstack.org
> > http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
> >
>
>
>
> ------------------------------
>
> Message: 2
> Date: Thu, 1 Nov 2012 01:33:10 +0000
> From: "Bhandaru, Malini K" <malini.k.bhandaru at intel.com>
> To: OpenStack Development Mailing List
>         <openstack-dev at lists.openstack.org>
> Subject: Re: [openstack-dev] horizon url namespace question
> Message-ID:
>         <
> EE6FFF4F6C34C84C8C98DD2414EEA47E2F01AF5E at FMSMSX105.amr.corp.intel.com>
>
> Content-Type: text/plain; charset="cp1256"
>
> Would you please take a look at this patch and help with making the
> "extras" namespace work
> The link to view a flavors extra specs comes across as
> "horizon:admin:flavors:extras" as opposed to
> "admin/flavors/<flavor-id>/extras/"
>
> I did go through Django's url name space doc but still stuck.
> Much thanks
> Malini
>
> ________________________________________
> From: Gabriel Hurley [Gabriel.Hurley at nebula.com]
> Sent: Thursday, October 25, 2012 3:16 PM
> To: OpenStack Development Mailing List
> Subject: Re: [openstack-dev] horizon url namespace question
>
> It's much easier to review these sorts of changes and help debug them if
> the branch/patch is posted to either github or gerrit. That way we can look
> at it in context, see the whole change, and even pull it down and try it
> out locally to see what's amiss.
>
> So, if you're able to post the code (even if it's not completely finished)
> that'd help a lot.
>
>     - Gabriel
>
> > -----Original Message-----
> > From: Bhandaru, Malini K [mailto:malini.k.bhandaru at intel.com]
> > Sent: Monday, October 22, 2012 4:32 PM
> > To: OpenStack Development Mailing List ?[openstack-
> > dev at lists.openstack.org]?
> > Subject: [openstack-dev] horizon url namespace question
> >
> > Hello All!
> >
> > I am trying to introduce a namespace to keep url patterns clean ..
> >
> >
> > __________________________________________________________
> > _____
> > ../admin/flavors/urls.py
> >
> > __________________________________________________________
> > _____
> >
> > from django.conf.urls.defaults import patterns, url, include from .views
> > import IndexView, CreateView, EditView from .extras import urls as
> > extras_urls
> >
> >
> > urlpatterns =
> > patterns('openstack_dashboard.dashboards.admin.flavors.views',
> >     url(r'^$', IndexView.as_view(), name='index'),
> >     url(r'^create/$', CreateView.as_view(), name='create'),
> >     url(r'^(?P<id>[^/]+)/edit/$', EditView.as_view(), name='edit'),
> >     url(r'^(?P<id>[^/]+)/extras/', include(extras_urls,
> namespace='extras'))
> >
> > __________________________________________________________
> > _____
> >
> > ../admin/flavors/extras/urls.py
> > __________________________________________________________
> > _____
> >
> > from django.conf.urls.defaults import patterns, url from .views import
> > IndexView, CreateView, EditView
> >
> > urlpatterns = patterns('',
> >     url(r'^$', IndexView.as_view(), name='extras'),
> >     url(r'^create/$', CreateView.as_view(), name='create'),
> >     url(r'(?P<key>[^/]+)/edit/$', EditView.as_view(), name='edit')
> > )
> > __________________________________________________________
> > ________
> > However in the flavors table page the edit url comes out OK, but not the
> > view extra specs link, it shows up as horizon:admin:flavors:extras.
> >
> > Not sure what I am missing .. it is as if the extras namespace is not
> being
> > recognized.
> >
> >
> > <div class="btn-group"><a href='/admin/flavors/1/edit/<view-
> > source:http://localhost:8000/admin/flavors/1/edit/>'
> > id="flavors__row_1__action_edit" class="btn btn-small ajax-modal btn-
> > edit">Edit Flavor</a><a class="btn dropdown-toggle ajax-modal btn-edit"
> > data-toggle="dropdown" href="#<view-
> > source:http://localhost:8000/admin/flavors/#>"><span
> > class="caret"></span></a><ul class="dropdown-menu row_actions
> > clearfix"><li class="clearfix"> <a href='horizon:admin:flavors:extras'
> > id="flavors__row_1__action_extras" class="btn btn-small b t n - e d i
> > t">View Extra Specs</a></li><li class="clearfix"> <button
> > id="flavors__row_1__action_delete" class="btn btn-small btn-danger btn-
> > delete" name="action" value="flavors__delete__1" type="submit">Delete
> > Flavor</button></li></ul></div> </td> </tr>
> >
> >
> >
> > Thanks
> > Malini
> >
> > _______________________________________________
> > OpenStack-dev mailing list
> > OpenStack-dev at lists.openstack.org
> > http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>
>
>
> _______________________________________________
> OpenStack-dev mailing list
> OpenStack-dev at lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
> -------------- next part --------------
> A non-text attachment was scrubbed...
> Name: extras_namespace.patch
> Type: text/x-patch
> Size: 25106 bytes
> Desc: extras_namespace.patch
> URL: <
> http://lists.openstack.org/pipermail/openstack-dev/attachments/20121101/83a2da8d/attachment.bin
> >
>
> ------------------------------
>
> _______________________________________________
> OpenStack-dev mailing list
> OpenStack-dev at lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>
>
> End of OpenStack-dev Digest, Vol 7, Issue 1
> *******************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstack.org/pipermail/openstack-dev/attachments/20121101/426ccc12/attachment-0001.html>


More information about the OpenStack-dev mailing list