Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboard

2014-12-12 Thread Thai Q Tran
Haha, sure I'm willing to make concessions. I'll update the patch to retain the _conf file but it will be blank. This way, we can move forward and not break it for existing users.I'll also document it somewhere in the patch.-Lin Hua Cheng  wrote: -To: "OpenStack Development Mailing List (not for usage questions)" From: Lin Hua Cheng Date: 12/12/2014 03:18PMSubject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboardBreaking something for existing user is progress, but not forward. :)I don't mind moving the code around to _scripts file, but simply dropping the _conf file is my concern since it might already be extended from. Perhaps document it first that it will be deprecated, and remove it on later release.On Fri, Dec 12, 2014 at 10:43 AM, Thai Q Tran  wrote:As is the case with anything we change, but that should not stop us from making improvements/progress. I would argue that it would make life easier for them since all scripts are now in one place.-Lin Hua Cheng  wrote: -To: "OpenStack Development Mailing List (not for usage questions)" From: Lin Hua Cheng Date: 12/12/2014 10:28AMSubject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboardConsolidating them would break it for users that have customization and extension on the two templates.-LinOn Fri, Dec 12, 2014 at 9:20 AM, David Lyle  wrote:Not entirely sure why they both exist either. So by move, you meant override (nuance). That's different and I have no issue with that.I'm also fine with attempting to consolidate _conf and _scripts.DavidOn Thu, Dec 11, 2014 at 1:22 PM, Thai Q Tran  wrote:It would not create a circular dependency, dashboard would depend on horizon - not the latter.Scripts that are library specific will live in horizon while scripts that are panel specific will live in dashboard.Let me draw a more concrete example.In HorizonWe know that _script and _conf are included in the base.htmlWe create a _script and _conf placeholder file for project overrides (similar to _stylesheets and _header)In DashboardWe create a _script and _conf file with today's contentIt overrides the _script and _conf file in horizonNow we can include panel specific scripts without causing circular dependency.In fact, I would like to go further and suggest that _script and _conf be combine into a single file.Not sure why we need two places to include scripts.-David Lyle  wrote: -To: "OpenStack Development Mailing List (not for usage questions)" From: David Lyle Date: 12/11/2014 09:23AMSubject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboardI'm probably not understanding the nuance of the question but moving the _scripts.html file to openstack_dashboard creates some circular dependencies, does it not? templates/base.html in the horizon side of the repo includes _scripts.html and insures that the _javascript_ needed by the existing horizon framework is present._conf.html seems like a better candidate for moving as it's more closely tied to the application code.DavidOn Wed, Dec 10, 2014 at 7:20 PM, Thai Q Tran  wrote:Sorry for duplicate mail, forgot the subject.-Thai Q Tran/Silicon Valley/IBM wrote: -To: "OpenStack Development Mailing List \(not for usage questions\)" From: Thai Q Tran/Silicon Valley/IBMDate: 12/10/2014 03:37PMSubject: Moving _conf and _scripts to dashboardThe way we are structuring our _javascript_s today is complicated. All of our static _javascript_s reside in /horizon/static and are imported through _conf.html and _scripts.html. Notice that there are already some panel specific _javascript_s like: horizon.images.js, horizon.instances.js, horizon.users.js. They do not belong in horizon. They belong in openstack_dashboard because they are specific to a panel.Why am I raising this issue now? In Angular, we need controllers written in _javascript_ for each panel. As we angularize more and more panels, we need to store them in a way that make sense. To me, it make sense for us to move _conf and _scripts to openstack_dashboard. Or if this is not possible, then provide a mechanism to override them in openstack_dashboard.Thoughts?Thai


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

___OpenStack-dev mailing listOpenStack-dev@lists.openstack.orghttp://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboard

2014-12-12 Thread Lin Hua Cheng
Breaking something for existing user is progress, but not forward. :)

I don't mind moving the code around to _scripts file, but simply dropping
the _conf file is my concern since it might already be extended from.
Perhaps document it first that it will be deprecated, and remove it on
later release.

