[allura:tickets] Re: #8204 Create new neighbourhood

2018-09-21 Thread Dave Brondsema
Hi,

https://forge-allura.apache.org/p/allura/wiki/Themes%20in%20Allura/ has some 
documentation about it.  Depending on what you want to do may be more or less 
work. 

There is not currently a way to make it responsive.  Essentially every page 
would need its HTML & CSS to be rewritten.  We would like to have it be 
responsive at some point, but it would be a lot of work.  There is a ticket for 
it: [#8093]  It might be possible to have certain pages be responsive before 
others, but still would require a lot of changes to get started.


---

** [tickets:#8204] Create new neighbourhood**

**Status:** open
**Milestone:** unreleased
**Created:** Fri Jun 08, 2018 06:15 AM UTC by Vrinda
**Last Updated:** Thu Sep 20, 2018 12:25 PM UTC
**Owner:** nobody


Hello,

I understand neighbourhoods can be used for grouping similar projects. By 
default I can see 3 neighbourhoods created by default : Adobe, Projects and 
Users.
Is it possible to create new neighbourhood?

Regards,
Vrinda.


---

Sent from forge-allura.apache.org because dev@allura.apache.org is subscribed 
to https://forge-allura.apache.org/p/allura/tickets/

To unsubscribe from further messages, a project admin can change settings at 
https://forge-allura.apache.org/p/allura/admin/tickets/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.

[allura:tickets] Re: #8204 Create new neighbourhood

2018-08-27 Thread Dave Brondsema
It is not in a released version yet.  But it is on the "master" branch of 
allura, so if you are using a git checkout of Allura you can update to the 
latest and use it.


---

** [tickets:#8204] Create new neighbourhood**

**Status:** open
**Milestone:** unreleased
**Created:** Fri Jun 08, 2018 06:15 AM UTC by Vrinda
**Last Updated:** Sun Aug 26, 2018 06:38 AM UTC
**Owner:** nobody


Hello,

I understand neighbourhoods can be used for grouping similar projects. By 
default I can see 3 neighbourhoods created by default : Adobe, Projects and 
Users.
Is it possible to create new neighbourhood?

Regards,
Vrinda.


---

Sent from forge-allura.apache.org because dev@allura.apache.org is subscribed 
to https://forge-allura.apache.org/p/allura/tickets/

To unsubscribe from further messages, a project admin can change settings at 
https://forge-allura.apache.org/p/allura/admin/tickets/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.

[allura:tickets] Re: #8204 Create new neighbourhood

2018-07-27 Thread Dave Brondsema
Those are not part of the open source Allura, sorry


---

** [tickets:#8204] Create new neighbourhood**

**Status:** open
**Milestone:** unreleased
**Created:** Fri Jun 08, 2018 06:15 AM UTC by Vrinda
**Last Updated:** Thu Jul 26, 2018 12:34 PM UTC
**Owner:** nobody


Hello,

I understand neighbourhoods can be used for grouping similar projects. By 
default I can see 3 neighbourhoods created by default : Adobe, Projects and 
Users.
Is it possible to create new neighbourhood?

Regards,
Vrinda.


---

Sent from forge-allura.apache.org because dev@allura.apache.org is subscribed 
to https://forge-allura.apache.org/p/allura/tickets/

To unsubscribe from further messages, a project admin can change settings at 
https://forge-allura.apache.org/p/allura/admin/tickets/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.

[allura:tickets] Re: #8204 Create new neighbourhood

2018-06-15 Thread Dave Brondsema
Everything is saved to mongodb, so restarts wont' lose anything.  With the 
docker setup, you can restart with: `docker-compose restart taskd` and 
`docker-compose restart web`

With step-by-step installation you basically just stop the process and then 
start it again.  (In a production-ready setup you'd want to create a service to 
manage it).  So something like:

* `pkill -f gunicorn` and then `gunicorn --reload --paste development.ini` again
* `pkill "^taskd";` and then `nohup paster taskd development.ini >> 
/var/log/allura/taskd.log 2>&1 &` again



---

** [tickets:#8204] Create new neighbourhood**

**Status:** open
**Milestone:** unreleased
**Created:** Fri Jun 08, 2018 06:15 AM UTC by Vrinda
**Last Updated:** Fri Jun 15, 2018 12:06 PM UTC
**Owner:** nobody


Hello,

I understand neighbourhoods can be used for grouping similar projects. By 
default I can see 3 neighbourhoods created by default : Adobe, Projects and 
Users.
Is it possible to create new neighbourhood?

Regards,
Vrinda.


---

Sent from forge-allura.apache.org because dev@allura.apache.org is subscribed 
to https://forge-allura.apache.org/p/allura/tickets/

To unsubscribe from further messages, a project admin can change settings at 
https://forge-allura.apache.org/p/allura/admin/tickets/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.

[allura:tickets] Re: #8204 Create new neighbourhood

2018-06-14 Thread Dave Brondsema
Yep, that is the error.  You will need to set permissions so the allura webapp 
and taskd processes can read & write to that directory.  Or change that 
directory with the `scm.repos.root` setting and `scm.host.file.git` setting in 
the `.ini` config file (and restart services).

You'll probably want to make a new code repo after that, to make sure it gets 
initialized correctly.

And then you should do a checkout of the repo, not commit directly in the 
/srv/git path.


---

** [tickets:#8204] Create new neighbourhood**

**Status:** open
**Milestone:** unreleased
**Created:** Fri Jun 08, 2018 06:15 AM UTC by Vrinda
**Last Updated:** Thu Jun 14, 2018 03:19 AM UTC
**Owner:** nobody


Hello,

I understand neighbourhoods can be used for grouping similar projects. By 
default I can see 3 neighbourhoods created by default : Adobe, Projects and 
Users.
Is it possible to create new neighbourhood?

Regards,
Vrinda.


---

Sent from forge-allura.apache.org because dev@allura.apache.org is subscribed 
to https://forge-allura.apache.org/p/allura/tickets/

To unsubscribe from further messages, a project admin can change settings at 
https://forge-allura.apache.org/p/allura/admin/tickets/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.

[allura:tickets] Re: #8204 Create new neighbourhood

2018-06-13 Thread Dave Brondsema
Is the `taskd` process running?  That is an allura command that runs background 
processes like initializing repositories.  With the docker setup it is just one 
of the containers.  If you are running without docker, 
https://forge-allura.apache.org/docs/getting_started/install_each_step.html#allura-task-processing
 has the basic command to run it.


---

** [tickets:#8204] Create new neighbourhood**

**Status:** open
**Milestone:** unreleased
**Created:** Fri Jun 08, 2018 06:15 AM UTC by Vrinda
**Last Updated:** Wed Jun 13, 2018 11:19 AM UTC
**Owner:** nobody


Hello,

I understand neighbourhoods can be used for grouping similar projects. By 
default I can see 3 neighbourhoods created by default : Adobe, Projects and 
Users.
Is it possible to create new neighbourhood?

Regards,
Vrinda.


---

Sent from forge-allura.apache.org because dev@allura.apache.org is subscribed 
to https://forge-allura.apache.org/p/allura/tickets/

To unsubscribe from further messages, a project admin can change settings at 
https://forge-allura.apache.org/p/allura/admin/tickets/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.

[allura:tickets] Re: #8204 Create new neighbourhood

2018-06-11 Thread Dave Brondsema
There's not exactly a way to delete a neighborhood, but you can create the 
initial database without the example neighborhoods.  See the `setup-app` note 
at https://forge-allura.apache.org/docs/getting_started/installation.html  
Otherwise you can go into the mongodb shell to remove things, see: 
https://www.mail-archive.com/allura-dev@incubator.apache.org/msg02260.html

You could modify the `templates/neighborhood_list.html` file directly.  A 
little cleaner but more work is to make a new python package and set up 
template overrides.  Docs for that are at 
https://forge-allura.apache.org/docs/api/lib/package_path_loader.html#overriding-dotted-notation

And yes, evicting is meant to send a project to the "Projects" neighborhood.  
The Projects neighborhood is the main default neighborhood.


---

** [tickets:#8204] Create new neighbourhood**

**Status:** open
**Milestone:** unreleased
**Created:** Fri Jun 08, 2018 06:15 AM UTC by Vrinda
**Last Updated:** Mon Jun 11, 2018 08:41 AM UTC
**Owner:** nobody


Hello,

I understand neighbourhoods can be used for grouping similar projects. By 
default I can see 3 neighbourhoods created by default : Adobe, Projects and 
Users.
Is it possible to create new neighbourhood?

Regards,
Vrinda.


---

Sent from forge-allura.apache.org because dev@allura.apache.org is subscribed 
to https://forge-allura.apache.org/p/allura/tickets/

To unsubscribe from further messages, a project admin can change settings at 
https://forge-allura.apache.org/p/allura/admin/tickets/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.