» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with Announcements + Projects

Zoho Projects : Export all Timesheet Data as a Spreadsheet

Zoho Projects has had this feature for quite some time now - to export an employee’s Timesheet as an xls or csv file. And one of the requests from our users has been to enhance this and allow the timesheet data of all employees to be exported as a single file. This is available now in the latest Zoho Projects update.

Managers and Administrators can now export timesheet data of all users under a project and all users across all projects. Once the timesheet data gets exported, an email containing a link to the file to be downloaded gets sent.

Export timesheet for a project’s users (Project -> Timesheet -> Export)

Export for all users across all pages (My Home -> My Log Calendar -> Export)

Try this new feature in Zoho Projects and let us know your comments.

ZohoCreator: Zoho Blog

Zoho Projects : Create Project templates, Bulk upload documents and more

Today’s Zoho Projects update brings in a few more goodies.

Project Templates : Zoho Projects has had Tasklist Templates for quite some time now. This has now been enhanced to include defining whole projects as templates. In addtion to defining tasklists, you can now have Milestones (consisting of various tasklists), documents, forum posts & users added to a template. And whenever a new project is created, you needn’t start from scratch but make a copy of a suitable project template (whereever applicable).

Bulk Upload Documents : Typically, when a new project gets started, you upload various documents like requirement docs, drawings, design plans, test procedures etc related to that project. What better way than to choose once and upload all of them in one go? Zoho Projects now offers multiple file uploads.

Log time : Logging time has now been made easier. A clock icon comes on moving your mouse over the days in the calendar view. You can click on it and log the time for your tasks in that project.

You can also log time, edit the logged time in the List View under the Timesheet tab now.

Do try the latest features in Zoho Projects.

ZohoCreator: Zoho Blog

Zoho Projects Update : Task Dependency & more

One of the most asked for functionalities in Zoho Projects is finally here. Dependency of tasks! And the current update brings in a few more useful features as well. The update in detail :

Task Dependency : You can now set dependency among tasks. A Task can now be made dependent on one or more tasks being completed.

Assigning a Task to Multiple Users : This is another much asked for feature from our customers. Zoho Projects now lets you split & assign a Task among multiple users.

Uniform Date format : Set a date format under ‘Settings’ -> ‘Company Settings’ -> ‘Date/Time Format’. And this format gets reflected throughout the rest of the Zoho Projects UI screens.

Clear Task date : It’s now easy to clear the start or end dates of a Task in case you have decided to reassign dates at a later point of time. Previously, you’d to delete the Task and add it again without dates.

Delete Forum category : This extends the forum post deletion function. Now, entire forum categories can be deleted.

Delete Project : An extension to ‘Clear Project’ that deletes the whole project. Be cautious while using forum & project deletion. The data can’t be retrieved.

Other than the above, a few bugs have been fixed too. Try Zoho Projects & do post your comments below.

ZohoCreator: Zoho Blog

More preview releases from the Net::SSH family

I’ve got lots of code to share with you all today:

Net::SSH 2.0 Preview Release #3

Not very many external changes, but channels now have an on_open_failure callback that you can employ to be told when a channel could not be opened.

1
2
3
4
5
6
7
channel = ssh.open_channel do |ch|
  # ...
end

channel.on_open_failure do |ch, code, reason|
  puts "could not open channel because #{reason.inspect} #{code}"
end

This change was necessary to make port forwarding a bit more reliable for Net::SSH::Gateway (see below).

Also, individual Net::SSH sessions may contain their own custom properties, much as Net::SSH channel objects do, which can be quite handy when you need to keep some state associated with the session.

ssh[:key] = "value"

This change (and several other internal refactorings) was necessary for the correct working of the Net::SSH::Multi library (see below).

To get the preview release #3 (version 1.99.2):

gem install --source http://gems.jamisbuck.org net-ssh

You can follow development via GitHub:

http://github.com/jamis/net-ssh/tree/master

Net::SFTP 2.0 Preview Release #2

All that was added in this preview release was custom properties on Upload instances:

1
2
3
uploader = sftp.upload("local.file", "remote.file")
uploader[:failed] = false
# ...

This was necessary to get Capistrano file transfers to work with Net::SFTP 2.0.

To get the preview release #2 (version 1.99.1):

gem install --source http://gems.jamisbuck.org net-sftp

You can follow development via GitHub:

http://github.com/jamis/net-sftp/tree/master

Net::SSH::Gateway 1.0 Preview Release #1

Net::SSH::Gateway is (in essence) the extraction of the gateway code from Capistrano into its own library. It lets you tunnel SSH connections through some “gateway” server to servers that would be otherwise inaccessible.

1
2
3
4
5
6
require 'net/ssh/gateway'

gateway = Net::SSH::Gateway.new('gateway.host', 'username')
gateway.ssh('remote.host', 'user') do |ssh|
  # ...
end

You can also use it as a general facilitator for forwarding connections over a local port, when you don’t care what port is to be used—you just want to connect to a remote server.

1
2
3
gateway.open('remote.host', 80) do |port|
  Net::HTTP.get_print '127.0.0.1', '/path', port
end

The current thinking is that the next release of Capistrano will ditch its own gateway implementation in favor of Net::SSH::Gateway. To get this first preview release (version 0.99.0):

gem install --source http://gems.jamisbuck.org net-ssh-gateway

You can follow development via GitHub:

http://github.com/jamis/net-ssh-gateway/tree/master

Net::SSH::Multi 1.0 Preview Release #1

Net::SSH::Multi is the guts of Capistrano, extracted into a library of their own. It allows you to define and categorize servers, and then execute commands in parallel on them, or on subsets of them, using an interface similar, if not identical, to that of Net::SSH::Connection::Session and Channel.

Eventually, Capistrano will be refactored to take advantage of Net::SSH::Multi, but doing so will require some significant changes to Capistrano’s innards, and would almost certainly break many third-party libraries. Thus, you won’t see Capistrano on Net::SSH::Multi until Capistrano 3.0 or so (which will not be the next release of Capistrano). However, you can use Net::SSH::Multi to implement most of Capistrano’s functionality in whatever form you like. Want Capistrano-in-a-rakefile? Have at it!

1
2
3
4
5
6
7
8
9
require 'net/ssh/multi'

Net::SSH::Multi.start do |session|
  session.use 'jamis@somewhere.com'
  session.use 'jamis@elsewhere.com'

  session.exec 'hostname'
  session.loop
end

Grab the first preview release (version 0.99.0):

gem install --source http://gems.jamisbuck.org net-ssh-multi

You can follow development via GitHub:

http://github.com/jamis/net-ssh-multi/tree/master

For all of these libraries I’ve tried to make the rdoc and ri documentation as informative as possible, so please refer to those to get started. If those aren’t helpful enough, let me know what could make them more useful!

Capistrano: the { buckblogs :here } - Home

Zoho Projects now part of Zoho Single Sign-On

Are you using many of Zoho’s apps and signing in separately to Zoho Projects everytime? Not anymore. Zoho Projects, the easy online tool for project management is now part of Zoho’s single sign-on system. You can now use your Zoho ID (or the email address you used while registering with Zoho) to login to your Zoho Projects account. If you are logging into Zoho Projects for the first time using your Zoho ID, you’ll be asked to choose your domain name.

projects.jpg

If you have an account with Zoho Projects alone, you can use the same email address and password to access other Zoho apps now as well. If you face any issues in accessing Zoho Projects, do leave your comment below or write to us at support@zohoprojects.com

ShareThis

ZohoCreator: Zoho Blog

Zoho Projects Update : More options in Timesheet, Doc Management etc

The latest Zoho Projects update added quite a few handy features. You can now add links to web pages and embed HTML code snippets (of say Zoho Show presentations and YouTube videos) related to your projects in a separate Links section under ‘Documents’. The links can be tagged for easy classification and can be searched across.

Non-billable hours for tasks done unrelated to the project can now be mentioned in the Timesheet. Export options (both per project and across multiple projects for a user) now support billable/non-billable hours as well.

Project-related documents that you store centrally at Zoho Projects are now made sortable based on name. And in case of multiple persons in your team having the same first name - the email address will get shown in the Task Owner field for easy differentiation.

A few bug fixes have gone in as well. Try the latest Zoho Projects and we will be glad hearing your feedback as always.

ZohoCreator: Zoho Blog

Zoho Projects : RSS Feeds, Language Options and more

Zoho Projects is used around the world and what better way to access it than in your mother tongue! In addition to English, we have added the following language options - French, German, Japanese, Spanish, Dutch, Danish, Czech, Italian, Portuguese (European & Brazilian), Swedish & Russian. More language options will get added in future.

Adminstrators & managers can be up-to-date now, thanks to RSS feeds support. A couple of options available here - RSS at the individual project level and at the account level (combined feed for all projects). The feeds are HTTP authenticated and so use a RSS feed reader which supports authenticated feeds.

In addition to the already available ‘Duration’ of Tasks, you now have the option to specify the ‘End Date’ for each of your Tasks.

Test drive the latest Zoho Projects for all your project management needs.

ZohoCreator: Zoho Blog

Net::SSH 2.0 preview #1

I’m really pleased with how Net::SSH v2 is turning out. I’ve actually got it to a point where it’s about ready for a first preview release! If you’re an adventurous soul, you can grab the preview release gem (version 1.99.0) here:

Note that Net::SSH v2 is not going to be 100% backwards compatible with 1.x. Many things will work mostly the same, but here are a few of the most significant gotchas:

  • Net::SSH.start now uses a fixed parameter list, instead of the polymorphic monster it was. This makes it much easier to document, and use. The first parameter is always the host you are connecting to, and the second is always the username you’re connecting as. Options always come last.
  • The shell, sync-shell, and open3 services have been dropped. You won’t find them in Net::SSH 2.0. If you want them, I strongly encourage you to write them and release them as third-party extensions to Net::SSH.

There are also a couple of (much needed!) short cuts for executing commands:

1
2
3
4
5
6
Net::SSH.start("localhost", "jamis") do |ssh|
  puts ssh.exec!("echo hello world!")

  ssh.exec("hello world")
  ssh.loop
end

The first, #exec!, will block until the command finishes, and will return the output. The second will return immediately, before executing the command, and will run when the event loop does, writing output to the terminal.

The documentation is pretty much done, too. To see it, just install the gem, change to the net-ssh-1.99.0 gem directory, and run “rake manual”. Then open “doc/out/index.html” in a browser. It includes a brief tutorial, a quick-reference, and an FAQ-style “how do I do X” interface.

So! Give it a try. Remember that the current release of Net::SFTP won’t work with this new version (at all), and neither will Capistrano. But the lovely thing about RubyGems is that you can easily install and uninstall, on demand.

Oh, and before I forget, a couple of little teasers about what’s coming up:

1
2
3
4
5
6
7
8
9
10
require 'net/scp'
Net::SCP.download("localhost", "jamis", "/Users/jamis/.bashrc", "./my-bash-rc") do |name, sent, total|
  if sent == 0
     print "downloading #{name} (#{total}b): "
  elsif sent == total
     puts
  else
     print "."
  end
end

and…

1
2
3
4
require 'uri/open-scp'
open("scp://jamis@localhost/Users/jamis/.bashrc") do |io| 
  puts io.read 
end

Capistrano: the { buckblogs :here } - Home

Zoho Projects : Closer Integration with Writer/Sheet/Show and more

Zoho Projects’ latest update has a few functionalities that you will love. The project files (typically doc, xls, ppt) that you have centrally loaded to the ‘Documents’ section of Zoho Projects are now viewable in Writer/Sheet/Show. No need to download and view them on a desktop based app. And it gets better. When you open & edit a doc/xls file in Writer/Sheet and save the changes, it automatically gets reflected in the Zoho Projects ‘Documents’ section as a new version! An example of how the option looks like below :

The other major area we’d concentrated on this update is that of logging time & how you see your work calendar. You can now have a consolidated calendar view of all your projects (under ‘My Home’ -> ‘My work calendar’). And there are filtered views too - By User, By Project, By Tasks, By Milestones etc.

The ‘work calendar’ also has the iCal subscription option at the bottom. You can subscribe to this HTTP Authenicated feed in your iCalendar and get automatic updates when new tasks get added to your projects, for example.

With the ‘log calendar’ view, you can now see the total logged time of a user across projects.

And Zoho Projects now allows consolidated export of  the logged hours timesheet for each user across Projects as a xls/csv file.


Generic tasks assigned to ‘Any User’ can now be logged by the user(s) who’d done them.

Other than the above, the UI of the ‘Forums’ section has been improved as well. Try the latest Zoho Projects and we would love hearing your feedback.

ZohoCreator: Zoho Blog

Zoho Projects : Faster than before

In March 2007, we migrated most of the Zoho services to a new data center with more powerful servers. This weekend, Zoho Projects joined the other Zoho apps in the new data center. You should now be experiencing a major boost in the performance of Zoho Projects as the pages load much faster and the data inputs happen more smoothly.

Also, this update had a couple of UI enhancements. The ‘Tasks & Milestones’ tab now has sub-tabs - General, Upcoming, Overdue, Completed - for added clarity. And each Tasklist / Milestone can be Expanded or Collapsed. The ‘Forums’ tab has also undergone a few changes as well.

Try the new & enhanced Zoho Projects and we would be glad hearing your feedback!

ZohoCreator: Zoho Blog

Zoho Projects adds more configuration options

Zoho Projects being used all over the world, our users are a very varied lot. To suit them all, the latest Zoho Projects update introduced quite a few configuration options. The encoding of the mails being sent can now be configured to suit our users’ languages. And the time/date format can be chosen to suit different notations being followed in different parts of the world - am/pm or the 24 hour style for time and dd/mm/yy, mm/dd/yy and other options for date.

 

The ‘Powered by Zoho’ logo at the bottom has been made customizable. And it can be linked to the company web address that you provide. Another change is that the users’ First/Last names will be displayed everywhere instead of the email ID.

‘Completed Tasks’ can now be shown or made hidden as need be. And ‘Notes’ of ‘Completed Tasks’ are now made viewable. There were a few bug fixes as well in Gantt charts, ‘My Home’ page and document versioning modules.

Test drive the latest Zoho Projects and your feedback will be much appreciated!

ZohoCreator: Zoho Blog

Zoho Projects Update : Easy tasklist duplication and more

Some cool features that you users had been asking for got added in the latest Zoho Projects update done yesterday.

  • If you have the same list of tasks to be duplicated across Milestones/Projects, ‘Task List Template’ is for you. You can create a new template from scratch (click on ‘Settings’ -> ‘Templates’) or make an existing tasklist as a ‘Template Task List’.
  • You can now send private messages to a selected few members of your Projects account. Click on Users -> Send Message (previously, you can only send / not send messages for all members in a project about Meetings & Forum posts)
  • Archived tasks can now be exported (previously only Pending & Closed tasks could only be exported)
  • While posting to the forum, the attachments will be sent along with the notification mail. Also, while replying to a forum post, you have the choice to notify all the users or the owner alone.
  • Project details are displayed when you mouse over a project’s name in the left panel. Likewise, the notes added to a task get displayed on mouseover too.

Other than the above, a few bug fixes got in as well.

 

Try the new Zoho Projects and please do share your thoughts.

ZohoCreator: Zoho Blog

Eating one’s own dog food

Pandurang Nayak, one of our long time well-wishers had asked :

Would the AdventNet sales team use Zoho Show? (Would they? Really?) Or would their finance team create all of their balance sheets and tax calculations for they year on Zoho Sheet. (Really, again?) Or would they expect their technology teams to create 3000-page product and technical documentation on Zoho Writer?


T
he answer to his last question is now public. Zoho Projects had an update just minutes before and its help documentation is now available. It was fully created and is hosted on Zoho Writer.

Other Zoho documentation on Zoho Writer currently include the Zoho Writer FAQ page, pages for the Zoho API (the application form for getting the API key is on Zoho Creator) and the help page for Zoho Plug-in for Microsoft Office. Thanks to Ahmed and Nithya who created all the content. And I expect all future technical documentation for Zoho to be hosted on Zoho Writer.

Coming back to the Zoho Projects update, users can now be notified by mail when a task is being assigned to a user and when a forum post is being made. And while sending feedback, you now have the option to post your feedback directly to the product forum too.

Check out the latest in Zoho Projects.

ZohoCreator: Zoho Blog

Zoho Projects Update

An update to Zoho Projects happened a few minutes ago. Some cool features that many of you have been asking for are available now. Zoho Projects, like Zoho Writer and Zoho Planner, now offers different colored skins to choose from. Choose the one you like.

zohoprojects-nov2-update-screenshot

Mac users rejoice. Zoho Projects now supports Safari! Opera too is now supported as Zoho Projects takes the tally of supported browsers to 4 (the other two being the obvious ones - Firefox & IE). Other useful features include : Timesheet log hours can be added/edited, forums posts can now be edited/deleted and can have attachments as well. A few issues have been fixed as well.

Update : Another important feature available now - you can now see both the Internal/External Milestones in a single page.

ZohoCreator: Zoho Blog

Zoho Projects goes out of Beta!

Zoho Projects had an update minutes earlier. With this update, it joins Zoho CRM as the second Zoho service to move out of Beta. Salient points of the release include :

# You can now have multiple projects by signing-up for premium plans. The one project free version continues to be there
# Zoho Projects will completely be free for Open Source projects
# Zoho Projects now has a secure connection through SSL
# Zoho Projects now provides Unicode (UTF-8 character set) support allowing international users to type in their language.

Check out the new Zoho Projects. For more on premium plans click here.

ZohoCreator: Zoho Blog

Zoho Projects launched!

Please join me in welcoming the latest addition to the Zoho suite of web services - Zoho Projects! Zoho Projects, as the name implies is an online project mangement tool that helps teams to easily organize their work & track progress.

zoho-projects

Salient features include :

  • Splitting up of a project into Tasks & Milestones
  • A Dashboard view to show all the recent activities
  • A Calendar based view of the project
  • AJAX-based design ensuring better usability (no page reloading for every beck & call)
  • Centralized uploading & storage of files
  • Easy collaboration among the project members by allowing meetings to be scheduled & through forums (integration with Zoho Chat coming soon)
  • Logo customization - allows having your company’s logo
  • Reports including Gantt charts
  • Support for unlimited users
  • Various plans ranging from Free (1 project) to Enterprise Version (unlimited projects, $80/month) available

Take a tour of Zoho Projects (QuickTime movie), login as a demo user & give it a test drive or sign up now for free. Try it out & do tell us what you think.

Thanks to Marshall Kirkpatrick & Mike Arrington for covering the Zoho Projects launch in TechCrunch!

ZohoCreator: Zoho Blog