On Fri, Dec 12, 2014 at 10:43 AM, Thai Q Tran  wrote:
>
> As is the case with anything we change, but that should not stop us from
> making improvements/progress. I would argue that it would make life easier
> for them since all scripts are now in one place.
>
> -Lin Hua Cheng  wrote: -
> To: "OpenStack Development Mailing List (not for usage questions)" <
> openstack-dev@lists.openstack.org>
> From: Lin Hua Cheng 
> Date: 12/12/2014 10:28AM
>
> Subject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to
> dashboard
>
> Consolidating them would break it for users that have customization and
> extension on the two templates.
>
> -Lin
>
> On Fri, Dec 12, 2014 at 9:20 AM, David Lyle  wrote:
>>
>> Not entirely sure why they both exist either.
>>
>> So by move, you meant override (nuance). That's different and I have no
>> issue with that.
>>
>> I'm also fine with attempting to consolidate _conf and _scripts.
>>
>> David
>>
>> On Thu, Dec 11, 2014 at 1:22 PM, Thai Q Tran  wrote:
>>
>>>
>>> It would not create a circular dependency, dashboard would depend on
>>> horizon - not the latter.
>>> Scripts that are library specific will live in horizon while scripts
>>> that are panel specific will live in dashboard.
>>> Let me draw a more concrete example.
>>>
>>> In Horizon
>>> We know that _script and _conf are included in the base.html
>>> We create a _script and _conf placeholder file for project overrides
>>> (similar to _stylesheets and _header)
>>> In Dashboard
>>> We create a _script and _conf file with today's content
>>> It overrides the _script and _conf file in horizon
>>> Now we can include panel specific scripts without causing circular
>>> dependency.
>>>
>>> In fact, I would like to go further and suggest that _script and _conf
>>> be combine into a single file.
>>> Not sure why we need two places to include scripts.
>>>
>>>
>>> -David Lyle  wrote: -
>>> To: "OpenStack Development Mailing List (not for usage questions)" <
>>> openstack-dev@lists.openstack.org>
>>> From: David Lyle 
>>> Date: 12/11/2014 09:23AM
>>> Subject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to
>>> dashboard
>>>
>>>
>>> I'm probably not understanding the nuance of the question but moving the
>>> _scripts.html file to openstack_dashboard creates some circular
>>> dependencies, does it not? templates/base.html in the horizon side of the
>>> repo includes _scripts.html and insures that the javascript needed by the
>>> existing horizon framework is present.
>>>
>>> _conf.html seems like a better candidate for moving as it's more closely
>>> tied to the application code.
>>>
>>> David
>>>
>>>
>>> On Wed, Dec 10, 2014 at 7:20 PM, Thai Q Tran  wrote:
>>>
>>>> Sorry for duplicate mail, forgot the subject.
>>>>
>>>> -Thai Q Tran/Silicon Valley/IBM wrote: -
>>>> To: "OpenStack Development Mailing List \(not for usage questions\)" <
>>>> openstack-dev@lists.openstack.org>
>>>> From: Thai Q Tran/Silicon Valley/IBM
>>>> Date: 12/10/2014 03:37PM
>>>> Subject: Moving _conf and _scripts to dashboard
>>>>
>>>> The way we are structuring our javascripts today is complicated. All of
>>>> our static javascripts reside in /horizon/static and are imported through
>>>> _conf.html and _scripts.html. Notice that there are already some panel
>>>> specific javascripts like: horizon.images.js, horizon.instances.js,
>>>> horizon.users.js. They do not belong in horizon. They belong in
>>>> openstack_dashboard because they are specific to a panel.
>>>>
>>>> Why am I raising this issue now? In Angular, we need controllers
>>>> written in javascript for each panel. As we angularize more and more
>>>> panels, we need to store them in a way that make sense. To me, it make
>>>> sense for us to move _conf and _scripts to openstack_dashboard. Or if this
>>>> is not possible

Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboard

2014-12-12 Thread Thai Q Tran
As is the case with anything we change, but that should not stop us from making improvements/progress. I would argue that it would make life easier for them since all scripts are now in one place.-Lin Hua Cheng  wrote: -To: "OpenStack Development Mailing List (not for usage questions)" From: Lin Hua Cheng Date: 12/12/2014 10:28AMSubject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboardConsolidating them would break it for users that have customization and extension on the two templates.-LinOn Fri, Dec 12, 2014 at 9:20 AM, David Lyle  wrote:Not entirely sure why they both exist either. So by move, you meant override (nuance). That's different and I have no issue with that.I'm also fine with attempting to consolidate _conf and _scripts.DavidOn Thu, Dec 11, 2014 at 1:22 PM, Thai Q Tran  wrote:It would not create a circular dependency, dashboard would depend on horizon - not the latter.Scripts that are library specific will live in horizon while scripts that are panel specific will live in dashboard.Let me draw a more concrete example.In HorizonWe know that _script and _conf are included in the base.htmlWe create a _script and _conf placeholder file for project overrides (similar to _stylesheets and _header)In DashboardWe create a _script and _conf file with today's contentIt overrides the _script and _conf file in horizonNow we can include panel specific scripts without causing circular dependency.In fact, I would like to go further and suggest that _script and _conf be combine into a single file.Not sure why we need two places to include scripts.-David Lyle  wrote: -To: "OpenStack Development Mailing List (not for usage questions)" From: David Lyle Date: 12/11/2014 09:23AMSubject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboardI'm probably not understanding the nuance of the question but moving the _scripts.html file to openstack_dashboard creates some circular dependencies, does it not? templates/base.html in the horizon side of the repo includes _scripts.html and insures that the _javascript_ needed by the existing horizon framework is present._conf.html seems like a better candidate for moving as it's more closely tied to the application code.DavidOn Wed, Dec 10, 2014 at 7:20 PM, Thai Q Tran  wrote:Sorry for duplicate mail, forgot the subject.-Thai Q Tran/Silicon Valley/IBM wrote: -To: "OpenStack Development Mailing List \(not for usage questions\)" From: Thai Q Tran/Silicon Valley/IBMDate: 12/10/2014 03:37PMSubject: Moving _conf and _scripts to dashboardThe way we are structuring our _javascript_s today is complicated. All of our static _javascript_s reside in /horizon/static and are imported through _conf.html and _scripts.html. Notice that there are already some panel specific _javascript_s like: horizon.images.js, horizon.instances.js, horizon.users.js. They do not belong in horizon. They belong in openstack_dashboard because they are specific to a panel.Why am I raising this issue now? In Angular, we need controllers written in _javascript_ for each panel. As we angularize more and more panels, we need to store them in a way that make sense. To me, it make sense for us to move _conf and _scripts to openstack_dashboard. Or if this is not possible, then provide a mechanism to override them in openstack_dashboard.Thoughts?Thai


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

___OpenStack-dev mailing listOpenStack-dev@lists.openstack.orghttp://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

___OpenStack-dev mailing listOpenStack-dev@lists.openstack.orghttp://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboard

2014-12-12 Thread Lin Hua Cheng
Consolidating them would break it for users that have customization and
extension on the two templates.

-Lin

On Fri, Dec 12, 2014 at 9:20 AM, David Lyle  wrote:
>
> Not entirely sure why they both exist either.
>
> So by move, you meant override (nuance). That's different and I have no
> issue with that.
>
> I'm also fine with attempting to consolidate _conf and _scripts.
>
> David
>
> On Thu, Dec 11, 2014 at 1:22 PM, Thai Q Tran  wrote:
>
>>
>> It would not create a circular dependency, dashboard would depend on
>> horizon - not the latter.
>> Scripts that are library specific will live in horizon while scripts that
>> are panel specific will live in dashboard.
>> Let me draw a more concrete example.
>>
>> In Horizon
>> We know that _script and _conf are included in the base.html
>> We create a _script and _conf placeholder file for project overrides
>> (similar to _stylesheets and _header)
>> In Dashboard
>> We create a _script and _conf file with today's content
>> It overrides the _script and _conf file in horizon
>> Now we can include panel specific scripts without causing circular
>> dependency.
>>
>> In fact, I would like to go further and suggest that _script and _conf be
>> combine into a single file.
>> Not sure why we need two places to include scripts.
>>
>>
>> -David Lyle  wrote: -----
>> To: "OpenStack Development Mailing List (not for usage questions)" <
>> openstack-dev@lists.openstack.org>
>> From: David Lyle 
>> Date: 12/11/2014 09:23AM
>> Subject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to
>> dashboard
>>
>>
>> I'm probably not understanding the nuance of the question but moving the
>> _scripts.html file to openstack_dashboard creates some circular
>> dependencies, does it not? templates/base.html in the horizon side of the
>> repo includes _scripts.html and insures that the javascript needed by the
>> existing horizon framework is present.
>>
>> _conf.html seems like a better candidate for moving as it's more closely
>> tied to the application code.
>>
>> David
>>
>>
>> On Wed, Dec 10, 2014 at 7:20 PM, Thai Q Tran  wrote:
>>
>>> Sorry for duplicate mail, forgot the subject.
>>>
>>> -Thai Q Tran/Silicon Valley/IBM wrote: -
>>> To: "OpenStack Development Mailing List \(not for usage questions\)" <
>>> openstack-dev@lists.openstack.org>
>>> From: Thai Q Tran/Silicon Valley/IBM
>>> Date: 12/10/2014 03:37PM
>>> Subject: Moving _conf and _scripts to dashboard
>>>
>>> The way we are structuring our javascripts today is complicated. All of
>>> our static javascripts reside in /horizon/static and are imported through
>>> _conf.html and _scripts.html. Notice that there are already some panel
>>> specific javascripts like: horizon.images.js, horizon.instances.js,
>>> horizon.users.js. They do not belong in horizon. They belong in
>>> openstack_dashboard because they are specific to a panel.
>>>
>>> Why am I raising this issue now? In Angular, we need controllers written
>>> in javascript for each panel. As we angularize more and more panels, we
>>> need to store them in a way that make sense. To me, it make sense for us to
>>> move _conf and _scripts to openstack_dashboard. Or if this is not possible,
>>> then provide a mechanism to override them in openstack_dashboard.
>>>
>>> Thoughts?
>>> Thai
>>>
>>>
>>>
>>> ___
>>> OpenStack-dev mailing list
>>> OpenStack-dev@lists.openstack.org
>>> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>>>
>>>
>> ___
>> OpenStack-dev mailing list
>> OpenStack-dev@lists.openstack.org
>> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>>
>> ___
>> OpenStack-dev mailing list
>> OpenStack-dev@lists.openstack.org
>> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>>
>>
>
> ___
> OpenStack-dev mailing list
> OpenStack-dev@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>
>
___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboard

2014-12-12 Thread David Lyle
Not entirely sure why they both exist either.

So by move, you meant override (nuance). That's different and I have no
issue with that.

I'm also fine with attempting to consolidate _conf and _scripts.

David

On Thu, Dec 11, 2014 at 1:22 PM, Thai Q Tran  wrote:

>
> It would not create a circular dependency, dashboard would depend on
> horizon - not the latter.
> Scripts that are library specific will live in horizon while scripts that
> are panel specific will live in dashboard.
> Let me draw a more concrete example.
>
> In Horizon
> We know that _script and _conf are included in the base.html
> We create a _script and _conf placeholder file for project overrides
> (similar to _stylesheets and _header)
> In Dashboard
> We create a _script and _conf file with today's content
> It overrides the _script and _conf file in horizon
> Now we can include panel specific scripts without causing circular
> dependency.
>
> In fact, I would like to go further and suggest that _script and _conf be
> combine into a single file.
> Not sure why we need two places to include scripts.
>
>
> -David Lyle  wrote: -
> To: "OpenStack Development Mailing List (not for usage questions)" <
> openstack-dev@lists.openstack.org>
> From: David Lyle 
> Date: 12/11/2014 09:23AM
> Subject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to
> dashboard
>
>
> I'm probably not understanding the nuance of the question but moving the
> _scripts.html file to openstack_dashboard creates some circular
> dependencies, does it not? templates/base.html in the horizon side of the
> repo includes _scripts.html and insures that the javascript needed by the
> existing horizon framework is present.
>
> _conf.html seems like a better candidate for moving as it's more closely
> tied to the application code.
>
> David
>
>
> On Wed, Dec 10, 2014 at 7:20 PM, Thai Q Tran  wrote:
>
>> Sorry for duplicate mail, forgot the subject.
>>
>> -Thai Q Tran/Silicon Valley/IBM wrote: -
>> To: "OpenStack Development Mailing List \(not for usage questions\)" <
>> openstack-dev@lists.openstack.org>
>> From: Thai Q Tran/Silicon Valley/IBM
>> Date: 12/10/2014 03:37PM
>> Subject: Moving _conf and _scripts to dashboard
>>
>> The way we are structuring our javascripts today is complicated. All of
>> our static javascripts reside in /horizon/static and are imported through
>> _conf.html and _scripts.html. Notice that there are already some panel
>> specific javascripts like: horizon.images.js, horizon.instances.js,
>> horizon.users.js. They do not belong in horizon. They belong in
>> openstack_dashboard because they are specific to a panel.
>>
>> Why am I raising this issue now? In Angular, we need controllers written
>> in javascript for each panel. As we angularize more and more panels, we
>> need to store them in a way that make sense. To me, it make sense for us to
>> move _conf and _scripts to openstack_dashboard. Or if this is not possible,
>> then provide a mechanism to override them in openstack_dashboard.
>>
>> Thoughts?
>> Thai
>>
>>
>>
>> ___
>> OpenStack-dev mailing list
>> OpenStack-dev@lists.openstack.org
>> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>>
>>
> ___
> OpenStack-dev mailing list
> OpenStack-dev@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>
> ___
> OpenStack-dev mailing list
> OpenStack-dev@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>
>
___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboard

2014-12-11 Thread Thai Q Tran
It would not create a circular dependency, dashboard would depend on horizon - not the latter.Scripts that are library specific will live in horizon while scripts that are panel specific will live in dashboard.Let me draw a more concrete example.In Horizon	We know that _script and _conf are included in the base.html	We create a _script and _conf placeholder file for project overrides (similar to _stylesheets and _header)In Dashboard	We create a _script and _conf file with today's content	It overrides the _script and _conf file in horizon	Now we can include panel specific scripts without causing circular dependency.In fact, I would like to go further and suggest that _script and _conf be combine into a single file.Not sure why we need two places to include scripts.-David Lyle  wrote: -To: "OpenStack Development Mailing List (not for usage questions)" From: David Lyle Date: 12/11/2014 09:23AMSubject: Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboardI'm probably not understanding the nuance of the question but moving the _scripts.html file to openstack_dashboard creates some circular dependencies, does it not? templates/base.html in the horizon side of the repo includes _scripts.html and insures that the _javascript_ needed by the existing horizon framework is present._conf.html seems like a better candidate for moving as it's more closely tied to the application code.DavidOn Wed, Dec 10, 2014 at 7:20 PM, Thai Q Tran  wrote:Sorry for duplicate mail, forgot the subject.-Thai Q Tran/Silicon Valley/IBM wrote: -To: "OpenStack Development Mailing List \(not for usage questions\)" From: Thai Q Tran/Silicon Valley/IBMDate: 12/10/2014 03:37PMSubject: Moving _conf and _scripts to dashboardThe way we are structuring our _javascript_s today is complicated. All of our static _javascript_s reside in /horizon/static and are imported through _conf.html and _scripts.html. Notice that there are already some panel specific _javascript_s like: horizon.images.js, horizon.instances.js, horizon.users.js. They do not belong in horizon. They belong in openstack_dashboard because they are specific to a panel.Why am I raising this issue now? In Angular, we need controllers written in _javascript_ for each panel. As we angularize more and more panels, we need to store them in a way that make sense. To me, it make sense for us to move _conf and _scripts to openstack_dashboard. Or if this is not possible, then provide a mechanism to override them in openstack_dashboard.Thoughts?Thai


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

___OpenStack-dev mailing listOpenStack-dev@lists.openstack.orghttp://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [Horizon] Moving _conf and _scripts to dashboard

2014-12-11 Thread David Lyle
I'm probably not understanding the nuance of the question but moving the
_scripts.html file to openstack_dashboard creates some circular
dependencies, does it not? templates/base.html in the horizon side of the
repo includes _scripts.html and insures that the javascript needed by the
existing horizon framework is present.

_conf.html seems like a better candidate for moving as it's more closely
tied to the application code.

David


On Wed, Dec 10, 2014 at 7:20 PM, Thai Q Tran  wrote:

> Sorry for duplicate mail, forgot the subject.
>
> -Thai Q Tran/Silicon Valley/IBM wrote: -
> To: "OpenStack Development Mailing List \(not for usage questions\)" <
> openstack-dev@lists.openstack.org>
> From: Thai Q Tran/Silicon Valley/IBM
> Date: 12/10/2014 03:37PM
> Subject: Moving _conf and _scripts to dashboard
>
> The way we are structuring our javascripts today is complicated. All of
> our static javascripts reside in /horizon/static and are imported through
> _conf.html and _scripts.html. Notice that there are already some panel
> specific javascripts like: horizon.images.js, horizon.instances.js,
> horizon.users.js. They do not belong in horizon. They belong in
> openstack_dashboard because they are specific to a panel.
>
> Why am I raising this issue now? In Angular, we need controllers written
> in javascript for each panel. As we angularize more and more panels, we
> need to store them in a way that make sense. To me, it make sense for us to
> move _conf and _scripts to openstack_dashboard. Or if this is not possible,
> then provide a mechanism to override them in openstack_dashboard.
>
> Thoughts?
> Thai
>
>
>
> ___
> OpenStack-dev mailing list
> OpenStack-dev@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
>
>
___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev